:root {
  --bg: #0E1116;
  --bg-alt: #161A20;
  --bg-card: #1B2028;
  --bg-elevated: #20262F;

  --ink: #0A0C10;
  --burgundy: #8B1A1A;
  --burgundy-deep: #5C1212;
  --burgundy-hover: #A82424;
  --navy: #1B2A4A;

  --gold: #C9A35B;
  --gold-soft: #B8924D;
  --cream: #F5EBD9;
  --cream-soft: #ECE3D2;

  --text: #ECE6D7;
  --text-soft: #C7C0B5;
  --text-muted: #8A847A;
  --line: rgba(201, 163, 91, 0.18);
  --line-strong: rgba(201, 163, 91, 0.38);

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-script: 'Allura', 'Brush Script MT', cursive;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.55);

  --container: 1180px;
  --container-narrow: 780px;
  --pad: clamp(20px, 4vw, 40px);

  --t: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--t);
}
a:hover { color: var(--cream); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.2rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }

p { margin: 0 0 1rem; }

ul { padding-left: 1.2rem; margin: 0 0 1rem; }

.script-accent {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--gold);
  font-size: 1.15em;
  font-style: normal;
  letter-spacing: 0.02em;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow.center {
  justify-content: center;
  display: flex;
}
.eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 16px; top: 16px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.container.narrow { max-width: var(--container-narrow); }
.container.center { text-align: center; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 17, 22, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  text-decoration: none;
}
.brand:hover { color: var(--cream); }
.brand-mark svg {
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-script {
  font-family: var(--font-script);
  font-size: 1.85rem;
  color: var(--cream);
  line-height: 0.85;
}
.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.site-nav { margin-left: auto; }
.nav-list {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-list a {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  padding: 4px 0;
}
.nav-list a:hover { color: var(--cream); }
.nav-list a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--t);
  transform-origin: left;
}
.nav-list a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
  color: var(--cream);
  position: relative;
}
.nav-bars,
.nav-bars::before,
.nav-bars::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1.5px;
  background: var(--cream);
  transition: transform var(--t), top var(--t), opacity var(--t);
}
.nav-bars { top: 50%; transform: translate(-50%, -50%); }
.nav-bars::before { top: -6px; transform: translateX(-50%); }
.nav-bars::after { top: 6px; transform: translateX(-50%); }
.nav-toggle[aria-expanded="true"] .nav-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-bars::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-bars::after { top: 0; transform: translateX(-50%) rotate(-45deg); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--t);
  text-decoration: none;
  white-space: nowrap;
}
.btn-lg {
  padding: 16px 28px;
  font-size: 1rem;
}
.btn-primary {
  background: var(--burgundy);
  color: var(--cream);
  border-color: var(--burgundy);
  box-shadow: 0 4px 14px rgba(139, 26, 26, 0.35);
}
.btn-primary:hover {
  background: var(--burgundy-hover);
  border-color: var(--burgundy-hover);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(139, 26, 26, 0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.header-cta { padding: 10px 18px; font-size: 0.85rem; }
.header-cta-text { display: inline; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(139, 26, 26, 0.28), transparent 60%),
    radial-gradient(ellipse 60% 50% at 75% 60%, rgba(27, 42, 74, 0.40), transparent 70%),
    linear-gradient(180deg, #0B0D11 0%, #14171E 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 60px,
      rgba(201, 163, 91, 0.02) 60px,
      rgba(201, 163, 91, 0.02) 61px
    );
  pointer-events: none;
}
.hero-inner {
  padding-top: clamp(80px, 12vh, 140px);
  padding-bottom: clamp(80px, 12vh, 140px);
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-title {
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  margin: 0 auto 1.5rem;
  max-width: 18ch;
  text-wrap: balance;
}
.hero-title .script-accent { display: inline-block; line-height: 1; }
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-soft);
  max-width: 50ch;
  margin: 0 auto 2.5rem;
  line-height: 1.55;
}
.hero-sub strong { color: var(--cream); font-weight: 600; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.hero-ctas.center { justify-content: center; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  list-style: none;
  padding: 0;
  margin: 3rem 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}
.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-meta strong { color: var(--gold); font-weight: 600; }
.hero-meta li + li::before {
  content: '·';
  margin-right: 24px;
  color: var(--gold);
  opacity: 0.5;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  animation: bob 2.4s ease-in-out infinite;
  text-decoration: none;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  padding-top: 28px;
  padding-bottom: 28px;
  flex-wrap: wrap;
}
.trust-item {
  text-align: center;
  flex: 1 1 200px;
}
.trust-item p { margin: 4px 0; color: var(--cream); font-weight: 500; }
.trust-item small { color: var(--text-muted); font-size: 0.82rem; }
.trust-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 0.15em; }
.trust-icon { font-size: 1.4rem; margin-bottom: 4px; }
.trust-divider {
  width: 1px;
  height: 50px;
  background: var(--line);
  flex: 0 0 1px;
}

/* ============ SECTIONS ============ */
.section {
  padding-top: clamp(70px, 10vh, 120px);
  padding-bottom: clamp(70px, 10vh, 120px);
  position: relative;
}
.section-head {
  margin-bottom: clamp(40px, 6vw, 70px);
  max-width: 720px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  margin: 0;
  max-width: 60ch;
}
.section-sub.center { margin-left: auto; margin-right: auto; }
.lead {
  font-size: 1.15rem;
  color: var(--cream-soft);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1.4rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.col-text > * + * { margin-top: 1.1rem; }

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.8rem;
}
.badge {
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  background: rgba(201, 163, 91, 0.04);
}

.media-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--line);
}
.media-placeholder {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      #1B2028 0,
      #1B2028 12px,
      #20262F 12px,
      #20262F 24px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.media-placeholder::before {
  content: '📸';
  position: absolute;
  font-size: 3rem;
  opacity: 0.25;
  transform: translateY(-30px);
}

/* ============ SERVICES ============ */
.section-services {
  background: var(--bg-alt);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px 30px;
  position: relative;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.service-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--gold);
  opacity: 0.5;
  position: absolute;
  top: 18px;
  right: 24px;
  line-height: 1;
}
.service-title {
  margin: 0 0 6px;
  font-size: 1.6rem;
}
.service-tag {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 0.98rem;
  margin: 0 0 22px;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}
.service-list li:first-child { border-top: none; }
.service-list strong { color: var(--cream); font-weight: 600; }
.service-list .dot {
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--burgundy);
  margin-top: 9px;
  box-shadow: 0 0 0 2px rgba(139, 26, 26, 0.2);
}
.service-cta {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-transform: uppercase;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  width: 100%;
}
.service-cta:hover { color: var(--cream); }

/* ============ PROMISE GRID ============ */
.section-promise { background: var(--bg); }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.promise-item {
  text-align: center;
  padding: 30px 20px;
}
.promise-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 163, 91, 0.08);
  border: 1px solid var(--line-strong);
}
.promise-item h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
}
.promise-item p {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin: 0;
}

/* ============ REVIEWS ============ */
.section-reviews {
  background: var(--bg-alt);
  position: relative;
}
.section-reviews::before {
  content: '"';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 14rem;
  color: var(--burgundy);
  opacity: 0.06;
  line-height: 0.7;
  font-style: italic;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin: 0;
  position: relative;
}
.review-card blockquote {
  margin: 14px 0 16px;
  padding: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--cream);
  line-height: 1.55;
  quotes: '«' '»';
}
.review-card figcaption {
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.15em;
}
.reviews-cta {
  text-align: center;
  margin-top: 40px;
}

/* ============ FAQ ============ */
.section-faq { background: var(--bg); }
.faq details {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: 12px;
  transition: border-color var(--t);
}
.faq details[open] { border-color: var(--line-strong); }
.faq summary {
  cursor: pointer;
  padding: 18px 24px;
  list-style: none;
  font-weight: 500;
  color: var(--cream);
  font-size: 1.02rem;
  position: relative;
  padding-right: 50px;
  transition: color var(--t);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform var(--t);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--gold); }
.faq details p {
  padding: 0 24px 22px;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* ============ VISIT ============ */
.section-visit { background: var(--bg-alt); }
.info-list {
  margin: 1.5rem 0 2rem;
}
.info-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.info-row:last-child { border-bottom: none; }
.info-row dt {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.info-row dd {
  margin: 0;
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.5;
}
.info-row dd a { color: var(--cream); border-bottom: 1px dotted var(--gold); padding-bottom: 1px; }
.info-row dd a:hover { color: var(--gold); }
.info-row dd small { color: var(--text-muted); }

.map-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--line);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.4) contrast(1.1) brightness(0.85);
}

/* ============ FINAL CTA ============ */
.section-final-cta {
  background:
    radial-gradient(ellipse at center, rgba(139, 26, 26, 0.20), transparent 65%),
    var(--bg);
  text-align: center;
}
.section-final-cta h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.section-final-cta .section-sub {
  margin-bottom: 2.5rem;
}

/* ============ FOOTER ============ */
.site-footer {
  background: #08090C;
  border-top: 1px solid var(--line);
  padding: 60px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .brand-script {
  font-size: 2.4rem;
  color: var(--cream);
}
.footer-tag {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 6px 0 0;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}
.footer-col p { color: var(--text-soft); font-size: 0.92rem; margin: 0 0 8px; }
.footer-col a { color: var(--text-soft); }
.footer-col a:hover { color: var(--gold); }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { padding: 4px 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom small { font-size: 0.78rem; }

/* ============ FLOATING CALL BUTTON (mobile) ============ */
.floating-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--burgundy);
  color: var(--cream);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(139, 26, 26, 0.5);
  letter-spacing: 0.04em;
}
.floating-call:hover {
  background: var(--burgundy-hover);
  color: var(--cream);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; }
  .col-media .media-frame,
  .col-media .map-frame { aspect-ratio: 16 / 11; max-height: 480px; }
  .services-grid { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .header-cta-text { display: none; }
  .header-cta { padding: 10px 14px; }

  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; order: 3; }
  .site-nav { margin-left: auto; }
  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-alt);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t);
    border-bottom: 1px solid var(--line);
  }
  .nav-list.open { max-height: 400px; }
  .nav-list li { width: 100%; }
  .nav-list a {
    display: block;
    padding: 18px var(--pad);
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .nav-list a::after { display: none; }

  .trust-divider { display: none; }
  .trust-item { flex: 1 1 100%; }

  .info-row { grid-template-columns: 1fr; gap: 4px; }
  .info-row dt { margin-bottom: 2px; }

  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { justify-content: center; text-align: center; }

  .floating-call { display: inline-flex; }
  body { padding-bottom: 70px; }

  .hero-meta li + li::before { display: none; }
  .hero-meta { gap: 8px; flex-direction: column; }
}

@media (max-width: 480px) {
  .promise-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .brand-script { font-size: 1.5rem; }
  .brand-sub { font-size: 0.62rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
