/* ==========================================================================
   Cascade Remodeling & Construction
   Design system + components. Hand-written, no framework.

   Contents
   01  Tokens
   02  Reset & base
   03  Typography
   04  Layout primitives
   05  Buttons & links
   06  Header / navigation
   07  Hero
   08  Sections & components
   09  Before / after slider
   10  Forms
   11  Footer
   12  Motion
   13  Responsive
   ========================================================================== */

/* 01 ---------------------------------------------------------------- Tokens */
:root {
  /* Brand — read directly off the Cascade logo */
  --brand:        #154A5C;   /* deep petrol teal */
  --brand-deep:   #0E3542;
  --brand-slate:  #6E929A;   /* logo secondary */
  --brand-mist:   #C9DBDF;

  /* Warm neutral ground — the palette the site actually lives in */
  --ivory:        #F8F5F0;
  --cream:        #F1ECE4;
  --sand:         #E5DDD0;
  --mushroom:     #C9BCA9;
  --wood:         #9C7A57;
  --walnut:       #7A5C40;

  /* Ink */
  --char:         #1F1E1C;
  --graphite:     #3A3833;
  --stone:        #63605A;
  --line:         rgba(31, 30, 28, .13);
  --line-strong:  rgba(31, 30, 28, .22);
  --line-light:   rgba(248, 245, 240, .22);

  /* Type */
  --serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Rhythm */
  --gutter:   clamp(1.25rem, 5vw, 3rem);
  --section:  clamp(4.5rem, 9.5vw, 9.25rem);
  --section-sm: clamp(3.25rem, 6vw, 5.5rem);
  --maxw:     1280px;

  /* Motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
  --header-h: 82px;
}

/* 02 -------------------------------------------------------- Reset & base */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Generous enough to clear the header in both its states, with or without
     the preview-notice strip riding inside it. */
  scroll-padding-top: calc(var(--header-h) + 48px);
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--char);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.72;
  font-weight: 400;
  letter-spacing: -0.003em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
img { height: auto; }

button, input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--brand); color: var(--ivory); }

/* Focus: visible, on-brand, never removed */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 2px;
}
.on-dark :focus-visible { outline-color: var(--brand-mist); }

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--brand);
  color: var(--ivory);
  padding: .75rem 1.25rem;
  font-size: .8125rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .25s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* 03 ------------------------------------------------------------ Typography */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 0, "WONK" 0;
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
}

.display-xl {
  font-size: clamp(2.85rem, 7.4vw, 6.1rem);
  line-height: .98;
  letter-spacing: -0.032em;
}
.display-l  { font-size: clamp(2.15rem, 5.1vw, 4.05rem); letter-spacing: -0.028em; }
.display-m  { font-size: clamp(1.75rem, 3.5vw, 2.85rem); letter-spacing: -0.024em; line-height: 1.1; }
.display-s  { font-size: clamp(1.35rem, 2.1vw, 1.75rem); letter-spacing: -0.018em; line-height: 1.18; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.09rem, 1.55vw, 1.3rem);
  line-height: 1.62;
  color: var(--graphite);
  letter-spacing: -0.008em;
}

.eyebrow {
  font-family: var(--sans);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .215em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0 0 1.35rem;
  display: flex;
  align-items: center;
  gap: .85rem;
  width: fit-content;
  max-width: 100%;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--brand-slate);
  flex: none;
}
.eyebrow--plain::before { display: none; }
.on-dark .eyebrow { color: var(--brand-mist); }
.on-dark .eyebrow::before { background: var(--brand-slate); }

.muted { color: var(--stone); }
.serif-accent { font-family: var(--serif); font-style: italic; font-variation-settings: "SOFT" 0, "WONK" 0; }

/* 04 ----------------------------------------------------- Layout primitives */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 880px; }
.wrap--mid    { max-width: 1080px; }

.section { padding-block: var(--section); }
.section--sm { padding-block: var(--section-sm); }
.section--tight-top { padding-top: 0; }

.on-dark {
  background: var(--brand);
  color: var(--ivory);
}
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--ivory); }
.on-dark .lead, .on-dark p { color: rgba(248, 245, 240, .82); }
.on-charcoal { background: var(--char); color: var(--ivory); }
.on-cream { background: var(--cream); }
.on-sand  { background: var(--sand); }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.75rem); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}
.split--top { align-items: start; }

.stack > * + * { margin-top: 1.15rem; }
.section-head { max-width: 40ch; margin-bottom: clamp(2.5rem, 5vw, 4.25rem); }
.section-head--wide { max-width: 56ch; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; margin-inline: auto; }

/* Media frames */
.frame {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame--4x3  { aspect-ratio: 4 / 3; }
.frame--3x2  { aspect-ratio: 3 / 2; }
.frame--1x1  { aspect-ratio: 1 / 1; }
.frame--4x5  { aspect-ratio: 4 / 5; }
.frame--wide { aspect-ratio: 16 / 9; }
.frame--tall { aspect-ratio: 3 / 4; }

/* 05 -------------------------------------------------------- Buttons & links */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: var(--ivory);
  --btn-bd: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  min-height: 54px;
  padding: .95rem 1.9rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color .45s var(--ease), border-color .45s var(--ease), background-color .45s var(--ease);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand-deep);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .5s var(--ease);
  z-index: -1;
}
.btn:hover::after, .btn:focus-visible::after { transform: scaleY(1); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--char);
  --btn-bd: var(--line-strong);
}
.btn--ghost::after { background: var(--char); }
.btn--ghost:hover, .btn--ghost:focus-visible { color: var(--ivory); border-color: var(--char); }

.btn--light {
  --btn-bg: var(--ivory);
  --btn-fg: var(--brand);
  --btn-bd: var(--ivory);
}
.btn--light::after { background: var(--cream); }
.btn--light:hover, .btn--light:focus-visible { color: var(--brand-deep); }

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: var(--ivory);
  --btn-bd: var(--line-light);
}
.btn--outline-light::after { background: var(--ivory); }
.btn--outline-light:hover, .btn--outline-light:focus-visible { color: var(--brand); border-color: var(--ivory); }

.btn--sm { min-height: 46px; padding: .7rem 1.4rem; font-size: .6875rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem 1rem;
  align-items: center;
}

/* Text link with a rule that draws in on hover.
   The resting rule is a border, which frees ::before to act as an invisible
   tap-target expander — the link stays 27px tall visually but is ~47px to a
   thumb, without disturbing the layout around it. */
.link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--brand);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding-bottom: .35rem;
  position: relative;
  border-bottom: 1px solid color-mix(in srgb, currentColor 28%, transparent);
}
@supports not (color: color-mix(in srgb, red 50%, transparent)) {
  .link { border-bottom-color: rgba(21, 74, 92, .28); }
  .on-dark .link { border-bottom-color: rgba(201, 219, 223, .32); }
}
.link::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -12px; bottom: -9px;
}
.link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.link:hover::after, .link:focus-visible::after { transform: scaleX(1); }
.link .arw { transition: transform .45s var(--ease); }
.link:hover .arw { transform: translateX(5px); }
.on-dark .link { color: var(--brand-mist); }

a { color: var(--brand); }
.prose a { color: var(--brand); text-underline-offset: 3px; }

/* 06 --------------------------------------------------- Header / navigation */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color .5s var(--ease-soft), box-shadow .5s var(--ease-soft),
              border-color .5s var(--ease-soft), transform .5s var(--ease-soft);
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

/* Over-hero state: light type on the image */
.site-header[data-mode="over"] { color: var(--ivory); }
.site-header[data-mode="over"] .brand__word,
.site-header[data-mode="over"] .nav__link { color: var(--ivory); }
.site-header[data-mode="over"] .brand__sub { color: rgba(248, 245, 240, .86); }
.site-header[data-mode="over"] .nav-toggle__bar { background: var(--ivory); }
/* The scrim behind the transparent header has to carry the nav to 4.5:1 over a
   bright photograph, so it stays substantial through the full header height and
   feathers out below it rather than fading before the links start. */
.site-header[data-mode="over"]::before {
  content: "";
  position: absolute;
  inset: 0 0 -52px 0;
  background: linear-gradient(to bottom,
    rgba(12, 26, 32, .80) 0%,
    rgba(12, 26, 32, .68) 58%,
    rgba(12, 26, 32, .34) 82%,
    rgba(12, 26, 32, 0) 100%);
  pointer-events: none;
  z-index: -1;
}

.site-header.is-solid {
  background: rgba(248, 245, 240, .94);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom-color: var(--line);
  color: var(--char);
}
.site-header.is-solid .brand__word,
.site-header.is-solid .nav__link { color: var(--char); }
.site-header.is-solid .brand__sub { color: var(--stone); }
.site-header.is-solid .nav-toggle__bar { background: var(--char); }
.site-header.is-solid::before { opacity: 0; }
.site-header.is-hidden { transform: translateY(-102%); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  color: inherit;
  flex: none;
  min-height: 46px;          /* comfortable tap target for the home link */
}
.brand__mark { width: 40px; height: auto; flex: none; }
/* Two versions of the mark, one for light ground and one for dark. Default to
   the dark-ink mark; the over-hero state swaps in the reversed one. */
.brand__mark--light { display: none; }
.site-header[data-mode="over"] .brand__mark--dark { display: none; }
.site-header[data-mode="over"] .brand__mark--light { display: block; }

.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__word {
  font-family: var(--sans);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.brand__sub {
  font-size: .5625rem;
  letter-spacing: .195em;
  text-transform: uppercase;
  margin-top: .32rem;
  color: var(--stone);
}

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.1rem); }
.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.95rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  text-decoration: none;
  font-size: .8125rem;
  font-weight: 450;
  letter-spacing: .035em;
  color: var(--char);
  position: relative;
  padding-block: .4rem;
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav__link[aria-current="page"] { font-weight: 500; }

.nav-toggle {
  display: none;
  align-items: center;
  gap: .6rem;
  background: none;
  border: 0;
  padding: .6rem .2rem;
  cursor: pointer;
  min-height: 48px;
}
.nav-toggle__bars { display: grid; gap: 5px; width: 26px; }
.nav-toggle__bar {
  height: 1.5px;
  width: 100%;
  background: var(--char);
  transition: transform .45s var(--ease), opacity .3s var(--ease);
}
.nav-toggle__label {
  font-size: .6875rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
body.nav-open .nav-toggle__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--brand);
  color: var(--ivory);
  padding: calc(var(--header-h) + 2.5rem) var(--gutter) 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1.25rem);
  transition: opacity .45s var(--ease), transform .55s var(--ease), visibility .45s;
}
body.nav-open .mobile-nav { opacity: 1; visibility: visible; transform: none; }
/* The preview strip makes the header taller; keep the first menu item clear of it. */
body.has-preview-note .mobile-nav { padding-top: calc(var(--header-h) + 5.25rem); }
.mobile-nav__list { list-style: none; margin: 0 0 2.5rem; padding: 0; }
.mobile-nav__list li {
  border-bottom: 1px solid var(--line-light);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
body.nav-open .mobile-nav__list li { opacity: 1; transform: none; transition-delay: calc(var(--i) * 55ms + 120ms); }
.mobile-nav__link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  color: var(--ivory);
  text-decoration: none;
  font-family: var(--serif);
  font-variation-settings: "SOFT" 0, "WONK" 0;
  font-size: 1.85rem;
  letter-spacing: -0.02em;
}
.mobile-nav__link span {
  font-family: var(--sans);
  font-size: .625rem;
  letter-spacing: .18em;
  color: var(--brand-slate);
}
.mobile-nav__foot { display: grid; gap: 1rem; }
.mobile-nav__foot a.contact-line {
  color: var(--ivory);
  text-decoration: none;
  font-size: .95rem;
  letter-spacing: .02em;
}

/* 07 --------------------------------------------------------------- Hero */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--char);
  isolation: isolate;
}
.hero--inner { min-height: min(66svh, 620px); }
.hero__media {
  position: absolute;
  inset: -8% 0 -8% 0;
  z-index: -2;
  will-change: transform;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Placeholder art is deliberately low-contrast; a touch of grading keeps the
     hero from reading washed out. Harmless on real photography too. */
  filter: saturate(1.06) contrast(1.05);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Weighted to the bottom-left, where the type sits, so the top-right of the
     photograph stays bright and the image still reads as the subject. */
  background:
    linear-gradient(to top,
      rgba(20, 26, 26, .90) 0%,
      rgba(20, 26, 26, .70) 25%,
      rgba(20, 26, 26, .52) 55%,
      rgba(20, 26, 26, .16) 80%,
      rgba(20, 26, 26, .02) 100%),
    linear-gradient(102deg,
      rgba(20, 26, 26, .62) 0%,
      rgba(20, 26, 26, .28) 40%,
      rgba(20, 26, 26, 0) 75%);
}
.hero__inner {
  width: 100%;
  /* Never let the first line slide under the fixed header. --header-real-h is
     measured in JS; the fallback covers the pre-script paint. */
  padding-block:
    max(calc(var(--header-real-h, var(--header-h)) + 1.75rem), clamp(3.5rem, 9vw, 7rem))
    clamp(3rem, 6vw, 5rem);
  color: var(--ivory);
}
.hero__title { color: var(--ivory); max-width: 15ch; }
.hero__title em {
  font-style: italic;
  display: block;
}
.hero__sub {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 0, "WONK" 0;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  color: rgba(248, 245, 240, .9);
  margin: 1.6rem 0 0;
  letter-spacing: -0.01em;
}
.hero__meta {
  margin-top: 1.5rem;
  max-width: 34rem;
  color: rgba(248, 245, 240, .8);
  font-size: .96rem;
  line-height: 1.65;
  text-wrap: pretty;
}
.hero__meta strong { font-weight: 500; color: var(--ivory); }
.hero__actions { margin-top: clamp(2rem, 4vw, 2.9rem); }

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(3rem, 6vw, 5rem);
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(248, 245, 240, .7);
  font-size: .625rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
}
.hero__scroll i {
  display: block;
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, rgba(248,245,240,.65), rgba(248,245,240,0));
  animation: scrollcue 2.4s var(--ease-soft) infinite;
}
@keyframes scrollcue {
  0%   { transform: scaleY(.2); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1);  transform-origin: top; opacity: 1; }
  70%  { transform: scaleY(1);  transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(.2); transform-origin: bottom; opacity: 0; }
}

/* Inner page hero — shorter, so the scrim needs a steeper ramp to carry the
   breadcrumb and heading at the same contrast the full-height hero manages. */
.hero--inner .hero__scrim {
  background:
    linear-gradient(to top,
      rgba(20, 26, 26, .90) 0%,
      rgba(20, 26, 26, .78) 42%,
      rgba(20, 26, 26, .52) 74%,
      rgba(20, 26, 26, .26) 100%),
    linear-gradient(102deg,
      rgba(20, 26, 26, .58) 0%,
      rgba(20, 26, 26, .28) 45%,
      rgba(20, 26, 26, .04) 80%);
}
.hero--inner .hero__inner {
  padding-block:
    max(calc(var(--header-real-h, var(--header-h)) + 2rem), clamp(6rem, 12vw, 8rem))
    clamp(2.75rem, 5vw, 4rem);
}
.hero--inner .hero__title { max-width: 20ch; }

.breadcrumb {
  font-size: .6875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(248, 245, 240, .92);
  margin-bottom: 1.5rem;
  width: fit-content;
  max-width: 100%;
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .55rem; margin: 0; padding: 0; }
.breadcrumb a { color: inherit; text-decoration: none; display: inline-block;
  padding-block: .3rem; border-bottom: 1px solid rgba(248,245,240,.3); }
.breadcrumb a:hover { border-bottom-color: var(--ivory); }
.breadcrumb li + li::before { content: "/"; margin-right: .55rem; opacity: .5; }

/* 08 ------------------------------------------------- Sections & components */

/* Trust strip */
.trust {
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-inline: 1px solid var(--line);
}
.trust__item {
  background: var(--ivory);
  padding: 1.6rem 1.15rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
}
.trust__item svg { width: 22px; height: 22px; stroke: var(--brand); fill: none; stroke-width: 1.3; }
.trust__item span {
  font-size: .70rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--graphite);
  line-height: 1.45;
}

/* Statement / intro */
.statement__title {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 0, "WONK" 0;
  font-size: clamp(1.9rem, 4.2vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.026em;
  max-width: 22ch;
}
.statement__title .divider { color: var(--brand-slate); }

/* Service cards */
.service-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: transparent;
  position: relative;
}
.service-card .frame { margin-bottom: 1.35rem; }
.service-card .frame img {
  transition: transform 1.1s var(--ease), filter .8s var(--ease);
}
.service-card:hover .frame img,
.service-card:focus-visible .frame img { transform: scale(1.045); }
.service-card__index {
  font-size: .625rem;
  letter-spacing: .2em;
  color: var(--brand-slate);
  margin-bottom: .6rem;
}
.service-card h3 { font-size: clamp(1.28rem, 1.9vw, 1.55rem); margin-bottom: .6rem; }
.service-card p { color: var(--stone); font-size: .96rem; line-height: 1.68; margin-bottom: 1.1rem; }
.service-card .link { margin-top: auto; align-self: flex-start; }

/* Project cards */
.project-card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.project-card .frame { background: var(--cream); }
.project-card .frame img { transition: transform 1.2s var(--ease); }
.project-card:hover .frame img,
.project-card:focus-visible .frame img { transform: scale(1.04); }
.project-card__body { padding-top: 1.3rem; }
.project-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem .8rem;
  font-size: .6875rem;
  letter-spacing: .155em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: .7rem;
}
.project-card__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--brand-slate); }
.project-card h3 { font-size: clamp(1.3rem, 2vw, 1.62rem); margin-bottom: .55rem; }
.project-card p { color: var(--stone); font-size: .94rem; line-height: 1.66; }
.project-card__cta {
  margin-top: .95rem;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  gap: .5rem;
  align-items: center;
}
.project-card:hover .project-card__cta .arw { transform: translateX(5px); }
.project-card__cta .arw { transition: transform .45s var(--ease); }

.project-card--feature { grid-column: span 2; }

/* Filter chips */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.filter {
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  padding: .58rem 1.15rem;
  font-size: .7rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--graphite);
  min-height: 44px;
  transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.filter:hover { border-color: var(--brand); color: var(--brand); }
.filter[aria-pressed="true"] { background: var(--brand); border-color: var(--brand); color: var(--ivory); }

.project-card.is-filtered { display: none; }

/* Process */
.process-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.on-dark .process-list { border-top-color: var(--line-light); }
.process-step {
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 3.5rem);
  padding-block: clamp(1.9rem, 3.6vw, 2.9rem);
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.on-dark .process-step { border-bottom-color: var(--line-light); }
.on-dark .process-step__num { color: var(--brand-mist); }
.process-step__num {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 0, "WONK" 0;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  color: #537680;                  /* deepened from the logo slate to clear 4.5:1 */
  line-height: 1;
  letter-spacing: -0.02em;
}
.process-step__body { display: grid; grid-template-columns: minmax(0, 15rem) minmax(0, 1fr); gap: clamp(.6rem, 3vw, 3rem); align-items: start; }
.process-step h3 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); }
.process-step p { color: var(--stone); margin: 0; }
.on-dark .process-step p { color: rgba(248, 245, 240, .78); }

/* Pillars (Why Cascade) */
.pillar { padding-top: 1.6rem; border-top: 1px solid var(--line); }
.on-dark .pillar { border-top-color: var(--line-light); }
.pillar h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); margin-bottom: .7rem; }
.pillar p { color: var(--stone); font-size: .96rem; margin: 0; }
.on-dark .pillar p { color: rgba(248, 245, 240, .78); }
.pillar__icon { width: 26px; height: 26px; stroke: var(--brand-slate); fill: none; stroke-width: 1.2; margin-bottom: 1.1rem; }

/* Areas */
.areas-cloud { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 2rem; }
.area-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .55rem 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: .78rem;
  letter-spacing: .045em;
  color: var(--graphite);
  text-decoration: none;
  transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.area-chip:hover { background: var(--brand); border-color: var(--brand); color: var(--ivory); }
.on-dark .area-chip { border-color: var(--line-light); color: rgba(248,245,240,.86); }
.on-dark .area-chip:hover { background: var(--ivory); color: var(--brand); border-color: var(--ivory); }
.area-chip--static { pointer-events: none; }

/* Testimonials */
.quote { max-width: 22ch; }
.quote__text {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 0, "WONK" 0;
  font-size: clamp(1.5rem, 3.1vw, 2.5rem);
  line-height: 1.24;
  letter-spacing: -0.022em;
  max-width: 24ch;
  margin: 0;
}
.quote__attr {
  margin-top: 1.75rem;
  font-size: .72rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--stone);
}

/* A slot waiting for a real client quote — deliberately obvious */
.quote-slot {
  border: 1px dashed var(--line-strong);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: rgba(255, 255, 255, .45);
  position: relative;
}
.quote-slot__tag {
  display: inline-block;
  font-size: .625rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--walnut);            /* 5.2:1 on cream — wood tone failed at 3.75 */
  margin-bottom: 1.1rem;
}
.quote-slot__text {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 0, "WONK" 0;
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  line-height: 1.4;
  color: var(--stone);
  margin: 0 0 1.1rem;
}
.quote-slot__hint { font-size: .8125rem; color: var(--stone); margin: 0; }
.quote-slot__hint code {
  font-size: .78rem;
  background: var(--sand);
  padding: .12rem .4rem;
  border-radius: 2px;
}

/* CTA band */
.cta-band { position: relative; overflow: hidden; isolation: isolate; }
.cta-band__media { position: absolute; inset: 0; z-index: -2; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(14, 53, 66, .97) 0%, rgba(21, 74, 92, .93) 48%, rgba(21, 74, 92, .84) 100%);
}
.cta-band__inner { text-align: center; max-width: 46rem; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 2.4rem; }

/* Detail lists */
.spec-list { list-style: none; margin: 0; padding: 0; }
.spec-list li {
  display: grid;
  grid-template-columns: minmax(7.5rem, 11rem) minmax(0, 1fr);
  gap: 1rem 1.75rem;
  padding-block: .95rem;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.spec-list dt, .spec-list .k {
  font-size: .6875rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--stone);
}
.spec-list .v { color: var(--graphite); }

.tick-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; }
.tick-list li {
  display: grid;
  grid-template-columns: 1.4rem minmax(0, 1fr);
  gap: .85rem;
  align-items: start;
  font-size: .98rem;
  color: var(--graphite);
}
.tick-list svg { width: 15px; height: 15px; margin-top: .45rem; stroke: var(--brand-slate); fill: none; stroke-width: 1.7; }
.on-dark .tick-list li { color: rgba(248, 245, 240, .85); }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding-block: 1.4rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: var(--serif);
  font-variation-settings: "SOFT" 0, "WONK" 0;
  font-size: clamp(1.08rem, 1.65vw, 1.28rem);
  letter-spacing: -0.015em;
  min-height: 56px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 13px; height: 13px;
  background:
    linear-gradient(var(--brand), var(--brand)) center/13px 1px no-repeat,
    linear-gradient(var(--brand), var(--brand)) center/1px 13px no-repeat;
  transition: transform .45s var(--ease);
  margin-top: .45rem;
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq__answer { padding-bottom: 1.6rem; color: var(--stone); max-width: 62ch; }

/* Gallery */
.gallery { display: grid; gap: clamp(.75rem, 1.6vw, 1.15rem); grid-template-columns: repeat(6, 1fr); }
.gallery > *:nth-child(1) { grid-column: span 4; }
.gallery > *:nth-child(2) { grid-column: span 2; }
.gallery > *:nth-child(3) { grid-column: span 2; }
.gallery > *:nth-child(4) { grid-column: span 4; }

/* Preview notice — rides inside the fixed header, so it never collides with it
   and deleting it changes no other measurement. */
.preview-note {
  background: var(--char);
  color: rgba(248, 245, 240, .92);
  font-size: .74rem;
  line-height: 1.5;
  letter-spacing: .045em;
  text-align: center;
  padding: .5rem var(--gutter);
}
.preview-note code { color: var(--brand-mist); }
.preview-note__how { color: var(--brand-mist); }
@media (max-width: 720px) {
  .preview-note { font-size: .68rem; padding: .45rem var(--gutter); }
  .preview-note__how { display: none; }
}

/* 09 -------------------------------------------------- Before / after slider */
.ba {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--cream);
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
}
.ba img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba__after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba__label {
  position: absolute;
  top: 1.1rem;
  z-index: 3;
  font-size: .625rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .45rem .85rem;
  background: rgba(12, 26, 32, .72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--ivory);
  pointer-events: none;
}
.ba__label--before { left: 1.1rem; }
.ba__label--after  { right: 1.1rem; }
.ba__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos, 50%);
  width: 2px;
  background: var(--ivory);
  transform: translateX(-1px);
  z-index: 4;
  box-shadow: 0 0 0 1px rgba(12, 26, 32, .18);
}
.ba__grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--ivory);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 26px rgba(12, 26, 32, .28);
  cursor: ew-resize;
  border: 0;
  padding: 0;
}
.ba__grip svg { width: 24px; height: 14px; stroke: var(--brand); fill: none; stroke-width: 1.6; }
.ba__grip:focus-visible { outline: 2px solid var(--brand); outline-offset: 4px; }
.ba__hint {
  margin-top: .95rem;
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--stone);
}

/* 10 --------------------------------------------------------------- Forms */
.form { display: grid; gap: 1.35rem; }
.field { display: grid; gap: .5rem; }
.field--half { grid-column: span 1; }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.35rem; }

.label {
  font-size: .6875rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--graphite);
  font-weight: 500;
}
.label .req { color: var(--wood); }
.label .opt { text-transform: none; letter-spacing: .02em; color: var(--stone); font-weight: 400; }

.input, .select, .textarea {
  width: 100%;
  min-height: 54px;
  padding: .95rem 1.05rem;
  background: var(--ivory);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  font-size: 1rem;
  color: var(--char);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease);
  appearance: none;
}
.textarea { min-height: 150px; resize: vertical; line-height: 1.65; padding-top: 1rem; }
.input:hover, .select:hover, .textarea:hover { border-color: var(--brand-slate); }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(21, 74, 92, .12);
  background: #fff;
}
.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2363605A' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.05rem center;
  background-size: 12px;
  padding-right: 2.75rem;
}
.input[aria-invalid="true"], .select[aria-invalid="true"], .textarea[aria-invalid="true"] {
  border-color: #A5462F;
  box-shadow: 0 0 0 3px rgba(165, 70, 47, .1);
}
.error-msg {
  font-size: .8125rem;
  color: #8C3A26;
  min-height: 0;
}
.error-msg:empty { display: none; }

.checkgrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem; }
.checkitem {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  cursor: pointer;
  font-size: .92rem;
  min-height: 52px;
  background: var(--ivory);
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.checkitem:hover { border-color: var(--brand-slate); }
.checkitem input {
  appearance: none;
  width: 17px; height: 17px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  flex: none;
  display: grid;
  place-content: center;
  transition: background-color .25s var(--ease), border-color .25s var(--ease);
}
.checkitem input::after {
  content: "";
  width: 9px; height: 5px;
  border-left: 1.6px solid var(--ivory);
  border-bottom: 1.6px solid var(--ivory);
  transform: rotate(-45deg) scale(0);
  transition: transform .25s var(--ease);
}
.checkitem input:checked { background: var(--brand); border-color: var(--brand); }
.checkitem input:checked::after { transform: rotate(-45deg) scale(1); }
.checkitem:has(input:checked) { border-color: var(--brand); background: rgba(21, 74, 92, .04); }

.form__note { font-size: .8125rem; color: var(--stone); }

/* Replaces the form once an enquiry has actually been sent. */
.form-success {
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--brand);
  background: rgba(21, 74, 92, .04);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
.form-success h2 { margin-bottom: .9rem; }
.form-success p { color: var(--stone); }
.form-success__contact { margin-top: 1.4rem; }
.form-success__contact a {
  color: var(--brand);
  font-size: 1.15rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(21, 74, 92, .3);
  display: inline-block;
  padding-block: .3rem;
}
.form-success__contact a:hover { border-bottom-color: var(--brand); }
.form__status {
  padding: 1rem 1.15rem;
  border-radius: 2px;
  font-size: .92rem;
  display: none;
}
.form__status.is-visible { display: block; }
.form__status[data-tone="ok"] { background: rgba(21, 74, 92, .08); color: var(--brand); border: 1px solid rgba(21, 74, 92, .2); }
.form__status[data-tone="err"] { background: rgba(165, 70, 47, .07); color: #8C3A26; border: 1px solid rgba(165, 70, 47, .22); }

.contact-aside { display: grid; gap: 2rem; align-content: start; }
.contact-line {
  display: grid;
  gap: .3rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}
.contact-line dt {
  font-size: .6875rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--stone);
}
.contact-line dd { margin: 0; font-size: 1.06rem; }
.contact-line dd a { color: var(--char); text-decoration: none; display: inline-block;
  padding-block: .3rem; border-bottom: 1px solid var(--line-strong); }
.contact-line dd a:hover { border-bottom-color: var(--brand); color: var(--brand); }

/* 11 -------------------------------------------------------------- Footer */
.site-footer {
  background: var(--brand);
  color: rgba(248, 245, 240, .8);
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem;
}
.site-footer a { color: rgba(248, 245, 240, .8); text-decoration: none; }
.site-footer a:hover { color: var(--ivory); }
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line-light);
}
.footer__logo { width: 190px; margin-bottom: 1.5rem; }
.footer__statement {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 0, "WONK" 0;
  font-size: 1.3rem;
  color: var(--ivory);
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-bottom: 1.35rem;
}
/* Semantically these are section headings (h2) so the document outline stays
   intact; visually they are small caps labels. */
.footer__col-title {
  font-family: var(--sans);
  font-size: .6875rem;
  line-height: 1.4;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand-mist);
  margin: 0 0 1.2rem;
  font-weight: 500;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .1rem; font-size: .92rem; }
.footer__col ul a { display: inline-block; padding-block: .32rem; }
.footer__bottom {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(248, 245, 240, .72);   /* 5.5:1 on the brand teal */
}
.social { display: flex; gap: .65rem; }
.social a {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  transition: background-color .35s var(--ease), border-color .35s var(--ease);
}
.social a:hover { background: var(--ivory); border-color: var(--ivory); }
.social svg { width: 17px; height: 17px; fill: currentColor; }
.social a:hover svg { fill: var(--brand); }

/* 12 -------------------------------------------------------------- Motion */
/* Reveal-on-scroll only ever hides content when JavaScript is actually running.
   Without the .js class (JS disabled, or the inline bootstrap never ran) every
   element renders in its final state — nothing is ever invisible to a reader or
   a crawler because of an animation. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .95s var(--ease), transform 1.05s var(--ease);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

.js [data-reveal="mask"] { opacity: 1; transform: none; clip-path: inset(0 0 100% 0); transition: clip-path 1.15s var(--ease); transition-delay: var(--d, 0ms); }
.js [data-reveal="mask"].is-in { clip-path: inset(0 0 0 0); }

.js [data-reveal="fade"] { transform: none; }

.page-shell { opacity: 1; transition: opacity .32s var(--ease-soft); }
body.is-leaving .page-shell { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .hero__media { transform: none !important; }
}

/* 13 ---------------------------------------------------------- Responsive */
@media (max-width: 1080px) {
  .trust__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__top { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

@media (max-width: 960px) {
  :root { --header-h: 72px; }
  .nav__list, .nav .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: minmax(0, 1fr); gap: clamp(2rem, 6vw, 3rem); }
  .split--reverse > *:first-child { order: 2; }
  .process-step__body { grid-template-columns: minmax(0, 1fr); gap: .6rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery > * { grid-column: span 1 !important; }
  .project-card--feature { grid-column: span 1; }
}

@media (max-width: 720px) {
  body { font-size: 1.02rem; }
  .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); }
  .grid-2 { grid-template-columns: minmax(0, 1fr); }
  .trust__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form__row { grid-template-columns: minmax(0, 1fr); }
  .checkgrid { grid-template-columns: minmax(0, 1fr); }
  .hero { min-height: min(92svh, 760px); }
  .hero__scroll { display: none; }
  .process-step { grid-template-columns: minmax(0, 1fr); gap: .5rem; }
  .process-step__num { font-size: 1.15rem; }
  .spec-list li { grid-template-columns: minmax(0, 1fr); gap: .25rem; }
  .footer__top { grid-template-columns: minmax(0, 1fr); }
  .footer__bottom { justify-content: flex-start; }
  .btn { width: 100%; }
  .btn-row .btn { width: 100%; }
  .cta-band .btn-row { flex-direction: column; }
  .quote__text { max-width: none; }
  .ba { aspect-ratio: 4 / 3; }
}

@media (max-width: 420px) {
  .brand__mark { width: 34px; }
  .brand__word { font-size: .95rem; }
  .gallery { grid-template-columns: minmax(0, 1fr); }
}

/* Print — occasionally someone prints a project page for a designer */
@media print {
  .site-header, .mobile-nav, .hero__scroll, .cta-band, .preview-note { display: none !important; }
  body { background: #fff; }
  [data-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
}
