:root {
  --green: #1f4539;
  --green-deep: #12342c;
  --cream: #f8f4ed;
  --paper: #fffdf9;
  --gold: #b38a48;
  --ink: #25302b;
  --muted: #6f766f;
  --line: #e7dfd2;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  line-height: 1.75;
}
.topline {
  background: var(--green-deep);
  color: #d9e1d9;
  font-size: 14px;
  padding: 8px 0;
}
.topline a {
  color: #f0d7a4;
  text-decoration: none;
}
.site-nav {
  background: rgba(248, 244, 237, 0.94);
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
  position: relative;
  z-index: 10;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--green-deep);
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font:
    700 28px/1 "Cormorant Garamond",
    serif;
  color: var(--gold);
  transform: rotate(-12deg);
}
.brand strong {
  display: block;
  font:
    700 25px/1 "Cormorant Garamond",
    serif;
}
.brand small {
  display: block;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.nav-link {
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}
.btn {
  border-radius: 0;
  padding: 11px 18px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.15px;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: #966f34;
  color: #fff;
}
.btn-dark-green {
  background: var(--green);
  color: #fff;
  border: 1px solid var(--green);
  box-shadow: 8px 8px 0 rgba(179, 138, 72, 0.2);
}
.btn-dark-green:hover {
  background: var(--green-deep);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-green {
  border: 1px solid #aabaae;
  color: var(--green);
  margin-top: 10px;
}
.btn-outline-green:hover {
  background: var(--green);
  color: #fff;
}
.hero {
  min-height: 650px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(110deg, #f5eee3 0%, #f8f4ed 55%, #e8e3d9 100%);
}
.hero:after {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(179, 138, 72, 0.3);
  border-radius: 50%;
  right: -180px;
  top: -280px;
}
.hero-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(223, 190, 132, 0.25),
      transparent 25%
    ),
    radial-gradient(
      circle at 80% 72%,
      rgba(182, 209, 189, 0.3),
      transparent 25%
    );
}
.hero-copy {
  padding: 70px 0;
}
.eyebrow {
  text-transform: uppercase;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.3px;
  margin-bottom: 13px;
}
.hero h1,
h2 {
  font:
    600 62px/0.94 "Cormorant Garamond",
    serif;
  letter-spacing: 0;
  color: var(--green-deep);
  margin: 0 0 24px;
}
.hero h1 em,
h2 em {
  font-style: italic;
  color: var(--gold);
}
.hero-text {
  max-width: 430px;
  color: var(--muted);
  margin-bottom: 30px;
}
.text-link {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.text-link:hover {
  color: var(--gold);
}
.hero-art {
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-frame {
  height: 530px;
  width: min(100%, 450px);
  position: relative;
  border: 1px solid rgba(179, 138, 72, 0.55);
  border-radius: 220px 220px 10px 10px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.22);
}
.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 210px 210px 4px 4px;
}
.seal {
  position: absolute;
  bottom: 28px;
  left: -30px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  width: 94px;
  height: 94px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 5px solid var(--cream);
  outline: 1px solid var(--gold);
}
.seal b {
  font:
    700 25px/1 "Cormorant Garamond",
    serif;
}
.seal small {
  font-size: 9px;
  text-transform: uppercase;
}
.trust-strip {
  background: var(--green);
  color: #fff;
  padding: 24px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-item i {
  color: #d7b46c;
  font-size: 26px;
}
.trust-item strong,
.trust-item small {
  display: block;
}
.trust-item strong {
  font-size: 17px;
}
.trust-item small {
  color: #b9c9bd;
  font-size: 16px;
}
.section-space {
  padding: 95px 0;
}
.section-heading h2,
h2 {
  font-size: 50px;
  margin-bottom: 0;
}
.featured {
  background: var(--paper);
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  height: 100%;
  transition: 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(47, 57, 47, 0.1);
}
.product-image {
  height: 300px;
  position: relative;
  overflow: hidden;
  background: #eee5d7;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tag {
  position: absolute;
  left: 14px;
  top: 14px;
  background: var(--green);
  color: #fff;
  padding: 4px 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-info {
  padding: 22px;
}
.product-type {
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 6px;
}
.product-info h3 {
  font:
    600 27px/1 "Cormorant Garamond",
    serif;
  color: var(--green-deep);
  margin: 0 0 10px;
}
.product-info p:not(.product-type) {
  color: var(--muted);
  font-size: 17px;
  min-height: 48px;
}
.story-band {
  padding: 100px 0;
  background: #e8eee7;
}
.story-photo {
  height: 440px;
  max-width: 410px;
  position: relative;
  padding: 10px;
  border: 1px solid rgba(179, 138, 72, 0.6);
  margin: auto;
}
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-band p:not(.eyebrow) {
  color: var(--muted);
  max-width: 490px;
  margin: 0 0 27px;
}
.site-footer {
  background: var(--green-deep);
  color: #c8d1c8;
  padding: 60px 0 20px;
}
.brand-light {
  color: #fff;
}
.brand-light .brand-mark {
  color: #e1b96c;
}
.site-footer h4 {
  color: #e1b96c;
  font:
    600 24px "Cormorant Garamond",
    serif;
  margin: 0 0 14px;
}
.site-footer a,
.site-footer p {
  display: block;
  color: #c8d1c8;
  text-decoration: none;
  font-size: 17px;
  margin: 0 0 7px;
}
.site-footer a:hover {
  color: #e1b96c;
}
.footer-note {
  max-width: 280px;
  margin-top: 20px !important;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 45px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: #91a398;
}
.page-hero {
  padding: 90px 0 80px;
  background: linear-gradient(120deg, #e9eee7, #f7f1e8);
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font:
    600 65px/0.9 "Cormorant Garamond",
    serif;
  color: var(--green-deep);
  margin: 0;
}
.page-hero p {
  color: var(--muted);
  max-width: 520px;
  margin: 22px 0 0;
}
.content-section {
  padding: 90px 0;
  background: var(--paper);
}
.content-section h2 {
  font-size: 48px;
  margin-bottom: 22px;
}
.content-section p {
  color: var(--muted);
}
.info-list {
  border-top: 1px solid var(--line);
  margin-top: 28px;
}
.info-list div {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.info-list strong {
  color: var(--green);
  font-size: 17px;
}
.info-list span {
  color: var(--muted);
  font-size: 17px;
  text-align: right;
}
.contact-card {
  background: #edf2eb;
  padding: 35px;
}
.contact-card h3 {
  font:
    600 35px "Cormorant Garamond",
    serif;
  color: var(--green-deep);
}
.form-control,
.form-select {
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  padding: 12px 14px;
  font-size: 17px;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(179, 138, 72, 0.12);
}
.floating-call {
  display: none;
}
.reveal {
  animation: rise 0.8s both;
}
.reveal:nth-child(2) {
  animation-delay: 0.1s;
}
.reveal:nth-child(3) {
  animation-delay: 0.2s;
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 767px) {
  .topline {
    font-size: 10px;
  }
  .topline .container span {
    max-width: 210px;
  }
  .hero {
    min-height: auto;
  }
  .hero-copy {
    padding: 65px 0 30px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero-art {
    padding: 20px 0 60px;
  }
  .hero-frame {
    height: 410px;
  }
  .seal {
    left: 0;
  }
  .section-space,
  .content-section,
  .story-band {
    padding: 65px 0;
  }
  .section-heading {
    align-items: flex-start !important;
    gap: 15px;
    flex-direction: column;
  }
  .section-heading h2,
  h2 {
    font-size: 43px;
  }
  .product-image {
    height: 280px;
  }
  .page-hero {
    padding: 65px 0;
  }
  .page-hero h1 {
    font-size: 53px;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom span {
    display: block;
    margin-bottom: 7px;
  }
  .floating-call {
    display: grid;
    place-items: center;
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    z-index: 20;
    box-shadow: 0 5px 16px #0003;
    text-decoration: none;
  }
}
