/* ============================================================
   Timothy Fox Photography — Design System
   Modern editorial aesthetic · warm "Fox" palette
   ============================================================ */

:root {
  --ink:        #15110d;   /* near-black, warm */
  --ink-soft:   #2b251f;
  --paper:      #faf7f2;   /* warm off-white */
  --paper-2:    #f1ebe2;   /* subtle panel */
  --muted:      #6f675d;   /* secondary text */
  --line:       rgba(21,17,13,.12);
  --accent:     #c06a35;   /* foxy terracotta */
  --accent-2:   #9c5226;   /* deep amber */
  --gold:       #c79a4a;
  --white:      #ffffff;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --shadow: 0 18px 50px -20px rgba(21,17,13,.35);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; }
.display { font-size: clamp(2.6rem, 7vw, 5.2rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
p { color: var(--ink-soft); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--muted); line-height: 1.7; }

.eyebrow {
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--gold); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 10vw, 130px); }
.section--tight { padding-block: clamp(48px, 7vw, 90px); }
.center { text-align: center; }
.measure { max-width: 62ch; }
.mx-auto { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  padding: .92em 1.7em;
  font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--accent); color: #fff; }
.btn--solid:hover { background: var(--accent-2); }
.btn--ghost { border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--light { border: 1px solid rgba(255,255,255,.4); color: #fff; }
.btn--light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 18px;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled,
.site-header.solid {
  background: rgba(17,13,10,.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
  padding-block: 10px;
}
/* Top scrim: keeps the nav readable over any hero image while it's transparent. */
.site-header::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 150px; z-index: -1;
  background: linear-gradient(180deg, rgba(8,6,4,.78) 0%, rgba(8,6,4,.42) 42%, rgba(8,6,4,0) 100%);
  pointer-events: none; transition: opacity .4s var(--ease);
}
.site-header.scrolled::before,
.site-header.solid::before { opacity: 0; }
/* Extra legibility over bright spots, only while transparent over the hero. */
.site-header:not(.scrolled):not(.solid) .nav-links > li > a { text-shadow: 0 1px 10px rgba(0,0,0,.5); }
.site-header:not(.scrolled):not(.solid) .brand-logo { filter: drop-shadow(0 1px 8px rgba(0,0,0,.55)); }
.site-header:not(.scrolled):not(.solid) .nav-toggle span { box-shadow: 0 0 6px rgba(0,0,0,.5); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; line-height: 0; position: relative; z-index: 110; }
.brand-logo { height: 34px; width: auto; display: block; }
.site-header.scrolled .brand-logo, .site-header.solid .brand-logo { height: 30px; }
/* nav text is always light (header is dark or floats over dark imagery) */
.nav-toggle span { background: #fff; }

.nav-links { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 30px); }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: .8rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  padding: 8px 2px; display: inline-block; position: relative; color: #fff;
  transition: color .25s var(--ease);
}
.nav-links > li:not(.nav-cta) > a::after {
  content: ""; position: absolute; left: 0; bottom: 2px; height: 1px; width: 0;
  background: var(--accent); transition: width .3s var(--ease);
}
.nav-links > li:not(.nav-cta) > a:hover::after,
.nav-links > li:not(.nav-cta).current > a::after { width: 100%; }
.nav-links > li:not(.nav-cta) > a:hover { color: var(--accent); }

/* dropdown */
.has-drop > a .caret { display: inline-block; margin-left: .3em; transition: transform .3s var(--ease); font-size: .7em; }
.has-drop:hover > a .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 250px; background: var(--white); border: 1px solid var(--line); border-radius: 8px;
  box-shadow: var(--shadow); padding: 10px;
  opacity: 0; visibility: hidden; transition: opacity .28s var(--ease), transform .28s var(--ease);
}
/* invisible bridge across the gap so hover isn't lost moving from "Services" to the menu */
.dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block; padding: 9px 14px; border-radius: 6px; font-size: .9rem; color: var(--ink-soft);
  transition: background .2s, color .2s;
}
.dropdown a:hover { background: var(--paper-2); color: var(--accent); }
.dropdown a[aria-current="page"] { background: var(--paper-2); color: var(--accent); font-weight: 600; }
.nav-cta { margin-left: 10px; }
.nav-cta .btn { padding: .82em 2.1em; letter-spacing: .14em; }

/* hamburger */
.nav-toggle { display: none; width: 42px; height: 42px; border: 0; background: none; position: relative; }
.nav-toggle span {
  position: absolute; left: 9px; width: 24px; height: 2px; background: #fff;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.nav-toggle span:nth-child(1){ top: 15px; }
.nav-toggle span:nth-child(2){ top: 21px; }
.nav-toggle span:nth-child(3){ top: 27px; }
body.menu-open .nav-toggle span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2){ opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 74vh; display: grid; align-items: center; color: #fff; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(95deg, rgba(8,6,4,.80) 0%, rgba(8,6,4,.55) 42%, rgba(8,6,4,.18) 72%, rgba(8,6,4,.05) 100%),
    linear-gradient(180deg, rgba(8,6,4,.45) 0%, rgba(8,6,4,.22) 38%, rgba(8,6,4,.62) 100%);
}
.hero__inner { padding-block: 96px 60px; max-width: 880px; }
.hero h1 { color: #fff; margin-top: .35em; }
.hero .lead { color: rgba(255,255,255,.86); margin-top: 1.1em; max-width: 56ch; }
.hero__actions { margin-top: 2.2em; display: flex; flex-wrap: wrap; gap: 14px; }
/* page hero (interior pages) */
.page-hero { position: relative; color: #fff; isolation: isolate; display: grid; align-items: end;
  min-height: 62vh; padding-bottom: clamp(40px, 6vw, 80px); }
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content:""; position:absolute; inset:0; z-index:-1;
  background: linear-gradient(180deg, rgba(10,8,6,.45), rgba(10,8,6,.78)); }
.page-hero h1 { color: #fff; margin-top: .3em; max-width: 18ch; }
.page-hero .lead { color: rgba(255,255,255,.85); margin-top: 1em; }
.crumbs { font-size: .78rem; letter-spacing: .04em; color: rgba(255,255,255,.7); margin-bottom: 1.4em; }
.crumbs a:hover { color: #fff; }

/* ============================================================
   SECTIONS / COMPONENTS
   ============================================================ */
.section-head { max-width: 60ch; margin-bottom: clamp(34px, 5vw, 60px); }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: .35em; }
.section-head p { margin-top: .9em; }

/* two-column intro */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(30px, 6vw, 80px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
.split__media .badge {
  position: absolute; bottom: -22px; right: -10px; background: var(--ink); color: #fff;
  padding: 16px 22px; border-radius: var(--radius); box-shadow: var(--shadow);
}
.split__media .badge b { font-family: var(--serif); font-size: 1.8rem; display: block; line-height: 1; }
.split__media .badge span { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.7); }

/* services grid */
#work { scroll-margin-top: 84px; }
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: clamp(14px, 1.6vw, 22px); }
/* two co-equal signature services, shown larger */
.svc-grid--featured { grid-template-columns: repeat(2, 1fr); margin-bottom: clamp(16px, 2vw, 26px); }
.svc-grid--featured .svc-card { aspect-ratio: 16/10; }
@media (max-width: 680px){ .svc-grid--featured { grid-template-columns: 1fr; } .svc-grid--featured .svc-card { aspect-ratio: 4/3; } }
.svc-card--featured .svc-card__body h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.svc-tag {
  display: inline-block; font-size: .64rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink); background: var(--gold); padding: 5px 11px; border-radius: 100px; margin-bottom: 12px;
}
.svc-more-label {
  text-align: center; font-size: .74rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin: clamp(28px, 4vw, 46px) 0 clamp(18px, 2.4vw, 28px);
  display: flex; align-items: center; gap: 16px; justify-content: center;
}
.svc-more-label::before, .svc-more-label::after { content: ""; height: 1px; width: 48px; background: var(--line); }
.svc-card {
  position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 3/4;
  display: grid; align-items: end; isolation: isolate; color: #fff;
}
.svc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transition: transform .9s var(--ease); }
.svc-card::after { content:""; position:absolute; inset:0; z-index:-1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(10,8,6,.82) 100%); transition: background .4s; }
.svc-card:hover img { transform: scale(1.06); }
.svc-card__body { padding: 26px; }
.svc-card__body h3 { color:#fff; }
.svc-card__body .more { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
  margin-top: .5em; display: inline-flex; align-items: center; gap: .4em; opacity: 0; transform: translateY(6px);
  transition: opacity .4s var(--ease), transform .4s var(--ease); }
.svc-card:hover .more { opacity: 1; transform: translateY(0); }

/* feature block (alternating image + copy) */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.feature + .feature { margin-top: clamp(56px, 8vw, 110px); }
.feature--rev .feature__media { order: 2; }
.feature__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.feature__body h3 { margin: .4em 0 .55em; }
.feature__body .btn { margin-top: 1.4em; }

/* Video page — behind-the-scenes production shots + pillars */
.prod-shots { display: grid; grid-template-columns: 1.18fr 1fr; gap: clamp(14px, 2vw, 22px); align-items: start; margin-top: clamp(28px, 4vw, 44px); }
.prod-shots figure { margin: 0; }
.prod-shots img { width: 100%; display: block; border-radius: var(--radius); box-shadow: var(--shadow); }
.pillars { list-style: none; margin: clamp(34px, 5vw, 56px) 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 3vw, 34px); }
.pillars li { display: flex; gap: 14px; align-items: flex-start; }
.pillars__ico { flex: none; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--paper-2); color: var(--accent); border: 1px solid var(--line); }
.pillars b { font-family: var(--serif); font-size: 1.12rem; display: block; line-height: 1.2; margin-bottom: .2em; }
.pillars span { font-size: .92rem; color: var(--ink-2); line-height: 1.4; display: block; }
@media (max-width: 760px) {
  .prod-shots { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr 1fr; gap: 22px; }
}
@media (max-width: 460px) { .pillars { grid-template-columns: 1fr; } }

/* ============================================================
   GALLERY (masonry) + LIGHTBOX
   ============================================================ */
.gallery { columns: 4; column-gap: 0; line-height: 0; }
.gallery .shot { break-inside: avoid; position: relative; overflow: hidden; background: var(--paper-2);
  cursor: zoom-in; display: block; }
.gallery .shot img { width: 100%; display: block; vertical-align: top; transition: transform .8s var(--ease), filter .5s; }
.gallery .shot::after { content:""; position:absolute; inset:0; background: rgba(21,17,13,.0); transition: background .4s; }
.gallery .shot:hover img { transform: scale(1.05); }
.gallery .shot:hover::after { background: rgba(21,17,13,.12); }

@media (max-width: 1100px){ .gallery { columns: 3; } }
@media (max-width: 760px){ .gallery { columns: 2; } }

/* lightbox */
.lb { position: fixed; inset: 0; z-index: 200; background: rgba(12,9,7,.94); display: none;
  align-items: center; justify-content: center; padding: 4vw; }
.lb.open { display: flex; }
.lb__img { max-width: 92vw; max-height: 86vh; border-radius: 2px; box-shadow: 0 30px 80px rgba(0,0,0,.6);
  opacity: 0; transform: scale(.97); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.lb.show .lb__img { opacity: 1; transform: scale(1); }
.lb__cap { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.8);
  font-size: .85rem; letter-spacing: .03em; }
.lb__btn { position: absolute; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  color: #fff; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.4rem; transition: background .25s, transform .25s; }
.lb__btn:hover { background: rgba(255,255,255,.2); }
.lb__close { top: 22px; right: 22px; }
.lb__prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb__next { right: 18px; top: 50%; transform: translateY(-50%); }
.lb__prev:hover { transform: translateY(-50%) scale(1.08); }
.lb__next:hover { transform: translateY(-50%) scale(1.08); }
@media (max-width: 600px){ .lb__prev{ left: 8px } .lb__next{ right: 8px } .lb__btn{ width:44px; height:44px } }

/* ============================================================
   VIDEO GRID
   ============================================================ */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: clamp(18px,2vw,28px); }
.video-card { background: var(--ink); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.video-card__frame { position: relative; aspect-ratio: 16/9; background:#000; cursor: pointer; }
.video-card__frame img { width:100%; height:100%; object-fit: cover; opacity:.85; transition: opacity .4s, transform .8s var(--ease); }
.video-card__frame:hover img { opacity: 1; transform: scale(1.04); }
.video-card__frame .play {
  position: absolute; inset: 0; margin: auto; width: 72px; height: 72px; border-radius: 50%;
  background: rgba(192,106,53,.92); display: grid; place-items: center; transition: transform .3s var(--ease), background .3s;
}
.video-card__frame:hover .play { transform: scale(1.1); background: var(--accent); }
.video-card__frame .play::before { content:""; border-left: 18px solid #fff; border-top: 11px solid transparent; border-bottom: 11px solid transparent; margin-left: 4px; }
.video-card iframe { width: 100%; aspect-ratio: 16/9; border: 0; display: block; }
.video-card__cap { padding: 16px 20px; color:#fff; font-family: var(--serif); font-size: 1.08rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(16px,2vw,26px); }
.quote { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px;
  position: relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.quote .mark { font-family: var(--serif); font-size: 3.6rem; line-height: .6; color: var(--accent); opacity: .35; }
.quote p { font-style: italic; margin: .2em 0 1.1em; color: var(--ink-soft); }
.quote .who { font-weight: 600; font-size: .95rem; }
.quote .role { font-size: .82rem; color: var(--muted); }
.stars { color: var(--gold); letter-spacing: .12em; margin-bottom: .8em; font-size: .9rem; }

/* google reviews widget mount */
.reviews-widget { max-width: 1120px; margin-inline: auto; }
.reviews-widget__placeholder {
  text-align: center; border: 1px dashed var(--line); border-radius: var(--radius);
  padding: clamp(40px, 6vw, 76px) 24px; color: var(--muted); background: var(--white); line-height: 1.9;
}
.reviews-widget__placeholder .rw-stars { display: block; color: var(--gold); font-size: 1.5rem; letter-spacing: .25em; margin-bottom: 14px; }
.reviews-widget__placeholder a { color: var(--accent); font-weight: 600; }

/* client marquee / grid */
.clients-band { background: var(--ink); color: #fff; }
.clients-cols { columns: 4; column-gap: 40px; font-size: .94rem; }
.clients-cols li { padding: 5px 0; color: rgba(255,255,255,.72); break-inside: avoid; }
@media (max-width: 900px){ .clients-cols { columns: 2; } }
@media (max-width: 520px){ .clients-cols { columns: 1; } }

/* logo strip */
.logo-panel { background: var(--ink); border-radius: 8px; padding: clamp(40px,6vw,64px) clamp(24px,5vw,56px); box-shadow: var(--shadow); }
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(26px,5vw,64px); }
.logos img { height: 38px; width: auto; object-fit: contain; opacity: .55; filter: grayscale(1);
  transition: opacity .3s, filter .3s; }
.logos img:hover { opacity: 1; filter: grayscale(0); }

/* ============================================================
   BLOG
   ============================================================ */
.posts { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: clamp(20px,2.4vw,34px); }
.post { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.post:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post__media { aspect-ratio: 3/2; overflow: hidden; }
.post__media img { width:100%; height:100%; object-fit: cover; transition: transform .8s var(--ease); }
.post:hover .post__media img { transform: scale(1.05); }
.post__body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.post__date { font-size: .73rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.post__body h3 { font-size: 1.28rem; margin: .5em 0 .5em; }
.post__body p { font-size: .95rem; color: var(--muted); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,70px); align-items: start; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; font: inherit; font-size: .98rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(192,106,53,.14);
}
.field textarea { min-height: 150px; resize: vertical; }
.contact-info li { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.contact-info .ico { color: var(--accent); flex: none; margin-top: 2px; }
.contact-info .k { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.contact-info .v { font-size: 1.05rem; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 10px; }
.form-status { margin-top: 14px; padding: 12px 16px; border-radius: var(--radius); font-size: .92rem; display: none; }
.form-status.ok { display: block; background: #e9f3ea; color: #1f5b2c; border: 1px solid #bcdcc0; }
.form-status.err { display: block; background: #fbeaea; color: #8a2b2b; border: 1px solid #e6bcbc; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { position: relative; isolation: isolate; color: #fff; text-align: center; overflow: hidden; }
.cta-band img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; z-index:-2; }
.cta-band::after { content:""; position:absolute; inset:0; z-index:-1; background: rgba(12,9,7,.7); }
.cta-band h2 { color:#fff; }
.cta-band p { color: rgba(255,255,255,.82); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding-top: clamp(56px,8vw,90px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(28px,5vw,60px); padding-bottom: 50px; }
.site-footer h4 { color:#fff; font-family: var(--sans); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer .footer-logo { height: 42px; width: auto; margin-bottom: 4px; }
.site-footer .f-brand p { color: rgba(255,255,255,.6); margin-top: 12px; max-width: 38ch; font-size: .95rem; }
.f-links a, .f-contact a, .f-contact span { display:block; padding: 6px 0; color: rgba(255,255,255,.7); font-size: .95rem; transition: color .2s; }
.f-links a:hover, .f-contact a:hover { color: var(--gold); }
.socials { display:flex; gap: 12px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border:1px solid rgba(255,255,255,.2); display:grid; place-items:center; color:#fff; transition: background .25s, border-color .25s, transform .25s; }
.socials a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; display:flex; flex-wrap:wrap; gap:10px; justify-content: space-between; font-size: .82rem; color: rgba(255,255,255,.5); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce){
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   MOBILE NAV + RESPONSIVE
   ============================================================ */
@media (max-width: 940px){
  .nav-toggle { display: block; z-index: 110; }
  .nav-cta { display: none; }
  .nav-links {
    position: fixed; inset: 0; z-index: 105; flex-direction: column; justify-content: center; align-items: flex-start;
    gap: 4px; padding: 14vh var(--gutter) 8vh; background: var(--ink);
    transform: translateX(100%); transition: transform .5s var(--ease); overflow-y: auto;
  }
  body.menu-open .nav-links { transform: translateX(0); }
  body.menu-open { overflow: hidden; }
  .nav-links > li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.12); }
  .nav-links > li > a { display: block; padding: 16px 0; font-size: 1.05rem; color: #fff !important; }
  .nav-links > li > a::after { display: none; }
  /* mobile dropdown */
  .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: 0;
    background: transparent; padding: 0 0 10px; min-width: 0; display: none;
  }
  .has-drop.open .dropdown { display: block; }
  .dropdown::before { display: none; }
  /* neutralize the desktop hover/focus transform on mobile */
  .has-drop .dropdown,
  .has-drop:hover .dropdown,
  .has-drop:focus-within .dropdown { transform: none; left: auto; }
  .dropdown a { padding: 10px 14px; color: rgba(255,255,255,.62); }
  .dropdown a:hover { background: rgba(255,255,255,.06); color: var(--gold); }
  .dropdown a[aria-current="page"] { background: rgba(255,255,255,.06); color: var(--gold); }
  .has-drop > a .caret { float: right; }
  .has-drop.open > a .caret { transform: rotate(180deg); }
}

@media (max-width: 860px){
  .split, .feature, .feature--rev .feature__media, .contact-grid { grid-template-columns: 1fr; }
  .feature--rev .feature__media { order: 0; }
  .split--reverse .split__media { order: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .split__media .badge { right: 14px; }
}
