/* ============================================================
   LA DOLCE VITA CO. — Main Stylesheet
   Style: Art Deco Modern | Palette: Desert Luxury
   Fonts: Cormorant Garamond (headings) + Lora (body)
   ============================================================ */

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

/* ---------- Design Tokens ---------- */
:root {
  --gold:          #C9A96E;
  --gold-dark:     #A8893E;
  --gold-light:    #E8D0A0;
  --burgundy:      #722F37;
  --burgundy-dark: #541F26;
  --espresso:      #2C1810;
  --ivory:         #FAF6F0;
  --warm-beige:    #F0E6D6;
  --beige-mid:     #E8D5C4;
  --beige-deep:    #D4B99A;
  --text:          #2C1810;
  --text-mid:      #6B4C3B;
  --text-light:    #9C7B68;
  --white:         #FFFFFF;

  --ff-head: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Lora', Georgia, serif;

  --shadow-xs: 0 1px 4px rgba(44,24,16,.06);
  --shadow-sm: 0 2px 10px rgba(44,24,16,.09);
  --shadow-md: 0 6px 24px rgba(44,24,16,.12);
  --shadow-lg: 0 16px 48px rgba(44,24,16,.15);

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --ease: cubic-bezier(.25,.46,.45,.94);
  --tr:   .3s var(--ease);

  --max: 1220px;
  --gap: 2rem;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: var(--ff-body); }

/* ---------- Art Deco decorative line ---------- */
.deco-line {
  display: flex;
  align-items: center;
  gap: .75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.deco-line::before,
.deco-line::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold);
}
.deco-line span {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  display: inline-block;
}

.deco-line-full {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 3rem 0;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-head);
  font-weight: 500;
  line-height: 1.2;
  color: var(--espresso);
}
h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 300; letter-spacing: -.02em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 400; }
h4 { font-size: 1.25rem; }
p  { margin-bottom: 1rem; }
.lead {
  font-size: 1.125rem;
  line-height: 1.85;
  color: var(--text-mid);
}
.eyebrow {
  font-family: var(--ff-body);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  display: block;
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-family: var(--ff-head);
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 1rem;
}

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.text-gold { color: var(--gold-dark); }
.sr-only { position: absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }
section { padding: 6rem 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: .875rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--tr);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--espresso);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--gold-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--espresso);
  border: 1px solid var(--gold);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--espresso);
}
.btn-dark {
  background: var(--espresso);
  color: var(--gold-light);
  box-shadow: var(--shadow-sm);
}
.btn-dark:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
}
.btn-burgundy {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-burgundy:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn svg { width: 16px; height: 16px; }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1.25rem 0;
  transition: padding var(--tr), background var(--tr), box-shadow var(--tr);
}
.site-header.scrolled {
  padding: .75rem 0;
  background: rgba(250,246,240,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-primary {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--espresso);
  letter-spacing: .02em;
}
.logo-sub {
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-family: var(--ff-body);
  margin-top: .1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-family: var(--ff-body);
  font-weight: 500;
  transition: color var(--tr);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}
.nav-links a:hover { color: var(--espresso); }
.nav-links a:hover::after { transform: scaleX(1); }
.header-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--espresso);
  transition: var(--tr);
  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); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--ivory);
  border-top: 1px solid var(--beige-mid);
  padding: 1rem 2rem 1.5rem;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 850;
  padding-top: 5rem;
  transform: translateY(-100%);
  transition: transform var(--tr);
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  padding: .9rem 0;
  border-bottom: 1px solid var(--beige-mid);
  font-size: 1rem;
  letter-spacing: .05em;
  color: var(--text-mid);
  font-family: var(--ff-body);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ---------- HERO SECTION (Split: image left, text right) ---------- */
.hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background: var(--ivory);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  line-height: 0;
}
.hero-img-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.hero-img-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: rgba(250,246,240,.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-light);
  padding: .75rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--ff-head);
  font-size: 1.1rem;
  color: var(--espresso);
  text-align: center;
  line-height: 1.3;
}
.hero-img-badge small {
  display: block;
  font-family: var(--ff-body);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: .2rem;
}
.hero-content { padding: 2rem 0; }
.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-family: var(--ff-head);
  font-weight: 300;
  line-height: 1.1;
  color: var(--espresso);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--burgundy);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-essentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem .5rem;
  margin: 1.25rem 0 2rem;
  list-style: none;
  padding: 0;
}
.hero-essentials li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--text-mid);
  font-family: var(--ff-body);
  letter-spacing: .02em;
  line-height: 1.4;
}
.he-dot {
  color: var(--gold);
  font-size: .6rem;
  flex-shrink: 0;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
}
.trust-num {
  font-family: var(--ff-head);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--gold-dark);
  line-height: 1;
}
.trust-label {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: .2rem;
}

/* ---------- MARQUEE ---------- */
.marquee-section {
  background: var(--espresso);
  padding: 1.1rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: .05em;
  white-space: nowrap;
}
.marquee-item .dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: rotate(45deg);
  flex-shrink: 0;
  display: inline-block;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- PROBLEM SECTION (full-width image + centered text above) ---------- */
.problem-section {
  background: var(--warm-beige);
  padding: 6rem 0;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.problem-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
}
.problem-img-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.problem-content {}
.problem-list {
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .975rem;
  color: var(--text-mid);
}
.problem-list li .icon-x {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(114,47,55,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  color: var(--burgundy);
  margin-top: .15rem;
}

/* ---------- SOLUTION SECTION ---------- */
.solution-section {
  background: var(--ivory);
  padding: 7rem 0;
}
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.solution-grid.reverse .solution-img-wrap { order: 2; }
.solution-grid.reverse .solution-content { order: 1; }
.solution-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
  box-shadow: var(--shadow-lg);
}
.solution-img-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.solution-content {}

/* ---------- FEATURES SECTION ---------- */
.features-section {
  background: var(--espresso);
  padding: 7rem 0;
}
.features-section .section-title,
.features-section h2 { color: var(--gold-light); }
.features-section .eyebrow { color: var(--gold); }
.features-section .lead { color: var(--beige-mid); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.feature-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: var(--radius);
  padding: 2.25rem;
  transition: var(--tr);
}
.feature-card:hover {
  background: rgba(201,169,110,.08);
  border-color: rgba(201,169,110,.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(201,169,110,.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}
.feature-card h4 {
  color: var(--gold-light);
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: .5rem;
}
.feature-card p {
  font-size: .9rem;
  color: var(--beige-deep);
  line-height: 1.7;
  margin: 0;
}

/* ---------- WHAT FITS INSIDE ---------- */
.inside-section {
  background: var(--warm-beige);
  padding: 7rem 0;
}
.inside-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.inside-img-wrap {
  position: sticky;
  top: 7rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
  box-shadow: var(--shadow-lg);
}
.inside-img-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.inside-compartments {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.compartment-item {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-xs);
}
.compartment-item h4 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: .35rem;
}
.compartment-item p {
  font-size: .875rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* ---------- LIFESTYLE SECTION ---------- */
.lifestyle-section {
  background: var(--ivory);
  padding: 7rem 0;
}
.lifestyle-hero-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  line-height: 0;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg);
}
.lifestyle-hero-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/7;
  object-fit: cover;
}
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.lifestyle-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.lifestyle-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.lifestyle-card:hover img { transform: scale(1.04); }
.lifestyle-card-label {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: rgba(250,246,240,.92);
  backdrop-filter: blur(8px);
  padding: .4rem .9rem;
  border-radius: var(--radius-sm);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--espresso);
  font-family: var(--ff-body);
  font-weight: 500;
  line-height: 1.4;
}

/* ---------- COLORWAYS ---------- */
.colorways-section {
  background: var(--espresso);
  padding: 7rem 0;
}
.colorways-section .section-title { color: var(--gold-light); }
.colorways-section .eyebrow { color: var(--gold); }
.colorways-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.colorway-card {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--tr);
}
.colorway-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.colorway-swatch {
  height: 120px;
  width: 100%;
}
.colorway-info {
  background: rgba(255,255,255,.06);
  padding: .9rem;
  text-align: center;
}
.colorway-name {
  font-family: var(--ff-head);
  font-size: .95rem;
  color: var(--gold-light);
  font-weight: 400;
}
.colorway-desc {
  font-size: .7rem;
  color: var(--text-light);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .2rem;
}

/* ---------- BRAND STORY ---------- */
.story-section {
  background: var(--warm-beige);
  padding: 7rem 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  line-height: 0;
  box-shadow: var(--shadow-lg);
}
.story-img-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.story-content blockquote {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--burgundy);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.5;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
  background: var(--ivory);
  padding: 7rem 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige-mid);
  transition: var(--tr);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-size: .975rem;
  line-height: 1.8;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--beige-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head);
  font-size: 1.1rem;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--espresso);
  display: block;
  font-family: var(--ff-body);
}
.author-title {
  font-size: .75rem;
  color: var(--text-light);
}

/* ---------- PRICING ---------- */
.pricing-section {
  background: var(--warm-beige);
  padding: 7rem 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  border: 1px solid var(--beige-mid);
  box-shadow: var(--shadow-sm);
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
.pricing-card.popular {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,169,110,.25);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.popular-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--gold);
  color: var(--espresso);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-weight: 600;
}
.plan-name {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: .25rem;
}
.plan-tagline {
  font-size: .8rem;
  color: var(--text-light);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
}
.plan-price {
  margin-bottom: 1.75rem;
}
.price-amount {
  font-family: var(--ff-head);
  font-size: 3rem;
  font-weight: 500;
  color: var(--espresso);
  line-height: 1;
}
.price-period {
  font-size: .8rem;
  color: var(--text-light);
  letter-spacing: .08em;
}
.pricing-card[data-plan="atelier"] .plan-features li { color: var(--beige-mid); }
.pricing-card[data-plan="atelier"] .plan-features li.disabled { color: rgba(156,123,104,.4); }
.plan-features {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 2rem;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: var(--text-mid);
}
.plan-features li .check {
  color: var(--gold-dark);
  font-size: .8rem;
  flex-shrink: 0;
  margin-top: .15rem;
}
.plan-features li .cross {
  color: var(--beige-deep);
  font-size: .8rem;
  flex-shrink: 0;
  margin-top: .15rem;
}
.plan-features li.disabled { color: var(--beige-deep); }
.plan-btn { width: 100%; text-align: center; justify-content: center; }

/* ---------- FAQ ---------- */
.faq-section {
  background: var(--ivory);
  padding: 7rem 0;
}
.faq-grid {
  max-width: 780px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--beige-mid);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 1.4rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--espresso);
  transition: background var(--tr);
}
.faq-question:hover { background: var(--warm-beige); }
.faq-question.open { background: var(--warm-beige); }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  font-size: 1rem;
  line-height: 1;
  transition: transform var(--tr), background var(--tr);
}
.faq-question.open .faq-icon {
  background: var(--gold);
  color: var(--espresso);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease), padding .3s var(--ease);
}
.faq-answer-inner {
  padding: 0 1.75rem 1.5rem;
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ---------- FINAL CTA ---------- */
.cta-section {
  background: var(--burgundy);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(201,169,110,.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(201,169,110,.10) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-inner h2 {
  color: var(--gold-light);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 1.25rem;
}
.cta-inner p {
  color: rgba(232,208,160,.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.cta-inner .btn-primary {
  padding: 1.1rem 3rem;
  font-size: .9rem;
}

/* ---------- DIMENSIONS SECTION ---------- */
.dimensions-section {
  background: var(--ivory);
  padding: 5rem 0;
}
.dimensions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.dimension-card {
  text-align: center;
  padding: 2rem;
  background: var(--warm-beige);
  border-radius: var(--radius);
  border: 1px solid var(--beige-mid);
}
.dimension-card .big-num {
  font-family: var(--ff-head);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-dark);
  display: block;
  line-height: 1;
  margin-bottom: .25rem;
}
.dimension-card .dim-label {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--espresso);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-primary { color: var(--gold-light); }
.footer-brand .logo-sub { color: rgba(201,169,110,.6); }
.footer-brand p {
  color: var(--text-light);
  font-size: .875rem;
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 260px;
}
.footer-col h5 {
  font-family: var(--ff-body);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-col ul li {
  margin-bottom: .6rem;
}
.footer-col ul li a {
  font-size: .875rem;
  color: var(--text-light);
  transition: color var(--tr);
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: .8rem;
  color: rgba(156,123,104,.6);
}
.footer-disclaimer {
  font-size: .75rem;
  color: rgba(156,123,104,.5);
  max-width: 520px;
  text-align: right;
  line-height: 1.6;
}

/* ---------- COOKIE CONSENT ---------- */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--espresso);
  border-top: 1px solid rgba(201,169,110,.3);
  padding: 1.25rem 2rem;
  display: none;
}
.cookie-bar.visible { display: flex; }
.cookie-bar-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-bar p {
  font-size: .85rem;
  color: var(--beige-mid);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}
.cookie-bar a { color: var(--gold-light); text-decoration: underline; }
.cookie-bar .btn { flex-shrink: 0; }

/* ---------- PAGE HERO (internal pages) ---------- */
.page-hero {
  background: var(--espresso);
  padding: 9rem 0 5rem;
  text-align: center;
}
.page-hero h1 {
  color: var(--gold-light);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: .75rem;
}
.page-hero p {
  color: var(--beige-mid);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ---------- ABOUT PAGE ---------- */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-intro-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  line-height: 0;
  box-shadow: var(--shadow-lg);
}
.about-intro-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--beige-mid);
  box-shadow: var(--shadow-xs);
}
.value-icon { font-size: 1.5rem; margin-bottom: .75rem; }
.value-card h4 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: .4rem;
}
.value-card p { font-size: .875rem; color: var(--text-mid); margin: 0; }

/* ---------- CONTACT PAGE ---------- */
.contact-section { padding: 6rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--warm-beige);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail-item h5 {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .2rem;
  font-family: var(--ff-body);
}
.contact-detail-item p { font-size: .9rem; color: var(--text-mid); margin: 0; }

/* ---------- FORM ---------- */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--beige-mid);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .5rem;
  font-family: var(--ff-body);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1px solid var(--beige-mid);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: var(--text);
  background: var(--ivory);
  transition: border-color var(--tr), box-shadow var(--tr);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.plan-radio-group {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.plan-radio-label {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1.1rem;
  border: 1px solid var(--beige-mid);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--tr);
  background: var(--ivory);
}
.plan-radio-label:has(input:checked) {
  border-color: var(--gold);
  background: rgba(201,169,110,.08);
}
.plan-radio-label input { accent-color: var(--gold-dark); }
.plan-radio-name { font-weight: 500; color: var(--espresso); font-size: .9rem; }
.plan-radio-price { color: var(--gold-dark); font-weight: 600; font-size: .9rem; }
.form-fine-print {
  font-size: .75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.6;
}
.form-fine-print a { color: var(--gold-dark); text-decoration: underline; }

/* ---------- PLAN RADIO (one-time edition select) ---------- */
.plan-radio-label[data-plan="atelier"]:has(input:checked) {
  border-color: var(--gold) !important;
  background: var(--espresso) !important;
}

/* ---------- THANK YOU PAGE ---------- */
.thankyou-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 6rem;
  background: var(--warm-beige);
}
.thankyou-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.success-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  animation: popIn .6s var(--ease) both;
}
@keyframes popIn {
  0%   { transform: scale(0); opacity: 0; }
  70%  { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
.next-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2.5rem 0;
  text-align: left;
}
.step-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--beige-mid);
}
.step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 500;
  color: var(--espresso);
  flex-shrink: 0;
}
.step-item h5 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: .25rem;
}
.step-item p { font-size: .875rem; color: var(--text-mid); margin: 0; }
.thankyou-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ---------- LEGAL PAGES ---------- */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.legal-content h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: .75rem;
  color: var(--espresso);
}
.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 1.75rem;
  margin-bottom: .5rem;
}
.legal-content p, .legal-content li {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: .75rem;
}
.legal-content ul, .legal-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content strong { color: var(--text); }
.legal-last-updated {
  font-size: .8rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 2rem;
}
.legal-box {
  background: var(--warm-beige);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-grid,
  .problem-grid,
  .solution-grid,
  .inside-grid,
  .story-grid,
  .about-intro-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  
  .solution-grid.reverse .solution-img-wrap { order: 0; }
  .solution-grid.reverse .solution-content { order: 0; }

  .inside-img-wrap { position: static; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .colorways-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .dimensions-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  section { padding: 4rem 0; }
  .hero { padding-top: 7rem; padding-bottom: 4rem; }
  .hero-trust { flex-wrap: wrap; gap: 1.5rem; }
  .hero-essentials { grid-template-columns: 1fr; }
  .lifestyle-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .colorways-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-disclaimer { text-align: left; max-width: 100%; }
  .contact-form-wrap { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .billing-toggle { flex-wrap: wrap; }
  .story-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  h1 { font-size: 2.4rem; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .colorways-grid { grid-template-columns: 1fr 1fr; }
  .cta-section { padding: 4rem 0; }
  .page-hero { padding: 8rem 0 4rem; }
}
