/* Google Font configuration applied via link in index.html */
:root {
  /* Color Palette */
  --bg-cream: #FAF7F2;
  --bg-white: #FFFFFF;
  --primary-dark: #1A3C2A;
  /* Deep forest green */
  --accent-green: #2D6A4F;
  /* Rich green */
  --accent-gold: #D4A853;
  /* Warm gold */

  /* Text colors */
  --text-dark: #2C2418;
  /* Rich dark brown */
  --text-muted: #7A7062;
  --text-light: #FAF7F2;
  /* Warm white */
  --text-light-muted: #D4CFC7;
  /* Soft cream */

  /* Typography */
  --font-display: 'Fraunces', serif;
  --font-body: 'DM Sans', sans-serif;

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(44, 36, 24, 0.05);
  --shadow-hover: 0 12px 30px rgba(44, 36, 24, 0.1);
  --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.2);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.5em;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-padding {
  padding: 6rem 0;
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 2rem;
}

/* Utilities */
.cream-bg {
  background-color: var(--bg-cream);
  color: var(--text-dark);
}

.white-bg {
  background-color: var(--bg-white);
  color: var(--text-dark);
}

.dark-section {
  background-color: var(--primary-dark);
  color: var(--text-light);
}

.dark-section h1,
.dark-section h2,
.dark-section h3 {
  color: var(--text-light);
}

.dark-section .subheadline,
.dark-section .subtext {
  color: var(--text-light-muted);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.text-link {
  color: var(--accent-green);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(45, 106, 79, 0.3);
  text-underline-offset: 4px;
}

.text-link:hover {
  text-decoration-color: var(--accent-green);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--accent-green);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(45, 106, 79, 0.3);
}

.btn-accent {
  background-color: var(--accent-gold);
  color: var(--text-dark);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(212, 168, 83, 0.3);
}

.btn-secondary {
  background-color: var(--bg-cream);
  color: var(--text-dark);
  border: 1px solid rgba(44, 36, 24, 0.1);
}

.btn-secondary:hover {
  background-color: white;
  border-color: rgba(44, 36, 24, 0.2);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.full-width {
  width: 100%;
}

.quiz-trigger {
  position: relative;
  z-index: 9999;
}

/* ==========================================================================
   Sections
   ========================================================================== */

/* 1. Announcement Bar */
.announcement-bar {
  background-color: var(--primary-dark);
  color: var(--accent-gold);
  text-align: center;
  padding: 0.6rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.announcement-bar a {
  text-decoration: underline;
  margin-left: 0.5rem;
}

/* 2. Navigation */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-cream);
  transition: var(--transition-smooth);
  padding: 1rem 0;
}

.main-nav.scrolled {
  background-color: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 0.75rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
}

.nav-links a:hover {
  color: var(--accent-green);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-dark);
}

.hero-img-actual {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
}

@media (max-width: 900px) {

  .nav-links,
  .nav-container .btn {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }
}

/* 3. Hero Section */
.hero {
  padding: 4rem 0 6rem;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  position: relative;
  z-index: 10;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-content .subheadline {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.link-secondary {
  color: var(--text-light);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  z-index: 10;
  padding: 0.75rem 1rem;
  margin: -0.75rem -1rem;
  border-radius: var(--radius-sm);
}

.link-secondary:hover {
  color: var(--accent-gold);
}

.hero-image {
  flex: 1;
  position: relative;
}

.bed-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #FAF7F2 0%, #D4A853 100%);
  position: relative;
  box-shadow: var(--shadow-dark);
}

/* Subtle texture using CSS */
.bed-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 10px 10px;
}

@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content .subheadline {
    max-width: 100%;
    margin: 0 auto 2.5rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image {
    width: 100%;
  }
}

/* Press Strip */
.press-strip {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.press-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.press-label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.press-logos {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.logo-placeholder {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #a09d97;
  font-weight: 500;
  filter: grayscale(100%);
  transition: var(--transition-smooth);
}

.logo-placeholder:hover {
  color: var(--text-dark);
}

/* 4. Product Teaser */
.collection-footer {
  margin-top: 3rem;
  position: relative;
  z-index: 10;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.rounded-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.gradient-1 {
  background: linear-gradient(135deg, #eaddc7, #c6a267);
}

.gradient-2 {
  background: linear-gradient(135deg, #d3e1d1, #7f9f8c);
}

.gradient-3 {
  background: linear-gradient(135deg, #e9ecec, #a1a8a8);
}

.product-image-actual {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.product-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.product-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* 5. Lifestyle Split */
.split-container {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.split-image {
  flex: 1;
}

.split-content {
  flex: 1;
}

.tall-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #d5c8b3, #8a7352);
  position: relative;
  overflow: hidden;
}

/* Abstract room suggestion */
.tall-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}

.lifestyle-img-actual {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
}

.split-content h2 {
  margin-bottom: 1.5rem;
}

.split-content p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  font-size: 1.05rem;
}

.icon-circle {
  width: 40px;
  height: 40px;
  background-color: rgba(45, 106, 79, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
}

@media (max-width: 900px) {
  .split-container {
    flex-direction: column;
  }

  .split-image {
    width: 100%;
    order: 2;
  }

  .split-content {
    order: 1;
    margin-bottom: 2rem;
  }
}

/* 6. Materials */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.material-card {
  text-align: center;
  transition: var(--transition-smooth);
}

.material-card:hover .swatch {
  transform: scale(1.05);
}

.swatch {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.swatch-wood {
  background: repeating-linear-gradient(45deg, #d6b484, #d6b484 10px, #ccaa7a 10px, #ccaa7a 20px);
}

.swatch-canvas {
  background: radial-gradient(circle, #f3efe5, #e0d8c3);
}

.swatch-brass {
  background: linear-gradient(135deg, #e3c472, #b99335);
}

.swatch-tweed {
  background: repeating-radial-gradient(circle, #5b5b5b, #5b5b5b 2px, #424242 2px, #424242 4px);
}

.material-card h4 {
  margin-bottom: 0.5rem;
}

.material-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
  color: var(--primary-dark);
  line-height: 1.4;
}

/* 7. How It Works */
.steps-container {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  flex: 1;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.step-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-dark);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.step-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: rgba(212, 168, 83, 0.1);
  font-weight: 700;
  z-index: 1;
}

.step-content {
  position: relative;
  z-index: 2;
}

.step-content h4 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 900px) {
  .steps-container {
    flex-direction: column;
  }
}

/* 8. Social Proof */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}

.stars {
  color: var(--accent-gold);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.quote {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 2rem;
  flex: 1;
  line-height: 1.5;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.reviewer-name {
  font-weight: 600;
  font-size: 0.95rem;
}

/* 9. Comparison */
.comparison-container {
  max-width: 1000px;
}

.table-wrapper {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-top: 3rem;
  box-shadow: var(--shadow-soft);
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table th {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--text-dark);
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.highlight-col {
  background-color: rgba(45, 106, 79, 0.03);
}

.comparison-table tr:hover td {
  background-color: rgba(45, 106, 79, 0.02);
}

.comparison-table tr:hover td.highlight-col {
  background-color: rgba(45, 106, 79, 0.05);
}

.check {
  color: var(--accent-green);
  width: 20px;
  height: 20px;
}

.check.muted {
  color: #aaa;
  opacity: 0.5;
}

.cross {
  color: #ccc;
  width: 20px;
  height: 20px;
  opacity: 0.5;
}

/* 10. Lifestyle Image Section */
.lifestyle-image-section {
  width: 100%;
  overflow: hidden;
}

.lifestyle-image {
  width: 100%;
  height: auto;
  display: block;
}

/* 11. Mid & Final CTA */
.mid-cta {
  position: relative;
  z-index: 10;
}

.cta-container {
  max-width: 800px;
  padding-bottom: 5rem;
  /* Added padding-bottom */
}

.cta-top {
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-bottom {
  position: relative;
  z-index: 10;
}

.cta-bottom h1 {
  margin-bottom: 0.5rem;
}

.cta-bottom .subtext {
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-style: italic;
  margin-bottom: 2rem;
}

.trust-icons {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--accent-gold);
  font-size: 0.95rem;
  font-weight: 500;
}

.trust-item svg {
  width: 24px;
  height: 24px;
  opacity: 0.9;
}

/* 12. Footer */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.logo-footer {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--bg-cream);
  display: block;
  margin-bottom: 1rem;
}

.brand-col p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: var(--bg-cream);
  opacity: 0.8;
  transition: var(--transition-smooth);
  display: block;
}

.social-icons a:hover {
  opacity: 1;
  color: var(--accent-gold);
  transform: translateY(-3px);
}

.links-col h4,
.newsletter-col h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.links-col a {
  display: block;
  color: var(--text-light-muted);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.links-col a:hover {
  color: var(--accent-gold);
  transform: translateX(3px);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-form input {
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-family: var(--font-body);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: var(--text-light-muted);
}

.legal {
  display: flex;
  gap: 1.5rem;
}

.legal a:hover {
  color: white;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .brand-col {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   Modal (Style Quiz)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 60, 42, 0.4);
  /* Green tint overlay */
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-container {
  background: var(--bg-cream);
  width: 90%;
  max-width: 700px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background-color: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg);
}

.quiz-progress {
  background: #e8e3d9;
  height: 6px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.progress-fill {
  height: 100%;
  background: var(--accent-green);
  width: 25%;
  transition: width 0.5s ease;
}

.modal-content {
  padding: 4rem 3rem 3rem;
  position: relative;
  min-height: 400px;
}

.quiz-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 4rem 3rem 3rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  transform: translateX(40px);
  display: flex;
  flex-direction: column;
}

.quiz-screen.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: relative;
}

.quiz-screen.slide-left {
  transform: translateX(-40px);
}

.quiz-screen h3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.quiz-back {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0.5rem;
  transition: var(--transition-smooth);
  z-index: 10;
}

.quiz-back:hover {
  color: var(--text-dark);
  transform: translateX(-3px);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.option-card {
  background: var(--bg-white);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.option-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(45, 106, 79, 0.2);
}

.style-swatch {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.style-minimal {
  background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
}

.style-traditional {
  background: repeating-linear-gradient(45deg, #8b5a2b, #8b5a2b 10px, #a06e3d 10px, #a06e3d 20px);
}

.style-eclectic {
  background: linear-gradient(135deg, #d4a853, #2d6a4f);
}

.option-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.option-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.icon-small {
  width: 24px;
  height: 24px;
  margin-bottom: 1rem;
  color: var(--accent-green);
}

.icon-medium {
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
  color: var(--accent-green);
}

.icon-large {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--accent-green);
}

/* Screen 3 */
.result-header {
  text-align: center;
  margin-bottom: 2rem;
}

.confetti-icon {
  font-size: 2rem;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.recommendations {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.rec-item {
  background: white;
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 200px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.rec-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
}

.rec-item h5 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
}

.small-text {
  font-size: 0.8rem;
  margin: 0;
  color: var(--text-muted);
}

.email-capture {
  background: rgba(212, 168, 83, 0.1);
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.email-capture p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

#quiz-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#quiz-form input {
  padding: 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-family: var(--font-body);
}

#quiz-form input:focus {
  outline: none;
  border-color: var(--accent-green);
}

/* Screen 4 */
.success-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(45, 106, 79, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  margin-bottom: 1.5rem;
}

.success-icon svg {
  width: 40px;
  height: 40px;
}

@media (max-width: 600px) {
  .modal-content {
    padding: 3rem 1.5rem 2rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}