/* ============================================================
   Utah 360 Events — v2
   Black & white. Editorial. Image-first.
   Fraunces (display serif) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400..900;1,9..144,400..900&family=DM+Sans:ital,opsz,wght@0,9..40,300..600;1,9..40,300..600&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; }

/* ── TOKENS ── */
:root {
  --ink:    #0F0F0E;
  --paper:  #FFFFFF;
  --cream:  #F6F5F0;
  --stone:  #E3E1D9;
  --dust:   #B4B1A8;
  --smoke:  #7A786F;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max-w:  1200px;
  --nav-h:  64px;
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── BASE ── */
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 em, h2 em, h3 em {
  font-style: italic;
}

p { color: var(--smoke); line-height: 1.7; }
strong { color: var(--ink); font-weight: 600; }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 2rem;
}

.section        { padding-block: 6rem; }
.section-md     { padding-block: 4rem; }
.section-sm     { padding-block: 3rem; }

/* Dark section variant */
.section-dark {
  background: var(--ink);
  color: var(--paper);
}
.section-dark p  { color: rgba(255,255,255,0.55); }
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: var(--paper); }

/* Warm cream section */
.section-warm { background: var(--cream); }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dust);
  margin-bottom: 1.25rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  min-height: 44px; /* Apple tap target guideline */
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid;
  border-radius: 2px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

/* on light bg */
.btn-fill {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-fill:hover {
  background: #2a2a28;
  border-color: #2a2a28;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

/* on dark bg */
.btn-fill-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.btn-fill-light:hover { background: var(--cream); border-color: var(--cream); }

.btn-ghost-light {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--paper);
}

/* Remove iOS tap flash on all links */
a, label { -webkit-tap-highlight-color: transparent; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone);
}

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo img { height: auto; width: 130px; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  /* Hidden when logo image loads; acts as fallback */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
.nav-links li a {
  padding: 0.45rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--smoke);
  border-radius: 2px;
  transition: color 0.15s ease;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--ink); }

.nav-links li a.nav-cta {
  margin-left: 0.5rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.45rem 1.1rem;
}
.nav-links li a.nav-cta:hover { background: #2a2a28; }

/* hamburger */
.nav-toggle { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: var(--cream);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding-block: 5rem;
}

.hero-text { max-width: 560px; }

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 1.75rem;
}
.hero-location::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--dust);
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--smoke);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero-phone {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--smoke);
  transition: color 0.2s ease;
}
.hero-phone:hover { color: var(--ink); }

/* Hero image slot */
.hero-media {
  position: relative;
}

.photo-slot {
  background: var(--stone);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slot-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  pointer-events: none;
}

.slot-icon {
  font-size: 2.5rem;
  opacity: 0.2;
}

.slot-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--smoke);
  opacity: 0.5;
}

.hero-media .photo-slot { aspect-ratio: 3/4; }

/* floating badge */
.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: -1.5rem;
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.hero-badge-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.hero-badge-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--dust);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* ── VIDEO SECTION ── */
.video-section {
  background: var(--ink);
  padding-block: 5rem;
}

.video-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 2rem;
}

.video-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--paper);
  max-width: 480px;
}

.video-header p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
  text-align: right;
  line-height: 1.7;
}

.video-slot {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1A1918;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  overflow: hidden;
  position: relative;
}

.video-slot iframe,
.video-slot video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 4px;
}

.play-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.6);
  padding-left: 4px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.video-slot:hover .play-circle {
  border-color: rgba(255,255,255,0.7);
  color: var(--paper);
}

.video-slot-caption {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* ── SERVICES GRID (homepage) ── */
.services-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--stone);
  border: 1px solid var(--stone);
  border-radius: 4px;
  overflow: hidden;
}

.service-tile {
  background: var(--paper);
  padding: 0;
  display: flex;
  flex-direction: column;
}

.service-tile-image {
  aspect-ratio: 4/3;
  background: var(--cream);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-tile-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-tile-image--secondary {
  aspect-ratio: 4/3;
  margin-top: 0.5rem;
}

.service-tile-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-tile-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dust);
  margin-bottom: 0.75rem;
}

.service-tile h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.service-tile p {
  font-size: 0.9rem;
  color: var(--smoke);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-tile-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-top: 1px solid var(--stone);
  margin-bottom: 1.25rem;
}
.price-from { font-size: 0.8rem; color: var(--dust); }
.price-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
}

/* ── PROOF SECTION ── */
.proof-section {
  background: var(--cream);
  padding-block: 6rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: start;
}

.proof-main blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 1.5rem;
}

.proof-main blockquote::before {
  content: '\201C';
  font-size: 4rem;
  line-height: 0;
  vertical-align: -1.1rem;
  color: var(--stone);
  margin-right: 4px;
  font-family: Georgia, serif;
}

.proof-attribution {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dust);
  border-left: 2px solid var(--stone);
  padding-left: 1rem;
}

.proof-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.proof-mini {
  padding: 1.5rem;
  background: var(--paper);
  border-radius: 4px;
  border: 1px solid var(--stone);
}

.proof-stars {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--smoke);
  margin-bottom: 0.75rem;
}

.proof-mini p {
  font-size: 0.88rem;
  color: var(--smoke);
  line-height: 1.65;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.proof-mini-attr {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dust);
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--ink);
  padding-block: 5rem;
  text-align: center;
}

.cta-strip h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: var(--paper);
  margin-bottom: 0.75rem;
}

.cta-strip p {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2.5rem;
}

.cta-strip .phone-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--paper);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  transition: opacity 0.2s ease;
}
.cta-strip .phone-link:hover { opacity: 0.75; }

.cta-strip .email-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: color 0.2s ease;
}
.cta-strip .email-link:hover { color: rgba(255,255,255,0.7); }

/* ── INSTAGRAM CAROUSEL — center-focus ── */
.ig-section {
  padding-block: 5rem;
  background: var(--ink);
}

.ig-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 2rem;
}

.ig-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--paper);
  max-width: 480px;
}

.ig-header a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  white-space: nowrap;
  transition: color 0.2s ease;
  flex-shrink: 0;
}
.ig-header a:hover { color: rgba(255,255,255,0.7); }

/* Scroll container — snapping lives here */
.ig-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}
.ig-scroll::-webkit-scrollbar { display: none; }

/* Track — centering padding puts first/last slides in the middle */
.ig-track {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 0.5rem;
  /* 170px = half of 340px slide width */
  padding-left:  max(1.25rem, calc(50% - 170px));
  padding-right: max(1.25rem, calc(50% - 170px));
  align-items: center;
}

/* Individual slide — inactive state: faded + scaled down */
.ig-slide {
  flex: 0 0 340px;
  scroll-snap-align: center;
  border-radius: 4px;
  overflow: hidden;
  background: #1a1918;
  opacity: 0.42;
  transform: scale(0.88);
  transition: opacity 0.35s ease, transform 0.35s ease;
  will-change: transform, opacity;
}

/* Active (centered) slide — full size, full opacity */
.ig-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

/* ── Video card — autoplaying reel ── */
.ig-card {
  display: block;
  position: relative;
  aspect-ratio: 9 / 16;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: #111;
  text-decoration: none;
}

/* Video fills the card */
.ig-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Subtle bottom gradient so the handle is readable */
.ig-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(transparent, rgba(0,0,0,0.52));
  pointer-events: none;
  z-index: 1;
}

.ig-card-handle {
  position: absolute;
  bottom: 1rem;
  left: 0; right: 0;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  font-family: var(--font-body);
  z-index: 2;
  pointer-events: none;
}

/* Arrow navigation */
.ig-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.ig-arrow {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  line-height: 1;
}

.ig-arrow:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--paper);
}

.ig-nav-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  padding: 0 0.5rem;
  font-family: var(--font-body);
  user-select: none;
}

/* ── HOMEPAGE INLINE QUOTE FORM ── */
.home-form-section {
  background: var(--cream);
  padding-block: 5rem;
  border-top: 1px solid var(--stone);
}

.home-form-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}

.home-form-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.home-form-text p {
  font-size: 0.95rem;
  color: var(--smoke);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.home-form-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.home-form-contact a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--smoke);
  letter-spacing: -0.01em;
  transition: color 0.15s ease;
}
.home-form-contact a:hover { color: var(--ink); }

.home-form-contact .contact-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dust);
}

.simple-form {
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: 4px;
  padding: 2rem;
}

.simple-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.simple-form .form-row.solo { grid-template-columns: 1fr; }

.simple-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.simple-form .form-group label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--smoke);
}

.simple-form input,
.simple-form select,
.simple-form textarea {
  background: var(--cream);
  border: 1px solid var(--stone);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  width: 100%;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
}

.simple-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.simple-form select option { background: var(--paper); }

.simple-form input::placeholder,
.simple-form textarea::placeholder { color: var(--dust); }

.simple-form input:focus,
.simple-form select:focus,
.simple-form textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--paper);
}

.simple-form textarea { resize: vertical; min-height: 100px; }

.simple-form .form-submit { margin-top: 1.25rem; }
.simple-form .form-submit .btn { width: 100%; justify-content: center; }
.simple-form .form-note { font-size: 0.72rem; color: var(--dust); text-align: center; margin-top: 0.6rem; }

/* ── HERO INLINE FORM ── */
.hero-form {
  margin-top: 2rem;
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: 4px;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0.75rem;
  align-items: end;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.hero-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hero-form-group label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--smoke);
  padding-left: 2px;
}

.hero-form-group input {
  background: var(--cream);
  border: 1px solid var(--stone);
  border-radius: 2px;
  padding: 0.75rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  width: 100%;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
}

.hero-form-group input:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--paper);
}

.hero-form-group input::placeholder { color: var(--dust); }

.hero-form .btn { white-space: nowrap; padding: 0.75rem 1.4rem; }

.hero-form-note {
  font-size: 0.78rem;
  color: var(--dust);
  margin-top: 0.75rem;
}

.hero-form-note a {
  color: var(--smoke);
  border-bottom: 1px solid var(--stone);
  transition: color 0.15s ease;
}
.hero-form-note a:hover { color: var(--ink); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 3.5rem;
  background: var(--cream);
  border-bottom: 1px solid var(--stone);
}

.page-hero-inner { max-width: 640px; }

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--smoke);
}

/* ── PHOTO GRID ── */
.photo-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--stone);
  border-radius: 4px;
  overflow: hidden;
}

.photo-grid-2 .photo-slot { aspect-ratio: 4/3; }

.photo-grid-tall .photo-slot:first-child { aspect-ratio: 4/5; }
.photo-grid-tall .photo-slot:not(:first-child) { aspect-ratio: 1/1; }

/* ── SERVICE DETAIL BLOCKS ── */
.service-detail {
  padding-block: 5rem;
  border-bottom: 1px solid var(--stone);
}

.service-detail:last-of-type { border-bottom: none; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.service-detail-grid.flip { direction: rtl; }
.service-detail-grid.flip > * { direction: ltr; }

.service-detail-media .photo-slot { aspect-ratio: 4/5; }

.service-detail-info h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
}

.service-detail-info .lead {
  font-size: 1rem;
  color: var(--smoke);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.incl-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.incl-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--smoke);
  line-height: 1.5;
}

.check-mark {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--stone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.55rem;
  color: var(--smoke);
}

/* ── PRICING CARDS ── */
.pricing-strip {
  background: var(--cream);
  border-top: 1px solid var(--stone);
  padding-block: 4rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--stone);
  border: 1px solid var(--stone);
  border-radius: 4px;
  overflow: hidden;
}

.price-card {
  background: var(--paper);
  padding: 2.25rem;
  position: relative;
}

.price-card.featured { background: var(--ink); }

.price-card-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dust);
  margin-bottom: 1rem;
  display: block;
}

.price-card.featured .price-card-tag { color: rgba(255,255,255,0.4); }

.price-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.price-card.featured h3 { color: var(--paper); }

.price-card-duration {
  font-size: 0.8rem;
  color: var(--dust);
  margin-bottom: 1.5rem;
}
.price-card.featured .price-card-duration { color: rgba(255,255,255,0.35); }

.price-card-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 2rem;
}
.price-card.featured .price-card-amount { color: var(--paper); }

.price-card-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.price-card-features li {
  font-size: 0.85rem;
  color: var(--smoke);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.price-card.featured .price-card-features li { color: rgba(255,255,255,0.5); }
.price-card-features li::before {
  content: '—';
  color: var(--stone);
  flex-shrink: 0;
}

/* ── COMPARISON TABLE ── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.compare-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dust);
  border-bottom: 1px solid var(--stone);
  background: var(--cream);
}

.compare-table th:not(:first-child) { text-align: center; }

.compare-table td {
  padding: 0.9rem 1.5rem;
  color: var(--smoke);
  border-bottom: 1px solid var(--stone);
}

.compare-table td:not(:first-child) { text-align: center; color: var(--ink); font-weight: 500; }

.compare-table tr:last-child td { border-bottom: none; }

.compare-table .compare-label { color: var(--smoke); font-size: 0.88rem; }

/* ── ABOUT PAGE ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-split--text-only { grid-template-columns: 1fr; max-width: 680px; }

.about-media { position: relative; }
.about-media .photo-slot { aspect-ratio: 4/5; }

.about-float {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.about-float-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  display: block;
  line-height: 1;
}

.about-float-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 0.97rem;
  color: var(--smoke);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* ── MISSION QUOTE ── */
.mission-block {
  background: var(--ink);
  padding-block: 6rem;
  text-align: center;
}

.mission-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  font-weight: 800;
  font-style: italic;
  color: var(--paper);
  max-width: 820px;
  margin-inline: auto;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.mission-block cite {
  display: block;
  margin-top: 2rem;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ── DIFF LIST (about) ── */
.diff-list {
  display: flex;
  flex-direction: column;
}

.diff-item {
  display: flex;
  gap: 2rem;
  padding-block: 2rem;
  border-bottom: 1px solid var(--stone);
  align-items: flex-start;
}

.diff-item:first-child { border-top: 1px solid var(--stone); }

.diff-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--stone);
  flex-shrink: 0;
  width: 2rem;
  padding-top: 3px;
}

.diff-body h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.diff-body p {
  font-size: 0.9rem;
  color: var(--smoke);
  line-height: 1.65;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.contact-info .lead {
  font-size: 0.95rem;
  color: var(--smoke);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--stone);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-channel:first-child { border-top: 1px solid var(--stone); }
.contact-channel:hover { opacity: 0.65; }

.channel-icon-box {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.channel-type {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dust);
}

.channel-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.areas-note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--cream);
  border-radius: 4px;
  border-left: 3px solid var(--stone);
}

.areas-note p {
  font-size: 0.85rem;
  color: var(--smoke);
  line-height: 1.65;
}

/* ── FORM ── */
.form-block {
  background: var(--cream);
  border-radius: 4px;
  padding: 2.5rem;
  border: 1px solid var(--stone);
}

.form-block h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.form-block .form-sub {
  font-size: 0.88rem;
  color: var(--smoke);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-row.solo { grid-template-columns: 1fr; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--smoke);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: 2px;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  width: 100%;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option { background: var(--paper); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--dust); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ink);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit { margin-top: 1.5rem; }
.form-submit .btn { width: 100%; justify-content: center; }

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--dust);
  margin-top: 0.75rem;
}

/* Form success / error states */
.form-success {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 4px;
  padding: 1.125rem 1.25rem;
  margin-bottom: 1.5rem;
}

.form-success svg {
  stroke: #16a34a;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-success strong {
  display: block;
  font-size: 0.9rem;
  color: #15803d;
  margin-bottom: 0.2rem;
}

.form-success p {
  font-size: 0.82rem;
  color: #166534;
  margin: 0;
}

.form-error-msg {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 4px;
  padding: 0.875rem 1.25rem;
  font-size: 0.82rem;
  color: #dc2626;
  margin-bottom: 1.5rem;
}

/* Disable submit button while sending */
[data-fs-submit-btn]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── FAQ ── */
.faq-list { max-width: 640px; margin-inline: auto; }

.faq-item {
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--stone);
}

.faq-item:first-child { border-top: 1px solid var(--stone); }

.faq-q {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.faq-a {
  font-size: 0.9rem;
  color: var(--smoke);
  line-height: 1.7;
}

/* ── FOOTER ── */
.footer {
  background: var(--cream);
  border-top: 1px solid var(--stone);
  padding-block: 3rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-brand img { height: auto; width: 110px; }

.footer-brand-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dust);
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--ink); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--dust);
  text-align: right;
}

/* ── EVENT TYPES TAG ROW ── */
.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.event-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--smoke);
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--stone);
  border-radius: 2px;
}

/* ── UTILITY GRIDS (need responsive collapse) ── */
.diff-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-channels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--stone);
  border: 1px solid var(--stone);
  border-radius: 4px;
  overflow: hidden;
}

/* Table scroll wrapper — stops compare table breaking on mobile */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--stone);
  border-radius: 4px;
}

.table-scroll .compare-table {
  min-width: 480px;
}

/* ── FEATURE LIST (services page) ── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 2rem;
  margin-bottom: 2.5rem;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.feature-icon-box svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--dust);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card-text h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  line-height: 1.4;
}

.feature-card-text p { display: none; }

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ── HOW IT WORKS ── */
.how-section {
  padding: 5rem 0 4.5rem;
  background: var(--ink);
  color: var(--paper);
}

.how-section .eyebrow {
  color: rgba(255,255,255,0.4);
}

.how-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--paper);
  margin-bottom: 3.5rem;
  max-width: 480px;
}

.how-heading em {
  font-style: italic;
  color: rgba(255,255,255,0.55);
}

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.how-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.how-connector {
  flex: 0 0 2.5rem;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin-top: 1.35rem; /* aligns with center of the number */
  align-self: flex-start;
}

.how-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.18);
  letter-spacing: -0.03em;
}

.how-body h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 0.4rem;
  letter-spacing: 0;
  line-height: 1.3;
}

.how-body p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 680px) {
  .how-steps {
    flex-direction: column;
    gap: 2rem;
  }
  .how-connector {
    width: 1px;
    height: 1.5rem;
    flex: 0 0 1.5rem;
    margin-top: 0;
    align-self: stretch;
    background: rgba(255,255,255,0.12);
  }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--stone);
  padding: 0.75rem 0;
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--smoke);
  white-space: nowrap;
}

.trust-bar-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.trust-bar-stars {
  color: #F4B942;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.trust-sep {
  color: var(--stone);
  font-size: 0.75rem;
  user-select: none;
}

@media (max-width: 600px) {
  .trust-sep { display: none; }
  .trust-bar-inner { gap: 0.4rem 1rem; }
}

/* ── GOOGLE REVIEWS CAROUSEL ── */
.reviews-section {
  padding: 5rem 0;
  background: var(--paper);
  overflow: hidden;
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.75rem;
}

.reviews-header-left h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 0;
}

.reviews-aggregate {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.reviews-score {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.reviews-agg-stars {
  color: #F4B942;
  font-size: 0.85rem;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.reviews-agg-count {
  font-size: 0.72rem;
  color: var(--dust);
  line-height: 1;
}

/* Scrollable track */
.reviews-scroll-wrap {
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}

.reviews-track::-webkit-scrollbar { display: none; }

/* Review card */
.review-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--cream);
  border: 1px solid var(--stone);
  border-radius: 4px;
  padding: 1.375rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card-meta {
  flex: 1;
}

.review-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  display: block;
  line-height: 1.3;
}

.review-card-stars {
  color: #F4B942;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

/* Google G logo */
.review-g {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.45;
}

.review-text {
  font-size: 0.84rem;
  color: var(--smoke);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.review-event-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--dust);
}

/* Nav dots */
.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.75rem;
}

.reviews-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--stone);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.reviews-dot.is-active {
  background: var(--ink);
  transform: scale(1.3);
}

@media (max-width: 600px) {
  .review-card { flex: 0 0 82vw; }
}

/* ── SCROLL FADE-IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── STICKY BOOKING BAR ── */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  padding: 0.875rem 2rem;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.35);
}

.sticky-bar.is-visible {
  transform: translateY(0);
}

.sticky-bar-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-body);
}

.sticky-bar-phone {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--paper);
  letter-spacing: -0.01em;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.sticky-bar-phone:hover { opacity: 0.72; }

.sticky-bar .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.72rem;
  min-height: 40px;
}

@media (max-width: 600px) {
  .sticky-bar {
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
  }
  .sticky-bar-label { display: none; }
  .sticky-bar-phone { font-size: 1rem; }
  .sticky-bar .btn { padding: 0.55rem 1.1rem; }
}

/* ── DIVIDERS ── */
hr.thin {
  border: none;
  height: 1px;
  background: var(--stone);
}

/* ── RESPONSIVE ── */

/* Tablet: 900px and below */
@media (max-width: 900px) {
  /* Mobile hero — text overlaid on image */
  .hero {
    position: relative;
    padding: 0;
    min-height: 0;
    display: block;
    padding-top: var(--nav-h);
  }
  .hero-grid {
    display: block;
    padding-block: 0;
    position: relative;
  }
  .hero-media {
    display: block;
    position: relative;
  }
  .hero-media .photo-slot {
    aspect-ratio: 3/4;
    border-radius: 0;
    overflow: hidden;
  }
  .hero-media .photo-slot img {
    object-position: center top;
  }
  /* Gradient over image so text is readable */
  .hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      to bottom,
      rgba(15,15,14,0.15) 0%,
      rgba(15,15,14,0.1) 40%,
      rgba(15,15,14,0.75) 70%,
      rgba(15,15,14,0.92) 100%
    );
    pointer-events: none;
  }
  /* Text floats over the bottom of the image */
  .hero-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 2rem 1.25rem 2.5rem;
    color: var(--paper);
    max-width: 100%;
  }
  .hero-text h1 {
    color: var(--paper);
    font-size: clamp(1.75rem, 7vw, 2.2rem);
  }
  .hero-text .hero-sub {
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }
  .hero-location { color: rgba(255,255,255,0.55); }
  .hero-phone { color: rgba(255,255,255,0.8); }
  /* Hide the badge on mobile — gets lost over the image */
  .hero-badge { display: none; }
  .proof-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .about-float { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 3rem; }
  .service-detail-grid.flip { direction: ltr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .services-row { grid-template-columns: 1fr; }
  .footer-copy { text-align: left; }

  /* Inline grids that don't have CSS classes */
  .diff-section-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .contact-channels-grid { grid-template-columns: 1fr !important; }
}

/* Mobile: 768px and below */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .section     { padding-block: 3.5rem; }
  .section-md  { padding-block: 2.5rem; }
  .ig-section  { padding-block: 3.5rem; }
  .home-form-section { padding-block: 3.5rem; }
  .cta-strip   { padding-block: 3.5rem; }
  .mission-block { padding-block: 3.5rem; }

  /* Nav hamburger */
  .hamburger { display: flex; }
  .nav-inner { padding-inline: 1.25rem; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--stone);
    padding: 1rem 1.5rem 1.5rem;
    flex-direction: column;
    gap: 0.125rem;
    z-index: 99;
  }
  .nav-links li a { display: block; padding: 0.75rem 0.5rem; font-size: 0.88rem; min-height: 44px; display: flex; align-items: center; }
  .nav-links li a.nav-cta { margin-left: 0; margin-top: 0.5rem; justify-content: center; }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-toggle:checked + .hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle:checked + .hamburger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked + .hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* Grids */
  .home-form-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row, .simple-form .form-row { grid-template-columns: 1fr !important; }
  .photo-grid-2 { grid-template-columns: 1fr; }

  /* Hero */
  .hero-actions { flex-wrap: wrap; gap: 0.75rem; }
  .hero-badge { display: none; }

  /* Video/IG */
  .ig-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .ig-slide { flex: 0 0 280px; }
  /* 140px = half of 280px slide */
  .ig-track {
    padding-left:  max(1.25rem, calc(50% - 140px));
    padding-right: max(1.25rem, calc(50% - 140px));
  }
  .video-header { flex-direction: column; align-items: flex-start; }
  .video-header p { text-align: left; max-width: 100%; }

  /* Forms — iOS CRITICAL: inputs < 16px cause Safari to auto-zoom */
  input, select, textarea { font-size: 16px !important; }
  .simple-form { padding: 1.5rem; }
  .form-block { padding: 1.5rem; }

  /* Proof */
  .proof-main blockquote { font-size: 1.4rem; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer-links { gap: 1rem; flex-wrap: wrap; }
  .footer-copy { text-align: left; }
}

/* Small phones: 480px and below */
@media (max-width: 480px) {
  .container { padding-inline: 1.25rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 0.97rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-phone { text-align: center; padding: 0.5rem 0; }

  .page-hero { padding-top: calc(var(--nav-h) + 2.5rem); padding-bottom: 2.5rem; }

  .ig-slide { flex: 0 0 260px; }
  /* 130px = half of 260px slide */
  .ig-track {
    padding-left:  max(1rem, calc(50% - 130px));
    padding-right: max(1rem, calc(50% - 130px));
  }
  .ig-section { padding-inline: 0; }
  .ig-section .container { padding-inline: 1.25rem; }

  .cta-strip .phone-link { font-size: clamp(1.8rem, 10vw, 3rem); }

  .service-tile-body { padding: 1.5rem; }
  .proof-mini { padding: 1.25rem; }

  .pricing-cards { border-radius: 0; }
  .price-card { padding: 1.75rem; }
  .price-card-amount { font-size: 2.8rem; }

  .mission-block blockquote { font-size: 1.4rem; }
}
