:root {
  --green: #2f5d50;
  --deep: #18392a;
  --ivory: #f5f2ea;
  --white: #ffffff;
  --gold: #b08b57;
  --text: #1e2a24;
  --muted: #66756d;
  --line: #dfe7e2;
  --soft: #f9f7f1;
  --shadow: 0 24px 70px rgba(24, 57, 42, 0.12);
  --radius: 28px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Poppins, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(176, 139, 87, 0.65);
  outline-offset: 3px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--deep);
  font-weight: 800;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 11px 14px;
  border-radius: 14px;
  color: var(--deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a:hover {
  background: var(--ivory);
}

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--ivory);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--deep);
}

/* Shared */
.section {
  width: min(var(--container), calc(100% - 40px));
  margin: auto;
  padding: 110px 0;
}

.eyebrow,
.section-kicker {
  margin-bottom: 16px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.mondulkiri-copy h2,
.wholesale-inner h2,
.contact-copy h2,
.certification-content h2 {
  color: var(--deep);
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 0.95;
}

.section-heading h2,
.about-copy h2,
.mondulkiri-copy h2,
.wholesale-inner h2,
.contact-copy h2,
.certification-content h2 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: -0.045em;
}

.section-heading p,
.about-copy p,
.mondulkiri-copy p,
.wholesale-inner p,
.contact-copy p,
.certification-content p {
  color: var(--muted);
  line-height: 1.85;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(47, 93, 80, 0.2);
}

.btn-secondary {
  border: 1px solid var(--green);
  background: var(--white);
  color: var(--green);
}

.btn-light {
  background: var(--white);
  color: var(--deep);
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px max(20px, calc((100% - var(--container)) / 2)) 92px;
  background: var(--deep);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(24, 57, 42, 0.82) 0%, rgba(24, 57, 42, 0.58) 42%, rgba(24, 57, 42, 0.16) 100%),
    linear-gradient(180deg, rgba(24, 57, 42, 0.12) 0%, rgba(24, 57, 42, 0.28) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero h1 {
  max-width: 920px;
  color: var(--white);
  font-size: clamp(4.2rem, 8vw, 8.4rem);
  letter-spacing: -0.05em;
}

.hero-copy {
  max-width: 940px;
}

.hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.hero-text {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.9;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero .btn-primary {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(176, 139, 87, 0.2)),
    rgba(47, 93, 80, 0.72);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.hero .btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(176, 139, 87, 0.34));
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.hero .btn-primary:hover {
  border-color: var(--white);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.hero .btn-primary:hover::before {
  opacity: 1;
}

.hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(10px);
}

/* Trust Strip */
.trust-strip {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip::before,
.trust-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(42px, 8vw, 120px);
  pointer-events: none;
}

.trust-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
}

.trust-strip::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(255, 255, 255, 0));
}

.trust-track {
  display: flex;
  width: max-content;
  animation: trust-marquee 34s linear infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.trust-group {
  display: flex;
  flex: 0 0 auto;
}

.trust-item {
  flex: 0 0 clamp(220px, 20vw, 320px);
  padding: 24px 14px;
  border-right: 1px solid var(--line);
  color: var(--deep);
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

@keyframes trust-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .trust-strip:hover .trust-track {
    animation-play-state: paused;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-track {
    animation: none;
    transform: none;
  }
}

/* About */
.about-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 70px;
}

.about-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 36px;
}

.mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.mini-stats span {
  padding: 10px 14px;
  border-radius: 99px;
  background: var(--ivory);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

/* =========================================================
   Organic Certification Section - Premium Layout
========================================================= */

.certification-section {
  background: var(--white);
}

.certification-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(47, 93, 80, 0.12);
  border-radius: 36px;
  background:
    radial-gradient(circle at 74% 18%, rgba(176, 139, 87, 0.09), transparent 32%),
    linear-gradient(135deg, rgba(47, 93, 80, 0.035), rgba(255, 255, 255, 0.96)),
    var(--white);
  box-shadow: 0 28px 80px rgba(24, 57, 42, 0.09);
  overflow: hidden;
}

.certification-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: stretch;
}

.certification-photo {
  width: 86%;
  min-height: 560px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(24, 57, 42, 0.16);
}

.certification-seal {
  position: absolute;
  right: 0;
  top: 50%;
  width: clamp(190px, 18vw, 270px);
  height: clamp(190px, 18vw, 270px);
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffffff 55%, #f6f1e7 100%);
  border: 2px solid rgba(176, 139, 87, 0.38);
  box-shadow:
    0 24px 65px rgba(24, 57, 42, 0.18),
    inset 0 0 0 12px rgba(255, 255, 255, 0.9);
  z-index: 3;
}

.certification-seal::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(176, 139, 87, 0.18);
}

.certification-seal img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  border-radius: 50%;
}

.certification-content {
  max-width: 640px;
}

.with-lines {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--gold);
}

.with-lines span {
  width: 58px;
  height: 1px;
  background: rgba(176, 139, 87, 0.55);
}

.certification-content h2 {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--deep);
  font-size: clamp(3rem, 5.5vw, 5.4rem);
  letter-spacing: -0.055em;
}

.cert-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 22px 0 28px;
  color: var(--gold);
}

.cert-divider span {
  height: 1px;
  flex: 1;
  background: rgba(176, 139, 87, 0.35);
}

.cert-divider b {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 400;
}

.certification-content p {
  max-width: 590px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.certification-content p + p {
  margin-top: 16px;
}

.certification-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.certification-features div {
  position: relative;
  text-align: center;
}

.certification-features div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: rgba(176, 139, 87, 0.25);
}

.certification-features span {
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--green);
  font-size: 1.7rem;
  box-shadow: inset 0 0 0 1px rgba(47, 93, 80, 0.08);
}

.certification-features strong {
  display: block;
  color: var(--deep);
  font-size: 0.9rem;
  line-height: 1.25;
}

/* Responsive */
@media (max-width: 980px) {
  .certification-card {
    grid-template-columns: 1fr;
  }

  .certification-visual {
    min-height: auto;
    max-width: 720px;
    margin-inline: auto;
  }

  .certification-photo {
    width: 100%;
    height: clamp(360px, 55vw, 460px);
    min-height: 0;
    object-position: center;
  }

  .certification-seal {
    right: clamp(16px, 4vw, 28px);
    bottom: clamp(16px, 4vw, 28px);
    top: auto;
    width: clamp(132px, 22vw, 180px);
    height: clamp(132px, 22vw, 180px);
    transform: none;
  }

  .certification-seal::before {
    inset: -10px;
  }

  .certification-content {
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  .certification-card {
    padding: 22px;
    border-radius: 26px;
  }

  .certification-photo {
    height: clamp(270px, 74vw, 340px);
    min-height: 0;
    border-radius: 22px;
  }

  .certification-seal {
    width: clamp(112px, 34vw, 136px);
    height: clamp(112px, 34vw, 136px);
    right: 14px;
    bottom: 14px;
    box-shadow:
      0 18px 45px rgba(24, 57, 42, 0.16),
      inset 0 0 0 8px rgba(255, 255, 255, 0.9);
  }

  .certification-seal::before {
    inset: -7px;
  }

  .with-lines {
    justify-content: center;
    text-align: center;
    gap: 10px;
  }

  .with-lines span {
    width: 34px;
  }

  .certification-content {
    padding-top: 8px;
    text-align: center;
  }

  .certification-content h2 {
    font-size: clamp(2.5rem, 13vw, 3.6rem);
  }

  .certification-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 14px;
  }

  .certification-features div::after {
    display: none;
  }
}

/* Products */
.products-section,
.mondulkiri-section {
  width: 100%;
  max-width: none;
  background: var(--ivory);
}

.products-section > .section-heading,
.products-section > .product-grid {
  width: min(var(--container), calc(100% - 40px));
  margin: auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 24px;
  margin-top: 42px;
}

.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(24, 57, 42, 0.16);
}

.product-image {
  flex: 0 0 330px;
  height: 330px;
  display: grid;
  place-items: center;
  padding: 34px;
  background: var(--soft);
  overflow: hidden;
}

.product-image img {
  max-height: 270px;
  object-fit: contain;
  transition: transform 300ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.product-info {
  min-height: 278px;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.product-type {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-info h3,
.variety-card h3,
.process-step h3 {
  margin: 12px 0;
  color: var(--deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.product-info p,
.variety-card p,
.process-step p {
  color: var(--muted);
  line-height: 1.75;
}

.product-info a {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 18px;
  padding-bottom: 3px;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 2px;
  color: var(--green);
  font-weight: 800;
  transition: background-size 300ms ease, transform 300ms ease;
}

.product-info h3 {
  min-height: 4rem;
}

.product-info > p:not(.product-type) {
  min-height: calc(1.75em * 3);
}

.product-info a {
  margin-top: auto;
}

.product-info a:hover {
  background-size: 100% 2px;
  transform: translateX(3px);
}

/* Varieties */
.variety-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.variety-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
}

.variety-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.variety-card h3,
.variety-card p {
  padding-inline: 22px;
}

.variety-card h3 {
  padding-top: 22px;
}

.variety-card p {
  padding-bottom: 26px;
}

/* Process */
.process-step {
  padding: 30px;
  border-left: 1px solid var(--line);
}

.process-step span {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  font-weight: 700;
}

/* Mondulkiri */
.mondulkiri-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  padding: 110px max(20px, calc((100% - var(--container)) / 2));
}

.mondulkiri-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 34px;
}

/* Wholesale */
.wholesale-section {
  padding: 110px 20px;
  background: var(--deep);
  color: var(--white);
  text-align: center;
}

.wholesale-inner {
  max-width: 780px;
  margin: auto;
}

.wholesale-inner .eyebrow,
.wholesale-inner h2 {
  color: var(--white);
}

.wholesale-inner p {
  max-width: 680px;
  margin: 20px auto 30px;
  color: rgba(255, 255, 255, 0.75);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 26px;
}

/* Contact */
.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 130px;
}

.contact-form button {
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: var(--deep);
  font-weight: 700;
}

/* Footer */
.site-footer {
  padding: 44px 20px;
  background: var(--deep);
  color: var(--white);
  text-align: center;
}

.site-footer img {
  width: 100px;
  height: auto;
  margin: 0 auto 16px;
}

.footer-social {
  display: inline-flex;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.footer-social:hover {
  color: var(--white);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer .footer-credit {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.22);
  text-underline-offset: 3px;
  transition: color 0.25s ease, text-decoration-color 0.25s ease, opacity 0.25s ease;
}

.footer-credit a:hover {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.72);
  opacity: 0.92;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  .certification-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .certification-content {
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    width: min(280px, calc(100vw - 40px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .about-section,
  .mondulkiri-section,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero {
    min-height: 86svh;
    padding: 132px 20px 74px;
    text-align: center;
  }

  .hero-text,
  .hero-actions,
  .hero-proof {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(24, 57, 42, 0.76) 0%, rgba(24, 57, 42, 0.52) 58%, rgba(24, 57, 42, 0.34) 100%);
  }

  .product-grid,
  .variety-grid,
  .process-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-image img,
  .mondulkiri-image img {
    height: 390px;
  }

  .section {
    padding: 78px 0;
  }

  .mondulkiri-section {
    padding: 78px 20px;
  }
}

@media (max-width: 560px) {
  .certification-card {
    padding: 24px;
    border-radius: 24px;
  }
}

/* =========================================================
   About Page
========================================================= */

.page-hero {
  width: min(var(--container), calc(100% - 40px));
  min-height: 86svh;
  margin: auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 70px;
  padding: 140px 0 80px;
}

.page-hero-copy h1 {
  color: var(--deep);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 8vw, 7.6rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.page-hero-copy p:last-child {
  max-width: 610px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.page-hero-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.about-story {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 70px;
}

.about-story-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 36px;
}

.about-story-copy h2 {
  margin-bottom: 24px;
  color: var(--deep);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.about-story-copy p {
  color: var(--muted);
  line-height: 1.85;
}

.about-story-copy p + p {
  margin-top: 16px;
}

.values-section {
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.value-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 85% 10%, rgba(176, 139, 87, 0.1), transparent 34%),
    var(--white);
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
}

.value-card span {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
}

.value-card h3 {
  margin: 18px 0 12px;
  color: var(--deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.value-card p {
  color: var(--muted);
  line-height: 1.75;
}

.about-cta {
  padding: 110px 20px;
  background: var(--deep);
  color: var(--white);
  text-align: center;
}

.about-cta-inner {
  max-width: 780px;
  margin: auto;
}

.about-cta .eyebrow,
.about-cta h2 {
  color: var(--white);
}

.about-cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.about-cta p {
  max-width: 620px;
  margin: 20px auto 30px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.85;
}

/* About Responsive */
@media (max-width: 900px) {
  .page-hero,
  .about-story {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .page-hero {
    padding-top: 120px;
  }

  .page-hero-copy p:last-child {
    margin-left: auto;
    margin-right: auto;
  }

  .page-hero-image img,
  .about-story-image img {
    height: 430px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .page-hero-copy h1 {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .page-hero-image img,
  .about-story-image img {
    height: 340px;
    border-radius: 26px;
  }
}
/* =========================================================
   Products Page
========================================================= */

.product-page-hero {
  min-height: 86svh;
}

.product-intro-strip {
  width: min(var(--container), calc(100% - 40px));
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-intro-strip div {
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.product-intro-strip div:last-child {
  border-right: 0;
}

.product-intro-strip strong,
.product-intro-strip span {
  display: block;
}

.product-intro-strip strong {
  color: var(--deep);
  font-size: 1rem;
  font-weight: 800;
}

.product-intro-strip span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.product-catalog-section {
  padding-top: 90px;
}

/* =========================================================
   Compact Premium Product Catalog Grid
========================================================= */

.product-showcase {
  position: relative;
  margin-top: 46px;
}

.product-showcase-controls {
  position: absolute;
  top: -86px;
  right: 0;
  display: flex;
  gap: 12px;
}

.product-carousel-btn {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(47, 93, 80, 0.2);
  border-radius: 50%;
  background: var(--white);
  color: var(--deep);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(24, 57, 42, 0.09);
  transition: 0.3s ease;
}

.product-carousel-btn:hover {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.premium-product-list {
  display: flex;
  align-items: stretch;
  gap: 26px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 2px 24px;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(47, 93, 80, 0.28) transparent;
}

.premium-product-list::-webkit-scrollbar {
  height: 8px;
}

.premium-product-list::-webkit-scrollbar-track {
  background: transparent;
}

.premium-product-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(47, 93, 80, 0.26);
}

.catalog-product,
.catalog-product:nth-child(even) {
  flex: 0 0 clamp(310px, 31vw, 405px);
  min-height: 100%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(24, 57, 42, 0.08);
  scroll-snap-align: start;
  transition: 0.3s ease;
}

.catalog-product:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(24, 57, 42, 0.13);
}

.catalog-product:nth-child(even) .catalog-product-image {
  order: initial;
}

.catalog-product-image {
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background:
    radial-gradient(circle at center, rgba(47, 93, 80, 0.055), transparent 62%),
    var(--soft);
}

.catalog-product-image img {
  width: auto;
  max-width: 96%;
  max-height: 320px;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.catalog-product:hover .catalog-product-image img {
  transform: scale(1.06);
}

.catalog-product-content {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px;
}

.catalog-product-content h3 {
  margin: 10px 0 16px;
  color: var(--deep);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 2.6vw, 2.7rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.catalog-product-content p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.product-price {
  margin: 18px 0 24px;
}

.product-price-label {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-price-value {
  display: block;
  margin-top: 6px;
  color: var(--deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.product-price-value::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: 10px;
  background: var(--gold);
}

.product-detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  margin-bottom: 28px;
}

.product-detail-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(47, 93, 80, 0.08);
  color: var(--deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.product-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 24px;
  align-self: flex-start;
  color: var(--green);
  font-weight: 800;
}

/* Product Carousel Responsive */
@media (max-width: 1100px) {
  .catalog-product,
  .catalog-product:nth-child(even) {
    flex-basis: clamp(300px, 46vw, 380px);
  }
}

@media (max-width: 680px) {
  .product-showcase-controls {
    display: none;
  }

  .premium-product-list {
    gap: 18px;
    margin-inline: -20px;
    padding-inline: 20px;
    scroll-padding-inline: 20px;
  }

  .catalog-product,
  .catalog-product:nth-child(even) {
    flex-basis: min(84vw, 340px);
  }

  .catalog-product-image {
    height: 330px;
  }

  .catalog-product-image img {
    max-height: 300px;
  }

  .catalog-product-content {
    padding: 24px;
  }

  .catalog-product-content h3 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }
}

.packaging-section {
  background: var(--ivory);
}

.packaging-inner {
  padding-top: 110px;
  padding-bottom: 110px;
}

.packaging-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.packaging-card {
  padding: 34px;
  border: 1px solid rgba(47, 93, 80, 0.12);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.packaging-card:hover {
  transform: translateY(-8px);
}

.packaging-card span {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
}

.packaging-card h3 {
  margin: 18px 0 12px;
  color: var(--deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.packaging-card p {
  color: var(--muted);
  line-height: 1.75;
}

.product-quality-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 70px;
}

.quality-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.quality-copy h2 {
  margin-bottom: 24px;
  color: var(--deep);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.quality-copy p {
  color: var(--muted);
  line-height: 1.85;
}

.quality-points {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.quality-points div {
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  border-radius: 18px;
  background: var(--ivory);
}

.quality-points strong,
.quality-points span {
  display: block;
}

.quality-points strong {
  color: var(--deep);
  font-weight: 800;
}

.quality-points span {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.65;
}

/* Products Responsive */
@media (max-width: 900px) {
  .product-intro-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .product-intro-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: center;
  }

  .product-intro-strip div:last-child {
    border-bottom: 0;
  }

  .product-quality-section {
    grid-template-columns: 1fr;
  }

  .packaging-grid {
    grid-template-columns: 1fr;
  }

  .quality-image img {
    height: 420px;
  }
}

@media (max-width: 560px) {
  .catalog-product {
    border-radius: 26px;
  }

  .catalog-product-content {
    padding: 28px;
  }

  .catalog-product-content h3 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  .quality-image img {
    height: 340px;
    border-radius: 26px;
  }
}

/* =========================================================
   Contact Page
========================================================= */

.contact-page-hero {
  min-height: 86svh;
}

.contact-overview {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 40px));
  margin: -34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-overview div {
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.contact-overview div:last-child {
  border-right: 0;
}

.contact-overview strong,
.contact-overview span {
  display: block;
}

.contact-overview strong {
  color: var(--deep);
  font-size: 1rem;
  font-weight: 800;
}

.contact-overview span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.contact-page-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
  gap: 70px;
  padding-top: 90px;
}

.contact-page-copy h2 {
  margin-bottom: 24px;
  color: var(--deep);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.contact-page-copy p {
  color: var(--muted);
  line-height: 1.85;
}

.contact-info-cards {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.contact-info-cards article {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(24, 57, 42, 0.07);
}

.contact-info-cards span {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
}

.contact-info-cards h3 {
  margin: 8px 0 8px;
  color: var(--deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 1;
}

.contact-info-cards a,
.contact-info-cards p {
  color: var(--muted);
  line-height: 1.65;
}

.contact-info-cards a {
  display: block;
}

.contact-page-form {
  position: sticky;
  top: 112px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-note {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.contact-map-section {
  background: var(--ivory);
}

.contact-map-inner {
  padding-top: 110px;
  padding-bottom: 110px;
}

.contact-map-inner .section-heading {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.map-card {
  overflow: hidden;
  margin-top: 42px;
  border: 1px solid rgba(47, 93, 80, 0.12);
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

/* Contact Responsive */
@media (max-width: 900px) {
  .contact-overview,
  .contact-page-section {
    grid-template-columns: 1fr;
  }

  .contact-overview {
    margin-top: 0;
  }

  .contact-overview div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: center;
  }

  .contact-overview div:last-child {
    border-bottom: 0;
  }

  .contact-page-section {
    gap: 36px;
    padding-top: 78px;
  }

  .contact-page-copy {
    text-align: center;
  }

  .contact-page-form {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Real Google Map + Location Highlight
========================================================= */

.location-highlight {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.location-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(176, 139, 87, 0.12);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-highlight h3 {
  margin-bottom: 14px;
  color: var(--deep);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.location-highlight p {
  color: var(--muted);
  line-height: 1.8;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: 0;
}

@media (max-width: 680px) {
  .map-card iframe {
    height: 420px;
  }
}

/* Contact Hero Title */

.contact-page-hero .page-hero-copy h1 {
  font-size: clamp(3.2rem, 5vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}
