/* ============================================
   SOHNI – Landing Page Design System
   Premium Beauty Concierge | South Delhi NCR
   ============================================ */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Manrope:wght@300;400;500;600;700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Colors */
  --color-black:        #0D0A0A;
  --color-soft-black:   #171212;
  --color-warm-ivory:   #F6EFEA;
  --color-rose-beige:   #D8B7A6;
  --color-copper:       #B98772;
  --color-deep-taupe:   #3C302C;
  --color-soft-border:  #E9D9CF;
  --color-card-bg:      #FFF9F6;
  --color-dark-card:    #221B1B;
  --color-chip-bg:      #F0E6DF;

  /* Typography */
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Manrope', -apple-system, sans-serif;

  /* Spacing */
  --s-4:  4px;
  --s-8:  8px;
  --s-12: 12px;
  --s-16: 16px;
  --s-24: 24px;
  --s-32: 32px;
  --s-40: 40px;
  --s-48: 48px;
  --s-64: 64px;
  --s-80: 80px;
  --s-96: 96px;

  /* Radius */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-full: 999px;

  /* Containers */
  --container-max: 1200px;
  --container-px:  120px;
  --container-px-md: 48px;
  --container-px-sm: 24px;

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-med:  0.3s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background: var(--color-black);
  color: var(--color-warm-ivory);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ---------- Typography Scale ---------- */
.t-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-copper);
}

.t-h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.t-h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.t-h3 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.3;
  font-weight: 500;
}

.t-body-l {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.7;
  font-weight: 400;
}

.t-body-m {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
}

.t-body-s {
  font-size: 14px;
  line-height: 1.6;
}

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: calc(var(--container-max) + var(--container-px) * 2);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section-pad {
  padding: var(--s-80) 0;
}

.text-center { text-align: center; }
.text-ivory  { color: var(--color-warm-ivory); }
.text-beige  { color: var(--color-rose-beige); }
.text-copper { color: var(--color-copper); }
.text-taupe  { color: var(--color-deep-taupe); }

/* ---------- 1. ANNOUNCEMENT BAR ---------- */
.announcement-bar {
  width: 100%;
  background: var(--color-copper);
  padding: 12px var(--s-24);
  text-align: center;
  position: relative;
  z-index: 100;
}

.announcement-bar p {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--color-black);
}

/* ---------- 2. HERO SECTION ---------- */
.hero {
  background: var(--color-black);
  padding: var(--s-64) 0 var(--s-80);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(185,135,114,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Logo */
.hero-logo {
  text-align: center;
  margin-bottom: var(--s-48);
}

.hero-logo img {
  height: 72px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 20px rgba(185,135,114,0.15));
}

/* Hero grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-48);
  align-items: center;
}

/* Left column */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: var(--s-24);
}

.hero-headline {
  color: var(--color-warm-ivory);
}

.hero-headline span {
  color: var(--color-copper);
  font-style: italic;
}

.hero-subheadline {
  color: var(--color-rose-beige);
}

/* Trust bullets */
.hero-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12) var(--s-24);
  margin-top: var(--s-8);
}

.hero-bullet {
  display: flex;
  align-items: center;
  gap: var(--s-8);
  font-size: 14px;
  color: var(--color-warm-ivory);
}

.hero-bullet .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-copper);
  flex-shrink: 0;
}

/* CTA Group */
.hero-ctas {
  display: flex;
  gap: var(--s-16);
  flex-wrap: wrap;
  margin-top: var(--s-8);
}

/* Right column */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: var(--s-24);
}

.hero-image-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--color-soft-black);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,10,10,0) 40%, rgba(13,10,10,0.5) 100%);
}

.hero-image-badge {
  position: absolute;
  bottom: var(--s-16);
  left: var(--s-16);
  background: rgba(246,239,234,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(246,239,234,0.15);
  border-radius: var(--r-full);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-warm-ivory);
  letter-spacing: 0.5px;
}

/* Mini form card */
.hero-form-card {
  background: var(--color-warm-ivory);
  border-radius: var(--r-lg);
  padding: var(--s-24) var(--s-32);
}

.hero-form-card .form-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-deep-taupe);
  margin-bottom: var(--s-4);
}

.hero-form-card .form-sub {
  font-size: 13px;
  color: #7A5E55;
  margin-bottom: var(--s-16);
}

.mini-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
}

.mini-form-grid .span-full {
  grid-column: 1 / -1;
}

/* ---------- 3. TRUST STRIP ---------- */
.trust-strip {
  background: var(--color-warm-ivory);
  padding: var(--s-32) 0;
  border-bottom: 1px solid var(--color-soft-border);
}

.trust-chips {
  display: flex;
  justify-content: center;
  gap: var(--s-16);
  flex-wrap: wrap;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: var(--s-8);
  padding: var(--s-12) var(--s-24);
  border: 1px solid var(--color-soft-border);
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-deep-taupe);
  white-space: nowrap;
  background: var(--color-card-bg);
}

.trust-chip svg {
  flex-shrink: 0;
  color: var(--color-copper);
}

/* ---------- 4. PROBLEM SECTION ---------- */
.section-ivory {
  background: var(--color-warm-ivory);
}

.section-dark {
  background: var(--color-soft-black);
}

.section-black {
  background: var(--color-black);
}

.section-heading-group {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--s-48);
}

.section-heading-group .t-eyebrow {
  display: block;
  margin-bottom: var(--s-16);
}

.section-heading-group .t-h2 {
  margin-bottom: var(--s-16);
}

.section-heading-group .t-body-m {
  color: #6B5147;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-24);
}

.problem-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-soft-border);
  border-radius: var(--r-lg);
  padding: var(--s-32);
  transition: box-shadow var(--transition-med), transform var(--transition-med);
}

.problem-card:hover {
  box-shadow: 0 16px 48px rgba(185,135,114,0.12);
  transform: translateY(-4px);
}

.problem-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-copper) 0%, #8B5E4A 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-24);
}

.problem-icon svg {
  color: white;
  width: 24px;
  height: 24px;
}

.problem-card .t-h3 {
  color: var(--color-deep-taupe);
  margin-bottom: var(--s-12);
  font-size: 20px;
}

.problem-card .t-body-s {
  color: #6B5147;
}

/* ---------- 5. EMOTIONAL REFRAME ---------- */
.reframe {
  background: var(--color-soft-black);
  padding: var(--s-80) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.reframe::before,
.reframe::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(185,135,114,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.reframe::before { top: -80px; left: -80px; }
.reframe::after  { bottom: -80px; right: -80px; }

.reframe-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.reframe-quote {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-warm-ivory);
  margin-bottom: var(--s-24);
}

.reframe-quote em {
  font-style: italic;
  color: var(--color-copper);
}

.reframe-body {
  color: var(--color-rose-beige);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- 6. SOLUTION SECTION ---------- */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-64);
  align-items: start;
}

.solution-left {
  display: flex;
  flex-direction: column;
  gap: var(--s-24);
}

.solution-left .t-h2 {
  color: var(--color-deep-taupe);
}

.solution-left .t-body-m {
  color: #6B5147;
}

.solution-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-20, 20px);
}

.feature-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-soft-border);
  border-radius: var(--r-lg);
  padding: var(--s-24);
  transition: box-shadow var(--transition-med), transform var(--transition-med);
}

.feature-card:hover {
  box-shadow: 0 12px 40px rgba(185,135,114,0.1);
  transform: translateY(-3px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-soft-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-16);
  color: var(--color-copper);
}

.feature-card .t-h3 {
  color: var(--color-deep-taupe);
  font-size: 17px;
  margin-bottom: var(--s-8);
}

.feature-card .t-body-s {
  color: #7A5E55;
  line-height: 1.55;
}

/* ---------- 7. OCCASIONS SECTION ---------- */
.occasions-section {
  background: var(--color-warm-ivory);
  padding: var(--s-64) 0;
}

.occasions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-12);
  justify-content: center;
  margin-top: var(--s-32);
}

.occasion-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--s-8);
  padding: 10px 20px;
  border: 1px solid var(--color-soft-border);
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-deep-taupe);
  background: var(--color-card-bg);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.occasion-chip:hover {
  background: var(--color-copper);
  border-color: var(--color-copper);
  color: white;
  transform: translateY(-2px);
}

.occasion-chip span.icon {
  font-size: 16px;
}

/* ---------- 8. PROCESS SECTION ---------- */
.process-section {
  background: var(--color-soft-black);
  padding: var(--s-80) 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-24);
  margin-bottom: var(--s-48);
}

.process-step {
  background: rgba(246,239,234,0.04);
  border: 1px solid rgba(246,239,234,0.08);
  border-radius: var(--r-lg);
  padding: var(--s-32) var(--s-24);
  position: relative;
  transition: background var(--transition-med), border-color var(--transition-med);
}

.process-step:hover {
  background: rgba(246,239,234,0.07);
  border-color: rgba(185,135,114,0.25);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 600;
  color: rgba(185,135,114,0.25);
  line-height: 1;
  margin-bottom: var(--s-16);
}

.step-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-warm-ivory);
  margin-bottom: var(--s-12);
}

.step-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-rose-beige);
}

/* ---------- 9. GALLERY SECTION ---------- */
.gallery-section {
  background: var(--color-warm-ivory);
  padding: var(--s-80) 0;
}

.gallery-tabs {
  display: flex;
  gap: var(--s-8);
  justify-content: center;
  flex-wrap: wrap;
  margin: var(--s-24) 0 var(--s-40);
}

.gallery-tab {
  padding: 8px 20px;
  border: 1px solid var(--color-soft-border);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-deep-taupe);
  background: var(--color-card-bg);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.gallery-tab.active,
.gallery-tab:hover {
  background: var(--color-deep-taupe);
  border-color: var(--color-deep-taupe);
  color: var(--color-warm-ivory);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-16);
  margin-bottom: var(--s-40);
}

.gallery-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--color-soft-border) 0%, var(--color-rose-beige) 100%);
  position: relative;
}

.gallery-item-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #E8D5C9 0%, #C9A899 40%, #A67B6B 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--s-16);
  transition: transform var(--transition-med);
}

.gallery-item:hover .gallery-item-inner {
  transform: scale(1.03);
}

.gallery-placeholder-text {
  font-family: var(--font-serif);
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.3);
  padding: 6px 12px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.gallery-cta-wrap {
  text-align: center;
}

/* ---------- 10. WHY CHOOSE SECTION ---------- */
.why-section {
  background: var(--color-warm-ivory);
  padding: var(--s-80) 0;
  border-top: 1px solid var(--color-soft-border);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-80);
  align-items: start;
}

.why-left .t-h2 {
  color: var(--color-deep-taupe);
  margin-bottom: var(--s-24);
}

.why-left p {
  color: #6B5147;
  margin-bottom: var(--s-32);
}

.why-bullets {
  display: flex;
  flex-direction: column;
  gap: var(--s-12);
}

.why-bullet {
  display: flex;
  align-items: flex-start;
  gap: var(--s-12);
  font-size: 15px;
  color: #4A3430;
}

.why-bullet .bullet-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(185,135,114,0.15);
  border: 1px solid rgba(185,135,114,0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.why-bullet .bullet-icon svg {
  width: 10px;
  height: 10px;
  color: var(--color-copper);
}

/* ---------- 11. TESTIMONIALS ---------- */
.testimonials-section {
  background: var(--color-soft-black);
  padding: var(--s-80) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-24);
}

.testimonial-card {
  background: var(--color-dark-card);
  border: 1px solid rgba(246,239,234,0.07);
  border-radius: var(--r-lg);
  padding: var(--s-32);
  display: flex;
  flex-direction: column;
  gap: var(--s-16);
  transition: border-color var(--transition-med);
}

.testimonial-card:hover {
  border-color: rgba(185,135,114,0.25);
}

.quote-icon {
  font-family: var(--font-serif);
  font-size: 40px;
  line-height: 0.6;
  color: var(--color-copper);
  opacity: 0.5;
}

.testimonial-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-warm-ivory);
  margin-bottom: var(--s-4);
}

.testimonial-body {
  font-size: 14px;
  line-height: 1.65;
  color: #BFA79A;
  flex: 1;
}

.testimonial-footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: var(--s-16);
  border-top: 1px solid rgba(246,239,234,0.06);
}

.testimonial-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-warm-ivory);
}

.testimonial-occasion {
  font-size: 12px;
  color: var(--color-copper);
  letter-spacing: 0.5px;
}

/* ---------- 12. QUALIFICATION ---------- */
.qualification-section {
  background: var(--color-warm-ivory);
  padding: var(--s-80) 0;
}

.qual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-24);
}

.qual-card {
  border-radius: var(--r-lg);
  padding: var(--s-40) var(--s-32);
}

.qual-card.positive {
  background: var(--color-deep-taupe);
  color: var(--color-warm-ivory);
}

.qual-card.neutral {
  background: var(--color-card-bg);
  border: 1px solid var(--color-soft-border);
  color: var(--color-deep-taupe);
}

.qual-card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: var(--s-24);
}

.qual-card.positive .qual-card-title { color: var(--color-warm-ivory); }
.qual-card.neutral  .qual-card-title { color: var(--color-deep-taupe); }

.qual-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-12);
}

.qual-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-12);
  font-size: 14px;
  line-height: 1.5;
}

.qual-card.positive .qual-item { color: rgba(246,239,234,0.85); }
.qual-card.neutral  .qual-item { color: #6B5147; }

.qual-marker {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.qual-card.positive .qual-marker {
  background: rgba(246,239,234,0.15);
  color: var(--color-warm-ivory);
}

.qual-card.neutral .qual-marker {
  background: rgba(185,135,114,0.12);
  color: var(--color-copper);
}

/* ---------- 13. FAQ ---------- */
.faq-section {
  background: var(--color-warm-ivory);
  padding: var(--s-80) 0;
  border-top: 1px solid var(--color-soft-border);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto var(--s-48);
  display: flex;
  flex-direction: column;
  gap: var(--s-8);
}

.faq-item {
  border: 1px solid var(--color-soft-border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--color-card-bg);
  transition: border-color var(--transition-fast);
}

.faq-item.open {
  border-color: var(--color-copper);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-20, 20px) var(--s-24);
  cursor: pointer;
  user-select: none;
}

.faq-q-text {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-deep-taupe);
  flex: 1;
  padding-right: var(--s-16);
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--color-soft-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.faq-item.open .faq-toggle {
  background: var(--color-copper);
  border-color: var(--color-copper);
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
  color: var(--color-copper);
  transition: transform var(--transition-fast);
}

.faq-item.open .faq-toggle svg {
  transform: rotate(45deg);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}

.faq-answer-inner {
  padding: 0 var(--s-24) var(--s-24);
  font-size: 15px;
  line-height: 1.65;
  color: #6B5147;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ---------- 14. MAIN FORM ---------- */
.form-section {
  background: var(--color-soft-black);
  padding: var(--s-96) 0;
}

.form-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-warm-ivory);
  border-radius: var(--r-lg);
  padding: var(--s-48);
}

.form-header {
  text-align: center;
  margin-bottom: var(--s-40);
}

.form-header .t-h2 {
  color: var(--color-deep-taupe);
  margin-bottom: var(--s-12);
}

.form-header .t-body-m {
  color: #6B5147;
}

.main-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
}

.main-form-grid .form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: var(--s-8);
}

.form-microcopy {
  text-align: center;
  font-size: 13px;
  color: #7A5E55;
  margin-top: var(--s-16);
}

/* ---------- 15. FINAL CTA ---------- */
.final-cta {
  background: var(--color-black);
  padding: var(--s-80) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(185,135,114,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.final-cta .t-h2 {
  color: var(--color-warm-ivory);
  margin-bottom: var(--s-16);
}

.final-cta .t-body-m {
  color: var(--color-rose-beige);
  margin-bottom: var(--s-32);
}

.final-cta .cta-note {
  margin-top: var(--s-16);
  font-size: 13px;
  color: rgba(185,135,114,0.7);
  letter-spacing: 0.5px;
}

/* ---------- 16. FOOTER ---------- */
.footer {
  background: var(--color-black);
  border-top: 1px solid rgba(246,239,234,0.06);
  padding: var(--s-48) 0 var(--s-32);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-24);
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(246,239,234,0.4);
  margin-top: 6px;
}

.footer-links {
  display: flex;
  gap: var(--s-24);
  align-items: center;
}

.footer-link {
  font-size: 13px;
  color: rgba(246,239,234,0.5);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-copper);
}

.footer-bottom {
  margin-top: var(--s-32);
  padding-top: var(--s-24);
  border-top: 1px solid rgba(246,239,234,0.05);
  text-align: center;
  font-size: 12px;
  color: rgba(246,239,234,0.2);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-8);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: var(--r-full);
  padding: 15px 32px;
  transition: all var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-warm-ivory);
  color: var(--color-black);
  border: 2px solid var(--color-warm-ivory);
}

.btn-primary:hover {
  background: var(--color-soft-border);
  border-color: var(--color-soft-border);
  box-shadow: 0 8px 32px rgba(246,239,234,0.15);
  transform: translateY(-2px);
}

.btn-primary-dark {
  background: var(--color-deep-taupe);
  color: var(--color-warm-ivory);
  border: 2px solid var(--color-deep-taupe);
}

.btn-primary-dark:hover {
  background: var(--color-black);
  border-color: var(--color-black);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-warm-ivory);
  border: 1.5px solid rgba(246,239,234,0.3);
}

.btn-outline:hover {
  border-color: var(--color-rose-beige);
  background: rgba(246,239,234,0.05);
  transform: translateY(-2px);
}

.btn-copper {
  background: var(--color-copper);
  color: white;
  border: 2px solid var(--color-copper);
}

.btn-copper:hover {
  background: #A0725F;
  border-color: #A0725F;
  box-shadow: 0 8px 24px rgba(185,135,114,0.3);
  transform: translateY(-2px);
}

.btn-sm {
  font-size: 13px;
  padding: 11px 24px;
}

/* ---------- FORM ELEMENTS ---------- */
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--color-soft-border);
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-deep-taupe);
  background: #FFF7F3;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder, .form-textarea::placeholder {
  color: #B0998E;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-copper);
  box-shadow: 0 0 0 3px rgba(185,135,114,0.12);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B98772' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 96px;
}

/* ---------- DIVIDER / ORNAMENT ---------- */
.copper-line {
  width: 48px;
  height: 2px;
  background: var(--color-copper);
  margin: var(--s-16) auto var(--s-24);
  border-radius: var(--r-full);
}

.copper-line.left {
  margin-left: 0;
}

/* ---------- STICKY CTA (mobile) ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: var(--s-12) var(--s-24);
  background: rgba(13,10,10,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(246,239,234,0.08);
}

.sticky-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ---------- RESPONSIVE: Tablet ---------- */
@media (max-width: 1100px) {
  :root {
    --container-px: var(--container-px-md);
  }

  .hero-grid,
  .solution-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: var(--s-40);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* ---------- RESPONSIVE: Mobile ---------- */
@media (max-width: 720px) {
  :root {
    --container-px: var(--container-px-sm);
  }

  .section-pad { padding: var(--s-64) 0; }

  .announcement-bar p { font-size: 11px; }

  .hero { padding: var(--s-40) 0 var(--s-64); }

  .hero-logo img { height: 52px; }

  .hero-logo { margin-bottom: var(--s-32); }

  .hero-bullets {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-image-frame {
    aspect-ratio: 4/3;
  }

  .hero-form-card {
    padding: var(--s-24);
  }

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

  .problem-grid {
    grid-template-columns: 1fr;
    gap: var(--s-16);
  }

  .solution-right {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-12);
  }

  .gallery-grid .gallery-item:nth-child(3) {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
  }

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

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

  .trust-chips {
    flex-direction: column;
    align-items: center;
  }

  .trust-chip { width: 100%; max-width: 320px; justify-content: center; }

  .form-card {
    padding: var(--s-24);
  }

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

  .main-form-grid .form-group.full {
    grid-column: 1;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .sticky-cta { display: block; }

  body { padding-bottom: 80px; }
}

/* ---------- FIGMA EXPORT HELPERS ---------- */
/* Use these classes to annotate sections in Figma */
[data-section] { position: relative; }
