/* self-hosted fonts (no CDN — always load, always match) */
@font-face{font-family:'Archivo';font-style:normal;font-weight:600;font-display:swap;src:url('fonts/Archivo-600.woff2') format('woff2');}
@font-face{font-family:'Archivo';font-style:normal;font-weight:700;font-display:swap;src:url('fonts/Archivo-700.woff2') format('woff2');}
@font-face{font-family:'Archivo';font-style:normal;font-weight:800;font-display:swap;src:url('fonts/Archivo-800.woff2') format('woff2');}
@font-face{font-family:'Archivo';font-style:normal;font-weight:900;font-display:swap;src:url('fonts/Archivo-900.woff2') format('woff2');}
@font-face{font-family:'Work Sans';font-style:normal;font-weight:300;font-display:swap;src:url('fonts/WorkSans-300.woff2') format('woff2');}
@font-face{font-family:'Work Sans';font-style:normal;font-weight:400;font-display:swap;src:url('fonts/WorkSans-400.woff2') format('woff2');}
@font-face{font-family:'Work Sans';font-style:normal;font-weight:500;font-display:swap;src:url('fonts/WorkSans-500.woff2') format('woff2');}
@font-face{font-family:'Work Sans';font-style:normal;font-weight:600;font-display:swap;src:url('fonts/WorkSans-600.woff2') format('woff2');}

/* ============================================================
   JD's Flick — v2 stylesheet
   ------------------------------------------------------------
   Brand: black + sky blue (#37a9f6), consistent with IG/LinkedIn.
   The blue does ONE job — interactive elements + the brand mark.
   Everything else is white/grey. No icon-tile cards, no eyebrow
   labels, no colored glows, headings at weight 700 (not 900),
   square photos.

   Sections in this file:
     1. Variables            6. Work collage
     2. Base / reset         7. Lightbox gallery
     3. Typography           8. "What I do" list
     4. Header + nav         9. Buttons
     5. Hero slider         10. Footer
                            11. Mobile (max-width 860px)
   ============================================================ */


/* === 1. VARIABLES ========================================== */
:root {
  --bg:        #0a0d12;              /* brand black (page background) */
  --bg-2:      #0e131b;              /* footer / slightly lighter */
  --panel:     #141a24;             /* cards / raised surfaces */
  --ink:       #eef2f7;             /* near-white text (not pure white) */
  --mute:      #aab6c6;             /* secondary grey text (brightened for legibility) */
  --sky:       #37a9f6;             /* THE accent — links, buttons, brand */
  --sky-hi:    #5bb8f8;             /* accent, hover */
  --line:      rgba(255,255,255,.11);
  --line-soft: rgba(255,255,255,.07);
  --maxw:      1280px;              /* max width for image rows */
  --textw:     660px;              /* text sits far narrower than images */
}


/* === 2. BASE / RESET ======================================= */
* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 18px/1.6 "Work Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;               /* guard: page never scrolls sideways */
}

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

a {
  color: inherit;
}

/* long words wrap instead of overflowing on narrow screens */
h1, h2, h3, p {
  overflow-wrap: break-word;
}

/* .wrap centers content and sets side padding. .measure caps text width. */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.measure {
  max-width: var(--textw);
}

/* skip-to-content link, hidden until keyboard-focused */
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 99;
  padding: 10px 16px;
  background: var(--sky);
  color: #06121f;
}


/* === 3. TYPOGRAPHY ========================================= */
/* Headings are white and weight 700 — no blue-word gimmick. */
h1, h2, h3 {
  margin: 0;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -1px;
  line-height: 1.06;
}

h1 {
  font-size: clamp(38px, 5.4vw, 60px);
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -.8px;
  line-height: 1.1;
}

h3 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.3px;
  line-height: 1.25;
}

p {
  margin: 0 0 1.1em;
}

.lede {
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink);
}

.sub {
  color: var(--mute);
}

.small {
  font-size: 15px;
  line-height: 1.55;
  color: var(--mute);
}

/* the one letterspaced label device — used sparingly, as a caption,
   never as a kicker above every heading. Blue = accent moment. */
.label {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sky);
}

/* default vertical rhythm for sections */
section {
  padding: 100px 0;
}
.tight {
  padding: 66px 0;
}


/* === 4. HEADER + NAV ======================================= */
/* Desktop: the header floats over the hero with NO solid bar, so the
   full photo shows. A light top fade + text-shadow keep the nav
   readable without stacking more dark onto an already-shadowed image.
   (Mobile gets a solid dark bar instead — see section 11.) */
header.site {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 22px 0;
}

/* interior (non-hero) pages get a solid light bar instead */
header.site.on-light {
  background: rgba(251,248,243,.9);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* --- brand mark (logo + name + tagline) --- */
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0,0,0,.45);   /* legible over any photo */
}
.brand img {
  height: 34px;
  width: auto;
}
.brand .bt {
  display: flex;
  flex-direction: column;             /* name stacked over tagline */
  line-height: 1.05;
}
.brand b {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.4px;
}
.brand b span {
  color: var(--sky);                  /* the "Flick" accent */
}
.brand .bt small {
  margin-top: 3px;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sky);
}

/* --- primary nav links --- */
nav.main {
  display: flex;
  align-items: center;
  gap: 30px;
}
nav.main a {
  padding: 4px 0;
  font-size: 13.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  opacity: .88;
  border-bottom: 1px solid transparent;
  text-shadow: 0 1px 10px rgba(0,0,0,.5);    /* legible over any photo */
}
nav.main a:hover,
nav.main a[aria-current] {
  opacity: 1;
  border-bottom-color: var(--sky);
}

/* Instagram CTA — hidden on desktop, appears in the mobile menu */
.ig-cta {
  display: none;
}

/* hamburger button — hidden on desktop, shown on mobile */
.menu-btn {
  display: none;
  padding: 6px;
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
}
.menu-btn svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}


/* === 5. HERO SLIDER ======================================== */
.hero {
  position: relative;
  height: min(92vh, 940px);
  overflow: hidden;
  background: #05070a;
}

/* light top fade so the nav reads — kept subtle so the photo shows */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(5,7,10,.5) 0%,
    rgba(5,7,10,.18) 50%,
    transparent 100%
  );
}

/* horizontal scroll-snap track holding the slides */
.hslides {
  display: flex;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;                     /* Firefox: hide scrollbar */
  -webkit-overflow-scrolling: touch;
}
.hslides::-webkit-scrollbar {
  display: none;                             /* WebKit: hide scrollbar */
}

.hslide {
  position: relative;
  flex: 0 0 100%;                            /* one slide per viewport */
  height: 100%;
  margin: 0;
  scroll-snap-align: center;
  overflow: hidden;
}

/* Desktop: show the whole photo (contain). A blurred copy of the same
   shot fills the letterbox bars so any aspect ratio looks intentional. */
.hslide .bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: blur(34px) brightness(.48);
  transform: scale(1.18);
}
.hslide img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* bottom scrim so the headline stays readable over the photo */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(5,7,10,.84) 0%,
    rgba(5,7,10,.44) 24%,
    rgba(5,7,10,.06) 52%,
    transparent 78%
  );
}

/* headline + subline overlay, anchored bottom-left */
.hero .over {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding-bottom: 56px;
  color: #fff;
}
.hero h1 {
  color: #fff;
  max-width: 19ch;
}
.hero h1 .b {
  color: var(--sky);                         /* the one headline accent */
}
.hero .over .say {
  margin-top: 16px;
  font-size: 19px;
  color: rgba(255,255,255,.88);
  max-width: 46ch;
}

/* category pill (bottom-left) — names the current slide */
.hcat {
  position: absolute;
  left: 32px;
  bottom: 18px;
  z-index: 4;
  padding: 7px 14px;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  background: rgba(5,7,10,.5);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 100px;
  backdrop-filter: blur(6px);
}

/* prev / next arrows — quiet, turn blue on hover */
.hbtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(5,7,10,.34);
  color: #fff;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.hbtn:hover {
  background: var(--sky);
  border-color: var(--sky);
  color: #06121f;
}
.hbtn svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hbtn.prev { left: 18px; }
.hbtn.next { right: 18px; }

/* slide counter (bottom-right) — the one blue accent here */
.hcount {
  position: absolute;
  right: 22px;
  bottom: 20px;
  z-index: 4;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.72);
}
.hcount b {
  color: var(--sky);
}


/* === 6. WORK COLLAGE ======================================= */
/* intro: two balanced side-by-side containers, centered together on the
   page — the bio text on the left, the working area on the right. */
.intro {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 56px;
  align-items: start;
}
.intro .who {
  padding-top: 4px;
}
.intro .who .label {
  display: block;
  margin-bottom: 14px;
}
.intro .who ul {
  margin: 0;
  padding: 0;
}
.intro .who li {
  list-style: none;
  padding: 11px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 16px;
}

/* staggered 12-column collage — images vary in height, not width */
.collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
  row-gap: 56px;
}
.collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;                         /* square corners, no radius */
}

/* the four collage cells and their stagger */
.c-a { grid-column: 1 / span 7; }
.c-b { grid-column: 9 / span 4; align-self: end; }
.c-c { grid-column: 1 / span 4; }
.c-d { grid-column: 6 / span 7; margin-top: 52px; }

/* aspect-ratio helpers */
.r-tall { aspect-ratio: 4/5; }
.r-wide { aspect-ratio: 3/2; }
.r-sq   { aspect-ratio: 1/1; }

/* each collage tile is a button that opens the lightbox */
.tile {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.tile:hover img,
.tile:focus-visible img {
  transform: scale(1.03);
}
.tile .tcap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 11px;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--mute);
}
.tile .tcap em {
  font-style: normal;
  letter-spacing: 1.2px;
  color: var(--sky);
  opacity: 0;                                /* "View gallery" shows on hover */
  transition: opacity .2s;
}
.tile:hover .tcap em,
.tile:focus-visible .tcap em {
  opacity: 1;
}
.tile:focus {
  outline: none;
}
.tile:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 4px;
}


/* === 7. LIGHTBOX GALLERY =================================== */
.lb {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;                             /* .open switches to block */
  overflow-y: auto;                          /* the whole modal scrolls */
  padding: 0 24px 40px;
  background: #05070a;
}
.lb.open {
  display: block;
}
.lb-top {
  position: sticky;                          /* close button stays reachable */
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;                         /* line up with the grid below */
  margin: 0 auto;
  padding: 18px 2px 16px;
  background: #05070a;
  color: #fff;
}
.lb-title {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sky);
}
.lb-x {
  padding: 6px;
  background: none;
  border: 0;
  color: #fff;
  line-height: 0;
  cursor: pointer;
}
.lb-x svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

/* masonry: each photo shown WHOLE at its own aspect ratio, no crop.
   Capped width + centered so tiles stay a gallery size (~420px), not huge. */
.lb-grid {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  column-count: 3;
  column-gap: 12px;
  padding: 2px;
}
.lb-grid img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 0 12px;
  break-inside: avoid;                       /* keep photos whole across columns */
  background: #0e131b;
  cursor: zoom-in;
  transition: opacity .18s ease;
}
.lb-grid img:hover {
  opacity: .84;
}

/* full-size single-photo view — opens when a gallery photo is clicked */
.lb-full {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;                             /* .open switches to flex */
  align-items: center;
  justify-content: center;
  padding: 3vh 3vw 6vh;
  background: #05070a;
  cursor: zoom-out;
}
.lb-full.open {
  display: flex;
}
.lb-full img {
  max-width: 94vw;
  max-height: 94vh;
  width: auto;
  height: auto;
  object-fit: contain;                       /* whole photo, never cropped */
}
.lb-full-x {
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 3;
}
/* prev/next arrows reuse .hbtn; keep them above the photo */
.lb-full-nav {
  z-index: 3;
}
/* position + count under the photo */
.lb-full-count {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
}
.lb-full-count b {
  color: var(--sky);
}


/* === 8. "WHAT I DO" — three photo-cards ==================== */
/* heading + CTA on one line, then a row of photo cards (real
   images, NOT icons). */
.do-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
}
.do-top .sub {
  margin-top: 16px;
  max-width: 46ch;
}
.do-top .btn {
  flex: none;
}

.do-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.do-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.do-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;                         /* square corners */
  margin-bottom: 18px;
  transition: opacity .2s ease;
}
.do-card:hover img {
  opacity: .9;
}
.do-card h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.3px;
  margin-bottom: 8px;
}
.do-card p {
  margin-bottom: 12px;
  font-size: 15.5px;
  color: var(--mute);
}
.do-card .go {
  display: inline-block;
}
.do-card:hover .go {
  border-bottom-color: var(--sky);
}

/* category cards (Photography "What I shoot") — buttons that open galleries */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cat-card {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  text-decoration: none;                     /* works as <a> or <button> */
  cursor: pointer;
}
.cat-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: opacity .2s ease;
}
.cat-card:hover img {
  opacity: .9;
}
.cat-cap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 11px;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--mute);
}
.cat-cap em {
  font-style: normal;
  letter-spacing: 1.2px;
  color: var(--sky);
  opacity: 0;                                /* "View gallery" appears on hover */
  transition: opacity .2s;
}
.cat-card:hover .cat-cap em {
  opacity: 1;
}
.cat-card:focus {
  outline: none;
}
.cat-card:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 4px;
}
/* a text CTA tile that fills the last grid slot */
.cat-cta {
  display: flex;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
}
.cat-cta h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 10px;
}
.cat-cta p {
  font-size: 15.5px;
  color: var(--mute);
  margin-bottom: 14px;
}

/* small underline-on-hover text link */
.go {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--sky);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.go:hover {
  border-bottom-color: var(--sky);
}


/* === 9. BUTTONS ============================================ */
.btn {
  display: inline-block;
  padding: 15px 26px;
  font-size: 13.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  text-decoration: none;
  background: var(--sky);                     /* solid brand blue */
  color: #06121f;
  border-radius: 3px;
}
.btn:hover {
  background: var(--sky-hi);
}

/* outline variant */
.btn-line {
  background: none;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-line:hover {
  background: none;
  border-color: var(--sky);
  color: var(--sky);
}


/* === 9b. TEXT PAGES (services, pricing, contact) =========== */
/* text hero for pages without a photo slider */
.page-hero {
  padding: 158px 0 78px;
}
.page-hero .label {
  display: block;
  margin-bottom: 18px;
}
.page-hero h1 {
  max-width: 15ch;
}
.page-hero h1 .b {
  color: var(--sky);
}
.page-hero .say {
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.6;
  color: var(--mute);
  max-width: 56ch;
}
.page-hero .actions {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* showcase: text + media side by side, alternating with .flip */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.showcase.flip .sc-media {
  order: -1;                                 /* image on the left */
}
.sc-text h2 {
  margin-bottom: 18px;
}
.sc-text p {
  margin-bottom: 18px;
  font-size: 17px;
  color: var(--mute);
  max-width: 46ch;
}
.sc-list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}
.sc-list li {
  position: relative;
  padding: 10px 0 10px 26px;
  border-top: 1px solid var(--line-soft);
  font-size: 16px;
}
.sc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sky);
}
.sc-media img {
  width: 100%;
  display: block;
}

/* the "free first look" band */
.band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 44px;
  border: 1px solid var(--line);
}
.band h2 {
  margin: 12px 0;
}
.band .sub {
  max-width: 58ch;
}
.band .btn {
  flex: none;
}
.band-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: none;
}
.band-cta .btn {
  text-align: center;
}

/* --- pricing tiers --- */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tier {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border: 1px solid var(--line);
}
.tier.feat {
  border-color: var(--sky);                  /* highlight the popular tier */
}
.tflag {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 5px 12px;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #06121f;
  background: var(--sky);
  border-radius: 100px;
}
.tname {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--mute);
}
.tprice {
  margin: 6px 0 2px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -1px;
}
.tprice small {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--mute);
}
.tkind {
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--mute);
}
.tier ul {
  flex: 1;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}
.tier li {
  position: relative;
  padding: 10px 0 10px 24px;
  border-top: 1px solid var(--line-soft);
  font-size: 15px;
}
.tier li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sky);
}
.tier .btn {
  width: 100%;
  text-align: center;
}

/* full-day anchor */
.anchor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 30px;
  border: 1px solid var(--line-soft);
  background: var(--panel);
}
.anchor .at {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 19px;
}
.anchor .at b {
  color: var(--sky);
}
.anchor .ad {
  margin-top: 4px;
  font-size: 15px;
  color: var(--mute);
}
.anchor .btn {
  flex: none;
}

/* add-ons */
.addons h3 {
  margin-bottom: 16px;
  font-size: 18px;
}
.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.addon .an {
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 16px;
}
.addon p {
  font-size: 14.5px;
  color: var(--mute);
}

/* small button variant */
.btn-sm {
  padding: 11px 18px;
  font-size: 12.5px;
}

/* --- contact page: side info + form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 56px;
  align-items: start;
}
.contact-side .cs-block {
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
}
.contact-side .cs-block:first-child {
  padding-top: 0;
  border-top: 0;
}
.cs-block .label {
  display: block;
  margin-bottom: 8px;
}
.cs-block p {
  margin-bottom: 8px;
  font-size: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field {
  margin-bottom: 18px;
}
.form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--mute);
}
.form-field .opt {
  text-transform: none;
  letter-spacing: 0;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 15px;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.form-field textarea {
  min-height: 130px;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sky);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--mute);
  opacity: .7;
}
.hp {
  position: absolute;
  left: -9999px;
}
.link-blue {
  color: var(--sky);
  text-decoration: none;
}
.link-blue:hover {
  text-decoration: underline;
}

/* --- FAQ grid --- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px 56px;
}
.faq-item h3 {
  margin-bottom: 8px;
  font-size: 19px;
  font-weight: 600;
}
.faq-item p {
  font-size: 16px;
  color: var(--mute);
}


/* === 10. FOOTER ============================================ */
footer {
  margin-top: 8px;
  padding: 76px 0 40px;
  background: var(--bg-2);
  color: #c3ccd8;
  border-top: 1px solid var(--line-soft);
}
footer a {
  color: #c3ccd8;
  text-decoration: none;
}
footer a:hover {
  color: var(--sky);
}
.fgrid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 44px;
}
footer h4 {
  margin: 0 0 14px;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--mute);
}
footer ul {
  margin: 0;
  padding: 0;
}
footer li {
  list-style: none;
  padding: 5px 0;
  font-size: 16px;
}
.fbot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--mute);
}


/* === 11. MOBILE (max-width 860px) ========================== */
@media (max-width: 860px) {

  body {
    font-size: 17px;
  }
  .wrap {
    padding: 0 20px;
  }
  section {
    padding: 64px 0;
  }

  /* --- MOBILE HEADER: transparent + thin by default, so the photo shows.
     It turns into the solid dark bar ONLY when the menu is open. --- */
  header.site {
    padding: 13px 0;                          /* thin */
  }
  /* keep the hamburger visible over a bright photo while closed */
  .menu-btn {
    filter: drop-shadow(0 1px 6px rgba(0,0,0,.6));
  }
  /* clicking the menu open turns the whole top bar the dark shade */
  header.site.open {
    background: rgba(8,11,16,.96);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  /* --- mobile menu: hidden until the hamburger opens it --- */
  nav.main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 20px 18px;
    /* ~40% dark navy — semi-transparent so the photo reads through,
       a touch darker than before so the links stay legible */
    background: rgba(10,14,24,.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(120,160,220,.14);
  }
  header.site.open nav.main {
    display: flex;
  }
  header.site.open nav.main a {
    width: 100%;
    padding: 15px 4px;
    font-size: 16px;
    letter-spacing: .3px;
    text-transform: none;
    opacity: 1;
    border-bottom: 1px solid var(--line-soft);
  }
  /* full-width DM button at the bottom of the mobile menu */
  header.site.open nav.main a.ig-cta {
    display: block;
    margin: 16px 4px 6px;
    padding: 15px;
    text-align: center;
    text-transform: none;
    font-weight: 700;
    letter-spacing: .5px;
    background: var(--sky);
    color: #06121f;
    border-radius: 8px;
    border-bottom: 0;
  }
  .menu-btn {
    display: block;
  }

  /* --- phones: the hero "squishes" to a square that fits the photo,
     instead of a tall hero. The WHOLE picture always shows (contain +
     blur-fill bars from the base) — the hero is just smaller, so a wide
     shot only gets small bars and nothing is ever cropped. --- */
  .hero {
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .hero::before {
    height: 90px;                             /* shorter fade under the thin bar */
  }
  .hero h1 {
    font-size: clamp(23px, 6.2vw, 34px);
    max-width: 100%;
    letter-spacing: -.5px;
  }
  .hero .over {
    padding-bottom: 26px;
  }
  .hero .over .say {
    margin-top: 10px;
    font-size: 15px;
    max-width: 100%;
  }
  .lede {
    font-size: 18px;
  }

  /* --- stack the collage, "what I do", and footer --- */
  .intro {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .do-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .do-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cat-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .page-hero {
    padding: 118px 0 56px;
  }
  .page-hero .say {
    font-size: 18px;
  }
  .showcase {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .showcase.flip .sc-media {
    order: 0;                                 /* text first when stacked */
  }
  .band {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 30px;
  }
  .tiers {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .anchor {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .addon-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .collage {
    column-gap: 14px;
    row-gap: 34px;
  }
  .c-a, .c-b, .c-c, .c-d {
    grid-column: 1 / -1;
  }
  .c-d {
    margin-top: 0;
  }
  .fgrid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .fbot {
    flex-direction: column;
  }

  /* lightbox: fewer columns on smaller screens */
  .lb-grid {
    column-count: 2;
    column-gap: 8px;
  }
  .lb-grid img {
    margin-bottom: 8px;
  }
}

@media (max-width: 520px) {
  .lb-grid {
    column-count: 1;
  }
  .hcat {
    left: 20px;
    bottom: 14px;
  }
}
