:root {
  --bg: #FBF8F3;
  --bg-soft: #F5EFE6;
  --ivory: #FAF5ED;
  --beige: #EFE6D6;
  --sand: #E2D4BE;
  --taupe: #B9A78B;
  --sage: #A8B89C;
  --sage-soft: #C7D0BD;
  --clay: #C79A7A;
  --charcoal: #2C2823;
  --charcoal-soft: #4A433B;
  --muted: #6F675C;
  --line: #E9E1D3;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(44, 40, 35, 0.04);
  --shadow-md: 0 8px 24px rgba(44, 40, 35, 0.06);
  --shadow-lg: 0 20px 60px rgba(44, 40, 35, 0.10);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: var(--charcoal);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 8px; outline: 2px solid var(--clay); }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--charcoal);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

p { color: var(--charcoal-soft); font-size: 1.02rem; }

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
}

.section-title {
  max-width: 760px;
  margin-bottom: 20px;
}

.section-subtitle {
  max-width: 680px;
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 54px;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 243, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: var(--container);
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
}
.nav-brand img { height: 34px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav-links a:hover { color: var(--clay); }

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-cta .badge-img { height: 40px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  margin: 4px 0;
  transition: 0.25s var(--ease);
}

/* HERO */
.hero {
  position: relative;
  padding: 88px 0 110px;
  background:
    radial-gradient(ellipse at top right, rgba(199, 154, 122, 0.08), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(168, 184, 156, 0.08), transparent 60%),
    var(--bg);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 22px;
}
.hero-content h1 .accent {
  font-style: italic;
  color: var(--clay);
}

.hero-subtitle {
  font-size: 1.18rem;
  color: var(--charcoal-soft);
  margin-bottom: 30px;
  max-width: 560px;
  line-height: 1.55;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 34px;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.98rem;
  color: var(--charcoal-soft);
}
.hero-bullets li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23C79A7A'><path d='M16.7 5.3a1 1 0 010 1.4l-8 8a1 1 0 01-1.4 0l-4-4a1 1 0 011.4-1.4L8 12.6l7.3-7.3a1 1 0 011.4 0z'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.store-badge {
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: inline-block;
  border-radius: 10px;
}
.store-badge img { height: 54px; width: auto; }
.store-badge:hover {
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}
.hero-trust .stars {
  color: #E5B800;
  letter-spacing: 2px;
  font-size: 1.1rem;
}

/* Before / After (hero) */
.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ivory);
  aspect-ratio: 4 / 3;
  user-select: none;
  cursor: ew-resize;
}
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual .after-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: 50%;
}
.hero-visual .after-wrap img {
  width: 200%;
  left: 0;
}
.hero-visual .slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}
.hero-visual .slider-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232C2823' stroke-width='2'><path d='M8 7l-5 5 5 5'/><path d='M16 7l5 5-5 5'/></svg>");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-visual .tag {
  position: absolute;
  top: 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(44, 40, 35, 0.8);
  color: var(--white);
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  pointer-events: none;
}
.hero-visual .tag-before { left: 18px; }
.hero-visual .tag-after { right: 18px; background: rgba(199, 154, 122, 0.95); }

/* TRUST BAR */
.trust-bar {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 48px;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.trust-row strong { color: var(--charcoal); font-weight: 600; }

/* TRANSFORM GALLERY */
.transform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.transform-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.transform-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.transform-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  margin-bottom: 18px;
}
.transform-pair figure {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.transform-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.transform-card:hover .transform-pair img { transform: scale(1.03); }
.transform-pair figcaption {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(44, 40, 35, 0.82);
  color: var(--white);
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.transform-pair figure:nth-child(2) figcaption { background: rgba(199, 154, 122, 0.95); }
.transform-card h3 { margin-bottom: 6px; }
.transform-card p { font-size: 0.94rem; color: var(--muted); }

/* WHY */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.why-card:hover { transform: translateY(-3px); border-color: var(--sage-soft); }
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--clay);
}
.why-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.why-card p { font-size: 0.96rem; color: var(--muted); }

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: background 0.3s var(--ease);
}
.feature-card:hover { background: var(--bg-soft); }
.feature-num {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  color: var(--clay);
  margin-bottom: 8px;
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--muted); }

/* HOW IT WORKS */
.how-wrap {
  background: var(--ivory);
  border-radius: var(--radius-xl);
  padding: 72px 56px;
  border: 1px solid var(--line);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.step {
  position: relative;
  text-align: left;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--white);
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step p { font-size: 0.95rem; color: var(--muted); }

/* SEO CONTENT SECTIONS (AI Interior Design, etc) */
.seo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.seo-content.reverse { direction: rtl; }
.seo-content.reverse > * { direction: ltr; }
.seo-content img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.seo-content h2 { margin-bottom: 20px; }
.seo-content p { font-size: 1.04rem; margin-bottom: 16px; }
.seo-content ul {
  list-style: none;
  margin-top: 20px;
}
.seo-content ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--charcoal-soft);
}
.seo-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 14px;
  height: 2px;
  background: var(--clay);
}

/* STYLES GRID */
.styles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.style-card {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.style-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.style-card:hover img { transform: scale(1.07); }
.style-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 40, 35, 0.75), transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.style-card h3 {
  color: var(--white);
  font-size: 1.15rem;
}

/* ROOM TYPES */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease);
}
.room-card:hover { transform: translateY(-3px); }
.room-card .thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-card-body { padding: 18px; }
.room-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.room-card p { font-size: 0.9rem; color: var(--muted); }

/* AUDIENCE / USE CASES */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.audience-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
}
.audience-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.audience-card p { font-size: 0.96rem; color: var(--muted); }

/* BENEFITS */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  padding: 30px 26px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.benefit-card h3 { font-size: 1.08rem; margin-bottom: 8px; color: var(--charcoal); }
.benefit-card p { font-size: 0.94rem; color: var(--muted); }

/* INSPIRATION GALLERY — masonry */
.inspire-grid {
  column-count: 3;
  column-gap: 16px;
}
.inspire-grid figure {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.inspire-grid img { width: 100%; height: auto; display: block; }

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
}
.testimonial .stars { color: #E5B800; letter-spacing: 2px; font-size: 1rem; margin-bottom: 14px; }
.testimonial blockquote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 18px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--muted);
}
.testimonial cite strong { color: var(--charcoal); font-weight: 600; display: block; }

/* FAQ */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
}
.faq-q::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--clay);
  transition: transform 0.3s var(--ease);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}
.faq-item.open .faq-q::after { content: "−"; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-top: 14px;
}

/* DOWNLOAD SECTION */
.download-section {
  background:
    linear-gradient(135deg, var(--ivory) 0%, var(--bg-soft) 100%);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  position: relative;
  overflow: hidden;
}
.download-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.download-content .brand-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.download-content .brand-mini img { height: 36px; }
.download-content h2 { margin-bottom: 18px; }
.download-content p { font-size: 1.06rem; margin-bottom: 28px; max-width: 520px; }
.download-badges { display: flex; gap: 14px; flex-wrap: wrap; }

.phone-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 320 / 650;
  background: #1a1613;
  border-radius: 46px;
  padding: 14px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 30px 60px rgba(44, 40, 35, 0.25),
    0 10px 30px rgba(44, 40, 35, 0.15);
}
.phone-frame::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #0a0807;
  border-radius: 18px;
  z-index: 2;
}
.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34px;
}

/* FINAL CTA */
.final-cta {
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 80px 56px;
  text-align: center;
}
.final-cta h2 { color: var(--white); margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,0.72); font-size: 1.08rem; max-width: 620px; margin: 0 auto 32px; }
.final-cta .download-badges { justify-content: center; }

/* FOOTER */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.72);
  padding: 72px 0 32px;
  margin-top: 96px;
}
.footer a { color: rgba(255,255,255,0.72); transition: color 0.2s var(--ease); font-size: 0.92rem; }
.footer a:hover { color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}
.footer-brand-link img {
  height: 44px;
  width: 44px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.footer-brand-name {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
}
.footer-brand p { color: rgba(255,255,255,0.64); font-size: 0.94rem; max-width: 280px; }
.footer-col h4 {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.86rem;
  color: rgba(255,255,255,0.52);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; filter: none; }
.footer-badges .store-badge { display: inline-block; filter: none; }
.footer-badges img { height: 40px; width: auto; filter: none !important; display: block; }

/* LEGAL PAGES */
.legal-hero {
  padding: 60px 0 32px;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 28px 96px;
}
.legal-content h1 { margin-bottom: 16px; }
.legal-content .updated { color: var(--muted); font-size: 0.92rem; margin-bottom: 40px; }
.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 44px;
  margin-bottom: 14px;
}
.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 10px;
}
.legal-content p { margin-bottom: 14px; }
.legal-content ul {
  padding-left: 22px;
  margin-bottom: 18px;
}
.legal-content ul li { margin-bottom: 6px; color: var(--charcoal-soft); }
.legal-content a { color: var(--clay); text-decoration: underline; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero { padding: 56px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .why-grid, .features-grid, .styles-grid, .rooms-grid, .audience-grid, .benefits-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .transform-grid { grid-template-columns: 1fr; }
  .seo-content { grid-template-columns: 1fr; gap: 32px; }
  .seo-content.reverse > .seo-content-text { order: -1; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .download-grid { grid-template-columns: 1fr; }
  .download-section, .final-cta { padding: 56px 32px; }
  .how-wrap { padding: 48px 28px; }
  .inspire-grid { column-count: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .badge-img { display: none; }
  .nav-brand span { display: none; }
  .why-grid, .features-grid, .styles-grid, .rooms-grid, .audience-grid, .benefits-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .inspire-grid { column-count: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .store-badge { width: 100%; max-width: 240px; }
  .download-section, .final-cta { padding: 44px 22px; }
  .styles-grid, .rooms-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-link img { height: 38px; width: 38px; }
  .footer-brand-name { font-size: 1.2rem; }
  .footer-badges img { height: 38px; }
}

/* Mobile nav drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 84%;
  max-width: 340px;
  background: var(--bg);
  box-shadow: var(--shadow-lg);
  padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
  z-index: 99;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer ul { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.mobile-drawer a { font-family: 'Fraunces', serif; font-size: 1.4rem; color: var(--charcoal); }
.mobile-drawer .badges { margin-top: 32px; display: flex; flex-direction: column; gap: 10px; }
.mobile-drawer .badges img { height: 46px; }
