/* =============================================================================
   PALM & PUMPKIN — STYLES
   Palette: warm ivory, burnt-orange pumpkin, terracotta, sage, espresso, gold
   ========================================================================== */

:root {
  --ivory:      #FBF6EE;
  --ivory-2:    #F4EADB;
  --cream-card: #FFFDF9;
  --pumpkin:    #D6541F;
  --pumpkin-dk: #B8451A;
  --terracotta: #C2683A;
  --gold:       #B8862F;
  --gold-lt:    #D9B65E;
  --sage:       #5A6B4A;
  --sage-dk:    #43523A;
  --espresso:   #2B211A;
  --ink:        #3A2E24;
  --muted:      #7A6B5C;
  --line:       #E7DBC9;
  --shadow-sm:  0 2px 8px rgba(58,46,36,.06);
  --shadow-md:  0 12px 30px rgba(58,46,36,.10);
  --shadow-lg:  0 24px 60px rgba(58,46,36,.16);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --maxw: 1160px;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--font-head); font-weight: 600; color: var(--espresso); line-height: 1.14; margin: 0; }
em { font-style: italic; color: var(--pumpkin); }

a { color: var(--pumpkin-dk); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 780px; }

/* --------------------------------------------------------------- BUTTONS -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: .85em 1.5em; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none; line-height: 1; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--pumpkin); color: #fff; box-shadow: 0 8px 20px rgba(214,84,31,.28); }
.btn-primary:hover { background: var(--pumpkin-dk); }
.btn-light { background: #fff; color: var(--pumpkin-dk); }
.btn-light:hover { background: var(--ivory-2); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--pumpkin); color: var(--pumpkin-dk); }
.btn-text { background: none; color: var(--muted); padding: .6em .8em; font-weight: 500; text-decoration: underline; }
.btn-text:hover { color: var(--pumpkin-dk); transform: none; }
.btn-sm { padding: .6em 1.05em; font-size: .9rem; }
.btn-lg { padding: 1em 1.8em; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* --------------------------------------------------------------- HEADER --- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,246,238,.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 20px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand:hover { text-decoration: none; }
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--espresso); }
.main-nav { margin-left: auto; display: flex; gap: 26px; }
.main-nav a { color: var(--ink); font-weight: 500; font-size: .97rem; }
.main-nav a:hover { color: var(--pumpkin-dk); text-decoration: none; }
.header-cta { flex: none; }

/* ----------------------------------------------------------------- HERO --- */
.hero { padding: 56px 0 44px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 82% 8%, rgba(217,182,94,.20), transparent 60%),
    radial-gradient(50% 45% at 8% 92%, rgba(90,107,74,.14), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 52px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 0 18px;
  font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--sage-dk);
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pumpkin); box-shadow: 0 0 0 4px rgba(214,84,31,.15); }
.hero-h1 { font-size: clamp(2.1rem, 4.4vw, 3.35rem); letter-spacing: -.01em; }
.hero-sub { font-size: 1.12rem; color: var(--ink); margin: 22px 0 16px; max-width: 30em; }
.hero-micro { font-size: 1rem; color: var(--muted); margin: 0 0 22px; }
.hero-micro strong { color: var(--espresso); }
.hero-trust { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.hero-trust li { display: flex; align-items: center; gap: 10px; font-size: .98rem; color: var(--ink); }
.tick { display: inline-grid; place-items: center; width: 22px; height: 22px; flex: none;
  border-radius: 50%; background: rgba(90,107,74,.15); color: var(--sage-dk); font-size: .8rem; font-weight: 700; }

/* WIDGET (step 1) */
.hero-widget { position: relative; }
.widget-card {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 26px; position: relative;
}
.widget-head { margin-bottom: 18px; }
.step-pill {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--pumpkin-dk); background: rgba(214,84,31,.10);
  padding: 5px 11px; border-radius: 999px; margin-bottom: 10px;
}
.widget-title { font-size: 1.5rem; }

.uploader {
  display: block; border: 2px dashed var(--line); border-radius: var(--r-md);
  background: var(--ivory); padding: 26px 18px; text-align: center; cursor: pointer;
  transition: border-color .15s, background .15s; margin-bottom: 18px;
}
.uploader:hover, .uploader.dragover { border-color: var(--pumpkin); background: #fff; }
.uploader.has-image { padding: 0; border-style: solid; overflow: hidden; }
.uploader-empty { display: grid; justify-items: center; gap: 6px; color: var(--muted); }
.up-icon { width: 34px; height: 34px; color: var(--pumpkin); }
.up-title { font-weight: 600; color: var(--ink); }
.up-hint { font-size: .85rem; }
.uploader-preview { position: relative; }
.uploader-preview img { width: 100%; height: 220px; object-fit: cover; }
.thumb-remove {
  position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border: none;
  border-radius: 50%; background: rgba(43,33,26,.7); color: #fff; font-size: 1.2rem;
  cursor: pointer; line-height: 1; display: grid; place-items: center;
}
.thumb-remove:hover { background: var(--espresso); }

.pkg-select { border: none; margin: 0; padding: 0; }
.pkg-select legend { font-weight: 600; font-size: .95rem; color: var(--ink); margin-bottom: 10px; padding: 0; }
.pkg-radios { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pkg-radio { position: relative; }
.pkg-radio input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.pkg-radio label {
  display: flex; flex-direction: column; gap: 2px; cursor: pointer;
  border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 11px 13px;
  transition: border-color .15s, background .15s; height: 100%;
}
.pkg-radio .pk-name { font-weight: 600; font-size: .96rem; color: var(--ink); }
.pkg-radio .pk-price { font-size: .82rem; color: var(--muted); }
.pkg-radio input:checked + label { border-color: var(--pumpkin); background: rgba(214,84,31,.06); box-shadow: inset 0 0 0 1px var(--pumpkin); }
.pkg-radio input:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 2px; }
.pkg-radio.is-anchor .pk-name::after { content: "★"; color: var(--gold); margin-left: 5px; font-size: .85em; }

.form-error { color: #b3261e; font-size: .9rem; margin: 12px 0 0; font-weight: 500; }
.widget-footnote, .widget-card .widget-footnote { text-align: center; color: var(--muted); font-size: .85rem; margin: 12px 0 0; }

/* ---------------------------------------------------------------- STRIP --- */
.strip { background: var(--espresso); color: #fff; }
.strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 26px 24px; }
.strip-item { display: grid; gap: 2px; text-align: center; }
.strip-item strong { font-family: var(--font-head); font-size: 1.35rem; color: var(--gold-lt); }
.strip-item span { font-size: .86rem; color: rgba(255,255,255,.78); }

/* -------------------------------------------------------------- SECTIONS -- */
.section { padding: 84px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.section-eyebrow { font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--pumpkin); margin: 0 0 12px; }
.section-title { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.section-lede { color: var(--muted); font-size: 1.06rem; margin: 16px 0 0; }

/* -------------------------------------------------------------- PACKAGES -- */
.packages { background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-2) 100%); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.price-card {
  display: flex; flex-direction: column; background: var(--cream-card);
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 22px;
  box-shadow: var(--shadow-sm); position: relative; transition: transform .18s, box-shadow .18s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.is-popular { border-color: var(--pumpkin); box-shadow: var(--shadow-md); }
.price-card.is-anchor {
  background: linear-gradient(180deg, #2B211A 0%, #3A2C1E 100%); color: #fff;
  border-color: var(--gold);
}
.price-card.is-anchor .pc-name,
.price-card.is-anchor .pc-price { color: #fff; }
.price-card.is-anchor .pc-tagline { color: rgba(255,255,255,.72); }
.price-card.is-anchor .pc-bullets li { color: rgba(255,255,255,.9); }
.price-card.is-anchor .pc-bullets li::before { color: var(--gold-lt); }

.pc-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 999px; white-space: nowrap;
}
.pc-badge.popular { background: var(--pumpkin); color: #fff; }
.pc-badge.anchor { background: linear-gradient(90deg, var(--gold), var(--gold-lt)); color: #2B211A; }
.pc-name { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; margin: 6px 0 2px; }
.pc-price { font-size: 1.9rem; font-weight: 700; font-family: var(--font-head); color: var(--espresso); margin: 8px 0 4px; }
.pc-price .pc-unit { font-family: var(--font-body); font-size: .8rem; font-weight: 500; color: var(--muted); }
.pc-tagline { font-size: .92rem; color: var(--muted); margin: 0 0 18px; min-height: 2.4em; }
.pc-bullets { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 9px; flex: 1; }
.pc-bullets li { position: relative; padding-left: 24px; font-size: .92rem; }
.pc-bullets li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--sage); font-weight: 700; }
.price-card .btn { width: 100%; }
.price-card.is-anchor .btn-primary { background: var(--gold); color: #2B211A; box-shadow: none; }
.price-card.is-anchor .btn-primary:hover { background: var(--gold-lt); }

.pricing-note { text-align: center; color: var(--muted); font-size: .9rem; margin: 30px auto 0; max-width: 620px; }

/* -------------------------------------------------------------- GALLERY --- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ba-tile {
  position: relative; margin: 0; aspect-ratio: 4/3; border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--shadow-sm); border: 1px dashed var(--line);
  background: repeating-linear-gradient(135deg, rgba(214,84,31,.06) 0 14px, rgba(217,182,94,.10) 14px 28px);
}
.ba-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.ba-fallback {
  position: absolute; inset: 0; z-index: 0; display: grid; place-content: center;
  text-align: center; padding: 14px; font-family: var(--font-head); font-size: 1.05rem;
  color: var(--terracotta);
}

/* ------------------------------------------------------------------ HOW --- */
.how { background: var(--ivory-2); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
}
.step-num {
  display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--pumpkin); color: #fff; font-family: var(--font-head); font-size: 1.3rem;
  font-weight: 700; margin-bottom: 16px;
}
.step-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step-card p { color: var(--muted); margin: 0; }
.how-cta { text-align: center; margin-top: 44px; }

/* ------------------------------------------------------------------ FAQ --- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 4px; font-family: var(--font-head); font-size: 1.18rem; font-weight: 600;
  color: var(--espresso);
}
.faq-q .faq-icon { flex: none; width: 26px; height: 26px; display: grid; place-items: center;
  border-radius: 50%; border: 1.5px solid var(--line); font-size: 1.2rem; color: var(--pumpkin);
  transition: transform .2s, background .2s, color .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--pumpkin); color: #fff; border-color: var(--pumpkin); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a-inner { padding: 0 4px 22px; color: var(--muted); }

/* -------------------------------------------------------------- CTA BAND -- */
.cta-band {
  background: linear-gradient(120deg, var(--pumpkin) 0%, var(--terracotta) 100%);
  color: #fff; text-align: center;
}
.cta-band-inner { padding: 70px 24px; display: grid; gap: 14px; justify-items: center; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.5rem); max-width: 18em; }
.cta-band p { margin: 0 0 12px; font-size: 1.1rem; color: rgba(255,255,255,.9); }

/* --------------------------------------------------------------- FOOTER --- */
.site-footer { background: var(--espresso); color: rgba(255,255,255,.75); padding: 54px 0 26px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; align-items: start; }
.footer-brand .brand-name { color: #fff; font-size: 1.35rem; }
.footer-brand p { margin: 6px 0 0; font-size: .92rem; }
.footer-areas { color: var(--gold-lt) !important; }
.footer-nav, .footer-social { display: grid; gap: 10px; }
.footer-nav a, .footer-social a { color: rgba(255,255,255,.75); font-size: .95rem; }
.footer-nav a:hover, .footer-social a:hover { color: #fff; }
.footer-legal {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 20px;
  font-size: .85rem; color: rgba(255,255,255,.55);
}
.footer-contact a { color: rgba(255,255,255,.75); }

/* --------------------------------------------------------------- LEGAL ---- */
.legal-wrap { max-width: 780px; margin: 0 auto; padding: 54px 24px 80px; }
.legal-wrap h1 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-bottom: 6px; }
.legal-updated { color: var(--muted); font-size: .9rem; margin: 0 0 26px; }
.legal-note {
  background: var(--ivory-2); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 14px 16px; color: var(--muted); font-size: .9rem; margin: 0 0 30px;
}
.legal-wrap h2 { font-family: var(--font-head); font-size: 1.3rem; margin: 30px 0 8px; }
.legal-wrap p, .legal-wrap li { color: var(--ink); margin: 0 0 14px; }
.legal-wrap ul { padding-left: 20px; }
.legal-wrap a { color: var(--pumpkin-dk); }
.legal-back { display: inline-block; margin-top: 24px; font-weight: 600; }

/* --------------------------------------------------------------- MODALS --- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.open { display: block; }
.modal-overlay { position: absolute; inset: 0; background: rgba(43,33,26,.55); backdrop-filter: blur(3px); animation: fade .2s ease; }
.modal-card {
  position: relative; z-index: 1; background: var(--ivory); width: min(560px, 92vw);
  max-height: 92vh; overflow-y: auto; margin: 4vh auto; border-radius: var(--r-lg);
  padding: 34px 30px; box-shadow: var(--shadow-lg); animation: pop .25s ease;
}
.modal-card.modal-wide { width: min(820px, 94vw); }
.modal-close {
  position: absolute; top: 14px; right: 16px; width: 36px; height: 36px; border: none;
  background: rgba(43,33,26,.06); border-radius: 50%; font-size: 1.5rem; line-height: 1;
  color: var(--ink); cursor: pointer;
}
.modal-close:hover { background: rgba(43,33,26,.14); }
.modal-title { font-size: 1.65rem; margin: 4px 0 6px; }
.modal-sub { color: var(--muted); margin: 0 0 22px; }

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }

/* Forms */
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 6px; }
.field.span-2 { grid-column: 1 / -1; }
.field > span { font-size: .88rem; font-weight: 600; color: var(--ink); }
.field b { color: var(--pumpkin); }
.field small { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 11px 13px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: #fff; width: 100%; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--pumpkin); box-shadow: 0 0 0 3px rgba(214,84,31,.14);
}
.field textarea { resize: vertical; }
.budget-confirm { gap: 10px; }
.budget-q { font-size: .92rem; color: var(--ink); font-weight: 500; }
.budget-options { display: flex; gap: 18px; }
.radio-inline { display: inline-flex; align-items: center; gap: 7px; font-weight: 500; font-size: .95rem; cursor: pointer; }
.radio-inline input { accent-color: var(--pumpkin); width: 18px; height: 18px; }
.modal-fineprint { text-align: center; color: var(--muted); font-size: .82rem; margin: 12px 0 0; }
.leadForm .btn, #leadForm .btn { margin-top: 18px; }
#leadForm > .btn, #bookForm > .btn { margin-top: 18px; }

/* Before/After slider */
.ba-slider {
  position: relative; width: 100%; aspect-ratio: 16/10; border-radius: var(--r-md);
  overflow: hidden; user-select: none; background: var(--ivory-2); box-shadow: var(--shadow-sm);
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before-wrap { position: absolute; inset: 0; width: 50%; overflow: hidden; border-right: 3px solid #fff; }
.ba-before-wrap img { width: auto; }
.ba-before { position: absolute; inset: 0; height: 100%; width: 100vw; max-width: none; object-fit: cover; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 44px; transform: translateX(-50%);
  display: grid; place-items: center; cursor: ew-resize; z-index: 3;
}
.ba-handle-line { position: absolute; top: 0; bottom: 0; width: 3px; background: #fff; box-shadow: 0 0 8px rgba(0,0,0,.35); }
.ba-handle-grip {
  width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--pumpkin);
  display: grid; place-items: center; font-size: 1.1rem; box-shadow: var(--shadow-md); z-index: 1;
}
.ba-tag {
  position: absolute; bottom: 12px; z-index: 4; font-size: .78rem; font-weight: 600;
  padding: 5px 11px; border-radius: 999px; background: rgba(43,33,26,.72); color: #fff; backdrop-filter: blur(2px);
}
.ba-tag-before { left: 12px; }
.ba-tag-after { right: 12px; background: var(--pumpkin); }
.preview-disclaimer { text-align: center; color: var(--muted); font-size: .82rem; margin: 12px 0 0; }
.preview-actions { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 20px; }
.preview-actions .btn-lg { min-width: 260px; }

/* Booking success */
.book-success { text-align: center; padding: 10px 0; }
.success-check {
  width: 66px; height: 66px; margin: 6px auto 16px; border-radius: 50%;
  background: rgba(90,107,74,.15); color: var(--sage-dk); display: grid; place-items: center;
  font-size: 2rem; font-weight: 700;
}

/* Loader */
.loader { position: fixed; inset: 0; z-index: 200; background: rgba(251,246,238,.85); backdrop-filter: blur(4px); display: grid; place-items: center; }
.loader[hidden] { display: none; }
.loader-inner { text-align: center; }
.loader-pumpkin { font-size: 3rem; animation: bob 1s ease-in-out infinite; }
.loader-inner p { margin-top: 10px; font-weight: 600; color: var(--ink); }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-10px) rotate(4deg); } }

/* ------------------------------------------------------------ RESPONSIVE -- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-widget { order: -1; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .main-nav { display: none; }
  .section { padding: 60px 0; }
  .strip-inner { grid-template-columns: 1fr 1fr; gap: 22px 16px; }
  .steps-grid { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr; }
  .pkg-radios { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .modal-card { padding: 28px 20px; }
}
@media (max-width: 520px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .header-cta { display: none; }
}
