/* ============================================================
   FY Bedding -- Mason & Fifth Inspired Design System v27
   Warm neutrals - Cormorant Garamond + Inter - Pill motif
   Design Polish — micro-interactions, a11y, typography, mobile
   ============================================================ */

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; text-rendering: optimizeLegibility; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", sans-serif;
  background: #F7F3EF;
  color: #2C2416;
  overflow-x: hidden; /* announce(32) + nav(70) */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }

/* ── Skip to Content (a11y) ────────────────────────── */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--dark); color: #fff; padding: 10px 20px;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 9999; font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600; text-decoration: none;
  transition: top 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.skip-link:focus { top: 0; }

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:       #F4F1EA;
  --bg-warm:  #C8BEAC;
  --bg-dark:  #B8AE9C;
  --white:    #FFFFFF;
  --off-white:#FDFCFA;

  --text:     #59240C;
  --text-mid: #7D4A29;
  --muted:    #9D6238;

  --clay:     #B29F88;
  --clay-dark:#9D6238;
  --clay-light:#DFD7CB;
  --terracotta:#7D4A29;

  --gold:     #9D6238;
  --gold-dark:#7D4A29;
  --gold-light:#C8BEAC;
  --dark:     #7D4A29;
  --dark-alt: #59240C;

  --border:   #D5CFC4;
  --border-light: #E8E2D7;
  --radius:   6px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --radius-xl: 14px;
  --radius-2xl: 18px;
  --radius-pill: 100px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --trans-fast: 0.15s;
  --trans-base: 0.25s;
  --trans-slow: 0.35s;
}

/* ============================================================
   CSS Variable Aliases - bridge between Tailwind-style names
   and Mason & Fifth v4 token names
   ============================================================ */
:root {
  --background:       #F4F1EA;
  --text-primary:     #59240C;
  --text-secondary:   #7D4A29;
  --card:             #FFFFFF;
  --card-hover:       #FDFCFA;
  --accent:           #9D6238;
  --brand-primary:    #3D2A1C;
}


/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.t-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.t-h1 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(48px, 5.5vw, 80px); font-weight: 300;
  line-height: 1.08; color: var(--dark); letter-spacing: -0.02em;
  text-rendering: optimizeLegibility;
}
.t-h2 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(36px, 4vw, 56px); font-weight: 400;
  line-height: 1.15; color: var(--dark); letter-spacing: -0.015em;
  text-rendering: optimizeLegibility;
}
.t-h3 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(24px, 2.5vw, 32px); font-weight: 400;
  line-height: 1.2; color: var(--dark); letter-spacing: -0.01em;
  text-rendering: optimizeLegibility;
}
.t-body {
  font-family: 'Inter', sans-serif;
  font-size: 15px; line-height: 1.7; color: var(--text-mid); font-weight: 400;
}
em { color: var(--gold); font-weight: 400; }
strong { font-weight: 600; }

/* ── ANNOUNCEMENT BAR ───────────────────────────────────── */
.announce-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--dark); padding: 6px 24px;
  display: flex; align-items: center; justify-content: center; gap: 48px;
  font-size: 11px; color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em; font-weight: 500;
  font-family: 'Inter', sans-serif;
}
.announce-bar span { display: flex; align-items: center; gap: 6px; }
.announce-bar strong { color: var(--gold-light); font-weight: 600; }




/* ═══════════════════════════════════════════════════════════
   MEGAMENU NAVIGATION v5 - Apple/IKEA inspired
   Full-width card-based dropdown with category images
   ═══════════════════════════════════════════════════════════ */

/* Megamenu wrapper - override nav-dropdown relative positioning */
.nav-dropdown.nav-mega-wrap { position: static !important; }

/* Megamenu trigger link */
.nav-mega-trigger {
  display: inline-flex; align-items: center; gap: 4px;
}

/* Full-width megamenu panel */
.nav-megamenu {
  max-height: 80vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-bottom: 1px solid #E8E0D6;
  box-shadow: 0 24px 64px rgba(61,42,28,0.10), 0 8px 20px rgba(0,0,0,0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0);
  transition: opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0s linear 0.25s;
  z-index: 199;
  pointer-events: none;
}
.nav-mega-wrap:hover .nav-megamenu,
.nav-mega-wrap.hover .nav-megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0s linear 0s;
  pointer-events: auto;
}

/* Megamenu inner container */
.nav-megamenu-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 48px 32px;
}

/* Megamenu header row */
.nav-megamenu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid #F4F1EA;
}
.nav-megamenu-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9D6238;
}
.nav-megamenu-viewall {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #59240C;
  text-decoration: none;
  transition: color 0.15s, gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-megamenu-viewall:hover {
  color: #9D6238;
  gap: 8px;
}

/* Megamenu grid - 4 columns */
.nav-megamenu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Megamenu column */
.nav-megamenu-col {
  display: flex;
  flex-direction: column;
}

/* Megamenu card (image + title) */
.nav-megamenu-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  overflow: hidden;
  background: #FAF8F5;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease;
  margin-bottom: 14px;
}
.nav-megamenu-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61,42,28,0.10);
}
.nav-megamenu-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #C8BEAC;
}
.nav-megamenu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-megamenu-card:hover .nav-megamenu-card-img img {
  transform: scale(1.05);
}
.nav-megamenu-card-body {
  padding: 14px 16px;
}
.nav-megamenu-card-title {
  display: block;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 19px;
  font-weight: 500;
  color: #3D2A1C;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.nav-megamenu-card-count {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #9D6238;
  margin-top: 3px;
}

/* Megamenu subcategories list */
.nav-megamenu-subs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
}
.nav-megamenu-subs li a {
  display: block;
  padding: 5px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #6B5E53;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.12s, color 0.12s;
}
.nav-megamenu-subs li a:hover {
  background: #F4F1EA;
  color: #3D2A1C;
}

/* Megamenu explore link */
.nav-megamenu-explore {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #9D6238;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s, gap 0.2s;
  margin-top: auto;
}
.nav-megamenu-explore:hover {
  color: #3D2A1C;
  background: #F4F1EA;
  gap: 8px;
}

/* Hide megamenu on tablet/mobile */
@media (max-width: 1024px) {
  .nav-megamenu {
    display: none !important;
  }
}

/* ── Collections Pagination ───────────────── */
.collections-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  font-family: 'Inter', sans-serif;
}
.collections-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 500;
  color: #6B5E53;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.15s;
}
.collections-pagination a:hover {
  background: #F4F1EA;
  color: #3D2A1C;
}
.collections-pagination a.active {
  background: #3D2A1C;
  color: #FFFFFF;
  font-weight: 600;
}
.pagination-prev,
.pagination-next {
  font-weight: 600 !important;
  color: #59240C !important;
}
.pagination-pages {
  display: flex;
  gap: 4px;
}
.pagination-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  font-size: 14px;
  color: #9D6238;
  user-select: none;
}

/* ── Mobile Nav Section Headers ───────────── */
.mobile-nav-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0;
  border-top: 2px solid #F4F1EA;
  border-bottom: 2px solid #F4F1EA;
  margin: 8px 0;
}
.mobile-nav-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9D6238;
  padding: 4px 0;
  text-align: center;
}

/* ── Site Footer (compact v6 - enhanced hierarchy) ─── */
.site-footer {
  background: #3D2A1C;
  color: rgba(255,255,255,0.65);
  padding: 80px 48px 32px;
  font-family: 'Inter', sans-serif;
  position: relative;
}
/* Subtle top gradient accent */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    rgba(157,98,56,0.8) 0%,
    rgba(200,190,172,0.6) 50%,
    rgba(157,98,56,0.8) 100%
  );
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-col { display: flex; flex-direction: column; }
.footer-brand {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 26px;
  color: white;
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.footer-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  max-width: 260px;
}
.footer-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--trans-fast) var(--ease-smooth),
              padding-left var(--trans-fast) var(--ease-smooth);
  display: inline-block;
}
.footer-col ul li a:hover {
  color: rgba(255,255,255,0.8);
  padding-left: 4px;
}
.footer-contact {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  text-align: center;
  max-width: 1320px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .footer-col:first-child { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .site-footer { padding: 56px 24px 24px; }
  .footer-col:first-child { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .site-footer { padding: 48px 16px 20px; }
  .footer-brand { font-size: 20px; }
}

/* ── BUTTONS (Pill Motif) ───────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  border: none; transition: all var(--trans-base) var(--ease-smooth);
  text-decoration: none; font-weight: 600; font-family: 'Inter', sans-serif;
  user-select: none; -webkit-tap-highlight-color: transparent;
  min-height: 44px; /* a11y touch target */
}
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: var(--radius-pill);
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--gold); color: white; padding: 14px 32px;
  border-radius: var(--radius-pill); font-size: 14px; letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(157,98,56,0.15);
}
.btn-primary:hover {
  background: var(--gold-dark); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(157,98,56,0.3);
}
.btn-primary:active { transform: translateY(0) scale(0.97); box-shadow: 0 2px 8px rgba(157,98,56,0.15); }

.btn-gold {
  background: var(--gold); color: white; padding: 14px 32px;
  border-radius: var(--radius-pill); font-size: 14px; letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(157,98,56,0.15);
}
.btn-gold:hover {
  background: var(--gold-dark); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(157,98,56,0.3);
}
.btn-gold:active { transform: translateY(0) scale(0.97); box-shadow: 0 2px 8px rgba(157,98,56,0.15); }

.btn-outline {
  background: transparent; color: var(--gold-dark); padding: 13px 30px;
  border-radius: var(--radius-pill); font-size: 14px;
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: white; border-color: var(--gold); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(157,98,56,0.2); }
.btn-outline:active { transform: scale(0.97); }

.btn-ghost {
  background: transparent; color: var(--gold-dark); padding: 0;
  font-size: 14px; border: none;
}
.btn-ghost:hover { gap: 12px; }
.btn-ghost:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 4px; }

.btn-white {
  background: white; color: var(--gold-dark); padding: 14px 32px;
  border-radius: var(--radius-pill); font-size: 14px; font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(157,98,56,0.22);
}
.btn-white:active { transform: translateY(0) scale(0.97); box-shadow: 0 2px 8px rgba(0,0,0,0.04); }

.btn-glass {
  background: rgba(255,255,255,0.12); color: white; padding: 13px 28px;
  border-radius: var(--radius-pill); font-size: 14px;
  border: 1.5px solid rgba(255,255,255,0.2); cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: all var(--trans-base) var(--ease-smooth);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4);
  transform: translateY(-1px);
}
.btn-glass:active { transform: scale(0.97); }

/* ── SECTIONS ───────────────────────────────────────────── */
.section { padding: 128px 64px; }
.section-sm { padding: 88px 64px; }
.section-lg { padding: 152px 64px; }
.bg-white  { background: var(--white); }
.bg-cream  { background: var(--bg); }
.bg-cream2 { background: var(--bg-warm); }
.bg-linen  { background: var(--off-white); }
.bg-dark   { background: var(--dark); }
.bg-navy   { background: var(--dark-alt); }


/* ── PAGE HEADER ────────────────────────────────────────── */
.page-header {
  background: var(--dark); padding: 80px 64px; color: white;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(157,98,56,0.25) 0%, transparent 65%),
    linear-gradient(135deg, rgba(89,36,12,0.4) 0%, transparent 40%);
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 1px,
    rgba(255,255,255,0.3) 1px,
    rgba(255,255,255,0.3) 2px
  );
  pointer-events: none;
}
.page-header-content { position: relative; z-index: 2; max-width: 780px; }
.page-header .t-eyebrow { color: var(--gold-light); margin-bottom: 12px; }
.page-header h1 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(42px, 4.5vw, 64px); font-weight: 300;
  color: white; line-height: 1.05; margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.page-header h1 em { color: var(--gold-light); }
.page-header p {
  font-size: 16px; color: rgba(255,255,255,0.55);
  font-weight: 400; line-height: 1.75;
}

/* ── MARQUEE ────────────────────────────────────────────── */
.marquee-wrap { background: var(--dark); overflow: hidden; padding: 14px 0; }
.marquee-track { display: flex; animation: marqueeScroll 32s linear infinite; white-space: nowrap; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: inline-flex; align-items: center; gap: 0; padding: 0 32px;
  color: rgba(255,255,255,0.55); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.marquee-dot {
  margin: 0 16px; width: 3px; height: 3px; background: var(--gold);
  border-radius: 50%; display: inline-block; flex-shrink: 0;
}

/* ── CERTIFICATIONS ─────────────────────────────────────── */
.certs-strip { background: white; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); font-family: 'Inter', sans-serif; }
.certs-strip-inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.cert-badge { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-right: 1px solid var(--border-light); transition: background .2s; }
.cert-badge:last-child { border-right: none; }
.cert-badge:hover { background: var(--off-white); }
.cert-badge-icon { width:.200px; height:.80px; object-fit: contain; flex-shrink: 0; display: inline-block; }
.cert-badge-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--dark); }
.cert-badge-text span { font-size: 11px; color: var(--muted); }


/* ── SCROLL PROGRESS ────────────────────────────────────── */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; background: var(--gold); z-index: 300; transition: width .1s; pointer-events: none; }

/* ── BACK TO TOP ────────────────────────────────────────── */
.back-top {
  position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px;
  background: var(--dark); color: white; border: none;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; box-shadow: 0 4px 16px rgba(61,42,28,0.25);
  transition: opacity .3s, transform .3s cubic-bezier(.22,1,.36,1);
  opacity: 0; pointer-events: none; z-index: 90;
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { transform: translateY(-3px); }

/* ── REVEAL ─────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .75s ease,
              transform .75s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-l {
  opacity: 0; transform: translateX(-36px);
  transition: opacity .75s ease,
              transform .75s cubic-bezier(.22,1,.36,1);
}
.reveal-l.visible { opacity: 1; transform: translateX(0); }
.reveal-r {
  opacity: 0; transform: translateX(36px);
  transition: opacity .75s ease,
              transform .75s cubic-bezier(.22,1,.36,1);
}
.reveal-r.visible { opacity: 1; transform: translateX(0); }

/* ── FORM ───────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; font-family: 'Inter', sans-serif; }
.form-label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-mid); margin-bottom: 7px;
}
.form-label .req { color: #C46A4A; margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 15px; border: 1.5px solid var(--border);
  border-radius: var(--radius-md); font-size: 14px; color: var(--text);
  background: var(--off-white);
  transition: border-color var(--trans-base) var(--ease-smooth),
              box-shadow var(--trans-base) var(--ease-smooth),
              background var(--trans-base) var(--ease-smooth);
  outline: none; font-family: 'Inter', sans-serif;
  min-height: 44px; /* a11y touch target */
}
.form-input:hover, .form-select:hover, .form-textarea:hover {
  border-color: #C4B8A8;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(157,98,56,0.1), 0 0 0 1px rgba(157,98,56,0.15);
  background: white;
}
.form-input:focus-visible, .form-select:focus-visible, .form-textarea:focus-visible {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(157,98,56,0.12), 0 0 0 1px rgba(157,98,56,0.2);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── PRODUCT CARDS ──────────────────────────────────────── */
.product-card {
  background: white; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  transition: transform .32s cubic-bezier(.22,1,.36,1),
              box-shadow .32s ease;
  cursor: pointer; text-decoration: none; color: inherit; display: block;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(61,42,28,0.08);
}
.product-img {
  width: 100%; aspect-ratio: 4/3; position: relative;
  overflow: hidden; background: var(--bg-warm);
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.product-card:hover .product-img img { transform: scale(1.03); }
.product-body { padding: 20px 22px 24px; }
.product-tag {
  display: inline-block; background: var(--bg-warm);
  color: var(--clay-dark); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 4px; margin-bottom: 9px;
  font-family: 'Inter', sans-serif;
}
.product-name {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 22px; font-weight: 500; color: var(--dark);
  margin-bottom: 7px; letter-spacing: -0.01em;
}
.product-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.product-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px; border-top: 1px solid var(--border-light);
}
.product-moq { font-size: 12px; color: var(--muted); }
.product-moq strong { color: var(--dark); }
.product-link {
  font-size: 13px; color: var(--gold-dark); font-weight: 600;
  display: flex; align-items: center; gap: 5px;
  font-family: 'Inter', sans-serif;
}

/* ── TESTIMONIAL CARD ───────────────────────────────────── */
.testimonial-card {
  background: white; border-radius: var(--radius-xl);
  padding: 40px 32px; box-shadow: 0 2px 14px rgba(0,0,0,0.03);
  transition: transform .28s cubic-bezier(.22,1,.36,1);
}
.testimonial-card:hover { transform: translateY(-3px); }
.t-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 16px; }
.t-quote {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 17px; line-height: 1.75; color: var(--text);
  margin-bottom: 24px; font-weight: 400;
}
.t-author { display: flex; align-items: center; gap: 12px; font-family: 'Inter', sans-serif; }
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold-light); display: flex;
  align-items: center; justify-content: center;
  color: var(--gold-dark); font-size: 15px; font-weight: 700;
  flex-shrink: 0;
}
.t-name { font-size: 14px; font-weight: 600; color: var(--dark); }
.t-role { font-size: 12px; color: var(--muted); }

/* ════════════════════════════════════════════════════════════
   MASON & FIFTH FLOATING / CAROUSEL SYSTEM
   ════════════════════════════════════════════════════════════ */

/* ── FLOATING CARD ──────────────────────────────────────── */
.floating-card {
  background: rgba(247,243,239,0.88);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: all .35s cubic-bezier(.22,1,.36,1);
}

/* ── FLOATING LOGO ──────────────────────────────────────── */
.floating-logo {
  position: fixed; top: 24px; left: 28px; z-index: 100;
  display: flex; align-items: center; gap: 10px;
  background: rgba(247,243,239,0.85); backdrop-filter: blur(16px);
  border-radius: 12px; padding: 12px 20px;
  text-decoration: none; color: var(--dark);
  transition: background .3s cubic-bezier(.22,1,.36,1),
              transform .3s cubic-bezier(.22,1,.36,1);
  font-weight: 700; font-size: 16px; letter-spacing: 0.02em;
  font-family: 'Inter', sans-serif;
}
.floating-logo:hover { background: rgba(247,243,239,0.98); transform: translateY(-1px); }
.floating-logo svg { width: 32px; height: 32px; flex-shrink: 0; }

/* ── FLOATING BUTTONS ───────────────────────────────────── */
.floating-buttons {
  position: fixed; top: 24px; right: 28px; z-index: 100;
  display: flex; align-items: center; gap: 10px;
}

/* ── PILL BUTTONS ───────────────────────────────────────── */
.pill-btn {
  border-radius: var(--radius-pill); padding: 10px 22px;
  font-size: 13px; font-weight: 500; font-family: 'Inter', sans-serif;
  cursor: pointer; text-decoration: none; display: inline-flex;
  align-items: center;
  transition: background .3s cubic-bezier(.22,1,.36,1),
              border-color .3s cubic-bezier(.22,1,.36,1),
              transform .3s cubic-bezier(.22,1,.36,1);
  white-space: nowrap;
}
.pill-btn:hover { transform: scale(1.02); }

.pill-btn--outline {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: white;
}
.pill-btn--outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.45);
}

.pill-btn--solid {
  background: var(--gold); border: none; color: white;
}
.pill-btn--solid:hover { background: var(--gold-dark); }

/* ── HAMBURGER ICON ─────────────────────────────────────── */
.hamburger-icon {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  cursor: pointer;
  transition: background .3s cubic-bezier(.22,1,.36,1),
              border-color .3s cubic-bezier(.22,1,.36,1);
  flex-shrink: 0;
}
.hamburger-icon:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.4);
}
.hamburger-icon span {
  width: 16px; height: 1.5px; background: #59240C; border-radius: 1px;
}

/* ── HERO CAROUSEL ──────────────────────────────────────── */
.hero-carousel {
  position: relative; width: 100%; height: 100vh; overflow: hidden;
}
/* Subtle gradient overlay on hero */
.hero-carousel::after {
  content: '';
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(
    180deg,
    rgba(41,26,11,0.25) 0%,
    rgba(41,26,11,0.08) 40%,
    rgba(41,26,11,0.02) 70%,
    rgba(41,26,11,0.18) 100%
  );
  pointer-events: none;
}
.hero-carousel .hero-slides { position: absolute; inset: 0; z-index: 1; }

.hero-carousel .hero-slide {
  position: absolute; inset: 0; opacity: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: opacity 1s cubic-bezier(.22,1,.36,1),
              transform 2.5s cubic-bezier(.25,.1,.25,1);
}
.hero-carousel .hero-slide.active {
 opacity: 1; transform: scale(1); will-change: transform, opacity;
}

@media (max-width: 768px) {
 .hero-carousel { height: 70vh; min-height: 400px; }
}
@media (max-width: 480px) {
 .hero-carousel { height: 60vh; min-height: 360px; }
}

/* ── PROGRESS INDICATOR ─────────────────────────────────── */
.progress-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; gap: 6px;
}
.progress-seg {
  width: 32px; height: 3px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: width .3s cubic-bezier(.22,1,.36,1),
              background .3s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
}
.progress-seg::after {
  content: ''; position: absolute; inset: 0; background: white;
  transform: scaleX(0); transform-origin: left;
  transition: transform 6s linear;
}
.progress-seg.active { width: 48px; background: rgba(255,255,255,0.35); }
.progress-seg.active::after { transform: scaleX(1); }
.progress-seg.done { background: rgba(255,255,255,0.5); }
.progress-seg.done::after { transform: scaleX(1); background: rgba(255,255,255,0.7); }

/* ── HERO CENTER TITLE ──────────────────────────────────── */
.hero-title {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); z-index: 10;
  text-align: center; pointer-events: none;
}
.hero-title__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.hero-title__headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: clamp(42px, 6vw, 88px);
  color: white; line-height: 1.05; letter-spacing: -0.01em;
}
.hero-title__headline em {
  font-weight: 300; color: white;
}

/* ── BOTTOM CTA PILL ────────────────────────────────────── */
.cta-pill {
  position: absolute; bottom: 80px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-radius: var(--radius-pill); padding: 14px 14px 14px 28px;
  cursor: pointer; text-decoration: none;
  transition: background .35s cubic-bezier(.22,1,.36,1),
              transform .35s cubic-bezier(.22,1,.36,1),
              box-shadow .35s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.cta-pill:hover {
  background: white;
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.1);
}
.cta-pill__text { display: flex; flex-direction: column; gap: 2px; }
.cta-pill__label {
  font-size: 10px; font-weight: 500; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.1em;
  font-family: 'Inter', sans-serif;
}
.cta-pill__action {
  font-size: 17px; font-weight: 600; color: var(--dark);
  font-family: 'Inter', sans-serif;
}
.cta-pill__thumb {
  width: 48px; height: 48px; border-radius: 12px;
  background-size: cover; background-position: center;
  flex-shrink: 0; transition: background-image .4s;
}

/* ── INQUIRY BAR ────────────────────────────────────────── */
.inquiry-bar {
  position: fixed; top: 108px; left: 28px; z-index: 90;
  display: flex; gap: 0;
  background: rgba(247,243,239,0.88); backdrop-filter: blur(18px);
  border-radius: 16px; padding: 6px 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: all .35s cubic-bezier(.22,1,.36,1);
  font-family: 'Inter', sans-serif;
}

.inquiry-col {
  padding: 12px 18px; cursor: pointer;
  position: relative; white-space: nowrap;
  transition: background .2s; border-radius: 12px;
}
.inquiry-col:hover { background: rgba(255,255,255,0.5); }

.inquiry-col__label {
  font-size: 9.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold); margin-bottom: 4px;
}
.inquiry-col__value {
  font-size: 15px; font-weight: 500; color: var(--dark);
  display: flex; align-items: center; gap: 6px;
}
.inquiry-col__value svg { width: 10px; height: 10px; opacity: 0.5; }

.inquiry-divider {
  width: 1px; background: var(--border);
  margin: 8px 4px; align-self: stretch;
}

.inquiry-col--email {
  display: flex; align-items: center; gap: 10px; padding: 12px 18px;
}
.inquiry-col--email input {
  background: transparent; border: none;
  border-bottom: 1.5px solid var(--border);
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: var(--dark); width: 180px; outline: none;
  padding: 4px 0; transition: border-color .2s;
}
.inquiry-col--email input:focus { border-bottom-color: var(--gold); }
.inquiry-col--email input::placeholder { color: var(--bg-dark); }

.inquiry-submit {
  width: 32px; height: 32px; border-radius: 50%; border: none;
  background: var(--gold); color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: background .3s cubic-bezier(.22,1,.36,1),
              transform .3s cubic-bezier(.22,1,.36,1);
}
.inquiry-submit:hover {
  background: var(--gold-dark); transform: scale(1.08);
}

/* ── TEXT FADE TRANSITION ───────────────────────────────── */
.fading {
  opacity: 0; transform: translateY(6px);
  transition: opacity .35s cubic-bezier(.22,1,.36,1),
              transform .35s cubic-bezier(.22,1,.36,1);
}
.fading.show { opacity: 1; transform: translateY(0); }

/* ── MOBILE NAVIGATION (site-wide) ──────────────────────── */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; margin-right: -8px;
}
.nav-hamburger-icon {
  width: 24px; height: 20px; position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
}
.nav-hamburger-icon span {
  display: block; width: 100%; height: 2px; background: var(--dark);
  border-radius: 2px; transition: all .3s cubic-bezier(.22,1,.36,1);
}
.nav-hamburger.open .nav-hamburger-icon span:nth-child(1) { transform: rotate(45deg) translateY(9px); }
.nav-hamburger.open .nav-hamburger-icon span:nth-child(2) { opacity: 0; }
.nav-hamburger.open .nav-hamburger-icon span:nth-child(3) { transform: rotate(-45deg) translateY(-9px); }

.mobile-menu {
  position: fixed; top: 102px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 98;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
  overflow-y: auto; padding: 24px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-links { list-style: none; }
.mobile-menu-links > li { border-bottom: 1px solid var(--border-light); }
.mobile-menu-links > li > a {
  display: block; padding: 18px 0; font-size: 16px;
  font-weight: 500; color: var(--text); text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.mobile-menu-links > li > a.active { color: var(--gold-dark); }
.mobile-menu-submenu { padding-left: 16px; padding-bottom: 12px; display: none; }
.mobile-menu-submenu.open { display: block; }
.mobile-menu-submenu a {
  display: block; padding: 10px 0; font-size: 14px;
  color: var(--muted); text-decoration: none;
}
.mobile-menu-submenu a:hover { color: var(--gold); }
.mobile-menu-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu-cta .btn { width: 100%; text-align: center; }

/* ── RESPONSIVE (shared) ────────────────────────────────── */
@media (max-width: 1024px) {
  .nav { top: 0; padding: 0 20px; height: 56px; }
  .nav.scrolled { height: 48px; }
  .nav-logo { gap: 6px; }
  .nav-logo svg { width: 22px !important; height: 22px !important; }
  .nav-logo-text { font-size: 16px !important; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-dealer-btn { display: none; }
  .nav-cta { display: none !important; }
  .nav-search-btn { display: none; }
  .nav-right { gap: 4px; }
  .nav-hamburger { display: block; }
  .megamenu { display: none; }
  .section, .section-sm, .section-lg { padding-left: 24px; padding-right: 24px; }
  .page-header { padding: 56px 24px; }
  .footer { padding: 56px 24px 32px; }
  .certs-strip-inner { justify-content: center; }
  .cert-badge { padding: 10px 12px; }
}

@media (max-width: 768px) {
  .announce-bar { display: none !important; }
  .nav { top: 0; padding: 0 16px; height: 52px; }
  .nav.scrolled { height: 44px; }
  .nav-logo { gap: 5px; }
  .nav-logo svg { width: 20px !important; height: 20px !important; }
  .nav-logo-text { font-size: 14px !important; }
  .nav-hamburger { padding: 6px 2px; }
  .nav-hamburger-icon { width: 20px; height: 16px; }
  .section, .section-sm, .section-lg { padding-left: 20px; padding-right: 20px; }
  .page-header { padding: 40px 20px; }
  .page-header h1 { font-size: clamp(28px, 5vw, 38px); }
  .page-header p { font-size: 13px; }
  .footer { padding: 44px 20px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .form-row { grid-template-columns: 1fr; }
  /* hide floating UI on mobile */
  .floating-logo { display: none !important; }
  .floating-buttons { display: none !important; }
  .inquiry-bar { display: none !important; }
  .hero-title__headline { font-size: clamp(26px, 7vw, 40px); }
  .cta-pill { bottom: 56px; left: 16px; right: 16px; transform: none; width: auto; justify-content: space-between; border-radius: 14px; padding: 10px 12px 10px 18px; }
  .cta-pill:hover { transform: translateY(-1px); }
  .progress-indicator { gap: 4px; bottom: 16px; }
  .progress-seg { width: 18px; height: 2px; }
  .progress-seg.active { width: 28px; }
  .mobile-menu { top: 52px; }
 .site-nav-cta, .btn { min-height: 44px; display: inline-flex; align-items: center; }

  /* product / showcase grids stay 2-col on tablet */
  .product-grid,
  .showcase-grid,
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .testimonials-grid,
  .faq-grid,
  .home-cats-grid,
  .certs-strip-inner { grid-template-columns: 1fr; }
  .collections-layout { display: flex; flex-direction: column; }
  .collections-sidebar { width: 100%; padding: 10px 12px; border-right: none; border-bottom: 1px solid var(--border-light); }
  img, video { max-width: 100%; height: auto; }
  table { display: block; overflow-x: auto; width: 100%; }
}

@media (max-width: 480px) {
  .nav { padding: 0 12px; height: 48px; }
  .nav.scrolled { height: 42px; }
  .nav-logo svg { width: 18px !important; height: 18px !important; }
  .nav-logo-text { font-size: 13px !important; letter-spacing: -0.005em !important; }
  .nav-hamburger { padding: 4px 2px; }
  .nav-hamburger-icon { width: 18px; height: 14px; }
  .section, .section-sm, .section-lg { padding-left: 16px; padding-right: 16px; }
  .page-header { padding: 32px 16px; }
  .page-header h1 { font-size: clamp(24px, 6vw, 32px); }
  .page-header p { font-size: 12px; }
  .footer { padding: 36px 16px 20px; }
  .footer-brand-text { font-size: 20px; }
  .footer-tagline { font-size: 11px; line-height: 1.7; }
  .footer-col-title { font-size: 9px; margin-bottom: 12px; }
  .footer-links a { font-size: 11px; }
  .footer-bottom { font-size: 10px; flex-direction: column; gap: 6px; text-align: center; }
  .certs-strip-inner { gap: 0; }
  .cert-badge { padding: 10px 12px; border-right: none; border-bottom: 1px solid var(--border-light); }
  .cert-badge:last-child { border-bottom: none; }
  .cert-badge-text strong { font-size: 10px; }
  .cert-badge-text span { font-size: 9px; }
  .cert-badge-icon { width: 50px; height: 24px; object-fit: contain; display: inline-block; flex-shrink: 0; }
  .hero-title__headline { font-size: clamp(22px, 8vw, 32px); }
  .cta-pill { bottom: 48px; padding: 8px 10px 8px 14px; }
  .cta-pill__label { font-size: 8px; }
  .cta-pill__action { font-size: 12px; }
  .cta-pill__thumb { width: 30px; height: 30px; border-radius: 8px; }
  .progress-seg { width: 14px; }
  .progress-seg.active { width: 22px; }
  .mobile-menu { top: 48px; }
  .mobile-menu-links > li > a { padding: 12px 0; font-size: 14px; }
  .nav-search-kbd { display: none; }
  .search-overlay { padding-top: 24px; }
  /* product cards */
  .product-grid, .products-grid { gap: 10px; }
  .product-card .product-name { font-size: 17px; }
  .product-card .product-desc { font-size: 11px; }
  .product-card .product-body { padding: 14px; }
}

/* ── MOBILE NAV OVERLAY (PHP hamburger trigger) ──────────── */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-inner {
  background: white;
  border-radius: 12px;
  padding: 40px;
  min-width: 280px;
 max-height: 85vh;
 overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav-inner a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: #59240C;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid #F4F1EA;
  text-align: center;
}
.mobile-nav-inner a:hover { color: #9D6238; }

/* ── Mobile nav: close button ── */
.mobile-nav-close {
  position: absolute;
  top: 8px;
  right: 14px;
  background: none;
  border: none;
  font-size: 28px;
  color: #59240C;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  border-bottom: none !important;
}

/* ── Mobile nav: expandable groups ── */
.mobile-nav-group {
  display: flex;
  flex-direction: column;
}
.mobile-nav-children {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 4px 0 8px 12px;
}
.mobile-nav-group.open .mobile-nav-children {
  display: flex;
}
.mobile-nav-parent {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  color: #3D2A1C !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid rgba(232,224,214,0.3) !important;
  border-top: 0 !important;
  text-align: center !important;
  margin: 0 !important;
}
.mobile-nav-child {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  padding: 6px 0 6px 20px !important;
  color: #6B5E53 !important;
  border-bottom: none !important;
  text-align: left !important;
}
.mobile-nav-viewall {
  font-weight: 600;
  color: #9D6238 !important;
  border-bottom: none !important;
  margin-top: 4px;
}
.mobile-nav-dealer {
  background: #9D6238;
  color: #fff !important;
  border-radius: 6px;
  padding: 14px 0 !important;
  margin-top: 8px;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  border-bottom: none !important;
  text-align: center !important;
}

/* ── Mobile nav: fix inner link overrides ── */
.mobile-nav-inner .mobile-nav-parent,
.mobile-nav-inner .mobile-nav-child {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(232,224,214,0.2);
}




/* ====== COMPACT COLLECTIONS DROPDOWN ====== */
.nav-dropdown { position: relative; }
.nav-collections {
  width: 260px;
  padding: 8px 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(61,42,28,0.12), 0 2px 8px rgba(0,0,0,0.06);
  left: 50%;
  transform: translateX(-50%);
}
.nc-group {
  padding: 4px 0;
}
.nc-group + .nc-group {
  border-top: 1px solid #F4F1EA;
}
.nc-parent {
  display: block;
  padding: 8px 20px 4px;
  font-size: 12px;
  font-weight: 600;
  color: #3D2A1C;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nc-parent:hover {
  color: #9D6238;
}
.nc-child {
  display: block;
  padding: 5px 20px 5px 28px;
  font-size: 13px;
  color: #6B5E53;
  white-space: nowrap;
}
.nc-child:hover {
  color: #3D2A1C;
  background: #FAF8F5;
}
.nc-all {
  display: block;
  padding: 10px 20px 6px;
  margin-top: 4px;
  border-top: 1px solid #E8E0D6;
  font-size: 13px;
  font-weight: 600;
  color: #9D6238;
  text-align: center;
}
.nc-all:hover {
  color: #3D2A1C;
  background: #FAF8F5;
  border-radius: 0 0 8px 8px;
}





/* ── Site Navigation ─────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--trans-base) var(--ease-smooth),
              box-shadow var(--trans-base) var(--ease-smooth),
              backdrop-filter var(--trans-base) var(--ease-smooth);
  border-bottom: 1px solid #E8E0D6;
}
.site-nav.scrolled {
  background: rgba(244,241,234,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.site-nav-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 40px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.site-nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 16px; color: #3D2A1C;
  letter-spacing: 0.02em; flex-shrink: 0;
}
.site-nav-brand svg { flex-shrink: 0; }
.site-nav-links {
  display: flex; align-items: center; gap: 2px;
}
.site-nav-links > a,
.site-nav-links .nav-dropdown > a {
  padding: 8px 14px; font-size: 13.5px; font-weight: 500;
  color: #7D4A29; text-decoration: none; border-radius: 8px;
  position: relative;
  transition: background var(--trans-fast) var(--ease-smooth),
              color var(--trans-fast) var(--ease-smooth);
  white-space: nowrap;
}
/* Underline-on-hover animation for nav links */
.site-nav-links > a::after,
.site-nav-links .nav-dropdown > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans-base) var(--ease-smooth);
}
.site-nav-links > a:hover::after,
.site-nav-links .nav-dropdown > a:hover::after {
  transform: scaleX(1);
}
.site-nav-links > a:hover,
.site-nav-links .nav-dropdown > a:hover {
  background: #F4F1EA; color: #3D2A1C;
}
.site-nav-links > a.active::after {
  transform: scaleX(1);
  background: var(--dark);
}
.site-nav-links > a.active { background: #F4F1EA; color: #3D2A1C; font-weight: 600; }
.site-nav-actions {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.site-nav-dealer {
  padding: 7px 16px; font-size: 12.5px; font-weight: 500;
  color: #7D4A29; text-decoration: none;
  border: 1.5px solid #D5CFC4; border-radius: 100px;
  transition: all .15s;
}
.site-nav-dealer:hover { background: #F4F1EA; border-color: #9D6238; }
.site-nav-cta {
  padding: 7px 18px; font-size: 12.5px; font-weight: 600;
  background: #3D2A1C; color: white; text-decoration: none;
  border-radius: 100px; transition: background .15s;
}
.site-nav-cta:hover { background: #59240C; }

/* Nav Dropdown */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: white; border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  padding: 8px 0; min-width: 200px;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all .2s; z-index: 300;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 13px;
  color: #3D2A1C; text-decoration: none; transition: background .1s;
}
.nav-dropdown-menu a:hover { background: #F4F1EA; }
.nav-caret { font-size: 8px; margin-left: 4px; opacity: 0.4; }

/* Hamburger — hidden on desktop */
.hamburger-icon {
  display: none; width: 36px; height: 36px; border-radius: 10px;
  border: 1.5px solid #D5CFC4; background: transparent;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; cursor: pointer;
}
.hamburger-icon span {
  width: 18px; height: 2px; background: #3D2A1C; border-radius: 1px;
}

/* Mobile */
@media (max-width: 768px) {
  .site-nav-inner { padding: 0 20px; }
  .site-nav-links { display: none; }
  .site-nav-dealer { display: none; }
  .hamburger-icon { display: flex; }
}

@media (max-width: 480px) {
 .announce-bar { padding: 4px 12px; font-size: 10px; gap: 16px; }
 .announce-bar span { font-size: 10px; }
}


/* === 全局动画 (Global Animation) === */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.3s ease, transform 0.3s ease; }
.fade-up.visible { opacity: 1 !important; transform: translateY(0) !important; }
.card-hover-zoom { transition: transform 0.35s ease, box-shadow 0.35s ease; }
.card-hover-zoom:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(61,42,28,0.12); }

canvas#heroCanvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
  .fade-up, .card-hover-zoom { transition: none; opacity: 1; transform: none; }
  canvas, [data-parallax], .parallax-bg { display: none; }
}


/* ============================================================
   Missing Section Styles for FY Bedding Homepage
   USP / Process / Section Header / Social Proof / Featured
   Mason & Fifth v4 Design System — Warm Neutrals
   ============================================================ */

/* ═══════════ USP / Stats Section ═══════════ */
.usp-section {
  padding: 96px 80px;
}
.usp-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.usp-header {
  text-align: center;
  margin-bottom: 56px;
}
.usp-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #7D4A29;
  max-width: 620px;
  margin: 12px auto 0;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.usp-stat {
  text-align: center;
  padding: 32px 16px;
  background: #FDFCFA;
  border-radius: 16px;
  border: 1px solid #E8E0D6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.usp-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(61,42,28,0.08);
}
.usp-stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 400;
  color: #59240C;
  line-height: 1;
  margin-bottom: 8px;
}
.usp-stat__num .counter {
  display: inline;
}
.usp-stat__label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #9D6238;
  letter-spacing: 0.02em;
}
.usp-cta {
  text-align: center;
}

/* ═══════════ Section Header (shared between sections) ═══════════ */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header p,
.section-header .t-body {
  color: #6B5E53;
  max-width: 600px;
  margin: 8px auto 0;
  font-size: 15px;
  line-height: 1.65;
}

/* ═══════════ Featured Products Section ═══════════ */
.featured-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 48px;
}

/* ═══════════ Process / Timeline Section ═══════════ */
.process-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 48px;
}
.process-timeline {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.process-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 32px 20px;
  border-radius: 14px;
  background: #FAF8F5;
  border: 1px solid #E8E0D6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(61,42,28,0.06);
}
.process-step__icon {
  font-size: 40px;
  margin-bottom: 12px;
  line-height: 1;
}
.process-step__title {
  font-size: 16px;
  font-weight: 600;
  color: #3D2A1C;
  margin: 0 0 6px;
}
.process-step__desc {
  font-size: 13px;
  color: #6B5E53;
  margin: 0;
  line-height: 1.5;
}

/* ═══════════ Social Proof Section ═══════════ */
.social-proof-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 48px;
}
.proof-card {
  flex: 1;
  min-width: 240px;
  max-width: 360px;
  background: #fff;
  border: 1px solid #E8E0D6;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(61,42,28,0.08);
}
.proof-card__icon {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 8px;
}
.proof-card__number {
  font-weight: 700;
  font-size: 20px;
  color: #3D2A1C;
  margin-bottom: 4px;
}
.proof-card__desc {
  color: #6B5E53;
  font-size: 14px;
  line-height: 1.5;
}

/* ═══════════ Responsive ═══════════ */
@media (max-width: 1024px) {
  .usp-section { padding: 60px 32px; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-section { padding: 56px 32px; }
  .process-timeline { gap: 20px; }
  .social-proof-section { padding: 56px 32px; }
  .featured-section { padding: 56px 32px; }
}

@media (max-width: 640px) {
  .usp-section { padding: 48px 20px; }
  .usp-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .usp-stat { padding: 24px 12px; }
  .usp-stat__num { font-size: clamp(28px, 8vw, 40px); }
  .process-section { padding: 48px 20px; }
  .process-step { min-width: 140px; padding: 24px 16px; }
  .social-proof-section { padding: 48px 20px; }
  .featured-section { padding: 48px 20px; }
  .section-header { margin-bottom: 28px; }
}

@media (max-width: 480px) {
  .usp-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .process-timeline { flex-direction: column; align-items: stretch; }
  .process-step { max-width: 100%; }
}


/* ============================================================
   Product Grid Fix — Top Picks / Best Sellers
   .product-grid was missing display:grid, causing overflow
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 32px auto 0;
  padding: 0 24px;
}

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .product-grid { grid-template-columns: 1fr; padding: 0 20px; }
}

/* ═══════════════════════════════════════════════════════════
   V6 NEW SECTIONS: Fabric Education, Trust Bar, Newsletter
   ═══════════════════════════════════════════════════════════ */

/* ── Fabric Education ───────────────────────────────────── */
.fabric-edu-section {
  background: #F7F3EF;
  padding: 80px 48px;
}
.fabric-edu-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.fabric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 0;
}
.fabric-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  transition: transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s cubic-bezier(.22,1,.36,1);
}
.fabric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.fabric-icon {
  font-size: 44px;
  line-height: 1;
  margin-bottom: 16px;
}
.fabric-name {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--dark);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.fabric-tags {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.fabric-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  line-height: 1.65;
  color: #6B5E53;
  margin: 0 0 20px;
}
.fabric-link {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 3px;
  transition: color .2s, border-color .2s;
}
.fabric-link:hover {
  color: var(--gold);
  border-color: var(--dark);
}

/* ── Trust Bar ──────────────────────────────────────────── */
.trust-bar-section {
  background: #FAF8F5;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 64px 48px;
}
.trust-bar-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-bar-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.trust-bar-items {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.trust-bar-emoji {
  font-size: 18px;
  line-height: 1;
}
.trust-bar-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #5C4A3A;
}

/* ── Newsletter ─────────────────────────────────────────── */
.newsletter-section { padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Subtle linen texture overlay */
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(157,98,56,0.03) 2px,
      rgba(157,98,56,0.03) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(157,98,56,0.02) 2px,
      rgba(157,98,56,0.02) 4px
    );
  pointer-events: none;
  z-index: 0;
}
.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.newsletter-title {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--dark);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.newsletter-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #6B5E53;
  margin: 0 0 28px;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: #fff;
}
.newsletter-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--dark);
  background: transparent;
}
.newsletter-input::placeholder {
  color: #B5A898;
}
.newsletter-btn {
  border: none;
  background: var(--dark);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 14px 28px;
  cursor: pointer;
  transition: background .25s;
  white-space: nowrap;
}
.newsletter-btn:hover {
  background: var(--text);
}

/* ── Trust Bar Responsive ───────────────────────────────── */
@media (max-width: 1024px) {
  .fabric-edu-section { padding: 60px 32px; }
  .fabric-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .trust-bar-section { padding: 48px 32px; }
  .trust-bar-inner { gap: 24px; }
  .trust-bar-items { gap: 20px; }
  .newsletter-section { padding: 64px 32px; }
}

@media (max-width: 768px) {
  .fabric-edu-section { padding: 48px 24px; }
  .fabric-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .fabric-card { padding: 28px 20px; }
  .fabric-name { font-size: 22px; }
  .trust-bar-section { padding: 40px 24px; }
  .trust-bar-inner { gap: 20px; }
  .trust-bar-items { gap: 16px; }
  .trust-bar-item { font-size: 12px; }
  .newsletter-section { padding: 56px 24px; }
}

@media (max-width: 480px) {
  .fabric-edu-section { padding: 40px 20px; }
  .fabric-grid { grid-template-columns: 1fr; gap: 16px; }
  .fabric-icon { font-size: 36px; }
  .trust-bar-section { padding: 32px 20px; }
  .trust-bar-inner { flex-direction: column; gap: 12px; }
  .trust-bar-items { flex-direction: column; align-items: center; gap: 10px; }
  .newsletter-section { padding: 48px 20px; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius-lg); }
  .newsletter-input { border-radius: var(--radius-lg) var(--radius-lg) 0 0; border-bottom: 1px solid var(--border); }
  .newsletter-btn { border-radius: 0 0 var(--radius-lg) var(--radius-lg); width: 100%; }
}
/* ═══════════════════════════════════════════════════════════
   V6 FOOTER GRID OVERRIDE — 4-column layout
   ═══════════════════════════════════════════════════════════ */
.footer-inner {
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
}
.footer-col--about {
  grid-column: auto !important;
}
@media (max-width: 1024px) {
 .footer-inner {
 grid-template-columns: 1fr 1fr 1fr;
 }
  .footer-col--about {
    grid-column: 1 / -1 !important;
  }
}
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   V6 TESTIMONIAL ENHANCEMENTS
   ═══════════════════════════════════════════════════════════ */
.testimonials-section {
  background: #FAF8F5;
  padding: 80px 48px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 40px auto 0;
}
.testimonial-card {
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
}
.t-quote {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}
.t-stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 3px;
}
.t-avatar {
  width: 44px;
  height: 44px;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .testimonials-section { padding: 60px 32px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; }
}
@media (max-width: 768px) {
  .testimonials-section { padding: 48px 24px; }
}
@media (max-width: 480px) {
  .testimonials-section { padding: 40px 20px; }
  .testimonials-grid { gap: 16px; }
}

/* ═══════════════ PAGE LAYOUTS — About/Contact/B2B/Blog/Search ═══════════════ */


.about-hero { max-width:1200px; margin:0 auto; padding:80px 48px 64px; text-align:center; }
.about-hero-content h1 { font-family:'Cormorant Garamond',serif; font-size:52px; font-weight:400; line-height:1.15; margin:12px 0 20px; color:var(--text); }
.about-hero-content p { font-size:17px; color:var(--muted); max-width:640px; margin:0 auto; line-height:1.7; }
.about-content-wrapper { max-width:860px; margin:0 auto; padding:72px 48px; }
.about-cms-content { font-size:15px; line-height:1.9; color:var(--text); }
.about-stats { background:var(--bg); padding:72px 48px; }
.about-stats-inner { max-width:1000px; margin:0 auto; display:flex; justify-content:space-around; gap:24px; flex-wrap:wrap; }
.about-stat-item { text-align:center; flex:1; min-width:140px; }
.about-stat { font-family:'Cormorant Garamond',serif; font-size:40px; font-weight:400; color:var(--dark); display:block; }
.about-stat-label { font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:0.08em; margin-top:4px; display:block; }
@media (max-width:768px) { .about-hero { padding:56px 20px 48px; } .about-hero-content h1 { font-size:32px; } .about-content-wrapper { padding:48px 20px; } .about-stats { padding:48px 20px; } .about-stat { font-size:28px; } }

.contact-hero { max-width:1200px; margin:0 auto; padding:60px 48px 56px; text-align:center; }
.form-section-title { font-family:'Cormorant Garamond',serif; font-size:24px; color:var(--text); margin-bottom:24px; text-align:center; }

.b2b-hero { max-width:1200px; margin:0 auto; padding:72px 48px 64px; text-align:center; }
.b2b-hero-content h1 { font-family:'Cormorant Garamond',serif; font-size:clamp(36px,5vw,56px); font-weight:400; line-height:1.15; color:var(--text); margin-bottom:16px; }
.b2b-hero-content p { font-size:17px; color:var(--muted); max-width:660px; margin:0 auto; line-height:1.7; }
.b2b-section-block { max-width:1200px; margin:0 auto; padding:64px 48px; }
.b2b-industry-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:20px; margin-top:24px; }
.b2b-industry-card { background:#FDFCFA; border:1px solid var(--border); border-radius:10px; padding:24px; transition:transform .3s; }
.b2b-industry-card:hover { transform:translateY(-2px); }
.b2b-inquiry-section { max-width:760px; margin:0 auto; padding:40px 48px 96px; }
@media (max-width:768px) { .b2b-hero { padding:56px 20px 48px; } .b2b-section-block { padding:48px 20px; } .b2b-industry-grid { grid-template-columns:1fr; } }

.blog-header { padding:64px 48px 56px; }
.blog-grid-wrapper { max-width:1320px; margin:0 auto; padding:clamp(24px,5vw,60px) clamp(20px,4vw,48px); }
.blog-grid-inner { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:28px; }
.blog-card { border-radius:12px; overflow:hidden; border:1px solid var(--border); background:#FDFCFA; text-decoration:none; color:inherit; display:block; transition:transform .3s,box-shadow .3s; }
.blog-card:hover { transform:translateY(-3px); box-shadow:0 10px 30px rgba(0,0,0,0.08); }
.blog-card-image { aspect-ratio:16/9; background:var(--bg-warm); }
.blog-card-image img { width:100%; height:100%; object-fit:cover; }
.blog-card-body { padding:20px; }
.blog-card-body h3 { font-family:'Cormorant Garamond',serif; font-size:18px; font-weight:500; color:var(--text); margin-bottom:8px; line-height:1.3; }
.blog-card-body p { font-size:13px; color:var(--muted); line-height:1.6; }
@media (max-width:768px) { .blog-header { padding:48px 20px 44px; } .blog-grid-inner { grid-template-columns:1fr; gap:20px; } .blog-card-image { height:180px; } }

.search-header h1 { margin-bottom:8px; }
.search-form-row { display:flex; gap:8px; }
.search-form-input { flex:1; padding:12px 16px; border:1.5px solid var(--border); border-radius:8px; font-size:15px; font-family:inherit; }
.search-results-wrapper { max-width:1320px; margin:0 auto; padding:56px 48px 80px; }
@media (max-width:768px) { .search-results-wrapper { padding:24px 20px; } }

.result-card { text-decoration:none; display:block; border-radius:12px; overflow:hidden; border:1px solid var(--border); background:#FDFCFA; transition:transform .3s; }
.result-card:hover { transform:translateY(-2px); }
.result-card-img { aspect-ratio:1; background:var(--bg-warm); }
.result-card-img img { width:100%; height:100%; object-fit:cover; }
.result-card-body { padding:16px; }
.result-card-title { font-size:14px; font-weight:600; color:var(--dark); margin-bottom:4px; }
.result-card-desc { font-size:12px; color:var(--muted); margin-bottom:8px; }
.result-card-meta { font-size:11px; color:var(--muted); }

.back-to-top { position:fixed; bottom:24px; right:24px; width:44px; height:44px; border-radius:50%; background:var(--dark); color:#fff; border:none; cursor:pointer; font-size:20px; opacity:0; transform:translateY(20px); transition:opacity .3s,transform .3s; z-index:99; box-shadow:0 2px 8px rgba(0,0,0,0.2); }
.back-to-top.visible { opacity:1; transform:translateY(0); }

/* ═══════════════ MISSING CLASSES (optimize 2026-05-30) ═══════════════ */


/* ── Blog card excerpt line-clamp ── */
.blog-card-body p { display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }

/* ── Search section title ── */
.search-section-title { font-family:'Cormorant Garamond',serif; font-size:22px; color:var(--text); margin-bottom:24px; }

/* ── Search form wrapper ── */
.search-form-wrapper { max-width:480px; margin:20px auto 0; }

/* ── B2B USP Strip ── */
.b2b-usp-strip { background:var(--bg); padding:64px 0; }
.b2b-usp-strip-inner { max-width:1100px; margin:0 auto; padding:0 24px; }
.b2b-usp { list-style:none; margin:0; padding:0; display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:24px; }
.b2b-usp-item { display:flex; align-items:flex-start; gap:12px; padding:16px; background:#fff; border-radius:10px; border:1px solid var(--border); }
.b2b-usp-icon { font-size:24px; flex-shrink:0; }
.b2b-usp-text { font-size:14px; color:var(--muted); line-height:1.5; }
.b2b-usp-text strong { color:var(--dark); }
@media (max-width:768px) { .b2b-usp { grid-template-columns:1fr; } .b2b-usp-strip { padding:48px 0; } }

/* ── B2B Industries Section ── */
.b2b-industries { background:#fff; padding:80px 0; }
.b2b-industries-inner { max-width:1100px; margin:0 auto; padding:0 24px; }
.b2b-industries-inner h2 { text-align:center; font-family:'Cormorant Garamond',serif; font-size:36px; font-weight:400; margin-bottom:40px; color:var(--text); }
.b2b-industry-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:20px; }
.b2b-industry-icon { font-size:36px; display:block; margin-bottom:12px; }
.b2b-industry-card h3 { font-family:'Inter',sans-serif; font-size:16px; font-weight:600; margin:0 0 8px; color:var(--dark); }
.b2b-industry-card p { font-size:13px; color:var(--muted); margin:0; line-height:1.5; }
.b2b-industry-card:hover { transform:translateY(-4px); box-shadow:0 8px 30px rgba(0,0,0,0.08); }
@media (max-width:768px) { .b2b-industry-grid { grid-template-columns:1fr 1fr; } }

/* ── B2B FAQ ── */
.b2b-faq { background:var(--bg); padding:80px 0; }
.b2b-faq-inner { max-width:760px; margin:0 auto; padding:0 24px; }
.b2b-faq-inner h2 { text-align:center; font-family:'Cormorant Garamond',serif; font-size:36px; font-weight:400; margin-bottom:40px; color:var(--text); }
.faq-list { display:flex; flex-direction:column; gap:12px; }
.faq-item { background:#fff; border-radius:10px; border:1px solid var(--border); overflow:hidden; }
.faq-question { padding:20px 24px; font-weight:600; font-size:15px; color:var(--dark); cursor:pointer; display:flex; justify-content:space-between; align-items:center; user-select:none; }
.faq-question::after { content:'+'; font-size:20px; color:var(--clay-dark); transition:transform .3s; }
.faq-question.open::after { content:'\2212'; transform:rotate(180deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-answer p { padding:0 24px 20px; margin:0; font-size:14px; color:var(--muted); line-height:1.7; }

/* ── B2B Inquiry Section Details ── */
.b2b-inquiry-inner { max-width:680px; margin:0 auto; padding:0 24px; }
.b2b-inquiry-header { text-align:center; margin-bottom:40px; }
.b2b-inquiry-header h2 { font-family:'Cormorant Garamond',serif; font-size:36px; font-weight:400; margin-bottom:12px; color:var(--text); }
.b2b-inquiry-header p { font-size:15px; color:var(--muted); line-height:1.6; }
.b2b-inquiry-section .form-group { transition:transform .25s ease; }
.b2b-form .form-input,
.b2b-form .form-textarea,
.b2b-form select { width:100%; padding:14px 16px; border:1px solid #ddd; border-radius:8px; font-size:15px; font-family:'Inter',sans-serif; transition:border-color .25s; }
.b2b-form .form-input:focus,
.b2b-form .form-textarea:focus,
.b2b-form select:focus { outline:none; border-color:var(--clay-dark); box-shadow:0 0 0 3px rgba(157,98,56,0.1); }

/* ── B2B Sticky Mobile CTA ── */
.b2b-sticky-cta { display:none; }
@media (max-width:768px) {
  .b2b-sticky-cta { display:block; position:fixed; bottom:0; left:0; right:0; background:var(--dark); color:#fff; text-align:center; padding:16px; font-weight:600; font-size:16px; z-index:100; text-decoration:none; letter-spacing:0.02em; }
  .b2b-sticky-cta:active { background:#2D1A0C; }
}

/* ── B2B Content Wrapper ── */
.b2b-content-wrapper { max-width:860px; margin:0 auto; padding:72px 48px; }
.b2b-cms-content { font-size:15px; line-height:1.9; color:var(--text); }
@media (max-width:768px) { .b2b-content-wrapper { padding:40px 24px; } }

/* ── Contact Dealer CTA ── */

/* ── Milestone blocks (About page JS-injected) ── */
.milestone-block { background:#fff; border-radius:12px; padding:40px; margin-bottom:24px; box-shadow:0 2px 20px rgba(0,0,0,0.04); border-left:3px solid var(--clay-dark); }
.milestone-block h2 { font-family:'Cormorant Garamond',serif; font-size:28px; font-weight:500; margin-top:0; color:var(--text); }
.milestone-block h3 { font-family:'Inter',sans-serif; font-size:17px; font-weight:600; color:var(--dark); margin-top:28px; }
.milestone-block p, .milestone-block ul { color:var(--muted); line-height:1.8; }


.faq-list { max-width:800px; margin:0 auto; }
.faq-item { border-bottom:1px solid var(--border); padding:16px 0; }
.faq-question { font-weight:600; font-size:16px; color:var(--text); cursor:pointer; position:relative; padding-right:32px; user-select:none; }
.faq-question::after { content:'+'; position:absolute; right:0; top:50%; transform:translateY(-50%); font-size:20px; color:var(--clay-dark); transition:transform .3s; }
.faq-item.active .faq-question::after { content:'\2212'; transform:translateY(-50%) rotate(180deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .35s ease,padding .35s ease; padding:0; color:var(--muted); font-size:14px; line-height:1.7; }
.faq-item.active .faq-answer { max-height:300px; padding:8px 0 16px; }

/* ===== Breadcrumb v14 (unified, plan A: light float) ===== */
.breadcrumb {
  max-width: var(--content-width, 1320px);
  margin: 0 auto;
  padding: 14px 48px 10px;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--muted, #8B7E74);
}
.breadcrumb-inner a {
  color: var(--muted, #8B7E74);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb-inner a:hover {
  color: var(--text, #3D2A1C);
}
.breadcrumb-sep {
  color: var(--border, #D4C8B8);
  font-size: 11px;
  user-select: none;
}
.breadcrumb-current {
  color: var(--text, #3D2A1C);
  font-weight: 500;
}
@media (max-width: 768px) {
  .breadcrumb {
    padding: 10px 20px 6px;
  }
  .breadcrumb-inner {
    font-size: 12px;
    gap: 6px;
  }
}

/* ── Fade-up fallback: 无JS或JS失败时保持可见 ── */
.no-js .fade-up,
.fade-up.fallback-visible {
 opacity: 1;
 transform: translateY(0);
}


/* ── Floating Contact Bar ── */
.floating-contact { position:fixed; bottom:24px; left:24px; z-index:9999; display:flex; flex-direction:column; gap:10px; }
.fc-btn { display:flex; align-items:center; gap:10px; padding:12px 18px; border-radius:50px; color:#fff; text-decoration:none; font-size:13px; font-weight:600; font-family:'Inter',sans-serif; box-shadow:0 4px 16px rgba(0,0,0,.15); transition:transform .2s,box-shadow .2s; }
.fc-btn:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(0,0,0,.2); }
.fc-btn span { white-space:nowrap; }
.fc-whatsapp { background:#25D366; }
.fc-email { background:var(--dark,#3D2A1C); }
@media (max-width:600px) {
  .floating-contact { bottom:16px; left:16px; }
  .fc-btn { padding:10px 14px; font-size:12px; }
  .fc-btn span { display:none; }
}

/* ── Client Cases Responsive ── */
@media (max-width: 768px) {
}
@media (max-width: 480px) {
}

/* ── Cert Bar Responsive ── */
@media (max-width: 640px) {
 .cert-bar-grid { gap: 20px !important; }
 .cert-bar-grid > div { min-width: 120px; }
}
@media (max-width: 380px) {
 .cert-bar-grid { flex-direction: column !important; align-items: center !important; }
}

/* ── Page Layouts Responsive (FIX8) ── */
@media (max-width: 768px) {
  .contact-hero { padding: 48px 20px 40px !important; }
  .contact-grid { padding: 0 20px !important; }
  .b2b-inquiry-section { padding: 32px 20px 48px !important; }
  .search-results-wrapper { padding: 32px 20px !important; }
  .b2b-content-wrapper { padding: 40px 20px !important; }
}
@media (max-width: 480px) {
  .contact-hero { padding: 40px 16px 32px !important; }
  .contact-grid { padding: 0 16px !important; }
  .b2b-inquiry-section { padding: 24px 16px 40px !important; }
  .search-results-wrapper { padding: 24px 16px !important; }
  .b2b-content-wrapper { padding: 32px 16px !important; }
}

/* ── Client Cases ── */
.client-cases-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media (max-width: 768px) {
  .client-cases-grid { grid-template-columns:1fr; gap:16px; padding:0 20px; }
}
@media (max-width: 480px) {
  .client-cases-grid { padding:0 16px; }
}

/* ── Megamenu responsive: 2-col for medium screens ── */
@media (min-width: 1025px) and (max-width: 1280px) {
  .nav-megamenu-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-megamenu-inner { padding: 32px 40px 28px; }
}
/* ── Megamenu responsive: smaller card image ── */
@media (min-width: 1025px) and (max-width: 1100px) {
  .nav-megamenu-card-img { aspect-ratio: 2/1; }
  .nav-megamenu-card-title { font-size: 16px; }
  .nav-megamenu-inner { padding: 28px 28px 24px; }
}

/* ═══════════════════════════════════════════════════════
   GLOBAL FOCUS-VISIBLE & ACCESSIBILITY (v25)
   ═══════════════════════════════════════════════════════ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 3px;
}
/* Remove default outline for mouse clicks, keep for keyboard */
:focus:not(:focus-visible) {
  outline: none;
}
/* High-contrast mode support */
@media (forced-colors: active) {
  .btn, .btn-primary, .btn-gold, .btn-outline, .btn-white {
    border: 2px solid ButtonText;
  }
}
/* Screen reader only utility */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ── MOBILE POLISH (375px breakpoint) ──────────────────── */
@media (max-width: 375px) {
  .nav { padding: 0 8px; height: 48px; }
  .nav.scrolled { height: 42px; }
  .nav-logo svg { width: 16px !important; height: 16px !important; }
  .nav-logo-text { font-size: 12px !important; }
  .section, .section-sm, .section-lg { padding-left: 10px; padding-right: 10px; }
  .page-header { padding: 24px 10px; }
  .page-header h1 { font-size: clamp(20px, 7vw, 28px); }
  .footer { padding: 40px 10px 18px; }
  .hero-title__headline { font-size: clamp(18px, 8vw, 28px); }
  .hero-title__eyebrow { font-size: 9px; letter-spacing: 0.14em; }
  .cta-pill { left: 6px; right: 6px; bottom: 40px; padding: 6px 8px 6px 12px; }
  .cta-pill__label { font-size: 7px; }
  .cta-pill__action { font-size: 11px; }
  .cta-pill__thumb { width: 26px; height: 26px; border-radius: 6px; }
  .btn { width: 100%; justify-content: center; }
  .btn-primary, .btn-gold, .btn-outline, .btn-white { padding: 12px 20px; font-size: 13px; }
  .form-input, .form-select, .form-textarea { width: 100%; font-size: 13px; }
  .form-row { grid-template-columns: 1fr; }
  .product-grid, .products-grid { grid-template-columns: 1fr; gap: 10px; padding: 0 6px; }
  .product-card .product-name { font-size: 16px; }
  .product-card .product-body { padding: 12px; }
  .card-quote-btn { width: 100%; text-align: center; justify-content: center; }
  /* Ensure no horizontal overflow at 375px */
  * { max-width: 100vw; }
  body, .section, .page-header, .site-footer, .hero-carousel { overflow-x: hidden; }
  img, video, iframe, table { max-width: 100%; height: auto; }
  .announce-bar { font-size: 9px; gap: 8px; padding: 4px 8px; }
  .announce-bar span { font-size: 9px; }
  .usp-grid { grid-template-columns: 1fr; gap: 8px; }
  .usp-stat { padding: 16px 10px; }
  .usp-stat__num { font-size: 28px; }
  .fabric-grid { grid-template-columns: 1fr; gap: 10px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 12px; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius-lg); }
  .newsletter-input { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .newsletter-btn { border-radius: 0 0 var(--radius-lg) var(--radius-lg); width: 100%; }
  .floating-contact { bottom: 10px; left: 8px; gap: 6px; }
  .fc-btn { padding: 8px 10px; font-size: 11px; }
}

/* ═════════════════════════════════════
   Contact Page — Premium Layout
   ═════════════════════════════════════ */

/* Layout Grid */
.contact-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 80px;
  align-items: start;
}

/* ── LEFT: Sidebar ── */
.contact-sidebar {
  position: sticky;
  top: 100px;
}

.contact-sidebar-header {
  margin-bottom: 24px;
}
.contact-sidebar-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}
.contact-sidebar-header p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* Info Cards */
.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.contact-info-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(139,111,71,0.08);
}

.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FDF8F2, #F5EDE0);
  border-radius: 10px;
}

.contact-info-body { flex: 1; }
.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clay-dark);
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  display: block;
}
.contact-info-value:hover { color: var(--gold); }
.contact-info-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
  display: block;
}

/* Trust Badge */
.contact-trust-badge {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
  padding: 24px 20px;
  background: linear-gradient(135deg, var(--dark), #2A1A10);
  border-radius: 14px;
}
.trust-badge-stat {
  text-align: center;
}
.trust-badge-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.1;
}
.trust-badge-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* ── RIGHT: Form ── */
.contact-form-col {
  min-width: 0;
}

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 44px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.03);
}

.form-card-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}
.form-card-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-card-header p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* Form Elements */
.form-row-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group-premium {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.form-row-double .form-group-premium {
  margin-bottom: 0;
}

.form-label-premium {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.form-label-premium .required {
  color: #C0392B;
  margin-left: 2px;
}

.form-input-premium,
.form-textarea-premium {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: #FAF8F5;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  box-sizing: border-box;
}
.form-input-premium::placeholder,
.form-textarea-premium::placeholder {
  color: #B8B0A6;
}
.form-input-premium:hover,
.form-textarea-premium:hover {
  border-color: #C9B99A;
  background: #FDFCF9;
}
.form-input-premium:focus,
.form-textarea-premium:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(139,111,71,0.08);
}

.form-textarea-premium {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

/* Submit Button */
.btn-submit-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 10px;
  transition: all 0.25s;
}
.btn-submit-premium:hover {
  gap: 14px;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61,42,28,0.25);
}
.btn-submit-premium:active {
  transform: translateY(0) scale(0.98);
}

.form-submit-row {
  margin-top: 8px;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}

/* ── Dealer CTA Section ── */
.contact-cta-section {
  background: linear-gradient(160deg, var(--dark) 0%, #2A1F14 100%);
  position: relative;
  overflow: hidden;
}
.contact-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139,111,71,0.15), transparent 70%);
  border-radius: 50%;
}
.contact-cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139,111,71,0.1), transparent 70%);
  border-radius: 50%;
}

.contact-cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 64px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.contact-cta-text { flex: 1; }
.contact-cta-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.15;
}
.contact-cta-text p {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.contact-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.btn-outline-white {
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  background: transparent;
  text-decoration: none;
  text-align: center;
  transition: all 0.25s;
}
.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 32px 60px;
  }
  .contact-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .contact-sidebar-header {
    grid-column: 1 / -1;
    margin-bottom: 8px;
  }
  .contact-trust-badge {
    grid-column: 1 / -1;
    margin-top: 12px;
  }
  .form-card {
    padding: 32px 28px;
  }
  .contact-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 48px 32px;
  }
  .contact-cta-actions {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .contact-layout {
    padding: 0 20px 48px;
  }
  .contact-sidebar {
    grid-template-columns: 1fr;
  }
  .contact-info-card {
    padding: 16px 18px;
  }
  .form-card {
    padding: 24px 20px;
    border-radius: 12px;
  }
  .form-card-header h2 {
    font-size: 26px;
  }
  .form-row-double {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-row-double .form-group-premium {
    margin-bottom: 16px;
  }
  .btn-submit-premium {
    width: 100%;
    justify-content: center;
  }
  .contact-cta-inner {
    padding: 40px 20px;
  }
  .contact-cta-text h2 {
    font-size: 26px;
  }
  .contact-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .contact-cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-layout {
    padding: 0 16px 40px;
  }
  .form-card {
    padding: 20px 16px;
  }
  .form-card-header h2 {
    font-size: 22px;
  }
  .contact-trust-badge {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 16px 12px;
  }
  .trust-badge-number {
    font-size: 20px;
  }
}
