/* ═══════════════════════════════════════════
   ASR PACKAGING — Global Stylesheet
   Clean. Classy. Authentic.
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ─── Reset & Base ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: #FDFBF7;
  color: #1A1A1A;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
button { font-family: inherit; cursor: pointer; }
::selection { background: #C8A87C; color: #fff; }
input::placeholder, textarea::placeholder { color: rgba(139,115,85,0.4); }

/* ─── Typography ─── */
.font-serif { font-family: 'Cormorant Garamond', Georgia, serif; }
.font-sans { font-family: 'DM Sans', -apple-system, sans-serif; }

/* ─── Layout ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* ─── Navigation (TALLER & BOLDER) ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 0 clamp(20px, 4vw, 60px);
}
.nav--scrolled {
  background: rgba(253,251,247,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139,115,85,0.08);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
.nav__logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s;
}
.nav__logo-img--dark { display: none; }
.nav__logo-img--light { display: block; }
.nav__logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #6B5B4A;
  background: none;
  border: none;
  padding: 8px 0;
  transition: color 0.2s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #C6922A;
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav__link:hover::after, .nav__link--active::after {
  transform: scaleX(1);
}
.nav__link:hover, .nav__link--active {
  color: #1A1A1A;
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav__icon {
  background: none;
  border: none;
  padding: 8px;
  color: #6B5B4A;
  transition: color 0.2s;
}
.nav__icon:hover { color: #1A1A1A; }

/* Hero nav overrides */
.nav--hero .nav__link { color: rgba(245,240,232,0.7); }
.nav--hero .nav__link:hover, .nav--hero .nav__link--active { color: #F5F0E8; }
.nav--hero .nav__link::after { background: #D4A853; }
.nav--hero .nav__icon { color: rgba(245,240,232,0.7); }
.nav--hero .nav__icon:hover { color: #F5F0E8; }
.nav--hero .nav__logo { color: #F5F0E8; }
.nav--hero .nav__logo-img--dark { display: block; }
.nav--hero .nav__logo-img--light { display: none; }
.nav--hero.nav--scrolled .nav__link { color: #6B5B4A; }
.nav--hero.nav--scrolled .nav__link:hover, .nav--hero.nav--scrolled .nav__link--active { color: #1A1A1A; }
.nav--hero.nav--scrolled .nav__link::after { background: #C6922A; }
.nav--hero.nav--scrolled .nav__icon { color: #6B5B4A; }
.nav--hero.nav--scrolled .nav__logo { color: #1A1A1A; }
.nav--hero.nav--scrolled .nav__logo-img--dark { display: none; }
.nav--hero.nav--scrolled .nav__logo-img--light { display: block; }

/* Mobile menu */
.nav__hamburger {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  color: inherit;
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(253,251,247,0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 24px 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-overlay--open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-overlay__close {
  align-self: flex-end;
  background: none;
  border: none;
  padding: 8px;
  color: #1A1A1A;
}
.mobile-overlay__links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  list-style: none;
}
.mobile-overlay__link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: #1A1A1A;
}
.mobile-overlay__link:hover { color: #8B7355; }

/* ─── Hero Section ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #2C1F14 0%, #4A3728 35%, #6B5240 65%, #8B6914 100%);
}
.hero__glow {
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 120%;
  background: radial-gradient(ellipse, rgba(200,168,124,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.hero__glow2 {
  position: absolute;
  bottom: -30%; left: -10%;
  width: 50%; height: 80%;
  background: radial-gradient(ellipse, rgba(200,168,124,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero__grid {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 140px clamp(24px,4vw,60px) 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.hero__label span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
}
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.08;
  color: #F5F0E8;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
}
.hero__desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(245,240,232,0.65);
  max-width: 420px;
  margin-bottom: 36px;
}
.hero__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero__image img {
  max-width: 480px;
  width: 100%;
  border-radius: 8px;
  filter: brightness(1.05);
  position: relative;
  z-index: 1;
}
.hero__image-ring {
  position: absolute;
  border: 1px solid rgba(245,240,232,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,240,232,0.35);
}
.hero__scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(245,240,232,0.35), transparent);
  animation: pulse 2s infinite;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 32px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn--primary {
  background: #F5F0E8;
  color: #1A1A1A;
}
.btn--primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn--outline {
  background: transparent;
  color: #F5F0E8;
  border: 1px solid rgba(245,240,232,0.3);
}
.btn--outline:hover {
  border-color: rgba(245,240,232,0.7);
}
.btn--dark {
  background: #1A1A1A;
  color: #F5F0E8;
}
.btn--dark:hover {
  background: #333;
  transform: translateY(-1px);
}
.btn--outline-dark {
  background: transparent;
  color: #1A1A1A;
  border: 1px solid #1A1A1A;
}
.btn--outline-dark:hover {
  background: #1A1A1A;
  color: #F5F0E8;
}
.btn--gold {
  background: #C6922A;
  color: #fff;
}
.btn--gold:hover {
  background: #B8860B;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(198,146,42,0.25);
}

/* ─── Section Utilities ─── */
.section {
  padding: 88px 0;
  position: relative;
}
.section--cream { background: #F5F0E8; }
.section--white { background: #FDFBF7; }
.section--dark { background: #1A1A1A; color: #F5F0E8; overflow: hidden; }
.section--accent { background: #F0EBE1; }
.section--rich {
  background: linear-gradient(145deg, #2C1F14 0%, #4A3728 40%, #8B6914 100%);
  color: #F5F0E8;
  overflow: hidden;
}

.section__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8B7355;
  display: block;
  margin-bottom: 8px;
}
.section--dark .section__label { color: rgba(245,240,232,0.4); }
.section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.15;
}
.section--dark .section__title { color: #F5F0E8; }
.section__title em { font-style: italic; }
.section__subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: #8B7355;
  max-width: 500px;
}

.section-intro { text-align: center; margin-bottom: 36px; }
.section-intro--left { text-align: left; }

/* ─── Gold Line Accent ─── */
.gold-line {
  width: 40px;
  height: 3px;
  background: #C6922A;
  margin-bottom: 14px;
}
.gold-line--center { margin-left: auto; margin-right: auto; }

/* ─── Trust Bar ─── */
.trust-bar {
  background: #F0EBE1;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}
.trust-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px,4vw,60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-item__icon {
  width: 20px;
  height: 20px;
  color: #C6922A;
  flex-shrink: 0;
}
.trust-item__text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #4A3F33;
}

/* ─── Features Section ─── */
.features-image {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 4px;
}

/* ─── Features Bar ─── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.feature__icon {
  color: #8B7355;
  width: 48px;
  height: 48px;
}
.feature__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  color: #1A1A1A;
}
.feature__desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: #8B7355;
  max-width: 260px;
}

/* ─── Comparison ─── */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: 6px;
  overflow: hidden;
}
.comparison__side {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}
.comparison__side--old { background: #EAEAEA; }
.comparison__side--new {
  background: linear-gradient(145deg, #4A3728, #8B6914);
  color: #F5F0E8;
}
.comparison__image-wrap {
  width: 100%;
  max-width: 380px;
  height: 220px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
}
.comparison__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comparison__tag {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.comparison__side--old .comparison__tag { color: #999; }
.comparison__side--new .comparison__tag { color: rgba(245,240,232,0.5); }
.comparison__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}
.comparison__text {
  font-size: 13px;
  line-height: 1.65;
  max-width: 280px;
}
.comparison__side--old .comparison__text { color: #888; }
.comparison__side--new .comparison__text { color: rgba(245,240,232,0.6); }

/* ─── How It Works Section ─── */
.how-it-works-fullbleed {
  background: #fff;
  padding: 60px 80px;
}
.how-it-works-fullbleed img {
  display: block;
  max-width: 1000px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .how-it-works-fullbleed {
    padding: 40px 24px;
  }
}
/* ─── Products Grid ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.product-card {
  background: #F5F0E8;
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
}
.product-card__image {
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.product-card__image img {
  max-height: 240px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 4px;
}
.product-card__info {
  padding: 22px 28px 28px;
  border-top: 1px solid rgba(139,115,85,0.08);
}
.product-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: #1A1A1A;
  margin-bottom: 3px;
}
.product-card__subtitle {
  font-size: 13px;
  color: #8B7355;
  display: block;
}
.product-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}
.product-card__price {
  font-size: 18px;
  font-weight: 600;
  color: #1A1A1A;
}
.product-card__cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #C6922A;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ─── Product Detail ─── */
.product-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.product-detail__gallery {
  background: #F5F0E8;
  padding: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.product-detail__gallery img {
  max-width: 100%;
  max-height: 380px;
  width: auto;
  border-radius: 4px;
}
.product-detail__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  color: #1A1A1A;
  line-height: 1.2;
  margin-bottom: 8px;
}
.product-detail__price {
  font-size: 22px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 28px;
}
.size-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8B7355;
  margin-bottom: 10px;
}
.sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.size-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 11px 18px;
  border: 1px solid rgba(26,26,26,0.18);
  background: transparent;
  color: #1A1A1A;
  cursor: pointer;
  transition: all 0.2s;
}
.size-btn:hover { border-color: #1A1A1A; }
.size-btn--active {
  background: #1A1A1A;
  color: #F5F0E8;
  border-color: #1A1A1A;
}

.qty-cart {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
}
.qty {
  display: flex;
  align-items: center;
  border: 1px solid rgba(26,26,26,0.18);
}
.qty__btn {
  background: none;
  border: none;
  padding: 12px 14px;
  color: #1A1A1A;
  cursor: pointer;
  font-size: 16px;
}
.qty__val {
  font-size: 15px;
  min-width: 32px;
  text-align: center;
}
.cart-btn {
  flex: 1;
}

.specs {
  border-top: 1px solid rgba(139,115,85,0.12);
  padding-top: 24px;
}
.specs__title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 14px;
}
.specs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.specs__item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
  font-size: 14px;
  color: #5C4332;
}
.specs__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #C8A87C;
  flex-shrink: 0;
}

/* ─── Badge ─── */
.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}
.badge--gold {
  background: rgba(198,146,42,0.12);
  color: #B8860B;
}

/* ─── Breadcrumb ─── */
.breadcrumb {
  font-size: 13px;
  color: #8B7355;
  margin-bottom: 36px;
}
.breadcrumb a { color: #8B7355; }
.breadcrumb a:hover { color: #1A1A1A; }
.breadcrumb__sep { margin: 0 8px; opacity: 0.4; }

/* ─── Page Header ─── */
.page-header {
  padding-top: 88px;
  background: #F5F0E8;
  position: relative;
  overflow: hidden;
}
.page-header__content {
  position: relative;
  z-index: 1;
  padding: 72px 0 56px;
}

/* ─── Two Column Layout ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.two-col--wide-left {
  grid-template-columns: 1.3fr 0.7fr;
}

/* ─── Why Page Sections ─── */
.why-section__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: rgba(139,115,85,0.08);
  line-height: 1;
}
.why-section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  color: #1A1A1A;
  margin-top: -12px;
  margin-bottom: 18px;
}
.why-section__title em { font-style: italic; }
.why-section__text {
  font-size: 15px;
  line-height: 1.8;
  color: #5C4332;
  margin-bottom: 18px;
}
.why-section__callout {
  border-left: 3px solid #C8A87C;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.75;
  color: #8B7355;
  font-style: italic;
}
.why-section__visual {
  display: flex;
  justify-content: center;
  flex: 1 1 auto;
}
.why-section__visual-box {
  width: 100%;
  max-width: 520px;
  min-height: 380px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(200,168,124,0.15), rgba(200,168,124,0.05));
  border: 1px solid rgba(200,168,124,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.why-section__visual-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Vignette overlay for images */
.img-vignette { position: relative; }
.img-vignette--white::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 40px rgba(253,251,247,0.3);
  pointer-events: none;
}
.img-vignette--cream::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 40px rgba(245,240,232,0.3);
  pointer-events: none;
}

/* ─── About Page ─── */
.about__prose {
  font-size: 16px;
  line-height: 1.9;
  color: #5C4332;
  margin-bottom: 22px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  padding: 28px;
  background: #F5F0E8;
  border-top: 3px solid #C8A87C;
}
.section--cream .value-card { background: #FDFBF7; }
.value-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 500;
  color: #1A1A1A;
  margin-bottom: 10px;
}
.value-card__desc {
  font-size: 14px;
  line-height: 1.75;
  color: #8B7355;
}

/* ─── Team Grid ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  text-align: center;
  padding: 28px 16px;
  background: #FDFBF7;
  border: 1px solid rgba(139,115,85,0.08);
}
.team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C6922A, #8B7355);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
}
.team-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: #1A1A1A;
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 12px;
  color: #8B7355;
  letter-spacing: 0.02em;
}

/* ─── Contact Info Block ─── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.contact-block__title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8B7355;
  margin-bottom: 14px;
}
.contact-block__item {
  font-size: 14px;
  line-height: 1.75;
  color: #5C4332;
  margin-bottom: 4px;
}
.contact-block__item a {
  color: #5C4332;
  border-bottom: 1px solid rgba(92,67,50,0.2);
  transition: border-color 0.2s;
}
.contact-block__item a:hover { border-color: #5C4332; }

/* ─── Stats Row ─── */
.stats-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.stat { text-align: center; min-width: 140px; }
.stat__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.2;
}
.stat__label {
  font-size: 12px;
  color: #8B7355;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── Proof Badge ─── */
.proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  opacity: 0.7;
}
.proof-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}

/* ─── Highlight Card ─── */
.highlight-card {
  padding: 28px;
  background: #FDFBF7;
  border: 1px solid rgba(139,115,85,0.08);
}
.section--cream .highlight-card { background: #FDFBF7; }
.highlight-card__icon {
  width: 36px;
  height: 36px;
  color: #C6922A;
  margin-bottom: 14px;
}
.highlight-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 500;
  color: #1A1A1A;
  margin-bottom: 8px;
}
.highlight-card__text {
  font-size: 13.5px;
  line-height: 1.7;
  color: #8B7355;
}

.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: rgba(139,115,85,0.15);
  margin-bottom: 8px;
}

/* ─── Form ─── */
.detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: start;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8B7355;
  margin-bottom: 8px;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  border: 1px solid rgba(139,115,85,0.18);
  background: #FDFBF7;
  color: #1A1A1A;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: #C8A87C;
}
.form-textarea { resize: vertical; }
select.form-input { cursor: pointer; }

/* Form Success */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 0;
}
.form-success__icon {
  width: 56px;
  height: 56px;
  color: #C6922A;
  margin: 0 auto 16px;
}
.form-success__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: #1A1A1A;
  margin-bottom: 10px;
}
.form-success__text {
  font-size: 15px;
  color: #8B7355;
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto;
}

/* ─── Sidebar Card ─── */
.sidebar-card {
  padding: 24px;
  border: 1px solid rgba(139,115,85,0.08);
  background: #FDFBF7;
  margin-bottom: 16px;
}
.sidebar-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 500;
  color: #1A1A1A;
  margin-bottom: 12px;
}

/* ─── Testimonial ─── */
.testimonial {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.testimonial__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.7;
  color: #3D3427;
  font-style: italic;
  margin-bottom: 18px;
}
.testimonial__author {
  font-size: 14px;
  font-weight: 600;
  color: #1A1A1A;
}
.testimonial__role {
  font-size: 13px;
  color: #8B7355;
}

/* ─── CTA Section ─── */
.cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  line-height: 1.4;
  max-width: 580px;
  margin: 0 auto 28px;
}
.cta__text em { font-style: italic; }
.cta__sub {
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 32px;
  opacity: 0.6;
}

/* ─── Honeycomb Pattern Background ─── */
.hc-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='56' height='100' viewBox='0 0 56 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 66L0 50V16L28 0l28 16v34L28 66zm0-34l28 16v34L28 100 0 84V50l28-16z' fill='none' stroke='%238B7355' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 28px 50px;
}
.hc-pattern--light { opacity: 0.03; }
.hc-pattern--dark {
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='56' height='100' viewBox='0 0 56 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 66L0 50V16L28 0l28 16v34L28 66zm0-34l28 16v34L28 100 0 84V50l28-16z' fill='none' stroke='%23F5F0E8' stroke-width='1'/%3E%3C/svg%3E");
}

/* ─── Grain Overlay ─── */
.grain::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ─── Floating Hexagons ─── */
.hc-float {
  position: absolute;
  pointer-events: none;
  opacity: 0.04;
  z-index: 0;
}
.hc-float svg { width: 100%; height: 100%; }
.hc-float--gold { color: #C6922A; opacity: 0.08; }
.hc-float--1 { width: 200px; height: 200px; top: 5%; right: 8%; animation: floatHex 12s ease-in-out infinite; }
.hc-float--2 { width: 120px; height: 120px; bottom: 15%; left: 5%; animation: floatHex 15s ease-in-out infinite reverse; }
.hc-float--3 { width: 160px; height: 160px; top: 20%; left: -3%; animation: floatHex 18s ease-in-out infinite; }

@keyframes floatHex {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}

/* ─── Footer ─── */
.footer {
  background: #1A1A1A;
  color: #F5F0E8;
  position: relative;
  overflow: hidden;
}
.footer__marquee {
  border-bottom: 1px solid rgba(245,240,232,0.08);
  overflow: hidden;
  padding: 12px 0;
}
.footer__marquee-inner {
  display: flex;
  gap: 40px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.footer__marquee-text {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.35;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  padding: 56px 0 36px;
  position: relative;
  z-index: 1;
}
.footer__heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.35;
  margin-bottom: 16px;
}
.footer__desc {
  font-size: 13.5px;
  line-height: 1.7;
  opacity: 0.55;
  max-width: 260px;
}
.footer__link {
  display: block;
  font-size: 13.5px;
  opacity: 0.55;
  margin-bottom: 10px;
  transition: opacity 0.2s;
}
.footer__link:hover { opacity: 1; }
.footer__email-row {
  display: flex;
  border-bottom: 1px solid rgba(245,240,232,0.2);
  padding-bottom: 6px;
  margin-top: 12px;
}
.footer__email-input {
  flex: 1;
  background: none;
  border: none;
  color: #F5F0E8;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
}
.footer__email-btn {
  background: none;
  border: none;
  color: #F5F0E8;
  opacity: 0.6;
  cursor: pointer;
  padding: 4px 0;
}
.footer__email-btn:hover { opacity: 1; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(245,240,232,0.08);
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 12px;
  opacity: 0.35;
  position: relative;
  z-index: 1;
}
.footer__logo-img {
  height: 64px;
  width: auto;
  margin-bottom: 12px;
}

/* ─── VS Comparison Section ─── */
.vs-section { overflow: hidden; }
.vs-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 24px;
  align-items: start;
}
.vs-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.vs-card--winner {
  background: linear-gradient(155deg, #2d2010, #4a3220);
  border-color: rgba(196,160,88,0.3);
  box-shadow: 0 0 0 1px rgba(196,160,88,0.15), 0 20px 60px rgba(0,0,0,0.4);
}
.vs-card--loser {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.06);
}
.vs-card__image-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.vs-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85);
}
.vs-card--winner .vs-card__image-wrap img { filter: brightness(0.9); }
.vs-card__badge {
  position: absolute;
  bottom: 12px;
  left: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.vs-card__badge--gold {
  background: #C6922A;
  color: #fff;
}
.vs-card__badge--grey {
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.5);
}
.vs-card__body {
  padding: 24px 28px 28px;
}
.vs-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #F5F0E8;
}
.vs-card--loser .vs-card__title { color: rgba(245,240,232,0.45); }
.vs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14px;
  line-height: 1.4;
}
.vs-list--good { color: rgba(245,240,232,0.85); }
.vs-list--bad { color: rgba(245,240,232,0.35); }
.vs-tick {
  color: #C6922A;
  font-weight: 700;
  margin-right: 8px;
}
.vs-cross {
  color: rgba(255,255,255,0.2);
  margin-right: 8px;
}
.vs-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 130px;
}
.vs-divider__line {
  width: 1px;
  flex: 1;
  min-height: 80px;
  background: rgba(255,255,255,0.1);
}
.vs-divider__badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(198,146,42,0.15);
  border: 1px solid rgba(198,146,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #C6922A;
  flex-shrink: 0;
  margin: 12px 0;
}
@media (max-width: 700px) {
  .vs-grid { grid-template-columns: 1fr; gap: 16px; }
  .vs-divider { flex-direction: row; padding-top: 0; }
  .vs-divider__line { width: 80px; height: 1px; min-height: unset; }
}

/* ─── Animations ─── */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.8; }
}
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }
.fade-up.d4 { transition-delay: 0.4s; }
.fade-up.d5 { transition-delay: 0.5s; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .nav__inner { height: 72px; }
  .nav__logo-img { height: 72px; }
  .hero__grid { grid-template-columns: 1fr; text-align: left; }
  .hero__image { display: none; }
  .features { grid-template-columns: 1fr; gap: 36px; }
  .comparison { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 20px; }
  .products-grid { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr !important; }
  .two-col, .two-col--wide-left { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav__links { display: none; }
  .nav__hamburger { display: block; }
  .page-header { padding-top: 72px; }
  .hero__grid { padding-top: 120px; }
  .highlight-card-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .team-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; gap: 16px; }
}
/* ─── Benefit Cards (Why Honeycomb) ─── */
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
  background: linear-gradient(145deg, #FDFBF7 0%, #F5F0E8 100%);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(198,146,42,0.15);
  box-shadow: 
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 8px 40px rgba(139,115,85,0.08);
}
.benefit-card {
  padding: 48px 28px 44px;
  text-align: center;
  border-right: 1px solid rgba(198,146,42,0.12);
  transition: all 0.35s ease;
  position: relative;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C6922A, transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.benefit-card:last-child {
  border-right: none;
}
.benefit-card:hover {
  background: rgba(198,146,42,0.04);
}
.benefit-card:hover::before {
  opacity: 1;
}
.benefit-card__stat {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  color: #1A1A1A;
  letter-spacing: -0.02em;
}
.benefit-card__sup {
  font-size: 28px;
  font-weight: 400;
  vertical-align: super;
  line-height: 0;
  color: #C6922A;
}
.benefit-card__divider {
  width: 24px;
  height: 2px;
  background: #C6922A;
  margin: 18px auto;
  border-radius: 1px;
}
.benefit-card__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8B7355;
  margin-bottom: 10px;
}
.benefit-card__text {
  font-size: 13px;
  line-height: 1.7;
  color: #6B5B4A;
  margin: 0;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
.benefit-cards__cta {
  text-align: center;
  margin-top: 28px;
}
.benefit-cards__link {
  font-size: 11px;
  color: #C6922A;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}
.benefit-cards__link:hover { 
  color: #A67B1A;
  gap: 10px;
}

@media (max-width: 900px) {
  .benefit-cards { grid-template-columns: repeat(2, 1fr); }
  .benefit-card { 
    border-right: 1px solid rgba(198,146,42,0.12); 
    border-bottom: 1px solid rgba(198,146,42,0.12); 
  }
  .benefit-card:nth-child(2n) { border-right: none; }
  .benefit-card:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 480px) {
  .benefit-cards { grid-template-columns: 1fr; }
  .benefit-card { 
    border-right: none; 
    border-bottom: 1px solid rgba(198,146,42,0.12);
    padding: 36px 24px;
  }
  .benefit-card:last-child { border-bottom: none; }
  .benefit-card__stat { font-size: 48px; }
}