/* ============================================
   PEEP SHOW BRUNCH — Bold & Vibrant Theme
   Hot pink · Purple · Gold
   ============================================ */

:root {
  --pink: #ff2d87;
  --pink-hot: #ff0f6e;
  --purple: #7b2fbe;
  --purple-deep: #2a0a45;
  --purple-dark: #1a0630;
  --gold: #ffc94d;
  --gold-bright: #ffd97a;
  --cream: #fff6e9;
  --white: #ffffff;
  --grad-main: linear-gradient(135deg, #ff2d87 0%, #7b2fbe 100%);
  --grad-gold: linear-gradient(135deg, #ffc94d 0%, #ff9d2d 100%);
  --shadow-glow: 0 10px 40px rgba(255, 45, 135, 0.35);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--purple-dark);
  color: var(--cream);
  line-height: 1.65;
}

h1, h2, h3, .display {
  font-family: 'Abril Fatface', serif;
  font-weight: 400;
  line-height: 1.15;
}

img { max-width: 100%; }

a { color: var(--gold); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 6, 48, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 201, 77, 0.25);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo svg { width: 46px; height: 46px; flex: none; filter: drop-shadow(0 0 8px rgba(255, 45, 135, 0.45)); }
.logo-text {
  font-family: 'Abril Fatface', serif;
  font-size: 1.5rem;
  line-height: 1.05;
  background: linear-gradient(90deg, var(--pink) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
}
.logo-text span { font-size: 0.72rem; display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); -webkit-text-fill-color: var(--gold); }
.nav-links { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  transition: all 0.25s;
}
.nav-links a:hover { color: var(--gold); background: rgba(255, 45, 135, 0.15); }
.nav-links a.active { background: var(--grad-main); color: var(--white); }
.nav-links a.btn-nav {
  background: var(--grad-gold);
  color: var(--purple-dark);
  font-weight: 800;
}
.nav-links a.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 201, 77, 0.4); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 110px 24px 90px;
  text-align: center;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(255, 45, 135, 0.35), transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(123, 47, 190, 0.55), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 201, 77, 0.18), transparent 60%),
    var(--purple-dark);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 201, 77, 0.14) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.hero .kicker {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(255, 201, 77, 0.5);
  border-radius: 999px;
  padding: 8px 22px;
  margin-bottom: 28px;
  background: rgba(26, 6, 48, 0.5);
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--gold-bright) 0%, var(--pink) 50%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .sub {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  max-width: 720px;
  margin: 0 auto 36px;
  color: var(--cream);
  opacity: 0.92;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 36px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Montserrat', sans-serif;
}
.btn-primary { background: var(--grad-main); color: var(--white); box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 45px rgba(255, 45, 135, 0.5); }
.btn-gold { background: var(--grad-gold); color: var(--purple-dark); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(255, 201, 77, 0.45); }
.btn-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline:hover { background: rgba(255, 201, 77, 0.12); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-alt { background: var(--purple-deep); }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-head .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 800;
  margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3rem); color: var(--gold-bright); margin-bottom: 14px; }
.section-head p { opacity: 0.85; }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: linear-gradient(160deg, rgba(123, 47, 190, 0.28), rgba(26, 6, 48, 0.65));
  border: 1px solid rgba(255, 45, 135, 0.3);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s;
}
.card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-glow); }
.card .icon { font-size: 2.2rem; margin-bottom: 14px; }
.card h3 { color: var(--gold); font-size: 1.35rem; margin-bottom: 10px; }
.card p { font-size: 0.95rem; opacity: 0.88; }
.card ul { list-style: none; margin-top: 10px; }
.card ul li { padding: 6px 0 6px 26px; position: relative; font-size: 0.93rem; opacity: 0.9; }
.card ul li::before { content: "✦"; position: absolute; left: 0; color: var(--pink); }

/* ---------- Quote banner ---------- */
.quote-banner {
  background: var(--grad-main);
  padding: 70px 24px;
  text-align: center;
}
.quote-banner blockquote {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  color: var(--white);
  max-width: 850px;
  margin: 0 auto;
}
.quote-banner cite { display: block; margin-top: 16px; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-bright); font-style: normal; }

/* ---------- Timeline ---------- */
.timeline { max-width: 760px; margin: 0 auto; position: relative; padding-left: 30px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 3px;
  background: linear-gradient(var(--pink), var(--purple), var(--gold));
  border-radius: 3px;
}
.timeline-item { position: relative; padding: 0 0 34px 34px; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -37px; top: 4px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-main);
  border: 3px solid var(--gold);
  box-shadow: 0 0 20px rgba(255, 45, 135, 0.5);
}
.timeline-item .num {
  position: absolute;
  left: -37px; top: 4px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: var(--white); font-size: 1.05rem;
  z-index: 1;
}
.timeline-item h3 { color: var(--gold); font-size: 1.25rem; margin-bottom: 6px; }
.timeline-item p { font-size: 0.95rem; opacity: 0.85; }

/* ---------- Booking flow ---------- */
.booking-wrap { max-width: 860px; margin: 0 auto; }
.steps-bar { display: flex; justify-content: center; gap: 8px; margin-bottom: 44px; flex-wrap: wrap; }
.step-pill {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 201, 77, 0.35);
  color: rgba(255, 246, 233, 0.55);
  background: rgba(26, 6, 48, 0.5);
  transition: all 0.3s;
}
.step-pill.active { background: var(--grad-main); color: var(--white); border-color: transparent; box-shadow: var(--shadow-glow); }
.step-pill.done { background: rgba(255, 201, 77, 0.18); color: var(--gold); border-color: var(--gold); }

.booking-step { display: none; animation: fadeUp 0.4s ease; }
.booking-step.visible { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.option-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(160deg, rgba(123, 47, 190, 0.28), rgba(26, 6, 48, 0.65));
  border: 2px solid rgba(255, 45, 135, 0.3);
  border-radius: 18px;
  padding: 24px 26px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.25s;
}
.option-card:hover { border-color: var(--pink); transform: translateY(-3px); }
.option-card.selected { border-color: var(--gold); background: linear-gradient(160deg, rgba(255, 45, 135, 0.25), rgba(123, 47, 190, 0.35)); box-shadow: var(--shadow-glow); }
.option-card.disabled { opacity: 0.45; cursor: not-allowed; }
.option-card.disabled:hover { transform: none; border-color: rgba(255, 45, 135, 0.3); }
.option-card h3 { color: var(--gold); font-size: 1.2rem; margin-bottom: 4px; }
.option-card p { font-size: 0.88rem; opacity: 0.85; }
.option-card .price { font-family: 'Abril Fatface', serif; font-size: 1.5rem; color: var(--pink); white-space: nowrap; }
.option-card .badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--grad-gold);
  color: var(--purple-dark);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 8px;
}

.qty-row { display: flex; align-items: center; gap: 18px; justify-content: center; margin: 26px 0; }
.qty-row button {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s;
}
.qty-row button:hover { background: var(--gold); color: var(--purple-dark); }
.qty-row .qty { font-family: 'Abril Fatface', serif; font-size: 2rem; min-width: 60px; text-align: center; color: var(--gold-bright); }

.booking-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.summary-box {
  background: rgba(255, 201, 77, 0.08);
  border: 1px dashed rgba(255, 201, 77, 0.5);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
}
.summary-box .row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255, 246, 233, 0.1); font-size: 0.95rem; }
.summary-box .row:last-child { border: none; }
.summary-box .row.total { font-weight: 900; color: var(--gold); font-size: 1.15rem; }

.qr-box { text-align: center; padding: 30px; }
.qr-box #qrcode { display: inline-block; background: var(--white); padding: 18px; border-radius: 16px; box-shadow: 0 0 40px rgba(255, 201, 77, 0.4); }
.qr-box #qrcode img, .qr-box #qrcode canvas { display: block; }
.conf-code { font-family: 'Abril Fatface', serif; font-size: 1.6rem; color: var(--gold); letter-spacing: 3px; margin: 18px 0 6px; }

.demo-note {
  font-size: 0.8rem;
  opacity: 0.65;
  text-align: center;
  margin-top: 30px;
  padding: 14px;
  border: 1px solid rgba(255, 246, 233, 0.15);
  border-radius: 12px;
}

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 0.78rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 45, 135, 0.4);
  background: rgba(26, 6, 48, 0.7);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  transition: border 0.25s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); }
textarea { resize: vertical; min-height: 130px; }

/* ---------- Footer ---------- */
footer {
  background: #12041f;
  border-top: 1px solid rgba(255, 201, 77, 0.25);
  padding: 50px 24px 30px;
  text-align: center;
}
footer .brands { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-bottom: 30px; }
footer .brands div { max-width: 240px; }
footer .brands h4 { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
footer .brands p { font-size: 0.8rem; opacity: 0.7; }
footer .fine { font-size: 0.78rem; opacity: 0.55; margin-top: 10px; }
footer .social { margin: 18px 0; font-size: 0.85rem; letter-spacing: 1px; }
footer .social a { margin: 0 10px; text-decoration: none; font-weight: 700; }

/* ---------- Photo hero ---------- */
.hero.hero-photo::before { background-image: none; }
.hero-photo h1 { text-shadow: 0 4px 30px rgba(18, 4, 31, 0.8); }
.hero-photo .sub { text-shadow: 0 2px 14px rgba(18, 4, 31, 0.9); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; }
.gallery figure { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid rgba(255, 45, 135, 0.35); margin: 0; }
.gallery img { width: 100%; height: 250px; object-fit: cover; display: block; transition: transform 0.45s ease; }
.gallery figure:hover img { transform: scale(1.07); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 16px 13px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-bright);
  background: linear-gradient(transparent, rgba(18, 4, 31, 0.92));
}

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; margin-bottom: 50px; }
.split img { width: 100%; height: 330px; object-fit: cover; border-radius: 20px; border: 1px solid rgba(255, 201, 77, 0.4); box-shadow: 0 14px 45px rgba(18, 4, 31, 0.6); }
.split h3 { color: var(--gold); font-size: 1.7rem; margin-bottom: 12px; }
.split p { opacity: 0.88; }
.split .eyebrow { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--pink); font-weight: 800; margin-bottom: 10px; }
@media (max-width: 760px) { .split { grid-template-columns: 1fr; } .split.flip img { order: -1; } }

/* ---------- Guest book ---------- */
.gb-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-top: 40px; }
.gb-entry {
  background: linear-gradient(160deg, rgba(123, 47, 190, 0.28), rgba(26, 6, 48, 0.7));
  border: 1px solid rgba(255, 45, 135, 0.35);
  border-radius: 18px;
  padding: 24px;
  animation: fadeUp 0.4s ease;
}
.gb-entry.mine { border-color: var(--gold); box-shadow: 0 0 25px rgba(255, 201, 77, 0.18); }
.gb-head { display: flex; align-items: center; gap: 13px; margin-bottom: 12px; }
.gb-avatar {
  width: 46px; height: 46px; flex: none;
  border-radius: 50%;
  background: var(--grad-main);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Abril Fatface', serif;
  font-size: 1.1rem; color: var(--white);
}
.gb-name { font-weight: 800; color: var(--gold-bright); font-size: 1rem; line-height: 1.2; }
.gb-meta { font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.65; margin-top: 3px; }
.gb-msg { font-size: 0.95rem; opacity: 0.92; font-style: italic; }
.gb-msg::before { content: "\201C"; color: var(--pink); font-family: 'Abril Fatface', serif; font-size: 1.3em; margin-right: 2px; }
.gb-msg::after { content: "\201D"; color: var(--pink); font-family: 'Abril Fatface', serif; font-size: 1.3em; margin-left: 2px; }
.gb-occasion {
  display: inline-block; margin-top: 14px;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--purple-dark);
  background: var(--grad-gold);
  border-radius: 999px; padding: 4px 12px;
}
.gb-form-card {
  background: linear-gradient(160deg, rgba(123, 47, 190, 0.3), rgba(26, 6, 48, 0.75));
  border: 1px solid rgba(255, 201, 77, 0.4);
  border-radius: 22px;
  padding: 34px 30px;
}

/* ---------- Glam pass ---------- */
::selection { background: var(--pink); color: var(--white); }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--purple-dark); }
::-webkit-scrollbar-thumb { background: var(--grad-main); border-radius: 999px; }

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 10px 40px rgba(255, 45, 135, 0.35); }
  50% { box-shadow: 0 10px 55px rgba(255, 45, 135, 0.65), 0 0 30px rgba(255, 201, 77, 0.25); }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes sparkleFloat {
  0%, 100% { opacity: 0.5; transform: translateY(0) scale(1); }
  50% { opacity: 1; transform: translateY(-14px) scale(1.15); }
}

/* Shimmering headline */
.hero h1 {
  background: linear-gradient(90deg, var(--gold-bright) 0%, var(--pink) 30%, #ff8ac2 50%, var(--gold-bright) 70%, var(--pink) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 7s linear infinite;
}

/* Floating sparkles in photo heroes */
.hero-photo { position: relative; }
.hero-photo::after {
  content: "✦";
  position: absolute; top: 18%; left: 12%;
  color: var(--gold-bright); font-size: 1.3rem;
  text-shadow: 0 0 14px rgba(255, 201, 77, 0.9);
  animation: sparkleFloat 4.5s ease-in-out infinite;
  pointer-events: none;
}
.hero-photo .kicker { position: relative; }
.hero-photo .kicker::after {
  content: "✦";
  position: absolute; top: -34px; right: -46px;
  color: var(--pink); font-size: 1rem;
  text-shadow: 0 0 12px rgba(255, 45, 135, 0.9);
  animation: sparkleFloat 3.6s ease-in-out 1.2s infinite;
}

/* Pulsing primary CTA */
.btn-primary { animation: glowPulse 3.2s ease-in-out infinite; }
.btn-gold:hover, .btn-primary:hover { letter-spacing: 2.2px; }
.btn { transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1); }

/* Gradient-border card hover */
.card:hover {
  border-color: transparent;
  background-image: linear-gradient(160deg, rgba(60, 16, 95, 0.96), rgba(26, 6, 48, 0.96)), linear-gradient(135deg, var(--pink), var(--gold));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.gallery figure { transition: box-shadow 0.35s; }
.gallery figure:hover { box-shadow: 0 16px 50px rgba(255, 45, 135, 0.35); }
.gallery figcaption { letter-spacing: 2.5px; }

/* Nav link underline glow */
.nav-links a:not(.btn-nav) { position: relative; }
.nav-links a:not(.btn-nav)::after {
  content: "";
  position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; border-radius: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:not(.btn-nav):hover::after { transform: scaleX(1); }

/* Marquee ticker */
.marquee {
  overflow: hidden;
  background: var(--grad-main);
  border-top: 1px solid rgba(255, 201, 77, 0.5);
  border-bottom: 1px solid rgba(255, 201, 77, 0.5);
  padding: 13px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marqueeScroll 26s linear infinite;
}
.marquee-track span {
  font-family: 'Abril Fatface', serif;
  font-size: 1.05rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 10px rgba(26, 6, 48, 0.4);
  padding-right: 18px;
}
.marquee-track em { font-style: normal; color: var(--gold-bright); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero h1, .btn-primary, .marquee-track, .hero-photo::after, .hero-photo .kicker::after { animation: none; }
}

/* ---------- Misc ---------- */
.center { text-align: center; }
.mt-40 { margin-top: 40px; }
.hidden { display: none !important; }

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .hero { padding: 70px 20px 60px; }
  .option-card { flex-direction: column; align-items: flex-start; }
}
