/* ==========================================================================
   Gotham Photo Booth — site stylesheet
   NYC photo booth rental. Static site, no build step.
   ========================================================================== */

/* --- Design tokens ------------------------------------------------------- */
:root {
  --bg:          #0A0A0D;
  --bg-2:        #0D0D11;
  --bg-3:        #111116;
  --bg-footer:   #08080A;

  --gold:        #E8B84B;
  --gold-lt:     #F5D488;
  --gold-tint:   #12100B;
  --warn:        #E88B4B;

  --ink:         #F5F2EA;
  --ink-2:       #E5E0D3;
  --ink-3:       #D8D3C6;
  --ink-4:       #C9C4B6;
  --muted:       #B8B3A6;
  --muted-2:     #8E8A7E;
  --muted-3:     #5E5B52;

  --line:        rgba(232, 184, 75, 0.22);
  --line-soft:   rgba(232, 184, 75, 0.15);
  --line-strong: rgba(232, 184, 75, 0.50);
  --line-pale:   rgba(245, 242, 234, 0.20);
  --hairline:    rgba(245, 242, 234, 0.08);

  --display: 'Bebas Neue', 'Haettenschweiler', 'Arial Narrow', Impact, sans-serif;
  --body:    'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --maxw:   1240px;
  --gutter: 32px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

img { max-width: 100%; border: 0; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-lt); }

::selection { background: var(--gold); color: var(--bg); }

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

/* Visible keyboard focus — the source design had none. */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--gold);
  color: var(--bg);
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.skip-link:focus {
  left: 0;
  color: var(--bg);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* --- Layout primitives --------------------------------------------------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  width: 100%;
}
.wrap--narrow { max-width: 840px; }

.section       { padding: 110px 0; }
.section--tight{ padding: 100px 0; }
/* Sits directly beneath a page hero, so it needs less room on top. */
.section--sub  { padding: 40px 0 100px; }
.section--alt  { background: var(--bg-2); }
.bordered-top    { border-top: 1px solid var(--line-soft); }
.bordered-bottom { border-bottom: 1px solid var(--line-soft); }

.section-head { text-align: center; margin-bottom: 64px; }
.section-head .h2 { margin-top: 16px; }

/* --- Type ---------------------------------------------------------------- */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.eyebrow--rule {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}
.eyebrow--rule::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 8vw, 110px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: 18px 0 0;
}
.h1--hero { font-size: clamp(64px, 10vw, 148px); line-height: 0.94; margin-top: 24px; }
.h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  margin: 0;
}
.h2--xl { font-size: clamp(48px, 6vw, 88px); }
.h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.04em;
  margin: 0;
}
.gold { color: var(--gold); }

.lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-3);
  text-wrap: pretty;
}
.lede--sm { font-size: 18px; color: var(--ink-4); }
.body-copy {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-4);
  text-wrap: pretty;
}
.meta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 18px 34px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn--gold   { background: var(--gold); color: var(--bg); }
.btn--gold:hover   { background: var(--gold-lt); color: var(--bg); }
.btn--ghost  { border-color: rgba(245, 242, 234, 0.4); color: var(--ink); }
.btn--ghost:hover  { border-color: var(--gold); color: var(--gold); }
.btn--outline{ border-color: var(--gold); color: var(--gold); background: transparent; }
.btn--outline:hover{ background: var(--gold); color: var(--bg); }
.btn--dark   { background: var(--bg); color: var(--gold); }
.btn--dark:hover   { background: #1A1A20; color: var(--gold-lt); }
.btn--lg     { padding: 20px 44px; font-size: 15px; }
.btn--sm     { padding: 16px 36px; font-size: 13px; }
.btn--block  { display: block; width: 100%; }

.link-arrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.link-arrow:hover { border-color: var(--gold-lt); }

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-row--center { justify-content: center; }

/* --- Header -------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 13, 0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.08em;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}
.logo:hover { color: var(--ink); }
.logo span { color: var(--gold); }

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav a { color: var(--muted); transition: color 0.18s ease; }
.nav a:hover,
.nav a[aria-current="page"] { color: var(--gold); }

.header-cta {
  padding: 12px 22px;
  font-size: 13px;
  flex-shrink: 0;
}

/* Mobile menu button */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-toggle:hover { border-color: var(--gold); color: var(--gold); }
.nav-toggle-bars { display: block; width: 20px; height: 14px; position: relative; }
.nav-toggle-bars::before,
.nav-toggle-bars::after,
.nav-toggle-bars span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.18s ease;
}
.nav-toggle-bars::before { top: 0; }
.nav-toggle-bars span    { top: 6.25px; }
.nav-toggle-bars::after  { bottom: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(6.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span    { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after  { transform: translateY(-6.25px) rotate(-45deg); }

.nav-mobile {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(10, 10, 13, 0.98);
}
.nav-mobile[hidden] { display: none; }
.nav-mobile ul {
  display: flex;
  flex-direction: column;
  padding: 8px 0 24px;
}
.nav-mobile a {
  display: block;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--hairline);
}
.nav-mobile a:hover,
.nav-mobile a[aria-current="page"] { color: var(--gold); }
.nav-mobile .btn { margin-top: 24px; }

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 88vh;
  min-height: 88svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.55);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 10, 13, 0.55) 0%,
    rgba(10, 10, 13, 0.35) 45%,
    var(--bg) 100%);
}
.hero-inner {
  position: relative;
  padding-top: 120px;
  padding-bottom: 140px;
}
.hero .lede { max-width: 560px; margin: 28px 0 40px; }

/* Interior page hero with photo */
.page-hero {
  position: relative;
  padding: 110px 0 90px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
}
.page-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 13, 0.6), var(--bg));
}
.page-hero .wrap { position: relative; }
.page-hero .lede--sm { max-width: 560px; margin: 26px 0 0; }

/* Plain interior hero, no photo */
.page-head {
  padding: 110px 0 70px;
  text-align: center;
}
.page-head .lede--sm { max-width: 540px; margin: 26px auto 0; }

/* --- Marquee strip ------------------------------------------------------- */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.strip ul {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.14em;
  color: var(--muted-2);
}
.strip .dot { color: var(--gold); }

/* --- Split (image + text) ------------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split--about { grid-template-columns: 1.1fr 0.9fr; }

/* Text column inside a split */
.split-copy .h2 { margin: 18px 0 22px; }
.split-copy--list .h2 { margin-bottom: 30px; }
.split-copy .body-copy { margin-bottom: 32px; }
.split-copy .ticks { margin-bottom: 36px; }

/* Stacked paragraphs (About) */
.about-intro { padding: 110px 0 80px; }
/* Narrower column than the other pages, so the display size is stepped down to
   keep the designed two-line break. */
.about-intro .h1 { font-size: clamp(40px, 7vw, 96px); }
.prose .h1 { margin: 18px 0 26px; }
.prose .body-copy { margin-bottom: 20px; }
.prose .body-copy:last-child { margin-bottom: 0; }

.framed { position: relative; }
/* height:auto is required — the width/height attributes on these images are
   presentational hints that otherwise beat aspect-ratio. */
.framed img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.framed::after {
  content: "";
  position: absolute;
  top: 20px; left: 20px; right: 20px; bottom: 20px;
  border: 1px solid var(--line-strong);
  pointer-events: none;
}

/* --- Feature / tick lists ------------------------------------------------ */
.ticks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.ticks--stack { grid-template-columns: 1fr; gap: 16px; }
.ticks li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 15px;
  color: var(--ink-2);
}
.ticks--stack li { font-size: 16px; gap: 12px; }
.ticks .dot { color: var(--gold); flex-shrink: 0; }

/* --- Grids --------------------------------------------------------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }

/* --- Cards --------------------------------------------------------------- */
.card {
  background: var(--bg-3);
  border: 1px solid rgba(232, 184, 75, 0.18);
}
.card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.card-body { padding: 28px; }
.card-body .h3 { font-size: 30px; margin-bottom: 10px; }
.card-body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  text-wrap: pretty;
}

.panel {
  border: 1px solid var(--line);
  padding: 36px;
  background: var(--bg-2);
}
.panel--plain { background: transparent; }
.panel .h3 { margin-bottom: 12px; }
.panel p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  text-wrap: pretty;
}
.panel-num {
  font-family: var(--display);
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

/* Numbered "how it works" steps */
.step-num {
  font-family: var(--display);
  font-size: 72px;
  color: rgba(232, 184, 75, 0.35);
  line-height: 1;
}
.step .h3 { margin: 12px 0 10px; }
.step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  text-wrap: pretty;
}

/* --- Testimonials -------------------------------------------------------- */
.quote {
  border: 1px solid var(--line);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stars { color: var(--gold); letter-spacing: 4px; }
.quote blockquote {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  text-wrap: pretty;
}
.quote figcaption { margin-top: auto; }

/* --- Stats --------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  padding: 70px 0;
}
.stat-num {
  font-family: var(--display);
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 10px;
}

/* --- Pricing ------------------------------------------------------------- */
.packages { padding-bottom: 110px; }

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  padding-top: 14px;
}
.plan {
  border: 1px solid rgba(232, 184, 75, 0.25);
  background: var(--bg-2);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan--featured {
  border-color: var(--gold);
  background: var(--gold-tint);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 18px;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 34px;
  letter-spacing: 0.05em;
  margin: 0;
}
.plan--featured .plan-name { color: var(--gold); }
.plan-terms {
  font-size: 13px;
  color: var(--muted-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 6px 0 26px;
}
.plan-price { display: flex; align-items: baseline; gap: 8px; }
.plan-price .from { font-size: 14px; color: var(--muted-2); }
.plan-price .amount {
  font-family: var(--display);
  font-size: 64px;
  line-height: 1;
  color: var(--ink);
}
.plan--featured .plan-price .amount { color: var(--gold); }
.plan-rule {
  height: 1px;
  background: rgba(232, 184, 75, 0.25);
  margin: 30px 0;
  border: 0;
}
.plan--featured .plan-rule { background: rgba(232, 184, 75, 0.4); }
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 15px;
  color: var(--ink-4);
  flex: 1;
}
.plan--featured .plan-features { color: var(--ink-2); }
.plan-features li { display: flex; gap: 10px; }
.plan-features .dot { color: var(--gold); flex-shrink: 0; }
.plan .btn { margin-top: 34px; padding: 16px; font-size: 13px; }

.fine-print {
  margin-top: 60px;
  border: 1px solid rgba(232, 184, 75, 0.2);
  background: var(--bg-2);
  padding: 36px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.fine-print .h3 { font-size: 28px; margin-bottom: 8px; }
.fine-print p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 640px;
  text-wrap: pretty;
}
.fine-print .link-arrow { font-size: 13px; flex-shrink: 0; }

/* --- Add-ons ------------------------------------------------------------- */
.addon {
  border: 1px solid var(--line);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.addon .h3 { font-size: 24px; margin-bottom: 8px; }
.addon p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 16px;
  flex: 1;
}
.addon-price {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
}

/* --- Gallery ------------------------------------------------------------- */
.masonry { columns: 3; column-gap: 24px; }
.masonry figure {
  break-inside: avoid;
  margin-bottom: 24px;
}
.masonry img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--bg-2);
}
.masonry figcaption {
  padding: 12px 2px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.gallery-cta { text-align: center; margin-top: 40px; }
.gallery-cta p { font-size: 14px; color: var(--muted-2); margin-bottom: 24px; }

/* --- FAQ ----------------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.faq-q { margin: 0; }
.faq-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: 0;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.04em;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.18s ease;
}
.faq-btn:hover { background: var(--bg-3); }
.faq-icon {
  font-family: var(--display);
  font-size: 26px;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
/* visibility keeps the collapsed answer out of the accessibility tree while
   leaving it in the DOM, and still animates. */
.faq-a > div {
  overflow: hidden;
  visibility: hidden;
  transition: visibility 0s linear 0.28s;
}
.faq-item.is-open .faq-a > div { visibility: visible; transition-delay: 0s; }
.faq-a p {
  padding: 0 28px 26px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  text-wrap: pretty;
}

.callout {
  margin-top: 40px;
  text-align: center;
  border: 1px solid var(--line);
  padding: 44px 32px;
}
.callout .h2 { font-size: 36px; letter-spacing: 0.04em; margin-bottom: 10px; }
.callout p { font-size: 15px; color: var(--muted); margin-bottom: 26px; }

/* --- CTA band ------------------------------------------------------------ */
.cta-band { background: var(--gold); color: var(--bg); }
.cta-band .wrap {
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band .h2 { font-size: clamp(36px, 4.5vw, 60px); }
.cta-band .btn { flex-shrink: 0; }

.cta-center { padding: 110px 0; text-align: center; }
.cta-center .h2--xl { margin: 18px 0 20px; }
.cta-center p {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.6;
  text-wrap: pretty;
}

/* --- Contact page -------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
  padding: 100px 0 110px;
}
.contact-intro .h1 { font-size: clamp(40px, 6.5vw, 92px); margin: 18px 0 24px; }
.contact-intro > p { margin-bottom: 40px; }

.contact-points { display: flex; flex-direction: column; gap: 24px; }
.contact-point { display: flex; gap: 16px; align-items: baseline; }
.contact-point .dot {
  color: var(--gold);
  font-family: var(--display);
  font-size: 22px;
  line-height: 1;
}
.contact-point dt {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 4px;
}
.contact-point dd { margin: 0; font-size: 17px; color: var(--ink-2); }

.notice {
  margin-top: 48px;
  border: 1px solid var(--line);
  padding: 26px 28px;
  background: var(--bg-2);
}
.notice p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  text-wrap: pretty;
}
.notice .notice-title {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--gold);
}

/* --- Form ---------------------------------------------------------------- */
.form-card {
  border: 1px solid rgba(232, 184, 75, 0.25);
  background: var(--bg-2);
  padding: 44px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { margin-top: 22px; }
.field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 15px;
  background: var(--bg);
  border: 1px solid var(--line-pale);
  color: var(--ink);
  padding: 14px 16px;
  width: 100%;
  border-radius: 0;
  transition: border-color 0.18s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input[type="date"] { color-scheme: dark; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
                    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 19px) calc(50% + 2px), calc(100% - 14px) calc(50% + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted-3); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 1px solid var(--gold);
  outline-offset: 0;
  border-color: var(--gold);
}
.field input[aria-invalid="true"],
.field select[aria-invalid="true"] { border-color: var(--warn); }

.form-error {
  margin-top: 18px;
  font-size: 14px;
  color: var(--warn);
}
.form-note {
  font-size: 12px;
  color: var(--muted-3);
  margin-top: 16px;
  text-align: center;
}
.form-card .btn--gold {
  margin-top: 28px;
  padding: 20px;
  letter-spacing: 0.14em;
}

.form-success {
  border: 1px solid var(--gold);
  background: var(--gold-tint);
  padding: 70px 44px;
  text-align: center;
}
.form-success .mark {
  font-family: var(--display);
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
}
.form-success .h2 {
  font-size: 44px;
  letter-spacing: 0.04em;
  margin: 18px 0 14px;
}
.form-success p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-4);
  margin: 0 auto;
  max-width: 420px;
  text-wrap: pretty;
}
.form-success .form-note { font-size: 12px; color: var(--muted-3); }
.form-success .btn {
  margin-top: 32px;
  background: none;
  border: 1px solid rgba(232, 184, 75, 0.5);
  color: var(--gold);
  padding: 14px 28px;
  font-size: 12px;
  letter-spacing: 0.14em;
}
.form-success .btn:hover { background: var(--gold); color: var(--bg); }

/* --- Footer -------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-footer);
}
.footer-top {
  padding: 72px 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
}
.footer-logo {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.footer-logo span { color: var(--gold); }
.footer-blurb {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted-2);
  max-width: 320px;
  margin-top: 14px;
  text-wrap: pretty;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer-col a { color: var(--ink-4); transition: color 0.18s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-col .contact-line { color: var(--muted-2); line-height: 1.6; }
.footer-col .contact-line a { color: var(--gold); }

.footer-bottom { border-top: 1px solid var(--hairline); }
.footer-bottom .wrap {
  padding-top: 22px;
  padding-bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted-3);
  letter-spacing: 0.06em;
}

/* --- 404 ----------------------------------------------------------------- */
.notfound {
  text-align: center;
  padding: 140px 0 160px;
}
.notfound .code {
  font-family: var(--display);
  font-size: clamp(96px, 18vw, 200px);
  line-height: 1;
  color: rgba(232, 184, 75, 0.35);
}
.notfound .h1 { margin: 0 0 20px; }
.notfound p {
  font-size: 17px;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.6;
  text-wrap: pretty;
}

/* ==========================================================================
   Responsive — the source design was desktop-only
   ========================================================================== */

@media (max-width: 1080px) {
  .nav { gap: 22px; font-size: 12px; }
  .split, .split--about { gap: 48px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { gap: 48px; }
}

@media (max-width: 900px) {
  :root { --gutter: 24px; }

  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: block; }
  .nav-mobile[hidden] { display: none; }

  .section, .section--tight { padding: 72px 0; }
  .section--sub { padding: 32px 0 64px; }
  .section-head { margin-bottom: 44px; }

  .hero { min-height: 0; }
  .hero-inner { padding-top: 96px; padding-bottom: 96px; }
  .page-hero { padding: 72px 0 64px; }
  .page-head { padding: 72px 0 48px; }

  .split, .split--about { grid-template-columns: 1fr; gap: 40px; }
  .about-intro { padding: 72px 0 56px; }

  .grid-3, .grid-steps { grid-template-columns: 1fr; gap: 28px; }
  .packages { padding-bottom: 72px; }
  .plans { grid-template-columns: 1fr; gap: 36px; padding-top: 20px; }
  .stats { grid-template-columns: 1fr; gap: 36px; padding: 56px 0; }
  .masonry { columns: 2; }

  .contact-layout { grid-template-columns: 1fr; padding: 72px 0; }
  .form-card { padding: 32px 24px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; padding-top: 56px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-blurb { max-width: none; }

  .cta-band .wrap { padding-top: 60px; padding-bottom: 60px; }
  .cta-center { padding: 72px 0; }
  .strip ul { justify-content: center; gap: 16px; font-size: 17px; }
  .fine-print { padding: 28px 24px; }
}

@media (max-width: 620px) {
  :root { --gutter: 20px; }

  .logo { font-size: 21px; letter-spacing: 0.06em; }
  .header-inner { height: 66px; }

  .h1--hero { font-size: clamp(44px, 13vw, 72px); }
  .h1 { font-size: clamp(40px, 11vw, 64px); }
  .h2, .h2--xl { font-size: clamp(32px, 9vw, 48px); }
  .lede { font-size: 17px; }
  .lede--sm, .body-copy { font-size: 16px; }

  .hero-inner { padding-top: 72px; padding-bottom: 72px; }
  .eyebrow { font-size: 11px; letter-spacing: 0.22em; }
  /* Flex turns each text run into its own item, which column-wraps badly in a
     narrow column — fall back to normal inline flow and drop the rule. */
  .eyebrow--rule { display: block; }
  .eyebrow--rule::before { display: none; }

  .btn { padding: 16px 26px; font-size: 13px; width: 100%; }
  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; }
  .cta-band .btn, .cta-center .btn, .callout .btn { width: 100%; }

  .ticks { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .masonry { columns: 1; }

  .panel, .quote { padding: 28px 24px; }
  .card-body { padding: 24px 20px; }
  .plan { padding: 36px 24px; }
  .plan-price .amount { font-size: 54px; }
  .form-grid { grid-template-columns: 1fr; }

  .faq-btn { padding: 20px; font-size: 21px; gap: 14px; }
  .faq-a p { padding: 0 20px 22px; font-size: 15px; }
  .callout { padding: 36px 24px; }
  .callout .h2 { font-size: 30px; }

  .form-success { padding: 48px 24px; }
  .form-success .h2 { font-size: 34px; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom .wrap { flex-direction: column; gap: 8px; }
  .stat-num { font-size: 52px; }
  .step-num { font-size: 60px; }
}
