/* ============================================================
   Reel Time Edit — bright, clean, editorial social style
   Palette: #FFFFFF bg / #000000 text & primary / #111111 charcoal / #F7F7F7 off-white
   Typography: Times New Roman (custom font can be swapped at --font-brand)
   ============================================================ */

:root {
  --white: #ffffff;
  --black: #000000;
  --charcoal: #111111;
  --offwhite: #f7f7f7;
  --line: #000000;
  --muted: #555555;
  --radius: 6px;         /* subtle rounded */
  --radius-lg: 10px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Typographic hook: swap --font-brand when the custom font is injected */
  --font-brand: "Times New Roman", Times, Georgia, serif;
  --font-ui: "Times New Roman", Times, Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  color: var(--black);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

section { padding: clamp(56px, 8vw, 110px) 0; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  display: inline-block;
  border: 1px solid var(--black);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 22px;
}

h1, h2, h3, h4 { font-family: var(--font-brand); font-weight: 400; line-height: 1.05; letter-spacing: -0.01em; }

h2.section-title { font-size: clamp(30px, 5vw, 52px); margin-bottom: 14px; }
.section-sub { font-size: clamp(16px, 2vw, 19px); color: var(--muted); max-width: 620px; }

.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 13px 26px;
  border: 1px solid var(--black);
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  background: var(--white);
  color: var(--black);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: var(--charcoal); }
.btn-outline { background: transparent; color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-lg { padding: 16px 34px; font-size: 16px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--black);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.logo { display: flex; align-items: center; cursor: pointer; }
.logo img { height: 46px; width: auto; }   /* stacked REEL TIME EDIT mark */

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  list-style: none;
}
.nav-links a {
  font-size: 12px;              /* decently small */
  letter-spacing: 0.14em;
  text-transform: uppercase;    /* all caps nav */
  color: var(--black);
  padding: 6px 2px;
  position: relative;
  cursor: pointer;
  transition: opacity 0.2s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--black);
  transition: width 0.28s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { font-style: italic; }

.nav-cta {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 34px;   /* wider oval, more breathing room around the words */
}
/* Begin a Quote CTA — white oval, black outline, black text (inverts on hover) */
.nav-links a.nav-cta { background: var(--white); color: var(--black); padding: 11px 34px; }
.nav-links a.nav-cta:hover { background: var(--black); color: var(--white); }
.nav-links a.nav-cta::after { display: none; } /* no underline swipe on the button */

/* Instagram icon button (right of the CTA) */
.nav-links a.nav-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  padding: 0;
  border: 1px solid var(--black);
  border-radius: 50%;
  color: var(--black);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s var(--ease);
}
.nav-links a.nav-ig::after { display: none; }
.nav-links a.nav-ig:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }
.nav-links a.nav-ig svg { width: 19px; height: 19px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  width: 42px; height: 38px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.nav-toggle span { width: 18px; height: 1.5px; background: var(--black); transition: 0.25s var(--ease); }

/* ============================================================
   PAGE (tab) system
   ============================================================ */
.page { display: none; animation: fade 0.45s var(--ease); }
.page.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: none; } }

/* ============================================================
   HERO (Portfolio page)
   ============================================================ */
.hero {
  padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 5vw, 70px);
  border-bottom: 1px solid var(--black);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 6.2vw, 76px);
  line-height: 1.0;
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; }
.hero-sub {
  font-size: clamp(17px, 2.1vw, 21px);
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-visual {
  position: relative;
  border: 1px solid var(--black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--offwhite);
  aspect-ratio: 1350 / 824;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--black);
  margin-top: clamp(36px, 5vw, 60px);
}
.hero-stats .stat { padding: 26px 8px 4px; text-align: center; border-right: 1px solid #e4e4e4; }
.hero-stats .stat:last-child { border-right: none; }
.hero-stats .stat .num { font-family: var(--font-brand); font-size: clamp(32px, 4vw, 46px); }
.hero-stats .stat .lbl { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   ABOUT (Portfolio page)
   ============================================================ */
/* magazine layout: centered heading on top, image floated left, text wraps around & below */
.about-title {
  font-family: var(--font-brand);
  font-style: italic;
  font-size: clamp(40px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 clamp(26px, 4vw, 48px);
}
.about-body::after { content: ""; display: block; clear: both; }   /* contain the float */
.about-photo {
  float: left;
  width: clamp(230px, 38%, 430px);
  margin: 4px clamp(24px, 3.5vw, 46px) 14px 0;
  border: 1px solid var(--black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--offwhite);
}
.about-photo img { width: 100%; display: block; }
.about-body p {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.62;
  color: var(--charcoal);
  margin: 0 0 18px;
}
.about-body p:last-child { margin-bottom: 0; }
.about-body p.lead { font-size: clamp(17px, 1.8vw, 21px); color: var(--black); }
.about-body p.lead strong { font-weight: 700; font-style: italic; }

/* hero location line */
.hero-location {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  margin: -14px 0 30px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero-location::before {
  content: "";
  width: 22px; height: 1px; background: var(--black); display: inline-block;
}

/* Meet the Founder / Team */
.bio-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 5vw, 66px);
  align-items: center;
}
.bio-grid.reverse { grid-template-columns: 1.15fr 0.85fr; }
.bio-photo {
  margin: 0;
  border: 1px solid var(--black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--offwhite);
}
.bio-photo img { width: 100%; display: block; }
.photo-placeholder {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--black);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #f2f2f2 0%, #e2e2e0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
  overflow: hidden;
}
.photo-placeholder svg { width: 54px; height: 54px; opacity: 0.55; }
.photo-placeholder span { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.bio-name {
  font-family: var(--font-brand);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin: 14px 0 6px;
}
.bio-role {
  font-family: var(--font-brand);
  font-style: italic;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  margin-bottom: 22px;
}
.bio-copy > p { font-size: clamp(16px, 1.6vw, 18px); line-height: 1.62; color: var(--charcoal); margin-bottom: 26px; }
.bio-copy .btn { margin-top: 2px; }

/* ============================================================
   FILTER TABS
   ============================================================ */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 30px 0 44px;
}
.filter-tab {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--black);
  border-radius: 100px;
  background: var(--white);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.filter-tab:hover { background: var(--offwhite); }
.filter-tab.active { background: var(--black); color: var(--white); }

/* ============================================================
   VERTICAL VIDEO CAROUSEL
   ============================================================ */
.carousel-wrap { position: relative; }
.carousel {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 2px 26px;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel.dragging { cursor: grabbing; scroll-snap-type: none; }
.carousel.dragging .video-card { pointer-events: none; }

.video-card {
  flex: 0 0 auto;
  width: clamp(230px, 26vw, 290px);
  scroll-snap-align: center;
  transition: transform 0.3s var(--ease), opacity 0.35s var(--ease);
}
.video-card.hide { display: none; }
.video-placeholder {
  position: relative;
  aspect-ratio: 9 / 16;
  border: 1px solid var(--black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #f0f0f0 0%, #dcdcdc 60%, #cececd 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-placeholder::before {
  /* faint film-grain / editorial texture lines */
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(0,0,0,0.03) 0, rgba(0,0,0,0.03) 1px, transparent 1px, transparent 6px);
  pointer-events: none;
}
.video-placeholder video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.video-placeholder.has-video::before { display: none; }        /* drop the grain over real video */
.video-placeholder.has-video.playing .play-icon { opacity: 0; } /* hide play button while playing */
.play-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
  z-index: 2;
}
.play-icon svg { width: 20px; height: 20px; margin-left: 3px; }
.video-card:hover .play-icon { transform: scale(1.12); background: var(--white); }
.video-card:hover .video-placeholder { transform: none; }

.client-label {
  position: absolute;
  left: 12px; bottom: 12px; right: 12px;
  z-index: 2;
  background: rgba(0,0,0,0.86);
  color: var(--white);
  border-radius: var(--radius);
  padding: 9px 13px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.client-label .cat { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; }
.client-label .name { font-family: var(--font-brand); font-size: 17px; font-style: italic; }
.card-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--white); border: 1px solid var(--black);
  border-radius: 100px; font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 5px 11px;
}

.carousel-nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 6px;
}
.carousel-btn {
  width: 46px; height: 46px;
  border: 1px solid var(--black);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.carousel-btn:hover { background: var(--black); color: var(--white); }
.carousel-btn svg { width: 18px; height: 18px; }
.drag-hint { text-align: center; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 14px; }

/* ============================================================
   LOGO STRIP
   ============================================================ */
.logos-strip { border-top: 1px solid var(--black); border-bottom: 1px solid var(--black); background: var(--offwhite); overflow: hidden; }
.marquee { display: flex; width: 100%; overflow: hidden; }
.marquee-track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: max-content;
  padding: 28px 0;
  animation: marquee-left 30s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-logo {
  height: clamp(26px, 3.4vw, 40px);
  width: auto;
  opacity: 0.65;
  padding: 0 clamp(22px, 4vw, 52px);
  flex-shrink: 0;
}
.marquee-track .sep {
  font-family: var(--font-brand);
  font-size: clamp(16px, 2vw, 22px);
  opacity: 0.3;
  padding: 0;
}
@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ============================================================
   CARD GRIDS (Services)
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.card {
  border: 1px solid var(--black);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 38px);
  background: var(--white);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: 8px 8px 0 var(--black); }
.card .card-num { font-family: var(--font-brand); font-size: 14px; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 18px; }
.card h3 { font-size: clamp(22px, 2.6vw, 28px); margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 16px; }
.card .card-icon {
  width: 52px; height: 52px; border: 1px solid var(--black); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.card .card-icon svg { width: 24px; height: 24px; }
.card ul { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 9px; }
.card ul li { font-size: 15px; color: var(--charcoal); display: flex; gap: 9px; align-items: flex-start; }
.card ul li::before { content: "→"; font-family: var(--font-brand); }

.audience-card { background: var(--offwhite); }
.audience-card.dark { background: var(--charcoal); color: var(--white); border-color: var(--black); }
.audience-card.dark p { color: rgba(255,255,255,0.72); }
.audience-card.dark .card-icon { border-color: var(--white); }
.audience-card.dark .card-icon svg { stroke: var(--white); }
.audience-card.dark:hover { box-shadow: 8px 8px 0 var(--muted); }

/* ---------- CTA banner ---------- */
.cta-banner {
  border: 1px solid var(--black);
  border-radius: var(--radius-lg);
  background: var(--black);
  color: var(--white);
  padding: clamp(38px, 5vw, 64px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.cta-banner h2 { font-size: clamp(28px, 4.2vw, 46px); }
.cta-banner p { color: rgba(255,255,255,0.7); max-width: 560px; }
.cta-banner .btn { border-color: var(--white); }
.cta-banner .btn-primary { background: var(--white); color: var(--black); }
.cta-banner .btn-primary:hover { background: var(--offwhite); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card {
  border: 1px solid var(--black);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  background: var(--white);
  transition: transform 0.3s var(--ease);
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured { background: var(--charcoal); color: var(--white); }
.price-card.featured p, .price-card.featured .price .per { color: rgba(255,255,255,0.65); }
.price-card.featured .feature-list li { color: rgba(255,255,255,0.9); }
.price-card.featured .check { border-color: var(--white); }
.price-card.featured .check svg { stroke: var(--white); }
.price-card.featured .btn-primary { background: var(--white); color: var(--black); border-color: var(--white); }
.price-card.featured .btn-primary:hover { background: var(--offwhite); }

.tier-badge {
  align-self: flex-start;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid currentColor; border-radius: 100px; padding: 5px 13px; margin-bottom: 20px;
}
.price-card.featured .tier-badge { background: var(--white); color: var(--black); border-color: var(--white); }
.price-card h3 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 6px; }
.price-card .tier-desc { font-size: 15px; color: var(--muted); margin-bottom: 22px; min-height: 44px; }
.price-card.featured .tier-desc { color: rgba(255,255,255,0.65); }
.price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 26px; padding-bottom: 26px; border-bottom: 1px solid rgba(0,0,0,0.14); }
.price-card.featured .price { border-bottom-color: rgba(255,255,255,0.2); }
.price .amount { font-family: var(--font-brand); font-size: clamp(40px, 5vw, 56px); }
.price .per { font-size: 15px; color: var(--muted); }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; flex-grow: 1; }
.feature-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; }
.check {
  flex: 0 0 auto;
  width: 20px; height: 20px; border: 1px solid var(--black); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.check svg { width: 11px; height: 11px; stroke: var(--black); }
.price-card .btn { width: 100%; }

.pricing-secondary { text-align: center; margin-top: 40px; font-size: 17px; color: var(--muted); }
.pricing-secondary .link-btn { color: var(--black); border-bottom: 1px solid var(--black); font-style: italic; cursor: pointer; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 26px; align-items: start; }

/* contact info panel (replaces the old scheduler) */
.contact-info {
  border: 1px solid var(--black);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  background: var(--offwhite);
  position: sticky;
  top: 100px;
}
.contact-info h3 { font-size: 24px; margin-bottom: 22px; }
.contact-info .steps { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.contact-info .steps li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--charcoal); line-height: 1.45; }
.contact-info .steps li span {
  flex: 0 0 auto; width: 26px; height: 26px; border: 1px solid var(--black); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 14px; font-family: var(--font-brand);
}
.info-contact { border-top: 1px solid #e0e0e0; padding-top: 22px; }
.info-email { display: inline-block; font-family: var(--font-brand); font-style: italic; font-size: 19px; margin-bottom: 14px; border-bottom: 1px solid var(--black); }
.info-social { display: flex; gap: 18px; }
.info-social a { font-size: 14px; color: var(--muted); border-bottom: 1px solid transparent; transition: 0.2s var(--ease); }
.info-social a:hover { color: var(--black); border-bottom-color: var(--black); }

/* quote-form extras */
.quote-form .req { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 12px; }
/* higher specificity so it beats `.field label { display:block }` — checkbox sits LEFT of the text */
.field label.check-line { display: flex; align-items: center; gap: 10px; font-size: 15px; letter-spacing: 0; text-transform: none; cursor: pointer; margin-bottom: 0; }
.field .check-line input { width: 18px; height: 18px; flex: 0 0 auto; margin: 0; accent-color: var(--black); cursor: pointer; }
.check-line span { color: var(--charcoal); }

/* date field: typeable text + calendar button */
.date-field { position: relative; }
.date-field #eventDate { padding-right: 48px; }
.date-cal-btn {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border: none; background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: var(--black); border-radius: var(--radius);
  transition: background 0.2s var(--ease);
}
.date-cal-btn:hover { background: var(--offwhite); }
.date-cal-btn svg { width: 20px; height: 20px; }
.date-native { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); width: 24px; height: 24px; opacity: 0; pointer-events: none; }

.scheduler {
  border: 1px solid var(--black);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  background: var(--offwhite);
  position: sticky;
  top: 100px;
}
.scheduler h3 { font-size: 26px; margin-bottom: 6px; }
.scheduler .sched-sub { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.cal {
  background: var(--white);
  border: 1px solid var(--black);
  border-radius: var(--radius);
  padding: 18px;
}
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-head .m { font-family: var(--font-brand); font-size: 19px; }
.cal-head button { width: 32px; height: 32px; border: 1px solid var(--black); border-radius: 50%; background: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.cal-head button:hover { background: var(--black); color: var(--white); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal-grid .dow { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); text-align: center; padding: 4px 0; }
.cal-grid .day {
  aspect-ratio: 1; border: 1px solid transparent; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer;
  transition: 0.2s var(--ease);
}
.cal-grid .day.empty { cursor: default; }
.cal-grid .day.avail:hover { border-color: var(--black); }
.cal-grid .day.selected { background: var(--black); color: var(--white); }
.cal-grid .day.muted { color: #c4c4c4; cursor: default; }

.slots { margin-top: 20px; }
.slots-title { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.slot-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.slot { border: 1px solid var(--black); border-radius: var(--radius); padding: 9px 4px; text-align: center; font-size: 14px; cursor: pointer; background: var(--white); transition: 0.2s var(--ease); }
.slot:hover { background: var(--offwhite); }
.slot.selected { background: var(--black); color: var(--white); }
.sched-confirm { margin-top: 20px; }
.sched-confirm .btn { width: 100%; }
.sched-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 12px; min-height: 18px; }

/* ---------- Form ---------- */
.quote-form {
  border: 1px solid var(--black);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 40px);
}
.quote-form h3 { font-size: 28px; margin-bottom: 6px; }
.quote-form .form-sub { color: var(--muted); margin-bottom: 28px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-ui);
  font-size: 16px;
  padding: 13px 15px;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  transition: box-shadow 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; box-shadow: 0 0 0 3px rgba(0,0,0,0.12); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.checkbox-group { display: flex; flex-wrap: wrap; gap: 10px; }
.checkbox-pill {
  position: relative;
  border: 1px solid var(--black); border-radius: 100px; padding: 10px 18px;
  font-size: 14px; cursor: pointer; transition: 0.2s var(--ease); user-select: none;
}
.checkbox-pill input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.checkbox-pill.checked { background: var(--black); color: var(--white); }

.form-submit .btn { width: 100%; }
.form-success {
  display: none;
  border: 1px solid var(--black); border-radius: var(--radius);
  background: var(--offwhite); padding: 18px; margin-top: 18px; text-align: center; font-size: 15px;
}
.form-success.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--black); background: var(--white); padding: clamp(40px, 5vw, 64px) 0 34px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 30px; padding-bottom: 34px; border-bottom: 1px solid #e4e4e4; }
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 15px; max-width: 300px; }
.footer-cols { display: flex; gap: clamp(30px, 6vw, 80px); flex-wrap: wrap; }
.footer-col h4 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--muted); font-size: 15px; margin-bottom: 9px; cursor: pointer; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--black); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 24px; font-size: 13px; color: var(--muted); letter-spacing: 0.04em; }
.footer-credit {
  text-align: center;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #ededed;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-credit a { color: var(--black); border-bottom: 1px solid var(--black); padding-bottom: 1px; transition: opacity 0.2s var(--ease); }
.footer-credit a:hover { opacity: 0.6; }
.footer-social { display: inline-flex; gap: 20px; }
.footer-social a { color: var(--muted); position: relative; transition: color 0.2s var(--ease); }
.footer-social a::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 1px; background: var(--black); transition: width 0.25s var(--ease); }
.footer-social a:hover { color: var(--black); }
.footer-social a:hover::after { width: 100%; }

/* ============================================================
   GALLERY (masonry grid + lightbox)
   ============================================================ */
.gallery-grid { columns: 4; column-gap: 18px; margin-top: 44px; }
.gallery-item {
  break-inside: avoid;
  margin: 0 0 18px;
  border: 1px solid var(--black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--offwhite);
}
.gallery-item img { width: 100%; display: block; transition: transform 0.55s var(--ease); }
.gallery-item:hover img { transform: scale(1.045); }

.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: none;
  align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  padding: clamp(16px, 4vw, 48px);
}
.lightbox.open { display: flex; animation: fade 0.25s var(--ease); }
.lightbox img {
  max-width: min(92vw, 900px);
  max-height: 88vh;
  width: auto; height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.25);
}
.lb-btn {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--white);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--black);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.lb-btn:hover { transform: scale(1.08); }
.lb-btn svg { width: 22px; height: 22px; }
.lb-close { top: clamp(16px, 3vw, 30px); right: clamp(16px, 3vw, 30px); }
.lb-prev { left: clamp(12px, 3vw, 34px); top: 50%; transform: translateY(-50%); }
.lb-next { right: clamp(12px, 3vw, 34px); top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.08); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) { .gallery-grid { columns: 3; } }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .scheduler { position: static; }
  .contact-info { position: static; margin-bottom: 4px; }
  .grid-3, .pricing-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  /* "What We Do" — keep a compact 2x2 grid on mobile */
  #servicesGrid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  #servicesGrid .card { padding: 18px 15px; }
  #servicesGrid .card h3 { font-size: 18px; }
  #servicesGrid .card p { font-size: 13.5px; }
  #servicesGrid .card ul { margin-top: 12px; gap: 7px; }
  #servicesGrid .card ul li { font-size: 13px; }
  #servicesGrid .card .card-icon { width: 40px; height: 40px; margin-bottom: 12px; }
  #servicesGrid .card .card-num { margin-bottom: 10px; }
  /* About — keep the magazine float on mobile, just smaller */
  .about-photo { width: 42%; margin: 3px 16px 12px 0; }
  .about-title { margin-bottom: 18px; }
  .about-body p { font-size: 14px; line-height: 1.55; margin-bottom: 14px; }
  .about-body p.lead { font-size: 15px; }
  /* Founder / Team stack, image on top */
  .bio-grid, .bio-grid.reverse { grid-template-columns: 1fr; gap: 22px; }
  .bio-grid.reverse .bio-photo { order: -1; }
  .bio-photo { max-width: 360px; margin: 0 auto; width: 100%; }
  .bio-name { margin-top: 6px; }

  .nav-links, .nav > .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  /* the header's backdrop-filter (blur) would trap a position:fixed child and stop it
     filling the screen — remove it while the menu is open */
  .site-header.open { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--white); }
  /* full-screen overlay menu with tabs spread across the screen */
  .site-header.open .nav-links {
    display: flex;
    position: fixed;
    top: 74px; left: 0; right: 0;
    height: calc(100dvh - 74px);
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    gap: 0;
    margin: 0;
    background: var(--white);
    padding: 24px 24px calc(env(safe-area-inset-bottom, 0px) + 36px);
    z-index: 95;
    overflow-y: auto;
  }
  .site-header.open .nav-links li { width: 100%; text-align: center; list-style: none; }
  .site-header.open .nav-links a {
    display: inline-block;
    font-size: 26px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 6px 0;
  }
  .site-header.open .nav-links a.active { font-style: italic; }
  .site-header.open .nav-links a::after { display: none; }
  .site-header.open .nav-links .nav-cta { font-size: 15px; padding: 16px 44px; }
  .site-header.open .nav-links .nav-ig { width: 46px; height: 46px; margin: 0 auto; }
  .site-header.open .nav-links .nav-ig svg { width: 22px; height: 22px; }

  /* hamburger animates into an X while open */
  .site-header.open .nav-toggle span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .site-header.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.open .nav-toggle span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
}

/* PHONE GALLERY — Instagram-style square grid (loads the mobile photo set at <=700px).
   Distinct from the computer masonry: uniform square tiles, 3 across, tight gaps,
   edge-to-edge with no card borders — reads as a social feed. */
@media (max-width: 700px) {
  .gallery-grid {
    columns: auto; column-gap: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-top: 30px;
  }
  .gallery-item {
    margin: 0;
    border: none;
    border-radius: 0;
    aspect-ratio: 1 / 1;
    cursor: pointer;
  }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; }
  .gallery-item:hover img { transform: none; }
}

@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
  .slot-list { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats .stat { border-right: none; border-bottom: 1px solid #e4e4e4; padding: 18px 8px; }
  .footer-top { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
