/* ============================================================
   SAMRAI ASSOCIATES LIMITED — Stylesheet
   Minimal Modern Architectural — Cormorant Garamond + DM Sans
   ============================================================ */

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

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --ink:        #1a1a1a;
  --ink-soft:   #4a4a4a;
  --ink-muted:  #8a8a8a;
  --gold:       #c8a96e;
  --gold-light: #e8d5b0;
  --cream:      #f8f7f4;
  --warm-grey:  #e8e4dc;
  --white:      #ffffff;
  --border:     #e0dbd2;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --nav-h:      72px;
  --max-w:      1200px;
  --gutter:     24px;

  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 0.95rem; line-height: 1.75; color: var(--ink-soft); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── LAYOUT ────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-header { margin-bottom: 56px; }
.section-header .eyebrow { margin-bottom: 12px; }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
  border: 1.5px solid var(--ink);
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
}
.btn-gold:hover { background: #b8995e; border-color: #b8995e; }
.btn-white {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--white);
}
.btn-white:hover { background: transparent; color: var(--white); }
.btn-sm { padding: 10px 22px; font-size: 0.72rem; }

/* ─── NAVBAR ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(248,247,244,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.nav-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: all 0.25s var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--cream) 0%, var(--warm-grey) 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,26,26,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,26,26,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero h1 { margin-bottom: 24px; }
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1rem;
  max-width: 500px;
  margin-bottom: 44px;
  color: var(--ink-soft);
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-deco {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 45%;
  height: 80%;
  opacity: 0.5;
  pointer-events: none;
}

/* ─── CARDS ─────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

/* ─── PRODUCT CARDS ─────────────────────────────────────────── */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.product-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-img svg { width: 100%; height: 100%; }
.product-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-card-cat {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
}
.product-card-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.2;
}
.product-card-desc {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.product-card-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
}

/* ─── PRODUCTS GRID ─────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* ─── FILTER BAR ────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 20px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--ink-soft);
  background: var(--white);
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* ─── ADVANTAGES ────────────────────────────────────────────── */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  background: var(--border);
}
.advantage-item {
  background: var(--white);
  padding: 48px 40px;
}
.advantage-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
}
.advantage-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

/* ─── HOW IT WORKS ──────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 0; right: 0;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.step-item {
  padding: 0 32px 48px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 24px;
}
.step-title { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 12px; }

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold-light);
  position: absolute;
  top: 20px; left: 32px;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 28px;
  padding-top: 40px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--warm-grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
}
.testimonial-name { font-size: 0.85rem; font-weight: 500; color: var(--ink); }
.testimonial-role { font-size: 0.75rem; color: var(--ink-muted); }
.stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 2px; margin-bottom: 4px; }

/* ─── CTA BANNER ────────────────────────────────────────────── */
.cta-banner {
  background: var(--ink);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto 40px; }

/* ─── ABOUT PAGE ────────────────────────────────────────────── */
.about-hero {
  padding: 160px 0 100px;
  background: var(--ink);
  color: var(--white);
}
.about-hero h1 { color: var(--white); }
.about-hero p { color: rgba(255,255,255,0.6); max-width: 600px; margin-top: 20px; }
.about-hero .eyebrow { margin-bottom: 16px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
}
.value-item {
  background: var(--cream);
  padding: 40px 32px;
  text-align: center;
}
.value-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.value-title { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 10px; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  text-align: center;
  background: var(--warm-grey);
}
.stat-item { padding: 60px 32px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }

/* ─── CONTACT ───────────────────────────────────────────────── */
.contact-hero {
  padding: 160px 0 80px;
  background: var(--ink);
  color: var(--white);
}
.contact-hero h1 { color: var(--white); }
.contact-hero p { color: rgba(255,255,255,0.6); margin-top: 16px; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
}
.contact-info-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-info-val { font-size: 0.9rem; color: var(--ink); line-height: 1.5; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-control {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  outline: none;
  transition: border-color 0.2s;
}
.form-control:focus { border-color: var(--gold); }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-hero {
  padding: 160px 0 80px;
  background: var(--warm-grey);
}
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
}
.faq-q-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
}
.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform 0.25s var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 0 24px; }
.faq-answer-inner p { font-size: 0.9rem; line-height: 1.8; }

/* ─── PRODUCT DETAIL ────────────────────────────────────────── */
.product-hero {
  padding: 120px 0 80px;
  background: var(--cream);
}
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.product-detail-img {
  background: var(--white);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail-img svg { width: 100%; height: 100%; }
.product-detail-cat {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}
.product-detail-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.1;
}
.product-detail-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 28px;
}
.product-detail-desc { font-size: 0.95rem; line-height: 1.8; color: var(--ink-soft); margin-bottom: 36px; }
.product-features { margin-bottom: 40px; }
.product-features h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.feature-item::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── LEGAL PAGES ───────────────────────────────────────────── */
.legal-hero {
  padding: 140px 0 60px;
  background: var(--warm-grey);
}
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 24px;
}
.legal-content h2 { font-size: 1.5rem; margin: 40px 0 12px; }
.legal-content h3 { font-size: 1.1rem; margin: 28px 0 10px; font-family: var(--font-body); font-weight: 500; }
.legal-content p { margin-bottom: 16px; font-size: 0.9rem; }
.legal-content ul { margin: 12px 0 20px 20px; }
.legal-content li { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 8px; list-style: disc; }

/* ─── SUCCESS PAGE ──────────────────────────────────────────── */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}
.success-icon {
  width: 80px; height: 80px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  color: var(--gold);
  font-size: 2rem;
}
.success-page h1 { font-size: 2.5rem; margin-bottom: 16px; }
.success-page p { max-width: 440px; margin: 0 auto 40px; }

/* ─── FOOTER ────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { }
.footer-logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
}
.footer-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.footer-tagline { font-size: 0.85rem; line-height: 1.7; max-width: 260px; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 0.82rem; }
.footer-contact-item a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ─── ANIMATIONS ────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transform: translateY(20px);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.slide-up.visible { opacity: 1; transform: translateY(0); }
.fade-in-card { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.fade-in-card.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ─── SKELETON LOADER ───────────────────────────────────────── */
.skeleton-loader {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  transition: opacity 0.3s;
}
.skeleton-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
}
.skeleton-img {
  aspect-ratio: 4/3;
  background: linear-gradient(90deg, var(--warm-grey) 25%, var(--border) 50%, var(--warm-grey) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.skeleton-body { padding: 24px; }
.skeleton-line {
  height: 12px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--warm-grey) 25%, var(--border) 50%, var(--warm-grey) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  margin-bottom: 10px;
}
.skeleton-line.short { width: 50%; }
@keyframes shimmer { to { background-position: -200% 0; } }
.products-grid-hidden { opacity: 0; transition: opacity 0.4s; }

/* ─── HERO DECORATIVE SVG ───────────────────────────────────── */
.hero-deco-svg {
  position: absolute;
  right: 0; top: var(--nav-h);
  width: 48%;
  height: calc(100vh - var(--nav-h));
  pointer-events: none;
}

/* ─── SECTION DIVIDER ───────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ─── MISC ──────────────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-muted { color: var(--ink-muted); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.page-top { padding-top: var(--nav-h); }
.bg-cream { background: var(--cream); }
.bg-warm { background: var(--warm-grey); }
.bg-white { background: var(--white); }
.bg-ink { background: var(--ink); }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .product-detail-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero-deco-svg { display: none; }
}

@media (max-width: 768px) {
  :root { --gutter: 20px; }
  .section { padding: 72px 0; }
  .nav-menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px var(--gutter) 32px;
    gap: 0;
    transform: translateY(-110%);
    transition: transform 0.3s var(--ease);
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-link { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
  .nav-link::after { display: none; }
  .nav-cta { margin: 20px 0 0; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .steps-grid::before { display: none; }
  .step-item { padding: 0 0 32px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
}

@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  .products-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
