/* =========================================================
   Art Floor LLC - "Art you walk on"
   Editorial flooring art direction.
   ========================================================= */

:root {
  /* Brand */
  --green:      #2E4A57;   /* slate teal (brand dark) */
  --green-deep: #22333B;
  --ink:        #24221E;   /* warm near-black text */
  --ink-soft:   #4C463D;
  --stone:      #6E665A;   /* warm taupe body copy */
  --stone-2:    #948B7B;
  --bone:       #F2F3F4;   /* neutral off-white section */
  --paper:      #FFFFFF;   /* white page bg */
  --coral:      #BC5A2D;   /* terracotta accent */
  --coral-2:    #A44D24;
  --line:       rgba(36, 34, 28, .16);
  --line-soft:  rgba(36, 34, 28, .09);
  --white:      #FFFFFF;

  --serif: "Boska", "Georgia", "Times New Roman", serif;
  --sans:  "General Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --edge: clamp(20px, 5vw, 72px);      /* page side margin */
  --maxw: 1320px;
  --sp:  clamp(84px, 12vw, 190px);     /* section rhythm */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 40px 90px -46px rgba(34,32,28,.55);
  --shadow-sm: 0 18px 44px -26px rgba(34,32,28,.35);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  background: var(--paper); color: var(--ink);
  font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; background: var(--bone); }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--coral); color: #fff; }
:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; }

.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--green); color: #fff; padding: 10px 16px; transition: top .2s; }
.skip-link:focus { top: 12px; }

/* ---------- Utility: measured tick-label ---------- */
.tick-label {
  font-family: var(--sans); font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: .55em; white-space: nowrap;
}
.tick-label--light { color: rgba(255,255,255,.72); }

/* ---------- Signature: dimension line ---------- */
.dim {
  display: flex; align-items: center; color: var(--coral);
  width: min(560px, 100%); margin-top: clamp(20px, 3vw, 34px);
}
.dim__end { width: 1px; height: 10px; background: currentColor; flex: none; }
.dim__line { flex: 1; height: 1px; background: currentColor; }
.dim__txt { font-family: var(--sans); font-size: .68rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; padding: 0 14px; white-space: nowrap; }
.dim__mini { display: block; width: 26px; height: 1px; background: var(--coral); margin-bottom: 18px; position: relative; }
.dim__mini::before, .dim__mini::after { content: ""; position: absolute; top: -3px; width: 1px; height: 7px; background: var(--coral); }
.dim__mini::before { left: 0; } .dim__mini::after { right: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 16px 30px; font-size: .9rem; font-weight: 600; letter-spacing: .01em;
  border-radius: 100px; border: 1px solid transparent;
  transition: transform .4s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
}
.btn svg { transition: transform .4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--solid { background: var(--green); color: var(--paper); }
.btn--solid:hover { background: var(--coral); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.btn--light { background: var(--paper); color: var(--green); }
.btn--light:hover { background: var(--coral); color: #fff; transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { font-size: 1.02rem; padding: 18px 34px; }
.btn--ghost-light { background: transparent; color: var(--paper); border-color: rgba(255,255,255,.5); }
.btn--ghost-light:hover { background: var(--paper); color: var(--green); border-color: var(--paper); transform: translateY(-2px); }

.link-arrow { display: inline-flex; align-items: center; gap: .5em; font-weight: 600; font-size: .92rem; padding-bottom: 3px; border-bottom: 1px solid var(--line); transition: border-color .3s, color .3s; }
.link-arrow svg { transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--coral); border-color: var(--coral); }
.link-arrow:hover svg { transform: translateX(4px); }

.pill { position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: .55em; padding: 13px 22px; background: var(--green); color: var(--paper); border-radius: 3px; font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; transition: color .35s var(--ease); }
.pill::before { content: ""; position: absolute; inset: 0; background: var(--coral); transform: translateX(-101%); transition: transform .45s var(--ease); }
.pill:hover::before { transform: translateX(0); }
.pill > * { position: relative; z-index: 1; }
.pill svg { position: relative; z-index: 1; transition: transform .35s var(--ease); }
.pill:hover svg { transform: translateX(4px); }

/* ---------- Masthead ---------- */
.mast {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent; transition: border-color .4s, background .4s;
}
.mast.is-scrolled { border-color: var(--line-soft); }
.mast__inner { display: flex; align-items: center; gap: 26px; height: 94px; padding-inline: var(--edge); max-width: var(--maxw); margin-inline: auto; }

.brand-logo { display: inline-flex; align-items: center; }
.brand-logo img { height: 68px; width: auto; display: block; background: none; }
@media (max-width: 480px) { .brand-logo img { height: 54px; } }
.brand-logo--footer img { height: 80px; }
.wordmark-text { font-family: var(--serif); font-weight: 700; font-size: 1.6rem; letter-spacing: -.01em; color: var(--green); }
.brand-logo--footer .wordmark-text { color: var(--paper); font-size: 2rem; }

.wordmark { display: inline-flex; align-items: baseline; gap: 9px; }
.wordmark__g { font-family: var(--serif); font-weight: 700; font-size: 1.55rem; letter-spacing: .01em; color: var(--green); }
.wordmark__sub { font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; font-weight: 600; color: var(--stone); }
.wordmark--light .wordmark__g { color: var(--paper); }
.wordmark--light .wordmark__sub { color: rgba(255,255,255,.6); }

.mast__nav { display: flex; gap: 30px; margin-left: 18px; margin-right: auto; }
.mast__nav a { position: relative; font-size: 1.05rem; font-weight: 500; color: var(--ink-soft); padding: 6px 0; }
.mast__nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px; background: var(--coral); transition: width .35s var(--ease); }
.mast__nav a:hover { color: var(--green); }
.mast__nav a:hover::after { width: 100%; }

.burger { display: none; width: 44px; height: 44px; flex-direction: column; align-items: center; justify-content: center; gap: 6px; margin-left: auto; }
.burger span { width: 24px; height: 2px; background: var(--green); transition: transform .35s var(--ease), opacity .3s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
@media (max-width: 940px) { .mast__nav, .pill { display: none; } .burger { display: flex; } }
@media (max-width: 640px) { .mast__inner { height: 76px; } }

.drawer { position: fixed; inset: 0; z-index: 99; background: var(--paper); padding: 112px var(--edge) 40px; display: flex; flex-direction: column; justify-content: space-between; transform: translateY(-100%); opacity: 0; visibility: hidden; transition: transform .5s var(--ease), opacity .4s, visibility .5s; }
.drawer.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.drawer__nav { display: flex; flex-direction: column; }
.drawer__nav a { font-family: var(--serif); font-size: clamp(2.2rem, 10vw, 3.2rem); padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
.drawer__foot { display: flex; flex-direction: column; gap: 18px; }
.drawer__phone { text-align: center; font-weight: 600; font-size: 1.1rem; }

/* ---------- HERO (full-bleed banner) ---------- */
.hero { position: relative; min-height: min(92vh, 900px); display: flex; align-items: flex-end; overflow: hidden; background: var(--green); }
.hero__media { position: absolute; inset: 0; margin: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; background: var(--green); }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; background: var(--green); }
@media (prefers-reduced-motion: reduce) { .hero__video { display: none; } }
.hero__scrim { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.16) 30%, rgba(0,0,0,.58) 70%, rgba(0,0,0,.9) 100%),
  linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,0) 58%); }
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin-inline: auto; padding: 0 var(--edge) clamp(48px, 7vw, 92px); color: var(--paper); }
.hero__eyebrow { font-family: var(--sans); font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 18px; }
.hero__title { font-family: var(--serif); font-weight: 700; font-size: clamp(3rem, 10vw, 8rem); line-height: 1.04; letter-spacing: -.005em; color: #fff; }
.hero__title .line { display: block; overflow: hidden; padding: .1em 0 .16em; margin: -.13em 0; }
.hero__title .line > span { display: block; }
.hero__title em { font-style: italic; font-weight: 700; color: inherit; }
.hero__lead { margin-top: 24px; max-width: 44ch; font-size: clamp(1rem, 1.3vw, 1.15rem); line-height: 1.55; color: rgba(255,255,255,.9); }
.hero__cta { display: flex; align-items: center; gap: clamp(20px, 3vw, 34px); flex-wrap: wrap; margin-top: clamp(28px, 4vw, 38px); }
.hero__facts { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 18px; }
.hero__facts li { position: relative; padding-right: 18px; font-size: .74rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.82); }
.hero__facts li:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 12px; background: rgba(255,255,255,.32); }
.hero__scroll { position: absolute; right: var(--edge); bottom: clamp(30px, 5vw, 54px); z-index: 2; display: inline-flex; flex-direction: column; align-items: center; gap: 10px; }
.hero__scroll span { writing-mode: vertical-rl; font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.hero__scroll i { width: 1px; height: 46px; background: rgba(255,255,255,.3); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; inset: 0; background: var(--coral); animation: scrolly 2.2s var(--ease) infinite; }
@media (max-width: 700px) { .hero { min-height: 90vh; } .hero__scroll { display: none; } }

/* ---------- COVER (legacy) ---------- */
.cover { max-width: var(--maxw); margin-inline: auto; padding: clamp(26px, 4vw, 54px) var(--edge) clamp(40px, 5vw, 70px); position: relative; }
.cover__meta { display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.cover__head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 24px; margin-top: clamp(28px, 5vw, 56px); }
.cover__title {
  font-family: var(--serif); font-weight: 600; letter-spacing: -.02em; line-height: .9;
  font-size: clamp(3.2rem, 11.5vw, 8.6rem); text-transform: none;
}
.cover__title .line { display: block; overflow: hidden; }
.cover__title .line > span { display: block; }
.cover__title em { font-style: normal; font-weight: 700; color: var(--coral); }

.cover__inset { position: relative; width: clamp(240px, 32vw, 440px); flex: none; align-self: end; margin-bottom: 6px; }
.cover__inset img, .cover__inset video { display: block; width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 3px; box-shadow: var(--shadow); background: var(--bone); }
.cover__inset figcaption { margin-top: 12px; }

.cover__foot { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 5vw, 64px); align-items: end; margin-top: clamp(30px, 4vw, 46px); }
.cover__lead { color: var(--stone); max-width: 46ch; font-size: clamp(1rem, 1.3vw, 1.12rem); }
.cover__lead em { font-style: italic; color: var(--green); font-weight: 500; }
.cover__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.cover__facts { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.cover__facts { gap: 8px 0; }
.cover__facts li { position: relative; padding: 0 18px; font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
.cover__facts li:not(:last-child) { border-right: 1px solid var(--line); }
.cover__facts li:first-child { padding-left: 0; }

.cover__scroll { position: absolute; right: var(--edge); bottom: clamp(30px, 5vw, 60px); display: inline-flex; flex-direction: column; align-items: center; gap: 10px; }
.cover__scroll span { writing-mode: vertical-rl; font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; color: var(--stone-2); }
.cover__scroll i { width: 1px; height: 46px; background: var(--line); position: relative; overflow: hidden; }
.cover__scroll i::after { content: ""; position: absolute; inset: 0; background: var(--coral); animation: scrolly 2.2s var(--ease) infinite; }
@keyframes scrolly { 0%{transform:translateY(-100%)} 60%,100%{transform:translateY(100%)} }

@media (max-width: 860px) {
  .cover__head { grid-template-columns: 1fr; gap: 20px; }
  .cover__inset { display: block; width: 100%; margin: 10px 0 0; align-self: stretch; }
  .cover__inset img, .cover__inset video { aspect-ratio: 5/6; }
  .cover__foot { grid-template-columns: 1fr; align-items: start; }
  .cover__scroll { display: none; }
}

/* ---------- Marquee ---------- */
.marquee { background: var(--green); color: var(--paper); overflow: hidden; padding: 20px 0; border-block: 1px solid var(--green-deep); }
.marquee__track { display: flex; width: max-content; animation: marq 34s linear infinite; }
.marquee__track span { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.4rem); font-style: italic; white-space: nowrap; display: inline-flex; align-items: center; }
.marquee__track i { color: var(--coral); font-style: normal; margin: 0 .7em; font-size: .7em; }
@keyframes marq { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---------- Manifesto ---------- */
.manifesto { position: relative; overflow: hidden; background: var(--green); color: var(--paper); padding: var(--sp) var(--edge); }
/* ---- reusable faded tile texture for dark teal sections ---- */
.tiletex { position: relative; overflow: hidden; }
.tiletex > * { position: relative; z-index: 1; }
/* fine matte grain across the whole section */
.tiletex::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .05; mix-blend-mode: overlay;
}
/* faded tile field (running-bond / subway layout) drifting in from the right */
.tiletex::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='80'%3E%3Cg fill='%23ffffff' fill-opacity='0.035'%3E%3Crect x='2' y='2' width='116' height='36' rx='2'/%3E%3Crect x='-58' y='42' width='116' height='36' rx='2'/%3E%3Crect x='62' y='42' width='116' height='36' rx='2'/%3E%3C/g%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.13' stroke-width='1'%3E%3Crect x='2.5' y='2.5' width='115' height='35' rx='2'/%3E%3Crect x='-57.5' y='42.5' width='115' height='35' rx='2'/%3E%3Crect x='62.5' y='42.5' width='115' height='35' rx='2'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 150px 100px;
  -webkit-mask-image: linear-gradient(105deg, transparent 40%, rgba(0,0,0,.9) 92%);
  mask-image: linear-gradient(105deg, transparent 40%, rgba(0,0,0,.9) 92%);
}
.manifesto__inner { position: relative; z-index: 1; max-width: var(--maxw); margin-inline: auto; }
.manifesto__q { font-family: var(--serif); font-weight: 600; letter-spacing: -.015em; line-height: 1.04; font-size: clamp(2.1rem, 5.6vw, 4.6rem); margin-top: 26px; max-width: 18ch; }
.manifesto__q em { font-style: italic; font-weight: 700; color: inherit; }
.manifesto__body { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: clamp(40px, 6vw, 72px); align-items: end; }
.manifesto__text { display: flex; flex-direction: column; gap: 18px; }
.manifesto__body p { color: rgba(255,255,255,.82); max-width: 54ch; }
.manifesto__sign { font-family: var(--sans); font-weight: 600; font-size: .95rem; letter-spacing: .02em; color: rgba(255,255,255,.7); }
@media (max-width: 760px) { .manifesto__body { grid-template-columns: 1fr; gap: 22px; } }

/* ---------- Row header (shared) ---------- */
.rowhead { max-width: var(--maxw); margin: 0 auto clamp(40px, 5vw, 66px); padding-inline: var(--edge); display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 20px 26px; border-top: 1px solid var(--line); padding-top: 26px; }
.rowhead__idx { display: none; }
.rowhead__title { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1; letter-spacing: -.02em; }
.rowhead .tick-label { justify-self: end; }
@media (max-width: 640px) { .rowhead { grid-template-columns: 1fr; } .rowhead .tick-label { grid-column: 1 / -1; justify-self: start; } }

/* ---------- Trades (bleed) ---------- */
.trades { padding-block: var(--sp) clamp(40px, 6vw, 80px); background: var(--paper); max-width: var(--maxw); margin-inline: auto; padding-inline: var(--edge); }
.trade { display: grid; grid-template-columns: 1.15fr 1fr; align-items: center; gap: clamp(24px, 5vw, 70px); margin-bottom: clamp(60px, 9vw, 130px); }
.trade:last-child { margin-bottom: 0; }
.trade__img { overflow: hidden; border-radius: 3px; box-shadow: var(--shadow); aspect-ratio: 9/7; }
.trade__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.trade:hover .trade__img img { transform: scale(1.05); }
/* bleed images off the page edge */
.trade__img--l { margin-left: calc(-1 * var(--edge)); border-radius: 0 3px 3px 0; }
.trade__img--r { margin-right: calc(-1 * var(--edge)); border-radius: 3px 0 0 3px; }
.trade__body { max-width: 500px; }
.trade--rev { grid-template-columns: 1fr 1.15fr; }
.trade--rev .trade__img { order: 2; }
.trade--rev .trade__body { order: 1; justify-self: end; }
.trade__no { display: inline-block; font-family: var(--sans); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; color: var(--coral); margin-bottom: 14px; }
.trade__name { font-family: var(--serif); font-weight: 400; font-size: clamp(2.2rem, 5.5vw, 4rem); line-height: .96; letter-spacing: -.02em; margin-bottom: 20px; }
.trade__body p { color: var(--stone); margin-bottom: 22px; }
.spec { list-style: none; display: grid; gap: 9px; margin-bottom: 26px; }
.spec li { position: relative; padding-left: 22px; font-size: .92rem; font-weight: 500; color: var(--ink-soft); }
.spec li::before { content: ""; position: absolute; left: 0; top: 8px; width: 11px; height: 6px; border-left: 1.5px solid var(--coral); border-bottom: 1.5px solid var(--coral); transform: rotate(-45deg); }
.cover__title .line, .trade__name { margin-inline: 0; }
@media (max-width: 820px) {
  .trade, .trade--rev { grid-template-columns: 1fr; gap: 22px; }
  .trade--rev .trade__img { order: 0; } .trade--rev .trade__body { order: 0; justify-self: start; }
  .trade__img--l, .trade__img--r { margin-inline: calc(-1 * var(--edge)); border-radius: 0; aspect-ratio: 16/10; }
}

/* ---------- Services (numbered list) ---------- */
.services { padding-block: var(--sp) clamp(40px,6vw,80px); background: var(--paper); }
.svcs { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--edge); }
.svc { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(16px,3vw,32px); padding: clamp(22px,3.4vw,38px) 0; border-top: 1px solid var(--line); color: inherit; transition: padding-left .4s var(--ease); }
.svc:last-child { border-bottom: 1px solid var(--line); }
.svc__ico { flex: none; width: clamp(50px,6vw,64px); height: clamp(50px,6vw,64px); border: 1px solid var(--line); border-radius: 15px; display: inline-flex; align-items: center; justify-content: center; color: var(--green); position: relative; overflow: hidden; transition: color .4s var(--ease), border-color .4s var(--ease), transform .45s var(--ease); }
.svc__ico::before { content: ""; position: absolute; inset: 0; background: var(--coral); border-radius: inherit; transform: scale(0); transition: transform .45s var(--ease); }
.svc__ico svg { position: relative; z-index: 1; width: clamp(24px,3vw,28px); height: clamp(24px,3vw,28px); }
.svc__t h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.45rem, 3.4vw, 2.4rem); line-height: 1.05; letter-spacing: -.01em; color: var(--ink); margin-bottom: 8px; transition: color .35s var(--ease); }
.svc__t p { color: var(--stone); max-width: 54ch; }
.svc__t::after { content: "Click for details \2192"; display: inline-block; margin-top: 12px; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--coral); opacity: 0; transform: translateY(6px); transition: opacity .35s var(--ease), transform .35s var(--ease); }
.svc:hover .svc__t::after { opacity: 1; transform: translateY(0); }
.svc__arw { color: var(--stone-2); flex: none; align-self: center; transition: color .35s var(--ease), transform .4s var(--ease); }
.svc:hover { padding-left: clamp(8px,1.5vw,18px); }
.svc:hover .svc__ico { color: #fff; border-color: var(--coral); transform: rotate(-6deg) scale(1.05); }
.svc:hover .svc__ico::before { transform: scale(1); }
.svc:hover .svc__t h3 { color: var(--green); }
.svc:hover .svc__arw { color: var(--coral); transform: translateX(7px); }
@media (max-width: 600px) { .svc { grid-template-columns: auto 1fr; } .svc__arw { display: none; } }

.svc--lead { background: linear-gradient(90deg, rgba(188,90,45,.07), transparent 68%); border-radius: 4px; }
.svc--lead .svc__ico { color: #fff; border-color: var(--coral); }
.svc--lead .svc__ico::before { transform: scale(1); }
.svc--lead:hover .svc__ico { transform: rotate(-6deg) scale(1.05); }
.svc__tag { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--coral); margin-bottom: 8px; }

/* ---------- Gallery wall (horizontal) ---------- */
.wall { padding-block: var(--sp) clamp(30px, 4vw, 56px); background: var(--bone); overflow: hidden; }
.wall__hint { color: var(--coral) !important; }
.wall__track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x proximity; padding-inline: var(--edge); padding-bottom: 8px; cursor: grab; scrollbar-width: none; }
.wall__track::-webkit-scrollbar { display: none; }
.wall__track.is-drag { cursor: grabbing; scroll-snap-type: none; }
.plate { position: relative; flex: 0 0 auto; width: clamp(260px, 34vw, 440px); scroll-snap-align: start; border-radius: 3px; overflow: hidden; box-shadow: var(--shadow-sm); }
.plate--wide { width: clamp(320px, 52vw, 660px); }
.plate img { width: 100%; aspect-ratio: 4/5; object-fit: cover; pointer-events: none; transition: transform 1.1s var(--ease); }
.plate:hover img { transform: scale(1.04); }
.plate figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; display: flex; flex-direction: column; gap: 4px; color: #fff; background: linear-gradient(to top, rgba(34,32,28,.82), transparent 70%); }
.plate__no { display: none; }
.plate__t { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; }
.plate figcaption .tick-label { color: rgba(255,255,255,.7); }
.wall__nav { display: flex; gap: 10px; justify-self: end; }
.wall__arw { width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--green); background: transparent; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease); }
.wall__arw:hover { background: var(--green); color: var(--paper); border-color: var(--green); }
.wall__arw:active { transform: scale(.92); }
.wall__arw svg { width: 20px; height: 20px; }
.wall__bar { max-width: var(--maxw); margin: 24px auto 0; padding-inline: var(--edge); }
.wall__bar span { display: block; height: 2px; width: 0; background: var(--coral); transition: width .1s linear; }

/* ---------- Before / after (interactive) ---------- */
.ba { background: var(--green); color: var(--paper); padding: var(--sp) var(--edge); }
.ba__grid { max-width: var(--maxw); margin-inline: auto; display: flex; flex-direction: column; align-items: center; gap: clamp(30px, 4vw, 54px); }
.ba__text { max-width: 640px; text-align: center; }
.ba__text p { margin-inline: auto; }
.ba__heading { font-family: var(--serif); font-weight: 700; font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.02; letter-spacing: -.01em; color: #fff; margin-bottom: 20px; }
.ba__text p { color: rgba(255,255,255,.85); max-width: 40ch; margin-bottom: 24px; line-height: 1.6; }
.ba__hint { display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--coral); }
.ba__nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 30px; }
.ba__arw { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; background: transparent; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease); flex: none; }
.ba__arw:hover { background: var(--coral); color: #fff; border-color: var(--coral); }
.ba__arw:active { transform: scale(.92); }
.ba__dots { display: flex; gap: 10px; }
.ba__dots button { width: 26px; height: 3px; border-radius: 2px; background: rgba(255,255,255,.3); transition: background .3s; }
.ba__dots button.is-active { background: var(--coral); }
.ba__viewer { --pos: 50%; position: relative; aspect-ratio: 4/5; max-width: 520px; width: 100%; overflow: hidden; border-radius: 4px; box-shadow: var(--shadow); user-select: none; touch-action: pan-y; cursor: ew-resize; }
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__clip { position: absolute; inset: 0; overflow: hidden; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 48px; transform: translateX(-50%); display: flex; align-items: center; justify-content: center; }
.ba__line { position: absolute; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,.92); box-shadow: 0 0 14px rgba(0,0,0,.4); }
.ba__grip { width: 48px; height: 48px; border-radius: 50%; background: var(--paper); color: var(--green); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease); }
.ba__viewer:hover .ba__grip { transform: scale(1.08); }
.ba__tag { position: absolute; top: 14px; font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; padding: 6px 12px; border-radius: 100px; color: #fff; }
.ba__tag--before { left: 14px; background: rgba(20,26,28,.6); }
.ba__tag--after { right: 14px; background: var(--coral); }
.ba__stage { position: relative; max-width: 520px; width: 100%; margin-inline: auto; animation: baStageFloat 7.5s ease-in-out infinite; will-change: transform; }
.ba__stage:hover { animation-play-state: paused; }
@keyframes baStageFloat { 0%, 100% { transform: translateY(0) rotate(-.25deg); } 50% { transform: translateY(-14px) rotate(.25deg); } }
.ba__viewer { z-index: 1; }
.ba__deco { position: absolute; pointer-events: none; z-index: 0; }
.ba__deco--frame { inset: 0; border: 1.5px solid var(--coral); border-radius: 6px; transform: translate(18px, 18px); }
.ba__deco--dots { top: -32px; right: -32px; width: 108px; height: 108px; background-image: radial-gradient(rgba(255,255,255,.5) 1.6px, transparent 1.6px); background-size: 15px 15px; animation: baFloat 6s ease-in-out infinite; }
.ba__deco--ring { bottom: -26px; left: -26px; width: 64px; height: 64px; border: 2px solid var(--coral); border-radius: 50%; animation: baFloat 4.5s ease-in-out infinite reverse; }
@keyframes baFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (max-width: 820px) { .ba__grid { grid-template-columns: 1fr; } .ba__stage, .ba__viewer { max-width: 440px; margin-inline: auto; } .ba__deco--dots, .ba__deco--ring { display: none; } .ba__deco--frame { transform: translate(12px, 12px); } }
@media (prefers-reduced-motion: reduce) { .ba__deco--dots, .ba__deco--ring, .ba__stage { animation: none; } }

/* ---------- Hidden craft (prep vs finish) ---------- */
.craft { padding-block: var(--sp) clamp(30px,4vw,56px); background: var(--paper); }
.craft__pair { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--edge); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 48px); align-items: start; }
.craft__fig { position: relative; }
.craft__fig img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 3px; box-shadow: var(--shadow); }
.craft__fig:nth-child(2) img { aspect-ratio: 3/4; }
.craft__tag { display: inline-block; margin: 20px 0 10px; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--green); padding: 6px 14px; border: 1px solid var(--line); border-radius: 100px; }
.craft__tag--after { color: #fff; background: var(--coral); border-color: var(--coral); }
.craft__fig figcaption p { color: var(--stone); max-width: 42ch; }
@media (max-width: 760px) { .craft__pair { grid-template-columns: 1fr; gap: 36px; } .craft__fig img, .craft__fig:nth-child(2) img { aspect-ratio: 4/3; } }

/* ---------- Proof / stats ---------- */
.proof { background: var(--green); color: var(--paper); }
.proof__grid { max-width: var(--maxw); margin-inline: auto; padding: clamp(50px,7vw,84px) var(--edge); display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { position: relative; padding-right: 24px; }
.stat + .stat { padding-left: 24px; border-left: 1px solid rgba(255,255,255,.16); }
.stat__num { display: block; font-family: var(--serif); font-weight: 400; font-size: clamp(2.8rem, 6vw, 4.4rem); line-height: 1; color: var(--paper); font-variant-numeric: tabular-nums; margin-bottom: 14px; }
.proof .tick-label { color: rgba(255,255,255,.66); }
.proof .tick-label::before { background: var(--coral); }
@media (max-width: 700px) { .proof__grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; } .stat:nth-child(odd) { border-left: none; padding-left: 0; } }

/* ---------- Voices (big quote) ---------- */
.voices { padding-block: var(--sp); background: var(--paper); }
.voices__stars { color: var(--coral) !important; letter-spacing: .1em; }
.voices__stage { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--edge); position: relative; min-height: 42vh; }
.voice { position: absolute; inset: 0; opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); pointer-events: none; }
.voice.is-active { position: relative; opacity: 1; transform: none; pointer-events: auto; }
.voice p { font-family: var(--serif); font-weight: 300; font-size: clamp(1.7rem, 4.2vw, 3.2rem); line-height: 1.16; letter-spacing: -.01em; max-width: 20ch; }
.voice p em { font-style: normal; font-weight: 700; color: var(--coral); }
.voice footer { margin-top: 30px; font-size: .92rem; color: var(--stone); font-weight: 500; }
.voice footer span { color: var(--green); font-weight: 600; }
.voices__dots { display: flex; gap: 10px; margin-top: 40px; }
.voices__dots button { width: 34px; height: 3px; background: var(--line); transition: background .3s; }
.voices__dots button.is-active { background: var(--coral); }

/* ---------- Process (horizontal animated workflow) ---------- */
.process { padding-block: var(--sp); background: var(--bone); }
.flow__steps { display: flex; align-items: flex-start; gap: clamp(6px, 1.6vw, 22px); max-width: var(--maxw); margin-inline: auto; padding-inline: var(--edge); }
.flow__step { flex: 1 1 0; min-width: 0; }
.flow__num { display: inline-grid; place-items: center; width: clamp(52px, 6vw, 66px); height: clamp(52px, 6vw, 66px); border-radius: 50%; border: 2px solid var(--line); font-family: var(--serif); font-weight: 700; font-size: 1.3rem; color: var(--green); margin-bottom: clamp(16px, 2vw, 24px); transition: border-color .35s var(--ease), background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease); }
.flow__step:hover .flow__num { border-color: var(--coral); background: var(--coral); color: #fff; transform: translateY(-5px) rotate(-6deg); }
.flow__step h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.1rem, 1.7vw, 1.45rem); line-height: 1.1; margin-bottom: 8px; }
.flow__step p { color: var(--stone); font-size: .9rem; line-height: 1.5; max-width: 26ch; }
.flow__arrow { flex: none; align-self: flex-start; margin-top: clamp(14px, 2vw, 20px); color: var(--coral); animation: flowArrow 1.8s ease-in-out infinite; }
@keyframes flowArrow { 0%, 100% { transform: translateX(0); opacity: .55; } 50% { transform: translateX(6px); opacity: 1; } }
@media (max-width: 760px) {
  .flow__steps { flex-direction: column; gap: 10px; }
  .flow__step { display: grid; grid-template-columns: auto 1fr; gap: 4px 18px; align-items: center; }
  .flow__num { grid-row: 1 / span 2; margin-bottom: 0; }
  .flow__step h3 { margin-bottom: 4px; }
  .flow__step p { max-width: none; }
  .flow__arrow { align-self: center; margin: 4px 0; transform: rotate(90deg); }
}
@media (prefers-reduced-motion: reduce) { .flow__arrow { animation: none; } }
.stepper { max-width: 940px; margin-inline: auto; padding-inline: var(--edge); list-style: none; }
.stepr { border-top: 1px solid var(--line); }
.stepr:last-child { border-bottom: 1px solid var(--line); }
.stepr__head { width: 100%; display: flex; align-items: center; gap: clamp(16px,3vw,32px); padding: clamp(20px,3vw,30px) 0; background: none; border: none; cursor: pointer; text-align: left; position: relative; }
.stepr__num { display: none; }
.stepr__title { font-family: var(--serif); font-weight: 600; font-size: clamp(1.4rem, 3.4vw, 2.3rem); line-height: 1.05; letter-spacing: -.01em; color: var(--ink-soft); transition: color .35s var(--ease); }
.stepr__prog { position: absolute; left: 0; bottom: -1px; height: 2px; width: 0; background: var(--coral); }
.stepr.is-active .stepr__title { color: var(--green); }
.stepr:hover .stepr__num { color: var(--coral); }
.stepr:hover .stepr__title { color: var(--green); }
.stepr__prog.run { animation: stepprog var(--dur,5s) linear forwards; }
.stepper:hover .stepr__prog.run { animation-play-state: paused; }
@keyframes stepprog { from { width: 0; } to { width: 100%; } }
.stepr__body { overflow: hidden; height: 0; transition: height .5s var(--ease); }
.stepr__body p { color: var(--stone); max-width: 58ch; font-size: 1.05rem; padding: 0 0 clamp(24px,3vw,34px) 0; }
@media (prefers-reduced-motion: reduce) { .stepr__body { height: auto !important; } .stepr__prog { display: none; } }

.steps--legacy { display: none; }
.steps { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--edge); list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); }
.step { padding: 34px 28px 34px 0; border-top: 2px solid var(--green); }
.step:not(:last-child) { border-right: 1px solid var(--line); padding-right: 28px; }
.step:not(:first-child) { padding-left: 28px; }
.step__num { font-family: var(--serif); font-weight: 700; font-size: 1rem; color: var(--coral); letter-spacing: .06em; }
.step h3 { font-family: var(--serif); font-weight: 400; font-size: 1.45rem; margin: 16px 0 10px; }
.step p { color: var(--stone); font-size: .95rem; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; } .step:nth-child(2) { border-right: none; } .step:nth-child(odd) { padding-left: 0; } .step:nth-child(even) { padding-left: 28px; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } .step { border-right: none !important; padding-left: 0 !important; padding-right: 0; } }

/* ---------- Why ---------- */
.why { background: var(--green); color: var(--paper); padding: var(--sp) var(--edge); }
.why { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: start; max-width: var(--maxw); margin-inline: auto; }
.why__title { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.02; letter-spacing: -.02em; color: var(--paper); margin: 0 0 32px; }
.why__title em { font-style: normal; font-weight: 700; color: var(--coral); }
.why__list { list-style: none; display: flex; flex-direction: column; }
.why__list li { padding: clamp(22px,3vw,30px) 0; border-top: 1px solid rgba(255,255,255,.16); transition: padding-left .35s var(--ease); }
.why__list li:first-child { border-top: none; padding-top: 0; }
.why__list li:hover { padding-left: 10px; }
.why__list h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.4rem, 2.6vw, 1.9rem); color: var(--paper); margin-bottom: 8px; }
.why__list h3 { transition: color .3s var(--ease); }
.why__list li:hover h3 { color: var(--coral); }
.why__list p { color: rgba(255,255,255,.72); font-size: .98rem; max-width: 56ch; }
@media (max-width: 860px) { .why { grid-template-columns: 1fr; } }

/* ---------- Areas ---------- */
.areas { padding-block: clamp(56px, 8vw, 100px); background: var(--paper); }
.areas__marquee { overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%); }
.areas__track { display: inline-flex; align-items: center; width: max-content; animation: areamarq 42s linear infinite; }
.areas__marquee:hover .areas__track { animation-play-state: paused; }
.areas__item { font-family: var(--serif); font-size: clamp(1.3rem, 2.6vw, 1.95rem); color: var(--ink-soft); white-space: nowrap; padding: 0 6px; }
.areas__sep { color: var(--coral); margin: 0 .55em; font-size: 1.1em; line-height: 1; }
@keyframes areamarq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .areas__track { animation: none; } }
.vh { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Backsplash reel (full-bleed video) ---------- */
.reel { position: relative; min-height: min(76vh, 760px); display: flex; align-items: flex-end; overflow: hidden; background: var(--green) center / cover no-repeat; }
.reel__video { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.reel__scrim { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.08) 30%, rgba(0,0,0,.62) 68%, rgba(0,0,0,.92) 100%); }
.reel__inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin-inline: auto; padding: 0 var(--edge) clamp(48px, 7vw, 90px); color: #fff; }
.reel__eyebrow { font-family: var(--sans); font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.reel__title { font-family: var(--serif); font-weight: 700; font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.02; letter-spacing: -.01em; color: #fff; }
@media (prefers-reduced-motion: reduce) { .reel__video { display: none; } .reel { background-image: url("../assets/web/backsplash-poster.jpg"); } }

/* ---------- FAQ ---------- */
.faq { padding-block: var(--sp); background: var(--bone); }
.faq__grid { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--edge); display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.faq__head { position: sticky; top: 100px; }
.faq__title { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1; letter-spacing: -.02em; margin-top: 20px; }
.faq__note { margin-top: 22px; color: var(--stone); }
.faq__note a { color: var(--coral); font-weight: 600; }
.acc { border-bottom: 1px solid var(--line); }
.acc summary { list-style: none; cursor: pointer; padding: 24px 44px 24px 0; position: relative; font-size: 1.1rem; font-weight: 600; }
.acc summary::-webkit-details-marker { display: none; }
.acc__icon { position: absolute; right: 4px; top: 28px; width: 16px; height: 16px; }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; background: var(--coral); transition: transform .35s var(--ease), opacity .3s; }
.acc__icon::before { left: 0; top: 7px; width: 16px; height: 2px; }
.acc__icon::after { left: 7px; top: 0; width: 2px; height: 16px; }
.acc[open] .acc__icon::after { transform: rotate(90deg); opacity: 0; }
.acc__body { overflow: hidden; }
.acc__body p { color: var(--stone); padding-bottom: 26px; max-width: 58ch; }
@media (max-width: 800px) { .faq__grid { grid-template-columns: 1fr; } .faq__head { position: static; } }

/* ---------- Contact ---------- */
.cta { padding-block: var(--sp); background: var(--green); color: var(--paper); }
.cta__grid { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--edge); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.cta__title { font-family: var(--serif); font-weight: 400; font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: .98; letter-spacing: -.02em; color: var(--paper); margin: 18px 0 22px; }
.cta__lead { color: rgba(255,255,255,.8); max-width: 42ch; }
.cta__call { margin-top: 40px; display: inline-flex; flex-direction: column; gap: 8px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.16); }
.cta__call strong { font-family: var(--serif); font-size: 1.9rem; color: var(--paper); transition: color .3s; }
.cta__call:hover strong { color: var(--coral); }
.cta__sms { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.72); transition: color .3s var(--ease); }
.cta__sms:hover { color: var(--coral); }

.form { background: var(--paper); color: var(--ink); border-radius: 4px; padding: clamp(26px, 3.5vw, 42px); box-shadow: var(--shadow); }
.field { margin-bottom: 20px; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: .8rem; font-weight: 600; margin-bottom: 8px; }
.field input, .field select, .field textarea { font-family: inherit; font-size: 1rem; color: var(--ink); padding: 14px 15px; border: 1px solid var(--line); border-radius: 3px; background: #fff; transition: border-color .25s, box-shadow .25s; width: 100%; }
.field input::placeholder, .field textarea::placeholder { color: #a9b0ab; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px rgba(237,69,69,.14); }
.field textarea { resize: vertical; min-height: 84px; }
.field__err { color: var(--coral-2); font-size: .78rem; margin-top: 6px; display: none; }
.field.is-invalid input, .field.is-invalid select { border-color: var(--coral-2); }
.field.is-invalid .field__err { display: block; }
.form__ok { margin-top: 18px; padding: 14px 16px; border-radius: 3px; background: rgba(188,90,45,.1); color: var(--coral-2); font-size: .92rem; font-weight: 600; }
@media (max-width: 860px) { .cta__grid { grid-template-columns: 1fr; } }
@media (max-width: 420px) { .field-row { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer { background: var(--green-deep); color: rgba(255,255,255,.7); padding: clamp(56px,7vw,90px) var(--edge) 0; }
.footer__top, .footer__grid, .footer__bottom { max-width: var(--maxw); margin-inline: auto; }
.footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; align-items: flex-start; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer__tag { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--paper); line-height: 1.4; max-width: 30ch; }
.footer__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; padding-block: 48px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer__col h4 { color: var(--paper); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 6px; }
.footer__col a:not(.btn), .footer__col p { color: rgba(255,255,255,.7); font-size: .95rem; }
.footer__col a:not(.btn) { transition: color .25s; }
.footer__col a:not(.btn):hover { color: var(--coral); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 26px; border-top: 1px solid rgba(255,255,255,.14); font-size: .82rem; color: rgba(255,255,255,.5); }
@media (max-width: 780px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s var(--ease), transform .85s var(--ease); transition-delay: calc(var(--d,0) * 90ms); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-up > span { display: block; transform: translateY(102%); transition: transform .9s var(--ease); transition-delay: calc(var(--d,0) * 110ms); }
.reveal-up.is-in > span { transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-up > span { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee__track { animation: none; }
  .cover__scroll i::after { animation: none; }
  .trade:hover .trade__img img, .plate:hover img { transform: none; }
  * { scroll-behavior: auto !important; }
}
