/* Daniel Lawn & Landscaping, LLC. Fairmont, West Virginia.
   Self-hosted type, no external requests, no libraries. */

/* ------------------------------------------------------------------ fonts */
@font-face {
  font-family: "Oswald";
  src: url("/fonts/oswald-latin-var.woff2") format("woff2");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("/fonts/figtree-latin-var.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

/* ------------------------------------------------------------------ tokens */
:root {
  --ink:        #0D1B2A;
  --ink-2:      #0A1724;
  --ink-3:      #060F1A;
  --forest:     #10291C;
  --cream:      #F5F3EF;
  --cream-2:    #ECE8E0;
  --orange:     #F4821F;
  --orange-d:   #A85009;
  --green:      #1D5633;
  --green-l:    #3D8E4E;

  --on-dark:    #EFF2F5;
  --dim-dark:   #AEBAC6;
  --on-light:   #131F2A;
  --dim-light:  #4C5A67;
  --rule-dark:  rgba(255,255,255,.14);
  --rule-light: rgba(13,27,42,.15);

  --display: "Oswald", "Arial Narrow", "Haettenschweiler", sans-serif;
  --body: "Figtree", "Segoe UI", system-ui, -apple-system, sans-serif;

  --wrap: 1200px;
  --pad: clamp(20px, 5vw, 56px);
}

/* ------------------------------------------------------------------ base */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--on-light);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }
img { display: block; height: auto; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.005em;
  margin: 0;
}

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

.wrap { width: min(var(--wrap), 100%); margin: 0 auto; padding: 0 var(--pad); }

.vh {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 2px;
}

.skip {
  position: fixed; left: 12px; top: -80px; z-index: 90;
  background: var(--orange); color: #1A0E02;
  font-family: var(--display); font-size: 15px; letter-spacing: .04em;
  text-transform: uppercase; text-decoration: none;
  padding: 10px 18px; border-radius: 4px;
  transition: top .16s ease;
}
.skip:focus { top: 12px; }
/* fixed element, so its ring must read on any ground it can cross */
.skip:focus-visible {
  outline: 3px solid #FFFFFF;
  outline-offset: 3px;
  box-shadow: 0 0 0 3px #0D1B2A;
}

/* ------------------------------------------------------------ editorial bits */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display); font-size: 14px; font-weight: 500;
  letter-spacing: .17em; text-transform: uppercase;
  color: var(--dim-light);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 3px; background: var(--orange);
  display: block; flex: none;
}
.eyebrow-light { color: #C6D1DB; }

.sec-h {
  font-size: clamp(31px, 5vw, 52px);
  max-width: 20ch;
  margin: 0 0 34px;
}
.sec-h-light { color: var(--on-dark); }

/* ------------------------------------------------------------------ buttons */
.btn {
  display: inline-block;
  font-family: var(--display); font-size: 17px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
  padding: 15px 26px; border: 2px solid transparent; border-radius: 3px;
  transition: background-color .17s ease, color .17s ease, border-color .17s ease;
}
.btn-solid { background: var(--orange); color: #17120A; border-color: var(--orange); }
.btn-solid:hover { background: #FF9433; border-color: #FF9433; }
.btn-ghost { color: var(--on-dark); border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

/* ------------------------------------------------- preview banner (furniture) */
.pbar {
  background: #071019;
  border-bottom: 3px solid var(--orange);
  color: #E4E9EE;
}
.pbar-in {
  width: min(var(--wrap), 100%); margin: 0 auto; padding: 14px var(--pad);
  display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center;
  justify-content: space-between;
}
.pbar-text { margin: 0; font-size: 14.5px; line-height: 1.5; max-width: 62ch; }
.pbar-acts { margin: 0; display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; }
.pbar-btn {
  display: inline-block;
  font-family: var(--display); font-size: 14px; font-weight: 500;
  letter-spacing: .07em; text-transform: uppercase; text-decoration: none;
  background: var(--orange); color: #17120A;
  padding: 10px 18px; border-radius: 3px; border: 2px solid var(--orange);
  line-height: 1.2;
}
.pbar-btn:hover { background: #FF9433; border-color: #FF9433; }
.pbar-alt { font-size: 14px; color: #D3DBE3; text-decoration: underline; }

/* ------------------------------------------------------------------ header */
.head {
  position: sticky; top: 0; z-index: 60;
  background: var(--ink);
  border-bottom: 1px solid var(--rule-dark);
}
.head-in {
  width: min(var(--wrap), 100%); margin: 0 auto; padding: 12px var(--pad);
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px 20px;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand-mark { flex: none; }
.brand-words { display: block; }
.brand-name {
  display: block; font-family: var(--display); font-weight: 600;
  font-size: 20px; letter-spacing: .01em; color: var(--on-dark); line-height: 1.1;
}
.brand-sub {
  display: block; font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--dim-dark); margin-top: 3px;
}
.nav { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 26px; }
.nav a {
  font-family: var(--display); font-size: 15.5px; font-weight: 400;
  letter-spacing: .08em; text-transform: uppercase;
  color: #D5DDE5; text-decoration: none; padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: #FFFFFF; border-bottom-color: var(--orange); }
.nav-call {
  color: var(--orange) !important; border: 2px solid rgba(244,130,31,.6) !important;
  padding: 8px 15px !important; border-radius: 3px;
}
.nav-call:hover { background: rgba(244,130,31,.13); }
.burger { display: none; }

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative; overflow: hidden;
  min-height: min(88vh, 800px);
  display: flex; align-items: flex-end;
  background: var(--ink);
}
.hero-photo { position: absolute; inset: 0; overflow: hidden; }
.hero-photo::before {
  content: ""; position: absolute; inset: -3%;
  background: #16321F url("/assets/img/stock-mowing.jpg") center 54% / cover no-repeat;
  animation: drift 30s ease-in-out infinite alternate;
}
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(103deg, rgba(6,13,22,.94) 0%, rgba(6,13,22,.84) 36%, rgba(6,13,22,.36) 70%, rgba(6,13,22,.22) 100%),
    linear-gradient(to top, rgba(6,13,22,.78), rgba(6,13,22,0) 45%);
}
@keyframes drift {
  from { transform: scale(1) translate3d(0,0,0); }
  to   { transform: scale(1.09) translate3d(-1.6%, -1.2%, 0); }
}
.hero-in {
  position: relative; z-index: 2;
  width: min(var(--wrap), 100%); margin: 0 auto;
  padding: 150px var(--pad) 74px;
}
.hero-h {
  font-size: clamp(42px, 7.6vw, 76px);
  line-height: 0.99;
  color: #FFFFFF;
  max-width: 15ch;
  margin: 0 0 22px;
  text-wrap: balance;
}
.hero-h-b { display: block; color: #CFE3F1; }
.hero-h .w { display: inline-block; }
.hero-sub {
  font-size: clamp(17px, 2.2vw, 21px);
  color: #DCE4EB; max-width: 46ch; margin: 0 0 30px;
}
.hero-acts { display: flex; flex-wrap: wrap; gap: 14px; margin: 0 0 40px; }
.hero-card {
  display: inline-block;
  background: rgba(9,18,29,.92);
  border: 1px solid rgba(255,255,255,.2);
  border-left: 4px solid var(--orange);
  padding: 15px 22px; border-radius: 3px;
}
.hero-card-k {
  margin: 0 0 3px; font-family: var(--display); font-size: 15px;
  letter-spacing: .13em; text-transform: uppercase; color: var(--orange);
}
.hero-card-v { margin: 0; font-size: 15.5px; color: #DEE6ED; }

/* ------------------------------------------------------------- the two halves */
.season { background: var(--cream); padding: clamp(64px, 8vw, 108px) 0; }
.season-grid {
  display: grid; gap: 26px;
  grid-template-columns: 1fr 1fr;
}
.half {
  position: relative; overflow: hidden;
  padding: 38px 34px 34px; border-radius: 4px;
  color: var(--on-dark);
}
.half::after {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.half-green { background: var(--green); }
.half-white { background: var(--ink); }
.half-k {
  font-family: var(--display); font-size: 14px; letter-spacing: .18em;
  text-transform: uppercase; margin: 0 0 14px; color: var(--orange);
}
.half-green .half-k { color: #FFC489; }
.half-h { font-size: clamp(23px, 2.6vw, 30px); margin: 0 0 16px; color: #FFFFFF; }
.half-p { font-size: 17px; color: #DCE4EA; margin: 0 0 22px; }
.half-list {
  list-style: none; margin: 0; padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,.2);
  display: flex; flex-wrap: wrap; gap: 8px 10px;
}
.half-list li {
  font-family: var(--display); font-size: 14px; letter-spacing: .07em;
  text-transform: uppercase; color: #E6ECF1;
  border: 1px solid rgba(255,255,255,.28);
  padding: 6px 12px; border-radius: 999px;
}
.season-note {
  margin: 30px 0 0; font-size: 19px; color: var(--dim-light);
  max-width: 52ch;
}

/* ------------------------------------------------------------------ services */
.work {
  background: var(--ink-2);
  padding: clamp(64px, 8vw, 108px) 0;
  background-image:
    radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 22px 22px;
}
.cards {
  display: grid; gap: 20px;
  grid-template-columns: 1.35fr 1fr 1fr;
}
.card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 4px;
  padding: 30px 28px 32px;
  color: var(--on-dark);
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}
.card:hover { border-color: rgba(244,130,31,.55); background: rgba(255,255,255,.075); transform: translateY(-3px); }
.card-lead {
  grid-row: span 2; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
/* the mark's blade, ghosted across the lead card */
.card-lead::before {
  content: ""; position: absolute; left: -25%; right: -25%; top: 14%; height: 30%;
  background: linear-gradient(180deg, rgba(244,130,31,.16), rgba(244,130,31,.03));
  transform: rotate(-15deg); pointer-events: none;
}
.card-lead::after {
  content: ""; position: absolute; left: -25%; right: -25%; bottom: -18%; height: 46%;
  background: linear-gradient(180deg, rgba(61,142,78,.22), rgba(61,142,78,.04));
  transform: rotate(-15deg); pointer-events: none;
}
.card-lead > * { position: relative; z-index: 1; }
.card-ico {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(244,130,31,.16); color: var(--orange);
  margin-bottom: 20px;
}
.card-lead .card-ico { width: 66px; height: 66px; }
.card-ico svg { width: 27px; height: 27px; }
.card-lead .card-ico svg { width: 32px; height: 32px; }
.card-h { font-size: 22px; margin: 0 0 10px; color: #FFFFFF; }
.card-lead .card-h { font-size: clamp(26px, 3vw, 34px); }
.card-p { font-size: 16.5px; color: #C3CDD7; margin: 0; }
.card-lead .card-p { font-size: 18px; }

/* ---------------------------------------------------------- around a property */
.site-sec { background: var(--cream-2); padding: clamp(64px, 8vw, 108px) 0; }
.shots {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 232px;
}
.shot {
  position: relative; margin: 0; overflow: hidden; border-radius: 4px;
  background: #1D3324;
}
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 34px 18px 14px;
  background: linear-gradient(to top, rgba(6,13,22,.92), rgba(6,13,22,0));
  color: #F2F5F8;
}
.cap-h {
  display: block; font-family: var(--display); font-size: 18px;
  letter-spacing: .07em; text-transform: uppercase;
}
.cap-note { display: block; font-size: 12.5px; line-height: 1.5; color: #C9D3DC; margin-top: 3px; }
.shot-a { grid-column: 1 / 3; grid-row: 1; }
.shot-b { grid-column: 3 / 4; grid-row: 1; }
.shot-c { grid-column: 4 / 5; grid-row: 1 / 3; }
.shot-c figcaption { padding-top: 46px; }
.shot-d { grid-column: 1 / 4; grid-row: 2; }

/* ------------------------------------------------------------- recommendation */
.rec {
  background: var(--forest);
  padding: clamp(58px, 7vw, 92px) 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 22px 22px;
}
.rec-wrap { text-align: center; }
.rec-chip {
  display: inline-block;
  font-family: var(--display); font-size: 13px; letter-spacing: .17em;
  text-transform: uppercase; color: var(--orange);
  border: 1px solid rgba(244,130,31,.5); border-radius: 999px;
  padding: 7px 17px; margin: 0 0 26px;
}
.rec-q { margin: 0 auto 22px; max-width: 30ch; }
.rec-q p {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(26px, 3.9vw, 40px); line-height: 1.16;
  color: #FFFFFF; margin: 0;
}
.rec-by {
  margin: 0; font-family: var(--display); font-size: 16px;
  letter-spacing: .15em; text-transform: uppercase; color: #B8C6BF;
}

/* ------------------------------------------------------------------ about */
.about { background: var(--cream); padding: clamp(64px, 8vw, 108px) 0; }
.about-grid {
  display: grid; gap: 40px;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
}
.about-lede { font-size: 20px; color: var(--dim-light); max-width: 34ch; }

/* ---------------------------------------------------- slots (preview furniture) */
.slot {
  border: 2px dashed rgba(13,27,42,.34);
  border-radius: 4px;
  background: rgba(255,255,255,.62);
  padding: 30px 28px;
}
.slot-k {
  font-family: var(--display); font-size: 14px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--orange-d); margin: 0 0 12px;
}
.slot-tag {
  font-family: var(--display); font-size: clamp(19px, 2.4vw, 25px);
  letter-spacing: .04em; color: var(--on-light); margin: 0 0 16px;
}
.slot-p { font-size: 16.5px; color: var(--dim-light); }
.slot-p + .slot-p { margin-top: 14px; }

.card-slot {
  grid-column: 1 / -1;
  background: rgba(255,255,255,.035);
  border: 2px dashed rgba(255,255,255,.32);
}
.card-slot:hover { transform: none; background: rgba(255,255,255,.035); border-color: rgba(255,255,255,.32); }
.card-slot .slot-k { color: var(--orange); }
.card-slot .slot-tag { color: #E7EDF2; }
.card-slot .slot-p { color: #B4BFCA; max-width: 74ch; }

.creds {
  margin-top: 44px;
  border: 2px dashed rgba(13,27,42,.34);
  border-radius: 4px; background: rgba(255,255,255,.62);
  padding: 30px 28px;
}
.creds-list {
  list-style: none; margin: 0 0 18px; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.creds-list li {
  font-family: var(--display); font-size: 14.5px; letter-spacing: .06em;
  color: var(--on-light);
  border: 1px dashed rgba(13,27,42,.45); border-radius: 3px;
  padding: 8px 14px; background: rgba(244,130,31,.09);
}

/* ------------------------------------------------------------------ contact */
.contact {
  background: var(--ink);
  padding: clamp(64px, 8vw, 108px) 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 22px 22px;
}
.contact-grid {
  display: grid; gap: 46px;
  grid-template-columns: 1fr 1.05fr;
  align-items: start;
}
.bigcall {
  display: inline-block;
  font-family: var(--display); font-weight: 600;
  font-size: clamp(32px, 4.6vw, 46px);
  color: var(--orange); text-decoration: none;
  letter-spacing: .01em; margin: 0 0 26px;
  border-bottom: 3px solid rgba(244,130,31,.4);
}
.bigcall:hover { color: #FF9433; border-bottom-color: #FF9433; }
.facts { margin: 0; }
.fact {
  display: grid; grid-template-columns: 158px 1fr; gap: 10px 16px;
  padding: 14px 0; border-top: 1px solid var(--rule-dark);
}
.fact dt {
  font-family: var(--display); font-size: 14px; letter-spacing: .13em;
  text-transform: uppercase; color: var(--dim-dark);
}
.fact dd { margin: 0; font-size: 15.5px; color: var(--on-dark); overflow-wrap: anywhere; }
.fact dd a { color: var(--on-dark); }
.tok {
  display: inline-block;
  font-family: var(--display); font-size: 14.5px; letter-spacing: .05em;
  color: #FFD9B4;
  border: 1px dashed rgba(244,130,31,.65); border-radius: 3px;
  padding: 5px 11px; background: rgba(244,130,31,.1);
}

.formwrap {
  background: rgba(255,255,255,.045);
  border: 1px solid var(--rule-dark); border-radius: 4px;
  padding: 26px 26px 30px;
}
.form-off {
  margin: 0 0 22px; font-size: 15px; color: #C6D0DA;
  border: 2px dashed rgba(255,255,255,.3); border-radius: 3px;
  padding: 12px 15px; background: rgba(255,255,255,.03);
}
.form-h {
  font-family: var(--display); font-size: 22px; letter-spacing: .04em;
  color: #FFFFFF; margin: 0 0 18px;
}
.row { margin-bottom: 16px; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.form label {
  display: block; font-family: var(--display); font-size: 13.5px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--dim-dark); margin-bottom: 6px;
}
.form input, .form select, .form textarea {
  width: 100%; font-family: var(--body); font-size: 16px;
  color: #94A3AF; background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.26); border-radius: 3px;
  padding: 11px 13px; opacity: 1;
  -webkit-text-fill-color: #94A3AF;
}
.form textarea { resize: vertical; min-height: 118px; }
.btn-off {
  background: transparent; color: #8FA0AE;
  border: 2px dashed rgba(255,255,255,.28);
  cursor: not-allowed; font-family: var(--display);
  font-size: 17px; letter-spacing: .06em; text-transform: uppercase;
  padding: 15px 26px; border-radius: 3px; margin-top: 6px;
}
.btn-off:hover { background: transparent; border-color: rgba(255,255,255,.28); color: #8FA0AE; }

/* ------------------------------------------------------------------ footer */
.foot { background: var(--ink-3); color: var(--on-dark); padding: 70px 0 0; }
.foot-grid {
  display: grid; gap: 34px;
  grid-template-columns: 1.6fr 1fr 1.25fr 1fr;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--rule-dark);
}
.foot { border-top: 4px solid var(--orange); }
.foot-mark { margin-bottom: 14px; }
.foot-name { font-family: var(--display); font-size: 21px; color: #FFFFFF; margin: 0 0 8px; }
.foot-line { font-size: 14.5px; color: var(--dim-dark); max-width: 40ch; }
.foot-k {
  font-family: var(--display); font-size: 14px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--orange); margin: 0 0 14px;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; }
.foot-col li { font-size: 15.5px; color: #C4CFD9; padding: 5px 0; }
.foot-col a { color: #C4CFD9; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.22); }
.foot-col a:hover { color: #FFFFFF; border-bottom-color: var(--orange); }

.prev {
  margin: 44px 0 0;
  border: 2px dashed rgba(255,255,255,.3);
  border-radius: 4px; padding: 30px 28px;
  background: rgba(255,255,255,.035);
}
.prev-h {
  font-family: var(--display); font-size: 20px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--orange); margin: 0 0 16px;
}
.prev p { font-size: 16.5px; color: #C6D0DA; max-width: 78ch; }
.prev-act { margin-top: 22px; }

.foot-bottom { padding: 28px 0 34px; }
.foot-bottom p { margin: 0; font-size: 14.5px; color: #93A1AE; }

/* ------------------------------------------------------------------ the fab */
.fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 70;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--orange); color: #17120A;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.34);
  text-decoration: none;
}
.fab svg { width: 27px; height: 27px; }
.fab::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--orange);
  animation: pulse 2.8s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: .7; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}
/* fixed element over light, dark and accent grounds: two rings, one always reads */
.fab:focus-visible {
  outline: 3px solid #0D1B2A;
  outline-offset: 0;
  box-shadow: 0 0 0 6px #FFFFFF, 0 8px 24px rgba(0,0,0,.34);
}

/* ------------------------------------------------------------------ reveals */
.html-noop {}
html.js .reveal { opacity: 0; transform: translateY(20px); }
html.js .reveal.in-view {
  opacity: 1; transform: none;
  transition: opacity .62s cubic-bezier(.2,.7,.3,1), transform .62s cubic-bezier(.2,.7,.3,1);
}
html.js .cards .reveal:nth-child(2).in-view,
html.js .shots .reveal:nth-child(2).in-view { transition-delay: .07s; }
html.js .cards .reveal:nth-child(3).in-view,
html.js .shots .reveal:nth-child(3).in-view { transition-delay: .14s; }
html.js .cards .reveal:nth-child(4).in-view,
html.js .shots .reveal:nth-child(4).in-view { transition-delay: .2s; }
html.js .cards .reveal:nth-child(5).in-view,
html.js .shots .reveal:nth-child(5).in-view { transition-delay: .26s; }
html.js .season-grid .reveal:nth-child(2).in-view { transition-delay: .1s; }

.hero-h .w {
  animation: rise .8s cubic-bezier(.2,.7,.3,1) both;
  animation-delay: var(--d, 0s);
}
@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
.hero-card { animation: rise .9s cubic-bezier(.2,.7,.3,1) both; animation-delay: .85s; }

/* ------------------------------------------------------------------ 404 */
.oops { min-height: 62vh; display: flex; align-items: center; background: var(--ink); }
.oops-in { padding: 90px 0; }
.oops-h { font-size: clamp(38px, 7vw, 74px); color: #FFFFFF; margin: 0 0 18px; }
.oops-p { font-size: 19px; color: var(--dim-dark); max-width: 46ch; margin: 0 0 30px; }

/* ------------------------------------------------------------------ tablet */
@media (max-width: 1040px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .card-lead { grid-row: span 1; grid-column: 1 / -1; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid, .about-grid { grid-template-columns: 1fr; gap: 34px; }
  .shots { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 214px; }
  .shot-a { grid-column: 1 / 3; grid-row: 1; }
  .shot-b { grid-column: 1 / 2; grid-row: 2; }
  .shot-c { grid-column: 2 / 3; grid-row: 2 / 4; }
  .shot-d { grid-column: 1 / 2; grid-row: 3; }
}

@media (max-width: 900px) {
  html.has-js .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--ink-2);
    border-bottom: 1px solid var(--rule-dark);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px var(--pad) 18px;
  }
  .head-in { position: relative; }
  html.has-js .nav.open { display: flex; }
  .nav a { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.09); }
  .nav-call {
    margin-top: 12px; text-align: center;
    border-bottom: 2px solid rgba(244,130,31,.6) !important;
  }
  html.has-js .burger {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; border: 2px solid rgba(255,255,255,.28);
    border-radius: 3px; padding: 9px 14px; cursor: pointer;
    font-family: var(--display); font-size: 14px; letter-spacing: .12em;
    text-transform: uppercase; color: var(--on-dark);
  }
  .burger-bars, .burger-bars::before, .burger-bars::after {
    display: block; width: 19px; height: 2px; background: var(--orange); content: "";
  }
  .burger-bars { position: relative; }
  .burger-bars::before { position: absolute; top: -6px; }
  .burger-bars::after { position: absolute; top: 6px; }
}

/* ------------------------------------------------------------------ phone */
@media (max-width: 700px) {
  body { font-size: 17px; }
  .season-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .shot-a { grid-column: 1; grid-row: 1; }
  .shot-b { grid-column: 1; grid-row: 2; }
  .shot-c { grid-column: 1; grid-row: 3 / 5; }
  .shot-d { grid-column: 1; grid-row: 5; }
  .two { grid-template-columns: 1fr; }
  .fact { grid-template-columns: 1fr; gap: 4px; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-in { padding-top: 104px; padding-bottom: 56px; }
  .hero-acts .btn { width: 100%; text-align: center; }
  .pbar-in { padding-top: 12px; padding-bottom: 12px; }
  .pbar-text { font-size: 13.5px; }
  .brand-mark { width: 44px; height: 44px; }
  .brand-name { font-size: 17px; }
  .brand-sub { font-size: 10.5px; letter-spacing: .12em; }
  .half, .slot, .creds, .formwrap, .prev, .card { padding-left: 20px; padding-right: 20px; }
  .fab { right: 14px; bottom: 14px; width: 56px; height: 56px; }
}

@media (max-width: 380px) {
  .brand-sub { display: none; }
  .burger-label { display: none; }
}

/* ------------------------------------------------------- reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-photo::before { animation: none; }
  .fab::after { animation: none; }
  .hero-h .w, .hero-card { animation: none; }
  html.js .reveal { opacity: 1; transform: none; }
  html.js .reveal.in-view { transition: none; }
  .card:hover { transform: none; }
  *, *::before, *::after { transition-duration: .001ms !important; }
}

/* CSP-safe stagger: delays moved out of inline style attributes (style-src 'self' blocks them) */
.hero-h .w:nth-child(1) { --d: .05s; }
.hero-h .w:nth-child(2) { --d: .13s; }
.hero-h .w:nth-child(3) { --d: .21s; }
.hero-h .w:nth-child(4) { --d: .29s; }
.hero-h .hero-h-b .w:nth-child(1) { --d: .42s; }
.hero-h .hero-h-b .w:nth-child(2) { --d: .50s; }
.hero-h .hero-h-b .w:nth-child(3) { --d: .58s; }
.hero-h .hero-h-b .w:nth-child(4) { --d: .66s; }
