/* ==========================================================================
   Destiny Pastries Services — stylesheet
   Brand: black #221E1F + gold #E6B03A, sampled from the logo and sticker.
   Abril Fatface + Playfair Display + Poppins.
   ========================================================================== */

/* Brand palette sampled from the logo and packaging sticker:
   black #221E1F, gold ramp #7D5310 -> #E6B03A -> #FFF97F, red #EE3135.
   The variables keep their original names so the whole sheet re-themes
   from here; --red now carries the black brand surface. */
:root {
  --red: #221E1F;          /* brand black — primary surface and headings */
  --red-dark: #100D0D;     /* hover / pressed */
  --red-deep: #141110;     /* deepest ground: hero, footer */
  --accent: #C9922B;       /* mid gold, readable on cream */
  --gold: #E6B03A;         /* brand gold */
  --gold-deep: #A9761A;    /* gold that passes contrast on light backgrounds */
  --gold-light: #F8C84F;
  --gold-soft: #FBEFC9;
  --red-accent: #EE3135;   /* the sticker's red, used sparingly */
  --cream: #FAF5E5;
  --cream-warm: #F5EDDA;
  --ink: #1F1B1A;
  --ink-soft: #57504C;
  --line: rgba(34, 30, 31, .14);
  --white: #fff;

  --serif: "Abril Fatface", Georgia, serif;
  --script: "Playfair Display", Georgia, serif;
  --sans: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1180px;
  --radius: 14px;
  --shadow: 0 10px 34px rgba(20,17,16, .13);
  --shadow-lg: 0 22px 60px rgba(20,17,16, .20);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.15; margin: 0 0 .5em; }
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1.15em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 780px; }

/* ---------- Shared bits ---------- */

.eyebrow {
  font-family: var(--script);
  font-style: italic;
  font-size: 1.28rem;
  color: var(--accent);
  margin: 0 0 .35em;
  display: block;
}

.section { padding: 92px 0; }
.section--cream { background: var(--cream); }
.section--warm { background: var(--cream-warm); }
.section--red { background: var(--red); color: var(--cream); }
.section--red h2, .section--red h3 { color: var(--white); }
.section--red .eyebrow { color: var(--gold); }

.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }

.lede { font-size: 1.1rem; color: var(--ink-soft); max-width: 660px; }
.section--red .lede { color: rgba(255,255,255,.85); }

/* decorative rule under headings */
.rule { display: flex; align-items: center; gap: 10px; margin: 0 0 28px; }
.center .rule { justify-content: center; }
.rule::before, .rule::after {
  content: ""; height: 2px; width: 38px; background: var(--gold);
}
.rule span { color: var(--gold); font-size: .9rem; letter-spacing: .3em; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--sans); font-weight: 600; font-size: .96rem;
  letter-spacing: .02em;
  padding: 15px 30px; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--red); color: var(--white); box-shadow: 0 8px 22px rgba(34,30,31,.32); }
.btn--primary:hover { background: var(--red-dark); color: var(--white); box-shadow: 0 12px 30px rgba(34,30,31,.42); }
.btn--ghost { border-color: currentColor; color: var(--red); background: transparent; }
.btn--ghost:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--light { background: var(--gold); color: var(--red-deep); }
.btn--light:hover { background: var(--white); color: var(--red); }
.btn--outline-light { border-color: rgba(255,255,255,.6); color: var(--white); }
.btn--wa { background: #25D366; color: #fff; box-shadow: 0 8px 22px rgba(37,211,102,.34); }
.btn--wa:hover { background: #1da851; color: #fff; box-shadow: 0 12px 30px rgba(37,211,102,.42); }
.btn--wa svg { width: 20px; height: 20px; }
.btn--outline-light:hover { background: var(--white); color: var(--red); border-color: var(--white); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row, .btn-row.center { justify-content: center; }

/* ---------- Header ---------- */

.topbar {
  background: var(--red-deep); color: rgba(255,255,255,.9);
  font-size: .84rem; letter-spacing: .02em;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 42px; flex-wrap: wrap; }
.topbar a { color: var(--gold); }
.topbar a:hover { color: var(--white); }
.topbar__note { display: flex; align-items: center; gap: 8px; }

/* ---------- Social icons ---------- */
.socials { display: inline-flex; align-items: center; gap: 4px; margin-left: 6px; }
.socials .soc {
  display: grid; place-content: center; width: 28px; height: 28px;
  border-radius: 50%; color: var(--gold);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.socials .soc svg { width: 16px; height: 16px; display: block; }
.socials .soc:hover { background: rgba(255,255,255,.16); color: #fff; transform: translateY(-1px); }

.socials--footer { margin-left: 0; gap: 8px; }
.socials--footer .soc {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.85);
}
.socials--footer .soc svg { width: 19px; height: 19px; }
.socials--footer .soc:hover { background: var(--gold); border-color: var(--gold); color: var(--red-deep); }

.site-header {
  /* Must sit ABOVE .nav-backdrop (65). The mobile drawer is a child of this
     header, so it is trapped in this stacking context — at z-index 60 the
     backdrop painted over the open menu and swallowed every tap. */
  position: sticky; top: 0; z-index: 70;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 -3px 0 var(--gold);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 82px; }

.brand { display: flex; align-items: center; gap: 12px; color: var(--red); }
.brand:hover { color: var(--red); }
.brand svg, .brand__logo { width: 44px; height: 44px; flex: none; }
.brand__name { font-family: var(--script); font-weight: 600; font-size: 1.32rem; line-height: 1.05; letter-spacing: .01em; }
.brand__sub { display: block; font-family: var(--sans); font-size: .6rem; font-weight: 500;
  letter-spacing: .34em; text-transform: uppercase; color: var(--gold-deep); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: .94rem; font-weight: 500; color: var(--ink); position: relative; padding: 6px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--red); transition: right .25s ease;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--red); }
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }

/* The CTA inside the nav is a button, not a nav link — `.nav a` would
   otherwise win on specificity and repaint the label dark red. */
.nav a.btn, .nav a.btn:hover { color: var(--white); }
.nav a.btn::after { display: none; }
.nav .btn { padding: 12px 24px; font-size: .9rem; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 10px;
  color: var(--red);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */

.hero {
  position: relative; background: var(--red-deep); color: var(--cream); overflow: hidden;
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding: 84px 0 92px;
}
.hero h1 { color: var(--white); margin-bottom: .3em; }
.hero__tag {
  font-family: var(--script); font-style: italic; font-size: 1.45rem;
  color: var(--gold); margin: 0 0 18px;
}
.hero p { color: rgba(255,255,255,.86); font-size: 1.08rem; max-width: 30em; }
.hero__media { position: relative; }
.hero__media img {
  border-radius: 200px 200px var(--radius) var(--radius);
  box-shadow: var(--shadow-lg); width: 100%; height: 520px; object-fit: cover;
}
.hero__badge {
  position: absolute; left: -26px; bottom: 34px;
  background: var(--gold); color: var(--red-deep);
  border-radius: 50%; width: 132px; height: 132px;
  display: grid; place-content: center; text-align: center;
  font-weight: 700; line-height: 1.2; font-size: .82rem; letter-spacing: .04em;
  box-shadow: var(--shadow); padding: 10px;
}
.hero__badge strong { display: block; font-family: var(--serif); font-size: 1.9rem; font-weight: 400; }

/* page banner for interior pages */
.banner { background: var(--red-deep); color: var(--cream); padding: 66px 0 70px; text-align: center; }
.banner h1 { color: var(--white); margin-bottom: .15em; }
.banner p { color: rgba(255,255,255,.82); max-width: 620px; margin: 0 auto; }
.banner .eyebrow { color: var(--gold); }

/* ---------- Product cards ---------- */

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .22s ease, box-shadow .22s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card img { height: 235px; width: 100%; object-fit: cover; }
.card__body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { margin-bottom: .35em; color: var(--red); font-family: var(--serif); }
.card__body p { color: var(--ink-soft); font-size: .96rem; margin-bottom: 1em; }
.card__price {
  margin-top: auto; font-weight: 600; font-size: .92rem; color: var(--ink);
  border-top: 1px solid var(--line); padding-top: 14px;
}
.card__price span { color: var(--gold-deep); }

/* ---------- Feature strip ---------- */

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.feature { text-align: center; padding: 6px; }
.feature__icon {
  width: 68px; height: 68px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-content: center;
  background: rgba(220,165,74,.18); color: var(--gold);
}
.section--red .feature__icon { background: rgba(255,255,255,.12); color: var(--gold); }
.feature__icon svg { width: 32px; height: 32px; }
.feature h3 { font-family: var(--serif); font-size: 1.25rem; }
.feature p { font-size: .96rem; color: var(--ink-soft); margin: 0; }
.section--red .feature p { color: rgba(255,255,255,.8); }

/* ---------- Split section ---------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--flip .split__media { order: 2; }
.split__media img,
.split__media video { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 480px; object-fit: cover; display: block; }
.split__video { background: var(--cream-warm); }

.tick-list { list-style: none; padding: 0; margin: 0 0 26px; }
.tick-list li { position: relative; padding-left: 34px; margin-bottom: 14px; }
.tick-list li strong { display: block; color: var(--red); font-family: var(--sans); font-weight: 600; }
.section--red .tick-list li strong { color: var(--gold); }
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--gold);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/13px no-repeat, linear-gradient(#000,#000);
  -webkit-mask-composite: destination-out; mask-composite: exclude;
}

/* ---------- Price list ---------- */

.price-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.price-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 30px 32px 26px; border-top: 4px solid var(--gold);
}
.price-card h3 {
  font-family: var(--serif); color: var(--red); font-size: 1.4rem;
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
}
.price-card h3 small { font-family: var(--sans); font-size: .68rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }

.ptable { width: 100%; border-collapse: collapse; font-size: .95rem; }
.ptable th {
  text-align: right; font-size: .68rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600; padding: 0 0 8px; border-bottom: 1px solid var(--line);
}
.ptable th:first-child { text-align: left; }
.ptable td { padding: 11px 0; border-bottom: 1px solid var(--line); text-align: right; }
.ptable td:first-child { text-align: left; font-weight: 500; }
.ptable tr:last-child td { border-bottom: 0; }
.ptable .amt { font-weight: 600; color: var(--gold-deep); white-space: nowrap; }
.ptable .amt--muted { color: var(--ink-soft); font-weight: 500; }

.price-note {
  background: var(--gold-soft); border-left: 4px solid var(--gold);
  padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0; margin-top: 8px;
}
/* The sticker uses red for the banner that carries the message that matters,
   so red here is reserved for notices people must not skim past. */
.price-note--alert { background: #FDECEA; border-left-color: var(--red-accent); }
.price-note--alert strong { color: #A8221F; }
.price-note p:last-child { margin-bottom: 0; }
.price-note strong { color: var(--red-dark); }

/* ---------- Gallery ---------- */

.gallery-grid { columns: 4; column-gap: 16px; }
.gallery-grid figure { margin: 0 0 16px; break-inside: avoid; position: relative; cursor: zoom-in;
  border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.gallery-grid img { width: 100%; transition: transform .4s ease; }
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26px 14px 12px;
  background: linear-gradient(transparent, rgba(20,17,16,.86));
  color: #fff; font-size: .84rem; opacity: 0; transition: opacity .28s ease;
}
.gallery-grid figure:hover figcaption { opacity: 1; }

.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(16,13,13,.94);
  display: none; align-items: center; justify-content: center; padding: 30px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox__cap { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.9); font-size: .95rem; }
.lightbox__btn {
  position: absolute; background: rgba(255,255,255,.12); border: 0; color: #fff;
  width: 50px; height: 50px; border-radius: 50%; cursor: pointer; font-size: 1.6rem; line-height: 1;
  display: grid; place-content: center; transition: background .2s;
}
.lightbox__btn:hover { background: rgba(255,255,255,.28); }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ---------- Forms ---------- */

.form-shell {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 40px;
}
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 7px; color: var(--ink); }
.field label .req { color: var(--red-accent); }
.field .hint { font-weight: 400; color: var(--ink-soft); font-size: .82rem; }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: .97rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  background: #fffdf8; transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--red); box-shadow: 0 0 0 3px rgba(34,30,31,.12);
}
.field textarea { min-height: 130px; resize: vertical; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }

fieldset.order-set { border: 0; padding: 0; margin: 0 0 26px; }
fieldset.order-set legend {
  font-family: var(--serif); color: var(--red); font-size: 1.25rem;
  padding: 0; margin-bottom: 6px;
}
.qty-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 20px; margin-top: 12px; }
.qty {
  display: grid; grid-template-columns: 1fr 92px; align-items: center; gap: 12px;
  background: var(--cream); border-radius: 10px; padding: 10px 14px;
}
.qty label { margin: 0; font-weight: 500; font-size: .92rem; }
.qty label span { display: block; font-size: .8rem; color: var(--ink-soft); font-weight: 400; }
.qty input { padding: 9px 11px; text-align: center; background: #fff; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { padding: 15px 20px; border-radius: 10px; margin-bottom: 24px; font-size: .95rem; }
.alert--error { background: #FDECEA; border-left: 4px solid var(--red-accent); color: #A8221F; }
.alert ul { margin: 6px 0 0; padding-left: 20px; }

/* ---------- Contact ---------- */

.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 48px; align-items: start; }
.info-card {
  background: var(--red); color: var(--cream); border-radius: var(--radius);
  padding: 36px 34px; box-shadow: var(--shadow);
}
.info-card h3 { color: var(--white); font-family: var(--serif); }
.info-item { display: flex; gap: 15px; margin-bottom: 24px; align-items: flex-start; }
.info-item:last-child { margin-bottom: 0; }
.info-item svg { width: 22px; height: 22px; flex: none; color: var(--gold); margin-top: 4px; }
.info-item strong { display: block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.info-item a, .info-item span { color: #fff; font-size: 1.02rem; }
.info-item a:hover { color: var(--gold); }

/* ---------- Testimonials ---------- */

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote {
  background: rgba(255,255,255,.09); border-radius: var(--radius); padding: 30px 28px;
  border: 1px solid rgba(255,255,255,.16);
}
.quote p { font-family: var(--script); font-style: italic; font-size: 1.14rem; color: #fff; margin-bottom: 14px; }
.quote cite { font-style: normal; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 10px; font-size: .95rem; }

/* ---------- CTA band ---------- */

/* Background image is set inline on the element so the url() resolves
   against the page, not this stylesheet. */
.cta-band {
  position: relative; isolation: isolate;
  background-color: var(--red-deep);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  color: var(--cream); text-align: center; padding: 86px 0;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(20,17,16, .90);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 28px; }

/* ---------- Footer ---------- */

.site-footer { background: var(--red-deep); color: rgba(255,255,255,.7); padding: 64px 0 0; font-size: .94rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.site-footer h4 { color: var(--gold); font-family: var(--sans); font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer .brand__sub { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14); padding: 22px 0;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  /* Below the backdrop (65) so it dims along with the page when the mobile
     menu is open, instead of floating on top of the drawer. */
  position: fixed; right: 20px; bottom: 20px; z-index: 55;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-content: center; box-shadow: 0 8px 24px rgba(0,0,0,.28);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 64px; }
  .hero__media img { height: 400px; }
  .hero__badge { left: auto; right: 14px; bottom: 14px; width: 112px; height: 112px; font-size: .74rem; }
  .cards, .features, .quotes { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .split--flip .split__media { order: 0; }
  .split__media img, .split__media video { height: 340px; }
  .price-groups { grid-template-columns: 1fr; }
  .gallery-grid { columns: 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw);
    background: var(--white); flex-direction: column; align-items: flex-start;
    padding: 92px 32px 32px; gap: 4px; box-shadow: -14px 0 40px rgba(0,0,0,.16);
    transform: translateX(100%); transition: transform .3s ease; z-index: 70;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { font-size: 1.06rem; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .nav .btn { margin-top: 18px; width: 100%; justify-content: center; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(16,13,13,.5); z-index: 65;
    opacity: 0; pointer-events: none; transition: opacity .3s;
  }
  .nav-backdrop.is-open { opacity: 1; pointer-events: auto; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 62px 0; }
  .cards, .features, .quotes, .qty-grid, .grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; column-gap: 12px; }
  .gallery-grid figure { margin-bottom: 12px; }
  .form-shell { padding: 26px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar .wrap { justify-content: center; text-align: center; }
  .hero__media img { height: 320px; border-radius: 140px 140px var(--radius) var(--radius); }
  .btn { width: 100%; justify-content: center; }
  .btn-row { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* print */
@media print {
  .site-header, .topbar, .site-footer, .wa-float, .cta-band, .btn { display: none !important; }
  body { font-size: 12pt; }
  .price-card { box-shadow: none; border: 1px solid #ccc; page-break-inside: avoid; }
}
