/* ===== Hyphy Wedding DJ — Direction B: Golden Hour ===== */

:root {
  /* Golden Hour palette */
  --bg: #f6f0e6;        /* cream */
  --bg-alt: #efe6d6;    /* deeper cream */
  --surface: #fffaf2;   /* card cream */
  --ink: #2a2018;       /* dark brown/ink */
  --line: rgba(42,32,24,0.12);
  --line-soft: rgba(42,32,24,0.08);
  --muted: #6b5d4a;
  --muted-2: #9a8a72;
  --accent: #df6a34;    /* warm orange */
  --accent-2: #ff2d6f;  /* magenta pop */
  --accent-3: #ffb84d;  /* gold */
  --muni: #8B2A3A;      /* SF Muni burgundy for nav CTA */
  --muni-hover: #A3324A;/* lightened hover state */
  --accent-grad: linear-gradient(90deg, #ff2d6f 0%, #ff6b35 50%, #ffb84d 100%);
  --sun-grad: radial-gradient(circle at 38% 36%, #ffb84d, #ff6b35 55%, #ff2d6f);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1240px;
  --pad: clamp(20px, 4vw, 56px);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Inter, Roboto, system-ui, sans-serif;
  --serif: "New York", ui-serif, Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  -webkit-tap-highlight-color: rgba(223, 106, 52, 0.15);
}

a, button, summary { touch-action: manipulation; -webkit-touch-callout: none; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; transition: color .15s ease, opacity .15s ease; }
a:hover { color: var(--accent); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #fff; padding: 8px 12px; z-index: 1000;
}
.skip-link:focus { left: 8px; top: 8px; }
::selection { background: var(--accent); color: #fff; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: var(--font);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 0.5em;
  font-weight: 900;
}
h1 {
  font-size: clamp(2.6rem, 7.4vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 16ch;
}
h1 em {
  font-style: italic;
  font-weight: 800;
}
h2 {
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  line-height: 1.04;
}
h2 em {
  font-style: italic;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h3 { font-size: 1.2rem; font-weight: 800; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 1rem;
}
.eyebrow-gold { color: var(--accent-3); }
.eyebrow.small { font-size: .7rem; margin-bottom: .8rem; }

.lead {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--muted);
  max-width: 62ch;
  margin: 0 0 1.5em;
}
.lead-sm {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1.8rem;
  max-width: 56ch;
}

p { margin: 0 0 1em; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px var(--pad);
  background: rgba(246,240,230,0.82);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  height: 38px;
  min-width: 38px;
  border-radius: 11px;
  background: var(--ink);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: -.03em;
  background-image: linear-gradient(135deg, #ff2d6f, #ff6b35 55%, #ffb84d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}
.brand-mark {
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: 15px;
  color: var(--ink);
  text-transform: uppercase;
}
.brand-mark.small { font-size: 0.95rem; letter-spacing: 0.08em; }
.nav-links {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
.nav-links a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--muted);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--muni);
  color: var(--bg) !important;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 700 !important;
  letter-spacing: -0.01em;
}
.nav-cta:hover { background: var(--muni-hover); color: var(--bg) !important; }

@media (max-width: 860px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ===== HERO — full-bleed image behind text ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: clamp(72px, 12vh, 140px) var(--pad) clamp(80px, 14vh, 160px);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.22) saturate(1.12) contrast(1.02) brightness(0.72);
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 60% at 18% 32%, rgba(255,107,53,0.22), transparent 65%),
    linear-gradient(180deg,
      rgba(42,32,24,0.35) 0%,
      rgba(42,32,24,0.55) 45%,
      rgba(42,32,24,0.75) 80%,
      var(--bg) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  color: var(--bg);
}
.hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246,240,230,0.7);
  font-weight: 700;
  margin-bottom: clamp(28px, 5vh, 52px);
}
.hero h1 {
  color: var(--bg);
  margin: 0;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero h1 em {
  font-style: italic;
  font-weight: 800;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin: clamp(26px, 4vh, 40px) 0 0;
}
.hero-copy {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: rgba(246,240,230,0.9);
  max-width: 480px;
  margin: 0;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}
.hero-copy strong { color: var(--bg); font-weight: 800; }
.hero-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Light-on-dark ghost button for the hero */
.btn-ghost-light {
  background: rgba(246,240,230,0.08);
  color: var(--bg);
  border-color: rgba(246,240,230,0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-ghost-light:hover {
  background: rgba(246,240,230,0.14);
  border-color: var(--bg);
  color: var(--bg);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 15px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease;
  text-align: center;
  white-space: nowrap;
  font-family: inherit;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: #c95a28; color: #fff; }
.btn-ink {
  background: var(--ink);
  color: var(--bg);
}
.btn-ink:hover { background: #3a2c22; color: var(--bg); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(42,32,24,0.25);
}
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-block { display: block; width: 100%; margin-top: 1.2rem; padding: 14px; }
.btn-lg { padding: 18px 34px; font-size: 1.1rem; min-width: 280px; }

/* ===== TRUST STRIP ===== */
.trust {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(20px, 3vh, 34px) var(--pad);
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}
.trust-list strong { color: var(--ink); font-weight: 800; }

/* ===== BLOCKS ===== */
.block {
  padding: clamp(48px, 7vw, 96px) var(--pad);
}
.block.block-alt { background: var(--bg-alt); }
.block-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.block-inner.narrow { max-width: 820px; }
.block-inner.center { text-align: center; }

/* ===== NUMBERED SOUND SECTION ===== */
.numbered-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 3rem;
}
.numbered-item .num {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 12px;
}
.numbered-item h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 8px;
}
.numbered-item p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ===== GALLERY BENTO ===== */
.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.gallery-head h2 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.gallery-head p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}
.bento img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  filter: sepia(0.2) saturate(1.08) contrast(1.02);
  transition: transform .5s ease, filter .5s ease;
}
.bento img:hover { transform: scale(1.03); filter: sepia(0) saturate(1.15) contrast(1.05); }
.bento-1 { grid-row: span 2; }
.bento-3 { grid-column: span 2; }
.bento-5 { grid-column: span 2; }

/* ===== PACKAGES DESKTOP ===== */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2.4rem;
}
.pkg-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.pkg-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 24px 60px -24px rgba(223,106,52,0.4);
}
.pkg-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 4px;
}
.pkg-price {
  color: var(--muted);
  font-size: 1rem;
  margin: 0 0 4px;
}
.pkg-price strong {
  color: var(--ink);
  font-size: 1.5rem;
  font-weight: 900;
}
.pkg-tag {
  color: var(--accent);
  font-size: 0.92rem;
  font-style: italic;
  margin: 0 0 18px;
}
.pkg-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex: 1;
  color: var(--muted);
}
.pkg-card li {
  position: relative;
  padding: 8px 0 8px 22px;
  border-bottom: 1px solid var(--line-soft);
}
.pkg-card li:last-child { border-bottom: 0; }
.pkg-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 15px;
  font-style: italic;
}
.note strong { color: var(--ink); font-style: normal; }

/* ===== ADD-ONS ===== */
.addons {
  margin-top: 2.5rem;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.addon-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 24px;
}
.addon-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: .98rem;
}
.addon-list li::before {
  content: "+";
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ===== VENUES ===== */
.venues {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 2.4rem;
}
.venue-group h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.venue-group ul { list-style: none; padding: 0; margin: 0; }
.venue-group li {
  padding: 7px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line-soft);
}
.venue-group li:last-child { border-bottom: 0; }

/* ===== ABOUT (DARK CONTRAST) ===== */
.block-dark {
  background: var(--ink);
  color: var(--bg);
}
.block-dark .eyebrow { color: var(--accent-3); }
.block-dark p { color: rgba(246,240,230,0.72); line-height: 1.65; }
.block-dark h2 { color: var(--bg); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}
.two-col-img img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: sepia(0.15) saturate(1.05);
}
.pull-quote {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  color: var(--bg);
  border-left: 3px solid var(--accent);
  padding: 6px 0 6px 18px;
  margin: 0 0 22px;
}
.link-arrow {
  color: var(--accent-3);
  font-weight: 600;
}
.link-arrow:hover { color: #ffd580; }
.ig-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ===== FAQ ===== */
#faq details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
#faq details:first-of-type { border-top: 1px solid var(--line); }
#faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 40px 22px 0;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  position: relative;
  transition: color .15s ease;
}
#faq summary::-webkit-details-marker { display: none; }
#faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform .2s ease;
}
#faq details[open] summary::after { content: "−"; }
#faq summary:hover { color: var(--accent); }
#faq details p {
  color: var(--muted);
  padding: 0 60px 22px 0;
  margin: 0;
  line-height: 1.65;
}

/* ===== CTA SECTION ===== */
.block-cta {
  padding: clamp(56px, 8vw, 110px) var(--pad);
  text-align: center;
}
.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 2rem;
}
.cta-stack .btn { min-width: 280px; }
.or {
  color: var(--muted-2);
  font-size: .9rem;
  margin: 8px 0 4px;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--line);
  padding: 44px var(--pad) 30px;
  background: var(--bg-alt);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-tag {
  color: var(--muted);
  margin-top: .4rem;
  max-width: 36ch;
  font-size: .95rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}
.footer-links a { color: var(--muted); font-size: .95rem; }
.footer-links a:hover { color: var(--accent); }
.copy {
  max-width: var(--max);
  margin: 36px auto 0;
  color: var(--muted-2);
  font-size: .82rem;
  text-align: center;
}

/* ============================================================
   DESKTOP vs MOBILE EXPERIENCE TOGGLE
   ------------------------------------------------------------
   Rule: only hide via display; never override natural display
   type of an element (grid, flex, etc.). Setting .desktop-only
   to `display: block` would clobber .pkg-grid's `display: grid`.
   ============================================================ */
.mobile-only { display: none; }
/* .desktop-only elements keep their native display type on desktop */

@media (max-width: 720px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block; }
}

/* ===== MOBILE-ONLY PACKAGES (simplified, no prices) ===== */
.mobile-packages { margin-top: 1.6rem; }
.mobile-package {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  margin-bottom: 14px;
}
.mobile-package.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 16px 48px -16px rgba(223,106,52,0.35);
}
.mobile-package h3 {
  font-size: 1.3rem;
  margin: 0 0 .4rem;
}
.mobile-package p {
  color: var(--muted);
  margin: 0 0 1.2rem;
  font-size: .98rem;
}
.mobile-note {
  margin-top: 1.4rem;
  font-size: .9rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

/* "See full packages with pricing" mobile expand button */
.expand-packages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 1.8rem;
  padding: 14px 20px;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-family: inherit;
  font-size: .98rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease;
}
.expand-packages:hover,
.expand-packages:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  outline: none;
}
.expand-arrow {
  color: var(--accent);
  transition: transform .25s ease;
}
.expand-packages[aria-expanded="true"] .expand-arrow { transform: rotate(180deg); }

@media (max-width: 720px) {
  .packages-detail.is-expanded .desktop-only { display: block !important; }
  .packages-detail.is-expanded .pkg-grid.desktop-only {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .packages-detail.is-expanded { animation: packageExpandFadeIn .35s ease; }
}
@keyframes packageExpandFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== MOBILE-ONLY SOCIAL BLOCK ===== */
.social-block {
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(223,106,52,0.14), transparent 70%),
    var(--bg-alt);
  text-align: center;
}
.social-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 1.6rem;
}
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 22px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .15s ease, transform .15s ease;
  color: var(--ink);
}
.social-card:hover { border-color: var(--accent); transform: translateY(-2px); color: var(--ink); }
.social-handle {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -.015em;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.social-label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted-2);
}

/* ============================================================
   MOBILE LAYOUT (below 860px collapse; below 720px reshape)
   ============================================================ */
@media (max-width: 860px) {
  .numbered-grid { grid-template-columns: 1fr; gap: 32px; }
  .venues { grid-template-columns: 1fr; gap: 30px; }
  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .bento {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 150px;
  }
  .bento-1 { grid-row: span 2; }
  .bento-3, .bento-5 { grid-column: span 2; }
}

@media (max-width: 720px) {
  .block { padding: 56px var(--pad); }
  .hero { min-height: 92vh; padding: 100px var(--pad) 80px; }
  .hero h1 { font-size: 2.4rem; max-width: 14ch; }
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 20px; margin-top: 24px; }
  .hero-copy { max-width: none; }
  .hero-cta-btns { width: 100%; }
  .hero-cta-btns .btn { flex: 1; }
  .hero-meta { font-size: 11px; margin-bottom: 24px; }
  .hero-meta span:nth-child(2) { display: none; }

  .trust-list { gap: 12px 22px; font-size: .92rem; padding: 20px 0; }

  h2 { font-size: 1.8rem; }

  .btn { min-height: 48px; padding: 14px 22px; display: inline-flex; align-items: center; justify-content: center; }
  .btn-lg { padding: 16px 28px; min-height: 56px; }

  .addon-list { grid-template-columns: 1fr; }
  .addons { padding: 22px; }

  .venue-group h3 { font-size: .95rem; }

  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 10px;
  }
  .bento-1 { grid-row: auto; }
  .bento-3, .bento-5 { grid-column: auto; }

  .pkg-grid { grid-template-columns: 1fr; }

  #faq summary { padding: 20px 36px 20px 0; font-size: 1rem; min-height: 56px; }
  #faq details p { padding-right: 0; font-size: .98rem; }

  .cta-stack .btn { min-width: auto; width: 100%; }
  .footer-inner { flex-direction: column; gap: 18px; }
  .footer-links {
    text-align: left;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 18px;
  }
  .copy { margin-top: 28px; font-size: .78rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.1rem; }
  .hero-copy { font-size: 1rem; }
  .eyebrow { font-size: .72rem; }
  #inquire h2 { font-size: 2rem; }
  h1, h2, h3, p, li { overflow-wrap: anywhere; }
}

@media (max-width: 920px) and (orientation: landscape) and (max-height: 500px) {
  .hero { min-height: auto; padding: 60px var(--pad); }
}

/* ===== MOTION SAFETY ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
    scroll-behavior: auto !important;
  }
}
