/* ============================================================
   Pop N Posh — Website Mockup
   Inspired by Squarespace Paloma Template
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --purple:       #9B59B6;
  --deep-purple:  #5B2C6F;
  --gold:         #C8A951;
  --teal:         #2BC4C4;
  --lavender:     #D4A8E0;
  --light-gold:   #F5ECD7;
  --white:        #FFFFFF;
  --off-white:    #FAF9F7;
  --light-gray:   #F2F1EF;
  --mid-gray:     #888888;
  --dark:         #1A1A1A;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', -apple-system, sans-serif;
  --max-width:    1200px;
  --section-pad:  80px;
  --radius:       3px;
  --transition:   0.3s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 1rem; color: #444; line-height: 1.8; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Utility ────────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
.text-center { text-align: center; }
.text-purple { color: var(--deep-purple); }
.bg-off-white { background: var(--off-white); }
.bg-deep-purple { background: var(--deep-purple); }
.bg-light-gold { background: var(--light-gold); }
section { padding: var(--section-pad) 0; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-primary {
  background: var(--purple);
  color: white;
}
.btn-primary:hover { background: var(--deep-purple); }
.btn-outline {
  border: 1.5px solid var(--deep-purple);
  color: var(--deep-purple);
}
.btn-outline:hover { background: var(--deep-purple); color: white; }
.btn-gold {
  background: var(--gold);
  color: white;
}
.btn-gold:hover { background: #b8952e; }
.btn-ghost {
  border: 1.5px solid white;
  color: white;
}
.btn-ghost:hover { background: white; color: var(--deep-purple); }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07), 0 4px 24px rgba(91,44,111,0.06);
  padding: 0;
  transition: box-shadow var(--transition);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img {
  height: 68px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deep-purple);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--purple); }
.nav-links .btn { padding: 10px 24px; font-size: 0.78rem; }
/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--deep-purple);
  transition: all var(--transition);
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: white;
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--deep-purple);
}
.nav-mobile .close-btn {
  position: absolute;
  top: 24px; right: 40px;
  font-size: 2rem;
  color: var(--deep-purple);
  background: none;
  border: none;
  cursor: pointer;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  /* Dark stage — spotlights punch through this */
  background: linear-gradient(
    to bottom,
    rgba(8,2,18,0.82) 0%,
    rgba(8,2,18,0.88) 100%
  );
}

/* ── Hollywood Spotlights ────────────────────────────────────── */
.spotlight {
  position: absolute;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

/* Left spotlight — from bottom-left corner, angling up toward logo */
.spotlight-left {
  left: 0;
  width: 68%;
  height: 100%;
  background: radial-gradient(
    ellipse 100% 95% at 0% 105%,
    rgba(255, 235, 150, 0.26) 0%,
    rgba(200, 169,  81, 0.16) 22%,
    rgba(155,  89, 182, 0.06) 44%,
    transparent 65%
  );
}

/* Right spotlight — from bottom-right corner, angling up toward logo */
.spotlight-right {
  right: 0;
  width: 68%;
  height: 100%;
  background: radial-gradient(
    ellipse 100% 95% at 100% 105%,
    rgba(255, 235, 150, 0.26) 0%,
    rgba(200, 169,  81, 0.16) 22%,
    rgba(155,  89, 182, 0.06) 44%,
    transparent 65%
  );
}

/* Center bloom — where the two beams converge on the logo */
.spotlight-center {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 55%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    ellipse 55% 55% at 50% 40%,
    rgba(255, 235, 150, 0.13) 0%,
    rgba(200, 169,  81, 0.07) 40%,
    transparent 70%
  );
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}
.hero-content h1 { color: white; margin-bottom: 20px; }
.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 32px;
}
.hero-location {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

/* Hero location line — top of hero, more readable */
.hero-location-top {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-bottom: 28px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* Large decorative hero logo */
.hero-logo-wrap {
  position: relative;
  margin: 0 auto 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(260px, 40vw, 420px);
  /* Dark radial halo behind the logo — creates contrast against any hero image
     without a visible box or border */
  background: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    rgba(10, 2, 20, 0.38) 0%,
    rgba(10, 2, 20, 0.18) 55%,
    transparent 80%
  );
  border-radius: 50%;
  padding: 12px 20px 0;
  animation: heroLogoPulse 4s ease-in-out infinite;
}
.hero-logo {
  width: 100%;
  height: auto;
  /* No mix-blend-mode needed — genuine transparent PNG */
  /* Gold glow + depth drop-shadow for 3D feel */
  filter:
    drop-shadow(0 0 18px rgba(200,169,81,0.6))
    drop-shadow(0 0 6px rgba(200,169,81,0.4))
    drop-shadow(0 4px 16px rgba(0,0,0,0.55));
  transition: filter 0.4s ease;
}
.hero-logo-wrap:hover .hero-logo {
  filter:
    drop-shadow(0 0 32px rgba(200,169,81,0.85))
    drop-shadow(0 0 12px rgba(200,169,81,0.6))
    drop-shadow(0 6px 20px rgba(0,0,0,0.6));
}
@keyframes heroLogoPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: none;
  }
  50% {
    transform: scale(1.012);
  }
}

/* Hero headline — slightly smaller so it's subordinate to the logo */
.hero-headline {
  font-size: clamp(2rem, 4.5vw, 4rem);
  margin-top: 0;
  margin-bottom: 12px;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Page Hero (non-full-height) ─────────────────────────────── */
.page-hero {
  padding: 120px 0 80px;
  margin-top: 80px;
  text-align: center;
  background: var(--off-white);
}
.page-hero h1 { color: var(--deep-purple); margin-bottom: 16px; }
.page-hero p { max-width: 560px; margin: 0 auto; color: var(--mid-gray); }

/* ── Value Props (3-column) ──────────────────────────────────── */
.value-props { background: var(--off-white); }
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.value-tile {
  text-align: center;
  padding: 40px 24px;
}
.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-icon svg { width: 32px; height: 32px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.value-tile h3 {
  font-size: 1.3rem;
  color: var(--deep-purple);
  margin-bottom: 12px;
}
.value-tile p { font-size: 0.95rem; }

/* ── Wall Cards (gallery grid) ───────────────────────────────── */
.walls-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wall-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 3/4;
}
.wall-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.wall-card:hover .wall-card-img { transform: scale(1.04); }
.wall-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,10,50,0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: all var(--transition);
}
.wall-card:hover .wall-card-overlay { background: linear-gradient(to top, rgba(30,10,50,0.85) 0%, rgba(30,10,50,0.15) 55%); }
.wall-card-overlay h3 { color: white; font-size: 1.6rem; margin-bottom: 4px; }
.wall-card-overlay p { color: rgba(255,255,255,0.8); font-size: 0.88rem; margin-bottom: 16px; }
.wall-card-overlay .btn {
  align-self: flex-start;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}
.wall-card:hover .wall-card-overlay .btn {
  opacity: 1;
  transform: translateY(0);
}

/* ── How It Works ────────────────────────────────────────────── */
.steps { background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.step { text-align: center; }
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--light-gold);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--deep-purple);
}
.step h4 { color: var(--deep-purple); margin-bottom: 8px; font-size: 1.05rem; }
.step p { font-size: 0.9rem; }

/* ── Service Area Banner ─────────────────────────────────────── */
.service-area {
  background: var(--light-gold);
  text-align: center;
  padding: 60px 0;
}
.service-area h2 { color: var(--deep-purple); margin-bottom: 12px; }
.service-area p { max-width: 600px; margin: 0 auto 20px; }
.delivery-tags {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.delivery-tag {
  background: white;
  border: 1px solid var(--gold);
  color: var(--deep-purple);
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 500;
}

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner {
  background: var(--deep-purple);
  text-align: center;
  padding: var(--section-pad) 0;
}
.cta-banner h2 { color: white; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 32px; }

/* ── Section Headings ────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { color: var(--deep-purple); margin: 8px 0; }
.section-header p { color: var(--mid-gray); max-width: 500px; margin: 0 auto; }

/* ── Product Page: Split Layout ──────────────────────────────── */
.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  margin-top: 80px;
}
.product-hero-img {
  position: relative;
  overflow: hidden;
}
.product-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-hero-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--off-white);
}
.product-hero-content .eyebrow { margin-bottom: 12px; }
.product-hero-content h1 { color: var(--deep-purple); font-size: clamp(2.2rem, 4vw, 3.8rem); margin-bottom: 16px; }
.product-hero-content .tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--purple);
  margin-bottom: 20px;
}
.product-hero-content p { margin-bottom: 16px; }
.ideal-for {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 32px;
}
.ideal-tag {
  background: var(--lavender);
  color: var(--deep-purple);
  padding: 4px 14px;
  border-radius: 40px;
  font-size: 0.78rem;
  font-weight: 500;
}

/* ── Accessories Section ─────────────────────────────────────── */
.accessories { background: var(--white); }
.accessories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.accessory-card {
  border: 1px solid #E8E2F0;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.accessory-card:hover { box-shadow: 0 8px 32px rgba(91,44,111,0.1); }
.accessory-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--light-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--deep-purple);
  font-style: italic;
}
.accessory-card-body { padding: 24px; }
.accessory-card-body h4 { color: var(--deep-purple); font-size: 1.2rem; margin-bottom: 8px; }
.accessory-card-body p { font-size: 0.9rem; margin-bottom: 12px; }
.accessory-price {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 0.05em;
}

/* ── Balloon Garland Section ─────────────────────────────────── */
.balloon-garland { background: var(--light-gold); }
.balloon-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.balloon-content h2 { color: var(--deep-purple); margin: 8px 0 16px; }
.balloon-content p { margin-bottom: 20px; }
.balloon-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--deep-purple);
  color: white;
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
}
.balloon-img {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--deep-purple);
  text-align: center;
  padding: 24px;
}

/* ── Pricing Table ───────────────────────────────────────────── */
.pricing-section { background: var(--off-white); }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 680px;
  margin: 40px auto 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(91,44,111,0.08);
}
.pricing-table th {
  background: var(--deep-purple);
  color: white;
  padding: 14px 20px;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pricing-table th:last-child { text-align: right; }
.pricing-table .section-row td {
  background: #EDE0F5;
  color: var(--deep-purple);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
}
.pricing-table tr:not(.section-row) td {
  padding: 13px 20px;
  font-size: 0.95rem;
  border-bottom: 1px solid #EFE9F5;
  color: #333;
}
.pricing-table tr:not(.section-row):nth-child(even) td { background: var(--light-gold); }
.pricing-table tr:not(.section-row):last-child td { border-bottom: none; }
.price-cell { text-align: right; color: var(--purple); font-weight: 500; }
.pricing-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--mid-gray);
  margin-top: 12px;
  font-style: italic;
}

/* ── Product CTA ─────────────────────────────────────────────── */
.product-cta {
  background: var(--deep-purple);
  text-align: center;
  padding: 80px 40px;
}
.product-cta h2 { color: white; margin-bottom: 12px; }
.product-cta p { color: rgba(255,255,255,0.75); max-width: 440px; margin: 0 auto 28px; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-section { background: var(--white); }
.faq-group { max-width: 740px; margin: 0 auto; }
.faq-category {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 48px 0 16px;
}
.faq-item {
  border-bottom: 1px solid #EDE8F2;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--deep-purple);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--purple); }
.faq-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  margin-left: 16px;
  color: var(--purple);
  font-size: 1rem;
  line-height: 1;
}
.faq-item.open .faq-icon { background: var(--purple); color: white; transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer p {
  padding-bottom: 20px;
  color: #555;
  font-size: 0.97rem;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ── Contact Form ────────────────────────────────────────────── */
.contact-section { background: var(--off-white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { color: var(--deep-purple); margin-bottom: 16px; }
.contact-info p { margin-bottom: 24px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: #555;
}
.contact-detail svg { width: 16px; height: 16px; stroke: var(--purple); fill: none; flex-shrink: 0; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--deep-purple);
}
.form-field input:not([type="checkbox"]),
.form-field select,
.form-field textarea {
  padding: 12px 16px;
  border: 1.5px solid #DDD5E8;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--dark);
  background: white;
  transition: border-color var(--transition);
  appearance: none;
}
.form-field input:not([type="checkbox"]):focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--purple);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-checkboxes { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #555;
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--purple);
  padding: 0;
  border: none;
  margin: 0;
}
.form-submit { grid-column: 1 / -1; margin-top: 8px; }
.form-confirmation {
  display: none;
  background: #EFF9F7;
  border: 1px solid var(--teal);
  border-radius: 6px;
  padding: 20px;
  text-align: center;
  color: var(--deep-purple);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 16px;
}
.form-confirmation.show { display: block; }

/* ── Walls Landing Page ──────────────────────────────────────── */
.walls-landing { background: var(--white); }
.walls-landing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.wall-landing-card {
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #EDE8F2;
  transition: box-shadow var(--transition);
}
.wall-landing-card:hover { box-shadow: 0 8px 40px rgba(91,44,111,0.12); }
.wall-landing-img {
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}
.wall-landing-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.wall-landing-body h3 { color: var(--deep-purple); font-size: 1.4rem; margin-bottom: 6px; }
.wall-landing-body p { font-size: 0.9rem; color: var(--mid-gray); margin-bottom: 20px; flex: 1; }
.coming-soon-strip {
  background: var(--deep-purple);
  color: white;
  text-align: center;
  padding: 60px 40px;
  border-radius: 6px;
}
.coming-soon-strip h3 { color: white; margin-bottom: 8px; }
.coming-soon-strip p { color: rgba(255,255,255,0.75); margin-bottom: 24px; }

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  background: #1F0A35;
  color: rgba(255,255,255,0.9);
  padding: 60px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 48px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 260px; color: rgba(255,255,255,0.85); }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 0.9rem; color: rgba(255,255,255,0.88); transition: color var(--transition); }
.footer-col ul a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}
.tagline-badge {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 0.95rem;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --section-pad: 60px; }
  .container { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .value-grid { grid-template-columns: 1fr; gap: 0; }
  .walls-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .product-hero { grid-template-columns: 1fr; }
  .product-hero-img { height: 50vw; min-height: 300px; }
  .product-hero-content { padding: 48px 32px; }
  .balloon-inner { grid-template-columns: 1fr; }
  .balloon-img { display: none; }
  .accessories-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .walls-landing-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .walls-grid { grid-template-columns: 1fr; }
  .walls-landing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
