/* Ashford Joinery — premium craft workshop brand */
:root {
  --paper: #efe6d8;
  --cream: #faf6ee;
  --ink: #16251e;
  --forest: #1c3b2e;
  --forest-2: #0f2219;
  --mute: #5f6e65;
  --line: rgba(22, 37, 30, 0.12);
  --copper: #b06a32;
  --copper-2: #d4a06a;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Source Sans 3", system-ui, sans-serif;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 30px 60px rgba(15, 34, 25, 0.12);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.site-php {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(176, 106, 50, 0.08), transparent 50%),
    linear-gradient(180deg, #f5efe4 0%, var(--paper) 40%, #e8dece 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.cms-bar {
  display: flex; justify-content: space-between; gap: .75rem; flex-wrap: wrap;
  padding: .4rem 1.25rem;
  background: var(--forest-2);
  color: rgba(250, 246, 238, 0.45);
  font-size: .68rem;
  letter-spacing: .06em;
}
.cms-bar strong { color: var(--copper-2); }
.cms-bar code { color: var(--copper-2); font-size: .9em; }
.cms-links { display: flex; gap: .9rem; flex-wrap: wrap; }
.cms-links a { color: rgba(250, 246, 238, 0.4); font-weight: 600; }
.cms-links a:hover { color: #fff; }

.frame {
  width: min(1240px, calc(100% - 1.25rem));
  margin: .85rem auto 2rem;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: clip;
}

.site-nav {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.15rem clamp(1.15rem, 3vw, 2.25rem);
  border-bottom: 1px solid var(--line);
  background: rgba(250, 246, 238, 0.94);
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(12px);
}
.logo {
  display: inline-flex; align-items: center; gap: .8rem;
  margin-right: auto;
}
.logo-badge {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1.5px solid var(--forest);
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 700;
  font-size: .85rem;
  color: var(--forest);
  background: var(--paper);
  letter-spacing: .04em;
}
.logo-text {
  display: flex; flex-direction: column;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.logo-text small {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: .15rem;
}
.site-nav nav { display: flex; gap: 1.35rem; flex-wrap: wrap; }
.site-nav nav a {
  color: var(--mute);
  font-weight: 600;
  font-size: .9rem;
  padding: .2rem 0;
  border-bottom: 2px solid transparent;
}
.site-nav nav a.is-active,
.site-nav nav a:hover {
  color: var(--forest);
  border-bottom-color: var(--copper);
}

main.page { padding: 0; }

/* Full-bleed banner hero inside frame */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  min-height: min(78vh, 700px);
  color: #fff;
  overflow: hidden;
  background: var(--forest-2);
}
.hero-plank {
  position: absolute;
  inset: 0;
  margin: 0;
}
.hero-plank img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .78;
  min-height: 100%;
}
.hero-plank::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(15, 34, 25, 0.92) 0%, rgba(15, 34, 25, 0.55) 45%, rgba(15, 34, 25, 0.25) 100%),
    linear-gradient(to top, rgba(15, 34, 25, 0.75), transparent 50%);
}
.plank-label {
  position: absolute;
  bottom: 1.25rem; right: clamp(1rem, 3vw, 2rem);
  z-index: 2;
  margin: 0;
  text-align: right;
  color: rgba(250, 246, 238, 0.55);
}
.plank-label span {
  display: block;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}
.plank-label strong {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(250, 246, 238, 0.75);
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 10vh, 7rem) clamp(1.25rem, 4vw, 2.75rem) clamp(2.5rem, 6vh, 4rem);
  max-width: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(78vh, 700px);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  margin: 0 0 1.1rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--copper-2);
}
.eyebrow .rule {
  width: 28px; height: 1.5px;
  background: currentColor;
}
.eyebrow.light { color: var(--copper-2); }
.hero h1 {
  margin: 0 0 1.1rem;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.8rem, 6.5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 11ch;
  color: #fff;
}
.lead {
  margin: 0;
  font-size: 1.1rem;
  color: rgba(250, 246, 238, 0.72);
  max-width: 36ch;
  line-height: 1.7;
}
.actions {
  display: flex; flex-wrap: wrap; gap: .7rem;
  margin-top: 1.75rem;
}
.hero-points {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.hero-points li {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .45rem .8rem;
  border: 1px solid rgba(250, 246, 238, 0.25);
  border-radius: 999px;
  color: rgba(250, 246, 238, 0.8);
  background: rgba(0,0,0,.15);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.4rem;
  font-weight: 700;
  font-size: .9rem;
  border-radius: 3px;
  border: 1.5px solid transparent;
  transition: transform .2s var(--ease), background .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--cream);
  color: var(--forest-2) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
}
.btn-primary:hover { background: #fff; }
.btn-ghost {
  border-color: rgba(250, 246, 238, 0.35);
  color: #fff !important;
  background: transparent;
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-light {
  display: inline-flex;
  margin-top: 1.25rem;
  padding: .75rem 1.25rem;
  background: var(--cream);
  color: var(--forest-2) !important;
  font-weight: 700;
  border-radius: 3px;
}

/* Inner content padding */
.section, .trust-bar, .cta-final, .band {
  margin-left: clamp(1.15rem, 3vw, 2.5rem);
  margin-right: clamp(1.15rem, 3vw, 2.5rem);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -1.5rem;
  position: relative;
  z-index: 3;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.trust-bar > div {
  padding: 1.35rem 1rem;
  text-align: center;
  border-right: 1px solid var(--line);
}
.trust-bar > div:last-child { border-right: 0; }
.trust-bar strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.65rem;
  color: var(--forest);
  line-height: 1.1;
}
.trust-bar span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mute);
}

.section { padding: 3rem 0 1.5rem; }
.sec-head { margin-bottom: 1.75rem; max-width: 460px; }
.sec-head h2 {
  margin: 0 0 .45rem;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--forest-2);
  letter-spacing: -0.02em;
}
.sec-head p { margin: 0; color: var(--mute); }

/* Mosaic */
.mosaic { padding-top: 2.5rem; }
.mosaic-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: .9rem;
  min-height: 460px;
}
.mosaic-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--forest-2);
}
.mosaic-main { grid-row: span 2; }
.mosaic-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 180px;
  transition: transform .7s var(--ease);
}
.mosaic-grid figure:hover img { transform: scale(1.05); }
.mosaic-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  margin: 0;
  padding: 2rem 1.1rem .9rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #faf6ee;
  background: linear-gradient(transparent, rgba(15,34,25,.8));
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.5rem 1.3rem 1.65rem;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.card-icon {
  display: block;
  font-family: var(--serif);
  color: var(--copper);
  font-size: 1.15rem;
  margin-bottom: .9rem;
}
.card h3 {
  margin: 0 0 .45rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--forest-2);
}
.card p { margin: 0; color: var(--mute); font-size: .95rem; }

/* Process */
.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
}
.process-steps li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.35rem 1.15rem 1.5rem;
  border-top: 3px solid var(--forest);
}
.process-steps span {
  display: block;
  font-family: var(--serif);
  color: var(--copper);
  font-size: 1.15rem;
  margin-bottom: .7rem;
}
.process-steps h3 {
  margin: 0 0 .4rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--forest-2);
}
.process-steps p {
  margin: 0;
  font-size: .9rem;
  color: var(--mute);
  line-height: 1.55;
}

/* Band */
.band {
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding: 0;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-2) 100%);
  color: var(--cream);
  border-radius: 4px;
  overflow: hidden;
}
.band-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.band-inner {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.band h2 {
  margin: 0 0 .75rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: #fff;
}
.band p { margin: 0; color: rgba(250, 246, 238, 0.72); max-width: 38ch; line-height: 1.65; }
.band-photo { margin: 0; min-height: 280px; }
.band-photo img {
  width: 100%; height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.mat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
}
.mat-grid article {
  padding: 1.3rem 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.mat-grid h3 {
  margin: 0 0 .4rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--forest-2);
}
.mat-grid p { margin: 0; font-size: .9rem; color: var(--mute); }

.quote-sec blockquote {
  margin: 0;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--forest-2);
  color: var(--cream);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.quote-sec blockquote::before {
  content: "“";
  position: absolute;
  top: -0.2em; left: .1em;
  font-family: var(--serif);
  font-size: 10rem;
  color: rgba(212, 160, 106, 0.15);
  line-height: 1;
}
.quote-sec p {
  position: relative;
  margin: 0 0 1.2rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  line-height: 1.35;
  max-width: 28ch;
  color: #fff;
}
.quote-sec cite {
  position: relative;
  font-style: normal;
  font-size: .85rem;
  color: var(--copper-2);
  font-weight: 700;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-bottom: 0;
  padding: 0 1.15rem;
}
.faq-list details:first-child { border-radius: 4px 4px 0 0; }
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
  border-radius: 0 0 4px 4px;
}
.faq-list summary {
  cursor: pointer;
  padding: 1.15rem 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest-2);
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details p {
  margin: 0 0 1.15rem;
  color: var(--mute);
  max-width: 56ch;
  line-height: 1.65;
}

.cta-final {
  margin: 2rem clamp(1.15rem, 3vw, 2.5rem) 2.5rem;
  padding: clamp(2.25rem, 4vw, 3rem);
  text-align: center;
  background: linear-gradient(160deg, #fff, var(--paper));
  border: 1px solid var(--line);
  border-radius: 4px;
}
.cta-final h2 {
  margin: .4rem 0 .65rem;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  color: var(--forest-2);
}
.cta-final > div > p:not(.eyebrow) {
  margin: 0 auto 1.35rem;
  color: var(--mute);
  max-width: 40ch;
}
.cta-final .eyebrow { justify-content: center; }
.cta-final .btn-primary {
  background: var(--forest);
  color: var(--cream) !important;
}
.cta-final .btn-primary:hover { background: var(--forest-2); }

/* Services page */
.hero-simple {
  min-height: auto;
  background: transparent;
  color: var(--ink);
  padding: 0 clamp(1.15rem, 3vw, 2.5rem);
}
.hero-simple .hero-copy {
  min-height: auto;
  padding: 3rem 0 1.5rem;
  max-width: 640px;
  color: var(--ink);
}
.hero-simple h1 { color: var(--forest-2); }
.hero-simple .lead { color: var(--mute); }
.hero-simple .eyebrow { color: var(--copper); }
.hero-simple .btn-primary {
  background: var(--forest);
  color: var(--cream) !important;
}
.hero-simple .btn-ghost {
  border-color: var(--line);
  color: var(--forest) !important;
}

.svc-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  padding: 0 clamp(1.15rem, 3vw, 2.5rem) 2rem;
}
.svc-photo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.svc-photo-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.svc-photo-card img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}
.svc-photo-card div { padding: 1.2rem 1.25rem 1.4rem; }
.svc-photo-card h3 {
  margin: 0 0 .4rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--forest-2);
}
.svc-photo-card p { margin: 0; color: var(--mute); }

.hero-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem clamp(1.15rem, 3vw, 2.5rem) 1rem;
  min-height: auto;
  background: transparent;
  color: var(--ink);
}
.hero-about .hero-copy {
  min-height: auto;
  padding: 1rem 0;
  color: var(--ink);
}
.hero-about h1 { color: var(--forest-2); }
.hero-about .lead { color: var(--mute); }
.hero-about .eyebrow { color: var(--copper); }
.hero-about .hero-plank {
  position: relative;
  min-height: 340px;
  border-radius: 4px;
  overflow: hidden;
}
.hero-about .hero-plank::after { display: none; }
.hero-about .hero-plank img { opacity: 1; min-height: 340px; }
.story { padding: 1rem clamp(1.15rem, 3vw, 2.5rem) 3rem; }
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
}
.story-grid h2 {
  margin: 0 0 .85rem;
  font-family: var(--serif);
  font-size: 1.85rem;
  color: var(--forest-2);
}
.story-body {
  margin: 0;
  color: var(--mute);
  font-size: 1.08rem;
  line-height: 1.75;
}
.stats {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}
.stats > div {
  padding: 1.2rem 1.3rem;
  border-bottom: 1px solid var(--line);
}
.stats > div:last-child { border-bottom: 0; }
.stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.85rem;
  color: var(--forest);
}
.stats span {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mute);
}

.contact-box {
  max-width: 460px;
  margin: 0 clamp(1.15rem, 3vw, 2.5rem) 3rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: .75rem;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.contact-row span {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--copper);
}
.contact-row a, .contact-row strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest-2);
}
.contact-box .note {
  margin: 0;
  padding: 1rem 1.4rem 1.2rem;
  font-size: .85rem;
  color: var(--mute);
  background: var(--paper);
}

/* Footer */
.site-foot {
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 2rem clamp(1.15rem, 3vw, 2.5rem) 1.25rem;
}
.foot-inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.foot-brand {
  display: flex; gap: .85rem; align-items: flex-start;
}
.foot-brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--forest-2);
  margin-bottom: .3rem;
}
.foot-brand p { margin: 0; color: var(--mute); font-size: .9rem; }
.foot-meta { margin-top: .5rem !important; }
.foot-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.foot-cols h4 {
  margin: 0 0 .7rem;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mute);
}
.foot-cols a {
  display: block;
  color: var(--forest);
  font-weight: 600;
  font-size: .92rem;
  margin: .3rem 0;
}
.foot-base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: .75rem;
  color: var(--mute);
}

@media (max-width: 900px) {
  .site-nav nav { display: none; }
  .trust-bar { grid-template-columns: 1fr 1fr; margin-top: 1rem; }
  .trust-bar > div:nth-child(2) { border-right: 0; }
  .trust-bar > div:nth-child(1),
  .trust-bar > div:nth-child(2) { border-bottom: 1px solid var(--line); }
  .mosaic-grid { grid-template-columns: 1fr; grid-template-rows: auto; min-height: 0; }
  .mosaic-main { grid-row: auto; min-height: 240px; }
  .grid-3, .process-steps { grid-template-columns: 1fr 1fr; }
  .mat-grid { grid-template-columns: 1fr 1fr; }
  .band-split { grid-template-columns: 1fr; }
  .svc-photo-grid { grid-template-columns: 1fr; }
  .hero-about, .story-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-3, .process-steps, .mat-grid { grid-template-columns: 1fr; }
  .frame { margin: 0; width: 100%; border-left: 0; border-right: 0; }
}
/* ===== v50 MAX POLISH ===== */
::selection { background: rgba(176,106,50,.25); color: #16251e; }
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 3px; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, #1c3b2e, #d4a06a);
  box-shadow: 0 0 10px rgba(176,106,50,.45);
}
.fx-paper {
  pointer-events: none; position: fixed; inset: 0; z-index: 0; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.site-php > .frame, .site-php > .cms-bar, .site-php > .scroll-progress, .site-php > .mobile-fab { position: relative; z-index: 1; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1.5px solid var(--forest);
  background: var(--cream);
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  margin-left: auto;
}
.nav-toggle span { display: block; width: 15px; height: 1.5px; background: var(--forest); }
.hero .hero-plank img {
  transform: scale(1.08);
  will-change: transform;
}
.hero-copy .eyebrow, .hero-copy h1, .hero-copy .lead, .hero-copy .actions, .hero-copy .hero-points {
  animation: rise .85s cubic-bezier(.22,1,.36,1) both;
}
.hero-copy h1 { animation-delay: .08s; }
.hero-copy .lead { animation-delay: .16s; }
.hero-copy .actions { animation-delay: .24s; }
.hero-copy .hero-points { animation-delay: .32s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.card:nth-child(2).reveal, .process-steps li:nth-child(2).reveal { transition-delay: .07s; }
.card:nth-child(3).reveal, .process-steps li:nth-child(3).reveal { transition-delay: .14s; }
.process-steps li:nth-child(4).reveal { transition-delay: .21s; }
.trust-bar {
  animation: rise .9s .2s both;
}
.mobile-fab {
  display: none;
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 60;
  text-align: center;
  padding: 1rem;
  background: var(--forest);
  color: var(--cream) !important;
  font-weight: 700;
  font-size: .9rem;
  border-radius: 3px;
  box-shadow: 0 16px 40px rgba(15,34,25,.35);
}
.mosaic-grid figure, .svc-photo-card, .card, .band {
  will-change: transform;
}
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav nav {
    display: none;
    position: fixed; inset: 0; z-index: 80;
    background: rgba(250,246,238,.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    gap: .25rem;
  }
  .site-nav nav.is-open { display: flex; }
  .site-nav nav a {
    font-family: var(--serif);
    font-size: 2.2rem;
    color: var(--forest-2);
    border: 0 !important;
    padding: .5rem 0;
  }
  .mobile-fab { display: block; }
  body.nav-open { overflow: hidden; }
  main.page { padding-bottom: 4.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  * { animation: none !important; }
}
/* ===== v60 WAHOO ===== */
.wood-strip {
  display: flex;
  gap: .9rem;
  overflow-x: auto;
  padding: .25rem 0 1.5rem;
  scroll-snap-type: x mandatory;
  cursor: grab;
  margin-bottom: 1.25rem;
  scrollbar-width: thin;
  scrollbar-color: #b06a32 transparent;
}
.wood-strip.is-drag { cursor: grabbing; scroll-snap-type: none; }
.wood-card {
  flex: 0 0 min(70vw, 260px);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.wood-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: var(--shadow);
}
.wood-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.wood-card h3 {
  margin: .85rem 1rem 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--forest-2);
}
.wood-card p {
  margin: .25rem 1rem 1rem;
  font-size: .85rem;
  color: var(--mute);
}
.logo-badge.stamp {
  animation: stamp .55s cubic-bezier(.2,1.4,.3,1);
}
@keyframes stamp {
  0% { transform: scale(1); }
  40% { transform: scale(1.18) rotate(-6deg); }
  100% { transform: scale(1); }
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(600px 400px at 30% 70%, rgba(212,160,106,.18), transparent 60%);
  mix-blend-mode: soft-light;
}
.mosaic-grid img { will-change: transform; }
.btn-primary { transition: transform .12s ease-out, background .2s !important; }
/* ===== v70 WTF ===== */
body.is-booting { overflow: hidden; }
.wtf-boot.a-boot {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
  background: #0f2219;
  color: #faf6ee;
  transition: opacity .7s ease, visibility .7s;
}
.wtf-boot.a-boot.is-out { opacity: 0; visibility: hidden; pointer-events: none; }
.a-boot-inner { text-align: center; }
.a-stamp {
  display: grid; place-items: center;
  width: 88px; height: 88px; margin: 0 auto 1.25rem;
  border: 2px solid #d4a06a; border-radius: 50%;
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  color: #d4a06a;
  animation: stampIn .7s cubic-bezier(.2,1.5,.3,1) both;
}
@keyframes stampIn {
  from { transform: scale(1.6) rotate(-12deg); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.a-boot-inner p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.75rem;
}
.a-boot-inner small {
  display: block; margin-top: .4rem;
  letter-spacing: .16em; text-transform: uppercase;
  font-size: .72rem; color: rgba(250,246,238,.5);
}

/* Sticky scroll story */
.story-scroll {
  position: relative;
  height: 280vh;
  margin: 2rem 0 1rem;
}
.story-sticky {
  position: sticky; top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  overflow: hidden;
  background: var(--forest-2);
  color: #faf6ee;
}
.story-visual {
  position: relative;
  overflow: hidden;
}
.story-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity .7s ease, transform 1.1s var(--ease);
  filter: brightness(.85);
}
.story-visual img.is-show {
  opacity: 1;
  transform: scale(1);
}
.story-progress {
  position: absolute;
  left: calc(55% - 1px);
  top: 15%; bottom: 15%;
  width: 2px;
  background: rgba(255,255,255,.12);
  z-index: 3;
}
.story-progress b {
  position: absolute; left: 0; top: 0; width: 100%; height: 0;
  background: linear-gradient(to bottom, #d4a06a, #6ee7b7);
  transition: height .15s linear;
}
.story-copy {
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex; flex-direction: column; justify-content: center;
  gap: 1.25rem;
  position: relative; z-index: 2;
}
.story-step {
  opacity: .28;
  transform: translateY(8px);
  transition: opacity .4s, transform .4s;
  border-left: 2px solid transparent;
  padding-left: 1rem;
}
.story-step.is-on { opacity: .55; }
.story-step.is-active {
  opacity: 1;
  transform: none;
  border-left-color: #d4a06a;
}
.story-step span {
  display: block;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #d4a06a;
  font-weight: 700;
  margin-bottom: .4rem;
}
.story-step h3 {
  margin: 0 0 .4rem;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
}
.story-step p {
  margin: 0;
  color: rgba(250,246,238,.65);
  font-size: .95rem;
  max-width: 34ch;
  line-height: 1.55;
}
.wipe-prep {
  clip-path: inset(0 0 100% 0);
  transition: clip-path .9s var(--ease);
}
.wipe-prep.wipe-in { clip-path: inset(0 0 0 0); }
.wood-card, .svc-photo-card {
  transform-style: preserve-3d;
  transition: transform .12s ease-out !important;
}
@media (max-width: 900px) {
  .story-scroll { height: auto; }
  .story-sticky {
    position: relative;
    height: auto;
    grid-template-columns: 1fr;
  }
  .story-visual { min-height: 240px; }
  .story-progress { display: none; }
  .story-step { opacity: 1; transform: none; border-left-color: rgba(212,160,106,.4); margin-bottom: .75rem; }
}
