/* Fellgate Firs
   ---------------------------------------------------------------------------
   Rebuilt, July 2026. The first version set every heading on the site in
   all-caps didone at 40px and up, which flattened the hierarchy — when
   everything shouts, nothing does — and it sold a visual product through
   200px thumbnails. This version is an editorial rebuild:

     · One display serif, set MIXED CASE, at one genuinely large size per
       screen. Nothing is uppercase except a 12px label.
     · Photography at scale. Each tree gets a half-page image, not a card.
     · Price is a figure, not a footnote. It is the second thing a customer
       wants after the photograph.
     · A real decision table, because "which one should I buy" is the actual
       question and prose is a bad way to answer it.

   Colour tokens are per surface, and every accent is checked against the
   surface it sits on before it is used.
   --------------------------------------------------------------------------- */

/* ---- fonts ---- */
/* Newsreader is an editorial text serif with a variable optical size — it holds
   up at 12px in a caption and at 112px in a headline, which is the whole range
   this site needs from one face. Karla carries the UI: a grotesque with enough
   character not to read as a system font, and wide enough apertures to stay
   legible at 14px over a photograph. */
@font-face { font-family: 'Newsreader'; font-style: normal; font-weight: 300 600; font-display: swap; src: url('/assets/fonts/newsreader.woff2') format('woff2'); }
@font-face { font-family: 'Karla'; font-style: normal; font-weight: 300 700; font-display: swap; src: url('/assets/fonts/karla.woff2') format('woff2'); }
@font-face { font-family: 'Newsreader fallback'; src: local('Georgia'), local('Times New Roman'); ascent-override: 94%; descent-override: 26%; line-gap-override: 0%; size-adjust: 101%; }
@font-face { font-family: 'Karla fallback'; src: local('Helvetica Neue'), local('Arial'); ascent-override: 94%; descent-override: 24%; line-gap-override: 0%; size-adjust: 96%; }

/* ---- tokens ---- */
:root {
  --forest: #08251a;      /* the dark surface */
  --moss: #2f6b56;
  --mint: #9fe8cd;        /* 10.9:1 on forest — dark surfaces only */
  --pale: #eef3ee;        /* the warm light surface */
  --sand: #e3dcc9;        /* second light surface, for the price band */
  --red: #b91c1c;         /* 6.4:1 under white — the one alarm colour */
  --paper: #fdfdfb;

  --accent: #175c45;      /* 6.2:1 on paper — the mint is far too light for text */
  --muted: #4a5751;       /* 7.6:1 on paper */
  --rule: #d7ded9;

  --display: 'Newsreader', 'Newsreader fallback', Georgia, serif;
  --sans: 'Karla', 'Karla fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  --wrap: 1280px;
  --gutter: 20px;

  /* One large display size per screen, and a real gap between it and the body.
     The old build ran 44px headings over 13px copy, a 3.4:1 ratio that made
     the body look like a caption. This is 6.5:1 at the top and 1.5:1 at the
     bottom, so the jumps are deliberate rather than uniform. */
  --t-display: clamp(2.85rem, 1.5rem + 5.4vw, 6.5rem);
  --t-h1: clamp(2.35rem, 1.5rem + 3.2vw, 4.25rem);
  --t-h2: clamp(1.9rem, 1.4rem + 2vw, 3.1rem);
  --t-h3: clamp(1.35rem, 1.2rem + 0.6vw, 1.75rem);
  --t-figure: clamp(2rem, 1.4rem + 2.4vw, 3.5rem);   /* prices */
  --t-lead: clamp(1.0625rem, 1rem + 0.35vw, 1.3125rem);
  --t-body: 1.0625rem;
  --t-sm: 0.9375rem;
  --t-label: 0.75rem;
  --radius: 3px;          /* was 8px — softness was doing the seasonal work that photography should do */
  --pad: clamp(64px, 6.5vw, 128px);
}

/* Every dark surface takes the same token block, whether or not it uses the
   class to paint itself. */
.on-forest, .site-footer, .utility, .menu {
  --accent: var(--mint);
  --muted: #b3c7bf;       /* 9.1:1 on forest */
  --rule: rgba(211, 230, 224, 0.24);
}
.on-forest, .site-footer { background: var(--forest); color: var(--paper); }
.on-pale { background: var(--pale); --muted: #45524d; --rule: #cdd6cf; }
/* Sand is warmer and darker than the pale, so the muted token drops with it. */
.on-sand { background: var(--sand); --muted: #4a4f45; --rule: #c9c0a8; }

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--paper); color: var(--forest); font-family: var(--sans); font-size: var(--t-body); line-height: 1.62; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
/* Mixed case, optical sizing on, and a light weight — a 400-weight serif at
   100px has more authority than a 700-weight one and does not turn into a
   black bar on a photograph. */
h1, h2, h3, h4 {
  margin: 0; font-family: var(--display); font-weight: 400; line-height: 1.06;
  letter-spacing: -0.012em; font-optical-sizing: auto; text-wrap: balance;
}
h3, h4 { line-height: 1.18; letter-spacing: -0.006em; }
p { margin: 0 0 1.05em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.skip { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--forest); color: #fff; padding: 12px 18px; border-radius: var(--radius); font-weight: 700; text-decoration: none; transition: top 0.15s ease; }
.skip:focus { top: 16px; }

/* ---- layout ---- */
.wrap { width: 100%; max-width: calc(var(--wrap) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
@media (min-width: 900px) { .wrap { padding-inline: 44px; } }
.section { padding-block: var(--pad); }
.section--tight { padding-block: clamp(40px, 4vw, 72px); }
.measure { max-width: 34em; }
.center { text-align: center; }

/* ---- type ---- */
.display { font-size: var(--t-display); }
.h1 { font-size: var(--t-h1); }
.h2 { font-size: var(--t-h2); }
.h3 { font-size: var(--t-h3); }
.lead { font-size: var(--t-lead); line-height: 1.5; max-width: 34em; }
.muted { color: var(--muted); }
.small { font-size: var(--t-sm); }
/* The only uppercase on the site: a 12px label. It earns the caps by being
   short and by never appearing twice in one band. */
.label { display: block; margin: 0 0 clamp(14px, 1.4vw, 22px); font-family: var(--sans); font-size: var(--t-label); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.prose { max-width: 36em; }
.prose a:not(.btn), .link { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose a:not(.btn):hover, .link:hover { text-decoration-thickness: 2px; }
.prose p + p { margin-top: 0; }

/* ---- buttons ---- */
.btn { display: inline-flex; align-items: center; gap: 10px; min-height: 50px; padding: 13px 26px; background: var(--forest); color: #fff; border: 1px solid var(--forest); border-radius: var(--radius); font-weight: 700; font-size: var(--t-sm); text-decoration: none; cursor: pointer; transition: background-color .16s ease, color .16s ease; }
.btn:hover { background: transparent; color: var(--forest); }
.on-forest .btn, .site-footer .btn { background: var(--mint); color: var(--forest); border-color: var(--mint); }
.on-forest .btn:hover, .site-footer .btn:hover { background: transparent; color: var(--mint); }
.btn--red { background: var(--red); border-color: var(--red); color: #fff; }
.btn--red:hover { background: transparent; color: #fff; border-color: #fff; }
.on-pale .btn--red:hover, .on-sand .btn--red:hover { color: var(--red); border-color: var(--red); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.center .btn-row { justify-content: center; }
/* A text link that behaves like a button target without looking like one. */
.arrow-link { display: inline-flex; align-items: center; gap: 8px; padding-block: 6px; font-weight: 700; font-size: var(--t-sm); text-decoration: none; color: var(--accent); border-bottom: 1px solid currentColor; }
.arrow-link:hover { gap: 13px; }
@media (prefers-reduced-motion: reduce) { .arrow-link:hover { gap: 8px; } }

/* ---- utility bar + header ---- */
.utility { background: var(--forest); color: var(--paper); font-size: var(--t-sm); }
.utility .wrap { display: flex; align-items: center; justify-content: flex-end; gap: 20px; min-height: 46px; flex-wrap: wrap; }
.utility a { text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.utility a:not(.btn):hover { text-decoration: underline; text-underline-offset: 3px; }
.utility .btn { min-height: 38px; padding: 8px 16px; }
.utility svg { width: 17px; height: 17px; }

.site-header { position: absolute; inset: 46px 0 auto; z-index: 30; color: #fff; }
body:not(.has-hero) .site-header { position: static; inset: auto; background: var(--forest); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 84px; }
/* The wordmark is the one place a serif and a caps label sit together, and it
   is a lockup rather than a heading — no box around it. */
.brand { display: grid; gap: 1px; text-decoration: none; line-height: 1; }
.brand span:first-child { font-family: var(--sans); font-size: var(--t-label); font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; opacity: .8; }
.brand span:last-child { font-family: var(--display); font-weight: 400; font-size: 1.6rem; letter-spacing: -0.015em; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a { font-family: var(--sans); font-weight: 600; font-size: var(--t-sm); text-decoration: none; padding-block: 5px; border-bottom: 1px solid transparent; }
.site-nav a:hover, .site-nav a[aria-current='page'] { border-bottom-color: currentColor; }
.nav-toggle { display: none; align-items: center; justify-content: center; width: 46px; height: 46px; background: none; border: 1px solid currentColor; border-radius: var(--radius); cursor: pointer; }
.nav-toggle > span { display: grid; gap: 4px; width: 20px; }
.nav-toggle > span > span { height: 2px; background: currentColor; }

.menu { position: fixed; inset: 0; z-index: 60; background: var(--forest); color: #fff; padding: 20px var(--gutter) 44px; overflow-y: auto; overscroll-behavior: contain; }
.menu[hidden] { display: none; }
.menu__head { display: flex; align-items: center; justify-content: space-between; min-height: 56px; margin-bottom: 28px; }
.menu__close { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; background: none; border: 1px solid currentColor; border-radius: var(--radius); cursor: pointer; }
.menu__nav a { display: block; padding: 15px 0; font-family: var(--display); font-weight: 400; font-size: clamp(1.7rem, 1.2rem + 2vw, 2.5rem); text-decoration: none; border-bottom: 1px solid var(--rule); }
.menu__nav a:hover { color: var(--mint); }
body.menu-open { overflow: hidden; }

/* ---- hero ---- */
/* Left-aligned and bottom-set. Centred display type over a centred scrim was
   the other half of the flatness — it gave the page no reading edge. */
.hero { position: relative; display: flex; align-items: flex-end; min-height: min(88vh, 860px); padding: 210px var(--gutter) clamp(56px, 6vw, 96px); color: #fff; isolation: isolate; }
.hero > .wrap { padding-inline: 0; }
.hero--short { min-height: 460px; padding-top: 190px; }
.hero__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
/* The plantation photographs are already dark, so the scrim is light — enough
   to hold 4.5:1 on the body copy without flattening the needles to black. */
/* Two layers, because the type is left-aligned and the mist in these
   photographs is palest exactly where the label sits. The vertical gradient
   holds the facts strip; the horizontal one holds the reading edge. */
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to right, rgba(4,20,14,.7) 0%, rgba(4,20,14,.34) 46%, rgba(4,20,14,0) 72%),
    linear-gradient(to top, rgba(4,20,14,.84) 0%, rgba(4,20,14,.44) 44%, rgba(4,20,14,.26) 100%);
}
.hero .lead { margin-top: 22px; }
.hero .btn-row { margin-top: 32px; }
.hero .label { color: var(--mint); }
/* A single line of hard facts pinned under the hero, so the two things a
   visitor needs — when it is open and what it costs — are above the fold. */
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px 40px; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.3); }
.hero-facts div { display: grid; gap: 2px; }
.hero-facts dt { font-size: var(--t-label); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; opacity: .82; }
.hero-facts dd { margin: 0; font-family: var(--display); font-size: 1.45rem; }

/* ---- the tree bands ----
   The redesign's main move. Four products in a three-column grid orphaned the
   fourth in an empty row and shrank every photograph to a thumbnail. Each
   product now owns a full-width band with a half-page image, the price as a
   figure, and the four facts as a strip. */
.band { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 76px); align-items: center; }
.band + .band { margin-top: var(--pad); }
.band__media { position: relative; }
.band__media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius); }
.band--flip .band__media { order: 2; }
.band__price { font-family: var(--display); font-size: var(--t-figure); line-height: 1; margin: 0 0 4px; letter-spacing: -0.02em; }
.band__sizes { margin: 0; font-size: var(--t-sm); color: var(--muted); }
.band h2, .band h3 { margin-bottom: 14px; }
.band .lead { margin-bottom: 26px; }
.band__facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 26px; margin: 26px 0 28px; padding-top: 22px; border-top: 1px solid var(--rule); }
.band__facts div { display: grid; gap: 2px; }
.band__facts dt { font-size: var(--t-label); font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); }
.band__facts dd { margin: 0; font-size: var(--t-sm); font-weight: 600; }
@media (max-width: 900px) {
  .band { grid-template-columns: 1fr; gap: 24px; }
  .band--flip .band__media { order: 0; }
}

/* ---- section heads ---- */
/* Heading left, standfirst right, on one baseline — so a section announces
   itself once instead of stacking a label, a heading and a paragraph. */
.head { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(20px, 3vw, 64px); align-items: end; margin-bottom: clamp(34px, 4vw, 66px); }
.head > :last-child { color: var(--muted); max-width: 34em; }
.head p { margin: 0; }
@media (max-width: 840px) { .head { grid-template-columns: 1fr; align-items: start; } }

/* ---- cards (used on interior pages) ---- */
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(22px, 2.6vw, 40px); }
.cards--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1000px) { .cards--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .cards, .cards--2, .cards--4 { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .cards, .cards--2 { grid-template-columns: 1fr; } }
.card { display: flex; flex-direction: column; text-decoration: none; }
.card img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius); }
.card h3 { margin: 20px 0 8px; }
.card p { margin: 0; font-size: var(--t-sm); color: var(--muted); }
.card .price { margin-top: 14px; font-family: var(--display); font-size: 1.6rem; line-height: 1; }
/* Size and fit, under the price — the one line that decides which tree it is. */
.card__meta { margin-top: 6px; font-size: var(--t-label); letter-spacing: .04em; color: var(--muted); }
.card:hover h3 { text-decoration: underline; text-underline-offset: 4px; }

.split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(26px, 4vw, 72px); align-items: start; }
.split--mid { align-items: center; }
.split--even { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.split + .split { margin-top: clamp(34px, 4vw, 64px); }
@media (max-width: 880px) { .split, .split--even { grid-template-columns: 1fr; } }
.figure img { width: 100%; border-radius: var(--radius); }
.figure figcaption { margin-top: 12px; font-size: var(--t-sm); color: var(--muted); }

/* ---- steps ----
   Four hairline-ruled 13px columns were the weakest band on the page and it
   describes the actual customer journey. Now the numeral does the work. */
.steps { counter-reset: s; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(24px, 3vw, 52px); }
.steps li { counter-increment: s; }
.steps li::before {
  content: counter(s);
  display: block; font-family: var(--display); font-weight: 300;
  font-size: clamp(3.4rem, 2rem + 3.6vw, 5.5rem); line-height: .82;
  margin-bottom: 18px; color: var(--accent);
}
.steps h3 { font-size: var(--t-h3); margin-bottom: 8px; }
.steps p { margin: 0; font-size: var(--t-sm); color: var(--muted); }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 460px) { .steps { grid-template-columns: 1fr; } }

/* ---- decision table ----
   "Which one should I actually buy" answered as a comparison rather than as
   four paragraphs of prose. Real table semantics, so a screen reader gets the
   row and column headers rather than a wall of text. */
.compare { width: 100%; min-width: 560px; border-collapse: collapse; text-align: left; }
.compare caption { text-align: left; font-size: var(--t-sm); color: var(--muted); padding-bottom: 16px; }
.compare th, .compare td { padding: 16px 14px; border-bottom: 1px solid var(--rule); vertical-align: top; }
.compare thead th { font-family: var(--display); font-weight: 400; font-size: var(--t-h3); border-bottom-width: 2px; }
.compare thead th:first-child { font-family: var(--sans); font-size: var(--t-label); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.compare tbody th { font-size: var(--t-sm); font-weight: 700; width: 22%; }
.compare td { font-size: var(--t-sm); }
.compare .is-pick { color: var(--accent); font-weight: 700; }
.on-forest .compare .is-pick { color: var(--mint); }

/* A verdict list: the four "if this, then that" lines, set large. */
.verdicts { display: grid; gap: clamp(18px, 2vw, 28px); }
.verdicts li { display: grid; gap: 6px; padding-bottom: clamp(18px, 2vw, 28px); border-bottom: 1px solid var(--rule); }
.verdicts li:last-child { border-bottom: 0; padding-bottom: 0; }
.verdicts b { font-family: var(--display); font-weight: 400; font-size: var(--t-h3); }
.verdicts span { color: var(--muted); font-size: var(--t-sm); }

/* ---- price table ---- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-scroll:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.prices { width: 100%; min-width: 520px; border-collapse: collapse; }
.prices caption { text-align: left; font-size: var(--t-sm); color: var(--muted); padding-bottom: 16px; }
.prices th, .prices td { text-align: left; padding: 18px 14px; border-bottom: 1px solid var(--rule); }
.prices thead th { font-size: var(--t-label); font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); }
.prices tbody th { font-size: var(--t-sm); font-weight: 700; }
/* Prices are the reason people look at this table. They are set in the display
   face at 1.5rem with tabular figures so the columns line up. */
.prices td { font-family: var(--display); font-size: 1.5rem; line-height: 1.1; font-variant-numeric: tabular-nums; }

/* ---- FAQ ---- */
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; width: 100%; padding: 22px 0; background: none; border: 0; cursor: pointer; text-align: left; font-family: var(--display); font-weight: 400; font-size: var(--t-h3); letter-spacing: -0.006em; }
.faq-sign { flex: 0 0 auto; margin-top: 7px; transition: transform .2s ease; }
.faq-q[aria-expanded='true'] .faq-sign { transform: rotate(45deg); }
.faq-a { padding-bottom: 24px; max-width: 36em; color: var(--muted); }
.faq-a[hidden] { display: none; }
@media (prefers-reduced-motion: reduce) { .faq-sign { transition: none; } }

/* ---- full-bleed image band ---- */
.bleed { position: relative; display: flex; align-items: flex-end; min-height: clamp(380px, 46vw, 620px); padding: clamp(48px, 6vw, 96px) 0; color: #fff; isolation: isolate; }
.bleed__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.bleed::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(4,20,14,.84) 0%, rgba(4,20,14,.34) 62%, rgba(4,20,14,.2) 100%); }
.bleed .label { color: var(--mint); }
.bleed .lead { color: #eef3ee; }

/* ---- forms ---- */
.form { display: grid; gap: 20px; max-width: 600px; }
.field { display: grid; gap: 6px; }
.field label { font-size: var(--t-sm); font-weight: 700; }
.field input, .field select, .field textarea { font: inherit; color: var(--forest); width: 100%; min-height: 50px; padding: 13px 14px; background: #fff; border: 1px solid #6d7a75; border-radius: var(--radius); }
.field textarea { min-height: 150px; resize: vertical; }
.field.invalid input, .field.invalid textarea { border-color: #9c1414; }
.field .error { margin: 0; font-size: var(--t-sm); color: #8a1212; }
.field:not(.invalid) .error { display: none; }
.field--hp { position: absolute; left: -9999px; }
.form-note { font-size: var(--t-sm); color: var(--muted); max-width: 36em; }

/* ---- footer ---- */
.site-footer { padding-top: clamp(56px, 5.5vw, 92px); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: 34px 28px; padding-bottom: 44px; }
.footer-grid h2 { font-family: var(--sans); font-size: var(--t-label); font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 16px; color: var(--mint); }
.footer-grid li { padding: 4px 0; font-size: var(--t-sm); }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; padding-block: 22px; border-top: 1px solid var(--rule); font-size: var(--t-sm); color: var(--muted); }
.footer-legal a { text-decoration: none; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---- reveal ---- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } * { scroll-behavior: auto !important; } }

@media (max-width: 1000px) {
  .site-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header { inset: 42px 0 auto; }
  .hero { min-height: 640px; padding-top: 160px; }
}
