/* ===== Cilupbah Studio — Design System ===== */
:root {
  --cream: #F6F1E9;
  --cream-2: #EFE7DA;
  --ink: #2A2520;
  --ink-soft: #5C534A;
  --muted: #8A8073;
  --line: #E2D8C7;
  --gold: #B08D57;
  --gold-deep: #997743;
  --terra: #C2714F;
  --white: #FFFFFF;
  --dark: #211D18;
  --whatsapp: #25D366;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px -24px rgba(42, 37, 32, 0.45);
  --shadow-sm: 0 8px 24px -16px rgba(42, 37, 32, 0.4);
  --maxw: 1180px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 84px 0; }
section[id], .hero { scroll-margin-top: 84px; }
.section-tint { background: var(--cream-2); }
.section-dark { background: var(--dark); color: var(--cream); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--ink); color: var(--cream); padding: 10px 16px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ===== Typography ===== */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; margin: 0; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.35rem; }
em { font-style: italic; color: var(--gold-deep); }
.eyebrow {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 0.72rem; font-weight: 600; color: var(--gold-deep); margin: 0 0 14px;
}
.eyebrow.on-dark { color: var(--gold); }
.muted { color: var(--muted); }
.small { font-size: 0.82rem; }

.section-head { max-width: 640px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin: 14px 0 0; color: var(--ink-soft); }
.section-head.on-dark p { color: rgba(246,241,233,0.72); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: 1.5px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  font-family: var(--sans);
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: var(--gold-deep); }
.btn-ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-light { background: var(--white); color: var(--ink); border-color: var(--line); }
.btn-light:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: #000; }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #1eb858; }
.btn-full { width: 100%; }
.btn.disabled, .btn[aria-disabled="true"] { opacity: .5; pointer-events: none; }

/* ===== Nav ===== */
.top-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,241,233,0.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.brand { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.brand span { color: var(--gold-deep); margin-left: 4px; font-style: italic; }
.nav-desktop { display: flex; gap: 28px; }
.nav-desktop a { font-size: 0.92rem; font-weight: 500; color: var(--ink-soft); }
.nav-desktop a:hover { color: var(--gold-deep); }
.nav-cta { padding: 11px 22px; font-size: 0.9rem; }

/* Hamburger */
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent;
  cursor: pointer; padding: 11px; flex-direction: column; justify-content: space-between;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu { border-top: 1px solid var(--line); background: var(--cream); box-shadow: var(--shadow-sm); }
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: flex; flex-direction: column; padding: 12px 22px 20px; gap: 2px; max-width: var(--maxw); margin: 0 auto; }
.mobile-menu nav a { padding: 14px 6px; font-size: 1rem; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-menu nav a:active { color: var(--gold-deep); }
.mobile-menu nav a.btn { border: 0; margin-top: 14px; color: var(--white); }

/* ===== Hero ===== */
.hero { padding: 70px 0 56px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-copy h1 { margin-bottom: 22px; }
.hero-lead { font-size: 1.08rem; color: var(--ink-soft); max-width: 460px; margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-stats { list-style: none; display: flex; gap: 34px; padding: 26px 0 0; margin: 0; border-top: 1px solid var(--line); }
.hero-stats strong { display: block; font-family: var(--serif); font-size: 2.1rem; color: var(--ink); line-height: 1; }
.hero-stats span { font-size: 0.82rem; color: var(--muted); }

.hero-media { position: relative; min-height: 460px; }
.hero-img { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img--main { aspect-ratio: 3/4; width: 74%; margin-left: auto; }
.hero-img--small {
  position: absolute; left: 0; bottom: 28px; width: 46%; aspect-ratio: 3/4;
  border: 6px solid var(--cream);
}
.hero-badge {
  position: absolute; top: 18px; left: 0; background: var(--white);
  padding: 11px 16px; border-radius: 999px; box-shadow: var(--shadow-sm);
  font-size: 0.82rem; font-weight: 500; display: flex; align-items: center; gap: 8px;
}
.hero-badge strong { color: var(--gold-deep); }
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--terra); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: .4; transform: scale(.7);} }

/* ===== Trust strip ===== */
.trust-strip { background: var(--ink); color: var(--cream); overflow: hidden; padding: 16px 0; }
.trust-track { display: flex; gap: 26px; white-space: nowrap; width: max-content; animation: marquee 26s linear infinite; }
.trust-track span { font-family: var(--serif); font-size: 1.2rem; font-style: italic; opacity: .92; }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.about-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-copy h2 { margin-bottom: 22px; }
.about-copy p { color: var(--ink-soft); margin: 0 0 18px; }
.about-copy blockquote {
  margin: 26px 0 0; padding: 18px 24px; border-left: 3px solid var(--gold);
  font-family: var(--serif); font-size: 1.45rem; font-style: italic; color: var(--ink);
}

/* ===== Features ===== */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 24px; transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-num { font-family: var(--serif); font-size: 2rem; color: var(--gold); display: block; margin-bottom: 14px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--ink-soft); font-size: 0.94rem; margin: 0; }

/* ===== Favorite ===== */
.favorite-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.favorite-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; position: relative; transition: transform .2s ease, box-shadow .2s ease;
}
.favorite-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.fav-tag {
  display: inline-block; background: var(--cream-2); color: var(--gold-deep);
  font-size: 0.72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; margin-bottom: 16px;
}
.favorite-card h3 { font-size: 1.7rem; margin-bottom: 12px; }
.favorite-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0 0 20px; }
.link-arrow { color: var(--gold-deep); font-weight: 600; font-size: 0.9rem; }
.link-arrow:hover { color: var(--terra); }

/* ===== Portfolio ===== */
.portfolio-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 34px; }
.portfolio-btn {
  background: var(--white); border: 1px solid var(--line); color: var(--ink-soft);
  padding: 9px 20px; border-radius: 999px; font-family: var(--sans); font-size: 0.88rem;
  font-weight: 500; cursor: pointer; transition: all .18s ease;
}
.portfolio-btn:hover { border-color: var(--gold); color: var(--gold-deep); }
.portfolio-btn.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.portfolio-card { margin: 0; aspect-ratio: 4 / 5; break-inside: avoid; border-radius: var(--radius-sm); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.portfolio-card:hover img { transform: scale(1.05); }
.portfolio-card figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26px 16px 12px; color: #fff; font-size: 0.85rem; font-weight: 500;
  background: linear-gradient(transparent, rgba(0,0,0,.6)); opacity: 0; transition: opacity .25s ease;
}
.portfolio-card:hover figcaption { opacity: 1; }

/* ===== Pricing ===== */
.pricing-group { margin-bottom: 44px; }
.pricing-group-title { font-size: 1.5rem; margin-bottom: 22px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.pricing-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); gap: 20px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; position: relative; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.badge {
  position: absolute; top: 18px; right: 18px; background: var(--terra); color: #fff;
  font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
  padding: 5px 11px; border-radius: 999px;
}
.card h4 { font-family: var(--serif); font-size: 1.35rem; margin: 0 0 8px; font-weight: 600; }
.card .price { font-weight: 700; color: var(--gold-deep); font-size: 1.05rem; }
.card p { color: var(--ink-soft); font-size: 0.9rem; margin: 10px 0; }
.card ul { list-style: none; padding: 0; margin: 6px 0 18px; display: grid; gap: 7px; }
.card ul li { position: relative; padding-left: 22px; font-size: 0.88rem; color: var(--ink-soft); }
.card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.card .btn { margin-top: auto; }

.secondary-packages {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 24px;
}
.secondary-packages summary { cursor: pointer; font-weight: 600; padding: 18px 0; font-family: var(--serif); font-size: 1.2rem; }
.secondary-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; padding: 8px 0 22px; }
.secondary-grid .card { box-shadow: none; }
.secondary-grid .card:hover { transform: none; }

/* ===== Booth ===== */
.booth-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.booth-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius); padding: 28px 22px; text-align: center;
}
.booth-card .dur { font-family: var(--serif); font-size: 1.5rem; color: var(--gold); margin-bottom: 6px; }
.booth-card .price { font-size: 1.3rem; font-weight: 700; }
.booth-card.featured { border-color: var(--gold); background: rgba(176,141,87,0.14); }
.booth-note { text-align: center; margin-top: 28px; color: rgba(246,241,233,0.7); }
.booth-note a { color: var(--gold); font-weight: 600; }

/* ===== Add-ons ===== */
.addon-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.addon-grid .card { text-align: center; align-items: center; }
.addon-grid .card .price { margin-top: 8px; }

/* ===== Steps ===== */
.steps-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.steps-grid li { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 22px; }
.steps-grid span {
  display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px;
  border-radius: 50%; background: var(--cream-2); color: var(--gold-deep); font-family: var(--serif);
  font-size: 1.3rem; font-weight: 700; margin-bottom: 16px;
}
.steps-grid h3 { font-size: 1.15rem; margin-bottom: 8px; }
.steps-grid p { color: var(--ink-soft); font-size: 0.9rem; margin: 0; }

/* ===== Urgency band ===== */
.urgency-band {
  background: var(--ink); color: var(--cream); border-radius: var(--radius);
  padding: 44px 48px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.urgency-band h2 { margin: 8px 0 12px; }
.urgency-band p { color: rgba(246,241,233,0.78); margin: 0; max-width: 560px; }

/* ===== Testimonials ===== */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
}
.testimonial .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.testimonial p { font-family: var(--serif); font-size: 1.2rem; font-style: italic; color: var(--ink); margin: 0 0 18px; line-height: 1.4; }
.testimonial .who { display: flex; align-items: center; gap: 12px; }
.testimonial .who span { width: 40px; height: 40px; border-radius: 50%; background: var(--cream-2); color: var(--gold-deep); font-family: var(--serif); font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }
.testimonial .who strong { font-family: var(--sans); font-size: 0.92rem; }
.testimonial .who em { font-style: normal; color: var(--muted); font-size: 0.8rem; display: block; }

/* ===== Locations ===== */
.location-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.location-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.location-card .map-embed { width: 100%; height: 150px; border: 0; display: block; }
.location-card .loc-body { padding: 20px; }
.location-card h4 { font-family: var(--serif); font-size: 1.25rem; margin: 0 0 6px; }
.location-card p { color: var(--ink-soft); font-size: 0.88rem; margin: 0 0 12px; }
.location-card .loc-hours { font-size: 0.8rem; color: var(--gold-deep); font-weight: 600; }

/* ===== Booking ===== */
.booking-section { background: var(--cream-2); }
.booking-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: start; }
.alert-urgency { color: var(--terra); font-weight: 600; }
.booking-form { display: grid; gap: 16px; }
.booking-form label { display: grid; gap: 7px; font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-form input, .booking-form select {
  font-family: var(--sans); font-size: 0.95rem; padding: 13px 14px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: var(--white); color: var(--ink); font-weight: 500; width: 100%;
}
.booking-form input:focus, .booking-form select:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.booking-form fieldset { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px; }
.booking-form legend { font-size: 0.85rem; font-weight: 600; padding: 0 8px; }
.booking-addons { display: grid; gap: 10px; }
.booking-addons label { flex-direction: row; display: flex; align-items: center; gap: 10px; font-weight: 500; }
.booking-addons input { width: auto; }
.form-error { color: var(--terra); font-size: 0.88rem; font-weight: 500; min-height: 1.2em; margin: 0; }

.booking-summary { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); position: sticky; top: 92px; }
.booking-summary h3 { font-size: 1.4rem; margin-bottom: 16px; }
.booking-summary ul { list-style: none; padding: 0; margin: 0 0 16px; display: grid; gap: 8px; }
.booking-summary > ul li { font-size: 0.88rem; color: var(--ink-soft); display: flex; justify-content: space-between; gap: 10px; }
.summary-total { font-size: 1.1rem; padding-top: 14px; border-top: 1px solid var(--line); margin: 0 0 18px; }
.summary-total strong { font-family: var(--serif); font-size: 1.6rem; color: var(--gold-deep); }
.payment-box { background: var(--cream); border-radius: var(--radius-sm); padding: 18px 20px; margin-bottom: 18px; }
.payment-box h4 { margin: 0 0 8px; font-family: var(--sans); font-size: 0.92rem; }
.payment-box p { font-size: 0.85rem; color: var(--ink-soft); margin: 0 0 10px; }
.payment-box ul { display: grid; gap: 6px; }
.payment-box ul li { font-size: 0.84rem; color: var(--ink); }
.booking-summary .btn { margin-bottom: 12px; }

/* ===== Final CTA ===== */
.final-cta { background: var(--ink); color: var(--cream); text-align: center; }
.final-wrap { max-width: 640px; }
.final-wrap h2 { margin: 8px 0 14px; }
.final-wrap p { color: rgba(246,241,233,0.76); margin: 0 0 28px; }

/* ===== Sticky WA ===== */
.sticky-wa {
  position: fixed; right: 20px; bottom: 20px; z-index: 200;
  background: var(--whatsapp); color: #fff; display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 20px; border-radius: 999px; font-weight: 600; font-size: 0.9rem;
  box-shadow: 0 12px 30px -10px rgba(37,211,102,0.6); transition: transform .18s ease;
}
.sticky-wa:hover { transform: translateY(-3px); }

/* ===== Footer ===== */
.footer { background: var(--dark); color: rgba(246,241,233,0.8); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.brand--footer { color: var(--cream); font-size: 1.6rem; display: inline-block; margin-bottom: 12px; }
.footer-grid p { font-size: 0.92rem; max-width: 420px; margin: 0; }
.footer-contact { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 16px; }
.footer-contact a { font-size: 0.92rem; font-weight: 600; color: var(--cream); }
.footer-contact a:hover { color: var(--gold); }
.footer-links { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer-links a { font-size: 0.92rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { padding-top: 22px; font-size: 0.82rem; color: rgba(246,241,233,0.55); }

/* ===== Responsive ===== */
@media (max-width: 940px) {
  .hero-grid, .about-grid, .booking-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 420px; margin-top: 18px; }
  .feature-grid, .steps-grid, .location-grid { grid-template-columns: repeat(2, 1fr); }
  .favorite-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .booking-summary { position: static; }
  .nav-desktop, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .about-copy { order: 2; }
}
@media (max-width: 560px) {
  .section { padding: 58px 0; }
  .feature-grid, .steps-grid, .location-grid { grid-template-columns: 1fr; }
  /* Portfolio: uniform 2-col gallery with consistent thumbnail size */
  .portfolio-grid { columns: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .portfolio-card { margin: 0; aspect-ratio: 4 / 5; }
  .portfolio-card img { width: 100%; height: 100%; object-fit: cover; }
  .portfolio-card figcaption { opacity: 1; padding: 18px 12px 10px; font-size: 0.78rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 36px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 0; justify-content: space-between; }
  .hero-stats strong { font-size: 1.7rem; }
  .hero-media { min-height: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: end; }
  .hero-img--main { width: 100%; margin: 0; aspect-ratio: 3/4; }
  .hero-img--small { position: static; width: 100%; bottom: auto; border-width: 0; aspect-ratio: 3/4; }
  .hero-badge { position: static; grid-column: 1 / -1; order: -1; justify-self: start; }
  .about-copy blockquote { font-size: 1.25rem; padding: 14px 18px; }
  .urgency-band { padding: 30px 22px; text-align: left; }
  .urgency-band .btn { width: 100%; }
  .booth-grid { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 34px; }
  h1 { font-size: clamp(2.3rem, 11vw, 3rem); }
  /* 16px min prevents iOS auto-zoom on focus */
  .booking-form input, .booking-form select { font-size: 16px; }
  /* Icon-only floating WhatsApp to avoid covering content */
  .sticky-wa { right: 14px; bottom: 14px; padding: 14px; border-radius: 50%; }
  .sticky-wa-label { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; transition: none !important; }
}
