/* ==========================================================================
   Whitehead Land Services — engraved black & gold
   Design system: all tunable values live in :root
   ========================================================================== */

/* ---------- Self-hosted fonts (no third-party requests) ---------- */
@font-face {
  font-family: "Cinzel"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("../assets/fonts/cinzel-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Cinzel"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("../assets/fonts/cinzel-latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Jost"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("../assets/fonts/jost-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Jost"; font-style: normal; font-weight: 500; font-display: swap;
  src: url("../assets/fonts/jost-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Jost"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("../assets/fonts/jost-latin-600-normal.woff2") format("woff2");
}

:root {
  /* Palette */
  --ink:        #0c0b09;   /* page base */
  --coal:       #16140f;   /* raised panels */
  --coal-2:     #1d1a13;   /* cards */
  --gold:       #c9a24b;   /* brand gold */
  --gold-bright:#e8c878;   /* hover / highlights */
  --bone:       #efe9dc;   /* primary text on dark */
  --stone:      #a89f8c;   /* secondary text */
  --line:       rgba(201, 162, 75, 0.28);

  /* Type */
  --font-display: "Cinzel", serif;
  --font-body:    "Jost", sans-serif;
  --fs-h1: clamp(1.9rem, 1.1rem + 3.6vw, 3.6rem);
  --fs-h2: clamp(1.6rem, 1.2rem + 1.8vw, 2.5rem);
  --fs-h3: clamp(1.15rem, 1rem + 0.6vw, 1.45rem);
  --fs-body: clamp(1rem, 0.96rem + 0.2vw, 1.1rem);

  /* Spacing scale (8px base) */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4.5rem;
  --s-7: clamp(4rem, 3rem + 6vw, 7.5rem);

  /* Misc */
  --radius: 6px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  --ease: cubic-bezier(0.22, 0.7, 0.3, 1);
  --t-fast: 180ms var(--ease);
  --t-med: 280ms var(--ease);
  --container: 1240px;
  --header-h: 94px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 var(--s-2);
  color: var(--bone);
}
h1 { font-size: var(--fs-h1); letter-spacing: 0.02em; }
h2 { font-size: var(--fs-h2); letter-spacing: 0.04em; }
h3 { font-size: var(--fs-h3); letter-spacing: 0.03em; }
p { margin: 0 0 var(--s-2); }
a { color: var(--gold); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--gold-bright); }
ul { padding: 0; margin: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold); color: var(--ink);
  padding: var(--s-1) var(--s-2); z-index: 200; font-weight: 600;
}
.skip-link:focus { left: var(--s-2); top: var(--s-2); }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.5rem);
}

/* Anchor offset under sticky header */
section[id], main[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.7rem;
  min-height: 44px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), transform var(--t-fast),
              box-shadow var(--t-fast);
}
.btn:active { transform: translateY(1px); }
.btn-gold {
  background: linear-gradient(160deg, var(--gold-bright), var(--gold));
  color: #171204;
  box-shadow: 0 6px 20px rgba(201, 162, 75, 0.22);
}
.btn-gold:hover {
  background: linear-gradient(160deg, #f2d68c, var(--gold-bright));
  color: #171204;
  box-shadow: 0 8px 26px rgba(201, 162, 75, 0.35);
}
.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--bone);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn-full { width: 100%; }

/* ---------- Divider: plain gold hairline ---------- */
.rule {
  height: 1px;
  width: clamp(90px, 14vw, 170px);
  margin: var(--s-2) auto var(--s-3);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.rule-left {
  margin-inline: 0;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(12, 11, 9, 0.88);
  backdrop-filter: blur(6px);
  transition: background var(--t-med), box-shadow var(--t-med);
}
.site-header.scrolled {
  background: rgba(12, 11, 9, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 clamp(1.1rem, 4vw, 2.5rem);
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-3);
}
.brand { display: flex; align-items: center; }
.brand-text {
  display: flex; flex-direction: column; align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  line-height: 1.1;
  transition: font-size var(--t-med);
}
.site-header.scrolled .brand-text { font-size: 1.3rem; }
.brand-text em {
  font-style: normal;
  font-weight: 600;
  font-size: 0.46em;
  letter-spacing: 0.4em;
  text-indent: 0.4em; /* balance trailing letterspace so dashes sit even */
  color: var(--gold);
  margin-top: 0.4em;
  display: flex; align-items: center; gap: 0.7em;
}
/* the logo's flanking dashes */
.brand-text em::before, .brand-text em::after {
  content: ""; height: 1px; width: 1.6em; flex: none;
  background: var(--gold);
}
.site-header { transition: background var(--t-med), box-shadow var(--t-med), height var(--t-med); }
.site-header.scrolled .header-inner { height: 74px; }
.header-inner { transition: height var(--t-med); }

.main-nav ul { display: flex; gap: clamp(1rem, 2.5vw, 2.2rem); align-items: center; }
.main-nav a:not(.btn) {
  color: var(--bone); font-weight: 500; font-size: 0.98rem;
  letter-spacing: 0.05em; padding: 0.6rem 0.15rem; position: relative;
}
.main-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0.3rem;
  height: 1px; background: var(--gold);
  transition: right var(--t-med);
}
.main-nav a:not(.btn):hover { color: var(--gold-bright); }
.main-nav a:not(.btn):hover::after { right: 0; }
.main-nav { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.4rem); }
.nav-cta { padding: 0.6rem 1.2rem; }

.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--line); border-radius: var(--radius);
  width: 46px; height: 46px; padding: 12px 10px; cursor: pointer;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span { display: block; height: 2px; background: var(--gold); transition: transform var(--t-med), opacity var(--t-med); }

/* ---------- Hero (split: text panel + framed photo) ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + var(--s-5)) 0 var(--s-6);
  background:
    radial-gradient(900px 480px at 85% 20%, rgba(201, 162, 75, 0.07), transparent 70%),
    radial-gradient(700px 400px at 0% 100%, rgba(201, 162, 75, 0.04), transparent 70%),
    var(--ink);
  overflow: hidden;
}
.hero-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.5rem);
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
  align-items: center;
}
.hero-content { text-align: center; }
.hero-content h1 { margin-bottom: var(--s-2); }
.hero-sub {
  color: var(--stone);
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem);
  max-width: 540px;
  margin: 0 auto var(--s-4);
}
.hero-actions { display: flex; gap: var(--s-2); justify-content: center; flex-wrap: wrap; }

/* Framed photo — full rig always visible, never cropped */
.hero-photo {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
}
.hero-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
/* offset gold keyline behind the photo */
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid rgba(201, 162, 75, 0.35);
  border-radius: var(--radius);
  z-index: -1;
}

.scroll-cue {
  position: absolute; bottom: var(--s-2); left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px; display: grid; place-items: center;
}
.scroll-cue span {
  width: 10px; height: 10px; border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold);
  transform: rotate(45deg); animation: cue 2.2s infinite var(--ease);
}
@keyframes cue { 0%,100% { transform: rotate(45deg) translate(0,0); opacity: .5; } 50% { transform: rotate(45deg) translate(4px,4px); opacity: 1; } }

/* ---------- Sections ---------- */
.section { padding: var(--s-7) 0; position: relative; }
.section-dark {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(201,162,75,0.05), transparent),
    var(--coal);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head { text-align: center; margin-bottom: var(--s-5); }
.eyebrow {
  color: var(--gold); text-transform: uppercase;
  letter-spacing: 0.28em; font-size: 0.8rem; font-weight: 600;
  margin-bottom: var(--s-1);
}

/* ---------- Services ---------- */
.services-grid {
  display: grid; gap: var(--s-2);
  grid-template-columns: 1fr;
}
.service-card {
  background: var(--coal-2);
  border: 1px solid rgba(201,162,75,0.14);
  border-radius: var(--radius);
  padding: var(--s-3);
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  box-shadow: var(--shadow);
}
.service-card h3 { margin-bottom: 0.4rem; }
.service-card p { color: var(--stone); margin: 0; font-size: 0.98rem; }
.service-icon {
  width: 34px; height: 34px; margin-bottom: var(--s-2);
  fill: none; stroke: var(--gold); stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ---------- Work / gallery ---------- */
.work-feature {
  display: grid; gap: var(--s-4);
  grid-template-columns: 1fr;
  align-items: center;
  margin-bottom: var(--s-5);
}
.reel-frame {
  margin: 0; position: relative;
  max-width: 340px; margin-inline: auto;
  border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; background: #000; box-shadow: var(--shadow);
}
.reel-frame video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; }
.reel-frame figcaption {
  font-size: 0.85rem; color: var(--stone); text-align: center;
  padding: 0.7rem var(--s-2); border-top: 1px solid var(--line);
  background: var(--coal-2);
}
.reel-toggle {
  position: absolute; right: 10px; top: 10px;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); cursor: pointer;
  background: rgba(12,11,9,0.65); backdrop-filter: blur(4px);
  display: grid; place-items: center;
  transition: background var(--t-fast);
}
.reel-toggle:hover { background: rgba(12,11,9,0.9); }
.reel-toggle svg { width: 18px; height: 18px; fill: var(--gold); }
.reel-toggle .icon-play { display: none; }
.reel-toggle.paused .icon-play { display: block; }
.reel-toggle.paused .icon-pause { display: none; }

.work-copy h3 { color: var(--bone); }
.work-copy p { color: var(--stone); }
.work-copy .btn { margin-top: var(--s-1); }

.gallery {
  display: grid; gap: var(--s-2);
  grid-template-columns: 1fr;
}
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(201,162,75,0.14);
}
.gallery-item img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  transition: transform 450ms var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-tag {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.2rem var(--s-2) 0.8rem;
  background: linear-gradient(to top, rgba(12,11,9,0.9), transparent);
  color: var(--bone); font-size: 0.88rem; letter-spacing: 0.04em; font-weight: 500;
}

/* ---------- About ---------- */
.about-grid {
  display: grid; gap: var(--s-5);
  grid-template-columns: 1fr;
  align-items: center;
}
.about-copy p { color: var(--stone); }
.about-copy blockquote {
  margin: var(--s-3) 0;
  padding-left: var(--s-2);
  border-left: 2px solid var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + 0.9vw, 1.5rem);
  color: var(--bone);
}
.about-points li {
  color: var(--stone); padding: 0.45rem 0 0.45rem 1.6rem; position: relative;
}
.about-points li::before {
  content: ""; position: absolute; left: 0; top: 1.05em;
  width: 0.9rem; height: 1px; background: var(--gold);
}
.about-points strong { color: var(--bone); }

.about-cta {
  text-align: center;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--s-5) var(--s-3);
  background:
    radial-gradient(400px 200px at 50% 0%, rgba(201,162,75,0.08), transparent),
    var(--coal-2);
}
.about-phone-label { color: var(--stone); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.78rem; margin-bottom: var(--s-1); }
.about-phone {
  display: block;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.6rem, 1.2rem + 2vw, 2.3rem);
  margin-bottom: var(--s-3); color: var(--gold);
}
.about-phone:hover { color: var(--gold-bright); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid; gap: var(--s-5);
  grid-template-columns: 1fr;
  align-items: start;
}
.contact-info p { color: var(--stone); }
.contact-details li { padding: var(--s-2) 0; border-bottom: 1px solid rgba(201,162,75,0.14); }
.detail-label {
  display: block; color: var(--stone); text-transform: uppercase;
  letter-spacing: 0.2em; font-size: 0.72rem; margin-bottom: 0.2rem;
}
.contact-details a { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; }

.contact-form {
  background: var(--coal-2);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 2.4rem);
}
.field { margin-bottom: var(--s-3); }
.field-row { display: grid; gap: var(--s-3) var(--s-2); grid-template-columns: 1fr; }
.field label {
  display: block; font-weight: 500; letter-spacing: 0.04em;
  margin-bottom: 0.45rem; font-size: 0.95rem;
}
.optional { color: var(--stone); font-weight: 400; font-size: 0.85em; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px;
  background: var(--ink);
  border: 1px solid rgba(201,162,75,0.22);
  border-radius: var(--radius);
  color: var(--bone);
  font: inherit;
  padding: 0.7rem 0.9rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field textarea { resize: vertical; min-height: 110px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23c9a24b' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.9rem center;
  padding-right: 2.4rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,75,0.18);
}
.field.invalid input, .field.invalid select, .field.invalid textarea {
  border-color: #d06a5a;
  box-shadow: 0 0 0 3px rgba(208,106,90,0.15);
}
.field-error { color: #e2907f; font-size: 0.86rem; margin: 0.4rem 0 0; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; margin: 0; }

.btn[disabled] { opacity: 0.6; cursor: wait; }

/* ---------- Footer ---------- */
.site-footer { padding: var(--s-6) 0 var(--s-3); border-top: 1px solid var(--line); }
.footer-grid {
  display: grid; gap: var(--s-4);
  grid-template-columns: 1fr;
  margin-bottom: var(--s-4);
}
.footer-brand .brand-text { font-size: 1.25rem; align-items: flex-start; }
.footer-brand p { color: var(--stone); margin: 0; line-height: 1.5; }
.footer-nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a { color: var(--stone); }
.footer-nav a:hover { color: var(--gold-bright); }
.footer-contact a { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; }
.footer-contact p { color: var(--stone); margin: 0.3rem 0 0; font-size: 0.9rem; }
.footer-legal {
  text-align: center; color: var(--stone); font-size: 0.85rem;
  border-top: 1px solid rgba(201,162,75,0.12); padding-top: var(--s-3); margin: 0;
  max-width: var(--container); margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.5rem);
}

/* ---------- Modal ---------- */
.modal-backdrop[hidden] { display: none; }
.modal-backdrop {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(6, 5, 4, 0.7);
  backdrop-filter: blur(4px);
  display: grid; place-items: center;
  padding: var(--s-3);
  opacity: 0; transition: opacity var(--t-med);
}
.modal-backdrop.open { opacity: 1; }
.modal {
  position: relative;
  background: var(--coal-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 440px; width: 100%;
  padding: var(--s-5) var(--s-4) var(--s-4);
  text-align: center;
  transform: translateY(14px) scale(0.97);
  transition: transform var(--t-med);
}
.modal-backdrop.open .modal { transform: translateY(0) scale(1); }
.modal h3 { margin-bottom: var(--s-1); }
.modal p { color: var(--stone); }
.modal-actions { margin-top: var(--s-3); }
.modal-x {
  position: absolute; top: 10px; right: 10px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  color: var(--stone); font-size: 1.5rem; line-height: 1;
  border-radius: var(--radius);
  transition: color var(--t-fast);
}
.modal-x:hover { color: var(--gold-bright); }

/* ---------- Toasts ---------- */
.toast-region {
  position: fixed; z-index: 160;
  bottom: var(--s-3); left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; gap: var(--s-1);
  width: min(420px, calc(100vw - 2rem));
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  background: var(--coal-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--s-2) var(--s-3);
  font-size: 0.95rem;
  transform: translateY(16px); opacity: 0;
  transition: transform var(--t-med), opacity var(--t-med);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.error { border-left-color: #d06a5a; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive — mobile-first, layering up
   ========================================================================== */

/* Mobile nav (≤ 800px uses the drawer) */
@media (max-width: 800px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(320px, 85vw);
    background: rgba(14, 13, 10, 0.98);
    border-left: 1px solid var(--line);
    flex-direction: column; align-items: flex-start;
    padding: calc(var(--header-h) + var(--s-3)) var(--s-4) var(--s-4);
    transform: translateX(100%);
    transition: transform var(--t-med);
    visibility: hidden;
  }
  .main-nav.open { transform: translateX(0); visibility: visible; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: var(--s-2); width: 100%; }
  .main-nav a:not(.btn) { font-size: 1.15rem; display: block; padding: 0.55rem 0; }
  .nav-cta { margin-top: var(--s-3); width: 100%; }
  body.nav-open { overflow: hidden; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
  :root { --header-h: 78px; }
  .brand-text { font-size: 1.15rem; }
  .site-header.scrolled .brand-text { font-size: 1.02rem; }
}

/* Tablet: 641px+ */
@media (min-width: 641px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-nav { flex-direction: row; gap: var(--s-3); flex-wrap: wrap; }
}

/* Laptop: 1025px+ */
@media (min-width: 1025px) {
  .hero-inner { grid-template-columns: 1fr 1.15fr; gap: var(--s-6); min-height: calc(88svh - var(--header-h)); }
  .hero-content { text-align: left; }
  .hero-sub { margin-inline: 0; }
  .hero-actions { justify-content: flex-start; }
  .hero-content .eyebrow { margin-bottom: var(--s-2); }

  .services-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
  .gallery { grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
  .work-feature { grid-template-columns: 360px 1fr; gap: var(--s-6); }
  .reel-frame { margin-inline: 0; }
  .about-grid { grid-template-columns: 1.4fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1.3fr; gap: var(--s-6); }
}

/* Large desktop: 1441px+ */
@media (min-width: 1441px) {
  :root { --container: 1360px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .scroll-cue span { animation: none; }
}
