/* ==========================================================================
   The Tree Bespoke Carpentry Ltd
   Hand-written CSS. No framework, no build step, no external dependencies
   except the optional Google Fonts link in each page head.
   ========================================================================== */

:root {
  /* linen / charcoal / antique gold sampled from brand/the_tree_watermark2.png */
  --linen:     #f7f4ee;
  --linen-2:   #f1ece2;
  --linen-3:   #e7e0d2;
  --paper:     #ffffff;
  --ink:       #23211e;
  --ink-2:     #55504a;
  --ink-3:     #7d766c;
  --gold:      #a57c36;
  --gold-deep: #8c6729;
  --gold-lite: #c9a24e;
  --gold-tint: #ece0c8;
  --dark:      #1c1a17;
  --dark-2:    #2a2723;

  --rule: rgba(165, 124, 54, 0.32);
  --hair: rgba(35, 33, 30, 0.12);

  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --pad: clamp(1.25rem, 5vw, 2.5rem);
  --gap: clamp(1rem, 2.5vw, 2rem);
  --sec: clamp(3.5rem, 8vw, 6.5rem);
  --max: 1200px;

  --shadow: 0 1px 2px rgba(35, 33, 30, .05), 0 12px 28px -14px rgba(35, 33, 30, .22);
  --shadow-lift: 0 2px 4px rgba(35, 33, 30, .06), 0 22px 44px -18px rgba(35, 33, 30, .3);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--linen);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* Every "fill the box and crop" container below holds a <picture>, not a bare
   <img>. A percentage height on the img resolves against the <picture>, so the
   wrapper has to be told to fill too - otherwise the img falls back to its
   intrinsic height, object-fit never engages and the photograph is top-aligned
   and overflowing instead of centre-cropped. */
.hero-media picture, .strip-media picture, .tile-img picture,
.feature-img picture, .shot picture, .machine-img picture,
.story-media picture { width: 100%; height: 100%; }

h1, h2, h3, h4, .display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.012em;
  margin: 0 0 0.6em;
  font-variation-settings: "SOFT" 20, "WONK" 0;
}
h1 { font-size: clamp(2.1rem, 1.25rem + 3.6vw, 4rem); }
h2 { font-size: clamp(1.7rem, 1.15rem + 2.1vw, 2.75rem); }
h3 { font-size: clamp(1.22rem, 1.05rem + 0.7vw, 1.55rem); }
h4 { font-size: 1.08rem; }

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

figure, blockquote { margin: 0; }

a { color: var(--gold-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin-bottom: 0.35em; }

strong { font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--rule); margin: var(--gap) 0; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute; left: 0.5rem; top: -4rem; z-index: 200;
  background: var(--dark); color: #fff; padding: 0.7rem 1.1rem;
  border-radius: 3px; text-decoration: none; transition: top .15s;
}
.skip:focus { top: 0.5rem; color: #fff; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }
.wrap-wide { max-width: 1400px; }
.wrap-narrow { max-width: 780px; }

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

/* ---------------------------------------------------------------- header */
.site-head {
  position: sticky; top: 0; z-index: 90;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--hair);
}
.head-in {
  display: flex; align-items: center; gap: 1.25rem;
  min-height: 74px; max-width: 1400px; margin-inline: auto;
  padding-inline: var(--pad);
}

.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand img { width: 44px; height: 44px; flex: none; }
.brand-name {
  font-family: var(--serif); font-size: 1.16rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; line-height: 1;
  white-space: nowrap;
}
.brand-sub {
  display: block; font-family: var(--sans); font-size: 0.6rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-deep); margin-top: 0.36rem; font-weight: 600;
}

.nav { display: none; }
.nav ul { display: flex; align-items: center; gap: 1.15rem; list-style: none; margin: 0; padding: 0; }
.nav li { margin: 0; }
.nav a {
  display: block; padding: 0.45rem 0; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-2); text-decoration: none; position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--gold); transition: right .22s ease;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }

.btn {
  display: inline-block; font: inherit; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.82rem 1.4rem; border: 1px solid var(--gold); border-radius: 2px;
  background: var(--gold); color: #fff; text-decoration: none; cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, transform .18s;
}
.btn:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn-light { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.btn-light:hover { background: #fff; border-color: #fff; color: var(--ink); }
.btn-sm { padding: 0.6rem 1rem; font-size: 0.72rem; }

.nav-toggle {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font: inherit; font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: none; border: 1px solid var(--hair); border-radius: 2px;
  padding: 0.6rem 0.85rem; color: var(--ink); cursor: pointer;
}
.nav-toggle .bars { display: block; width: 18px; height: 10px; position: relative; }
.nav-toggle .bars::before, .nav-toggle .bars::after,
.nav-toggle .bars span {
  content: ""; position: absolute; left: 0; width: 100%; height: 1.5px;
  background: var(--ink); transition: transform .2s, opacity .2s;
}
.nav-toggle .bars::before { top: 0; }
.nav-toggle .bars span { top: 4.25px; }
.nav-toggle .bars::after { bottom: 0; }
[aria-expanded="true"].nav-toggle .bars::before { transform: translateY(4.25px) rotate(45deg); }
[aria-expanded="true"].nav-toggle .bars span { opacity: 0; }
[aria-expanded="true"].nav-toggle .bars::after { transform: translateY(-4.25px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 74px 0 0; z-index: 80;
  background: var(--linen); overflow-y: auto;
  padding: 1.5rem var(--pad) 3rem;
  border-top: 1px solid var(--rule);
}
.drawer[hidden] { display: none !important; }
.drawer ul { list-style: none; margin: 0 0 1.75rem; padding: 0; }
.drawer li { margin: 0; border-bottom: 1px solid var(--hair); }
.drawer a {
  display: block; padding: 0.95rem 0; text-decoration: none;
  font-family: var(--serif); font-size: 1.3rem; color: var(--ink);
}
.drawer a[aria-current="page"] { color: var(--gold-deep); }
.drawer-meta { font-size: 0.9rem; color: var(--ink-2); }
.drawer-meta a { font-family: var(--sans); font-size: 0.95rem; padding: 0; display: inline; }

@media (min-width: 1100px) {
  .nav { display: block; }
  .nav-toggle { display: none; }
  .drawer { display: none !important; }
}
@media (min-width: 1100px) and (max-width: 1300px) {
  .nav ul { gap: 0.85rem; }
  .nav a { font-size: 0.73rem; letter-spacing: 0.07em; }
}

/* Narrow phones: the header runs out of room, so the menu button loses its
   word (it keeps it for screen readers) rather than the brand wrapping or the
   Enquire button disappearing. */
@media (max-width: 559px) {
  .head-in { gap: 0.7rem; }
  .nav-toggle { padding: 0.6rem 0.7rem; }
  .nav-toggle-label {
    position: absolute !important; width: 1px; height: 1px;
    overflow: hidden; clip-path: inset(50%); white-space: nowrap;
  }
}
@media (max-width: 400px) {
  .brand-name { font-size: 1.05rem; }
  .brand img { width: 38px; height: 38px; }
  .btn-sm { padding: 0.55rem 0.8rem; font-size: 0.68rem; }
}

body.nav-open { overflow: hidden; }

/* ------------------------------------------------------------------ hero */
.hero { position: relative; background: var(--dark); color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(18,17,15,.84) 0%, rgba(18,17,15,.42) 46%, rgba(18,17,15,.16) 100%),
    linear-gradient(to right, rgba(18,17,15,.62) 0%, rgba(18,17,15,.04) 68%);
}
.hero-in {
  position: relative; z-index: 1;
  max-width: var(--max); margin-inline: auto;
  padding: clamp(5rem, 16vw, 11rem) var(--pad) clamp(3.5rem, 9vw, 6rem);
}
.hero h1 { color: #fff; margin-bottom: 0.5em; max-width: 24ch; text-shadow: 0 1px 24px rgba(12,11,10,.35); }
.hero .eyebrow { max-width: none; }
.hero-lede { font-size: clamp(1.02rem, 0.98rem + 0.45vw, 1.3rem); color: rgba(255,255,255,.9); max-width: 50ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; max-width: none; }

.eyebrow {
  display: block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-deep); margin: 0 0 1rem;
}
.hero .eyebrow { color: var(--gold-lite); }

.hero-strip {
  position: relative; z-index: 1; border-top: 1px solid rgba(201,162,78,.3);
  background: rgba(12,11,10,.55);
}
.hero-strip ul {
  display: flex; flex-wrap: wrap; gap: 0.4rem 2rem; list-style: none;
  margin: 0 auto; padding: 1rem var(--pad); max-width: var(--max);
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,.72); font-weight: 600;
}
.hero-strip li { margin: 0; }

/* --------------------------------------------------------------- page top */
.page-head { padding: clamp(2.75rem, 7vw, 4.75rem) 0 0; }
.page-head .wrap > * { max-width: 62ch; }
.page-head h1 { margin-bottom: 0.45em; }
.lede { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem); color: var(--ink-2); }
.crumbs { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 1.1rem; }
.crumbs a { color: var(--ink-3); text-decoration: none; }
.crumbs a:hover { color: var(--gold-deep); text-decoration: underline; }

/* -------------------------------------------------------------- sections */
.sec { padding: var(--sec) 0; }
.sec-tight { padding: clamp(2.25rem, 5vw, 3.5rem) 0; }
.sec-rule { border-top: 1px solid var(--rule); }
.sec-linen { background: var(--linen-2); }
.sec-dark { background: var(--dark); color: rgba(255,255,255,.84); }
.sec-dark h2, .sec-dark h3 { color: #fff; }
.sec-dark .eyebrow { color: var(--gold-lite); }
.sec-dark a { color: var(--gold-lite); }

.sec-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.sec-head p { color: var(--ink-2); }
.sec-dark .sec-head p { color: rgba(255,255,255,.78); }

.arrow-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none; color: var(--gold-deep);
}
.arrow-link::after { content: "\2192"; transition: transform .2s; }
.arrow-link:hover::after { transform: translateX(4px); }
.sec-dark .arrow-link { color: var(--gold-lite); }

/* ----------------------------------------------------------- what we make */
.tiles { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.tile {
  position: relative; display: flex; flex-direction: column;
  text-decoration: none; color: var(--ink); background: var(--paper);
  border: 1px solid var(--hair); border-radius: 3px; overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: var(--rule); color: var(--ink); }
.tile-img { display: block; aspect-ratio: 4 / 3; background: var(--linen-3); overflow: hidden; }
.tile-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tile:hover .tile-img img { transform: scale(1.035); }
.tile-body { display: block; padding: 1.1rem 1.25rem 1.3rem; }
.tile h3 { font-size: 1.16rem; margin-bottom: 0.3em; }
.tile p { font-size: 0.92rem; color: var(--ink-2); margin: 0; }

/* -------------------------------------------------------------- featured */
.features { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(min(100%, 232px), 1fr)); }
.feature { text-decoration: none; color: inherit; display: block; }
.feature-img { display: block; aspect-ratio: 5 / 4; overflow: hidden; border-radius: 3px; background: var(--linen-3); }
.feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.feature:hover .feature-img img { transform: scale(1.04); }
.feature h3 { margin: 1rem 0 0.25em; font-size: 1.2rem; }
.feature p { font-size: 0.92rem; color: var(--ink-2); margin: 0; }
.feature .kicker {
  display: block; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600;
}

/* ----------------------------------------------------------- trade strip */
.strip { position: relative; overflow: hidden; background: var(--dark); color: #fff; }
.strip-media { position: absolute; inset: 0; }
.strip-media img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.strip-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(18,17,15,.95) 0%, rgba(18,17,15,.62) 60%, rgba(18,17,15,.45) 100%);
}
.strip-in {
  position: relative; z-index: 1; max-width: var(--max); margin-inline: auto;
  padding: clamp(3rem, 8vw, 5.5rem) var(--pad);
  display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
}
@media (min-width: 900px) { .strip-in { grid-template-columns: 1.15fr 0.85fr; } }
.strip h2 { color: #fff; }
.strip p { color: rgba(255,255,255,.85); }
.strip-list { list-style: none; padding: 0; margin: 0; }
.strip-list li {
  padding: 0.7rem 0 0.7rem 1.6rem; position: relative;
  border-top: 1px solid rgba(201,162,78,.28); font-size: 0.97rem;
  color: rgba(255,255,255,.88);
}
.strip-list li:last-child { border-bottom: 1px solid rgba(201,162,78,.28); }
.strip-list li::before {
  content: ""; position: absolute; left: 0; top: 1.28rem;
  width: 8px; height: 1px; background: var(--gold-lite);
}

/* --------------------------------------------------------------- process */
.steps { counter-reset: step; display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }
.steps-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr)); }
.step { counter-increment: step; border-top: 1px solid var(--rule); padding-top: 1.15rem; }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif); font-size: 0.95rem; letter-spacing: 0.08em;
  color: var(--gold-deep); display: block; margin-bottom: 0.65rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.35em; }
.step p { font-size: 0.93rem; color: var(--ink-2); margin: 0; }
.sec-dark .step p { color: rgba(255,255,255,.76); }
.sec-dark .step { border-color: rgba(201,162,78,.3); }
.sec-dark .step::before { color: var(--gold-lite); }

/* ---------------------------------------------------------- testimonials */
.quotes { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.quote {
  margin: 0;
  background: var(--paper); border: 1px solid var(--hair); border-radius: 3px;
  padding: clamp(1.4rem, 3vw, 2rem); display: flex; flex-direction: column;
}
.quote::before {
  content: "\201C"; font-family: var(--serif); font-size: 3.2rem; line-height: 0.7;
  color: var(--gold-tint); display: block; margin-bottom: 0.5rem;
}
.quote blockquote { margin: 0 0 1.1rem; font-family: var(--serif); font-size: 1.1rem; line-height: 1.5; }
.quote cite {
  margin-top: auto; font-style: normal; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3);
}

/* ----------------------------------------------------------------- facts */
.facts { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
.fact { border-top: 1px solid var(--rule); padding-top: 1.1rem; }
.fact b {
  display: block; font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.9rem, 1.3rem + 1.8vw, 2.7rem); line-height: 1;
  letter-spacing: -0.02em; margin-bottom: 0.35rem;
}
.fact span { font-size: 0.88rem; color: var(--ink-2); display: block; }
.sec-dark .fact { border-color: rgba(201,162,78,.3); }
.sec-dark .fact b { color: var(--gold-lite); }
.sec-dark .fact span { color: rgba(255,255,255,.76); }

/* --------------------------------------------------------------- gallery */
.gallery {
  display: grid; gap: clamp(0.5rem, 1.4vw, 1rem);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr));
}
/* .shot is a real <button> so the lightbox is keyboard reachable */
.shot {
  position: relative; margin: 0; padding: 0; border: 0; border-radius: 3px;
  overflow: hidden; background: var(--linen-3); cursor: zoom-in;
  aspect-ratio: 1 / 1; display: block; width: 100%;
  font: inherit; color: inherit; -webkit-appearance: none; appearance: none;
  text-align: left;
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.shot:hover img { transform: scale(1.05); }
.shot-cap {
  position: absolute; inset: auto 0 0 0; padding: 2.4rem 0.8rem 0.7rem;
  font-size: 0.8rem; line-height: 1.35; color: #fff; display: block;
  background: linear-gradient(to top, rgba(16,15,13,.88), rgba(16,15,13,0));
  opacity: 0; transform: translateY(6px); transition: opacity .25s, transform .25s;
}
.shot:hover .shot-cap, .shot:focus-visible .shot-cap { opacity: 1; transform: none; }
@media (hover: none) { .shot-cap { opacity: 1; transform: none; } }

/* --------------------------------------------------------------- stories */
.story { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.story + .story { margin-top: var(--sec); }
@media (min-width: 900px) {
  .story { grid-template-columns: 1fr 1fr; }
  .story-flip .story-text { order: 2; }
}
.story-text h3 { font-size: clamp(1.45rem, 1.15rem + 1.1vw, 2.05rem); }
.story-text .eyebrow { margin-bottom: 0.7rem; }
.story-media { display: grid; gap: 0.7rem; }
.story-media.duo { grid-template-columns: 1fr 1fr; }
.story-media img { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; }
.story-media .shot { aspect-ratio: 4 / 3; }
.story-media .shot.tall { aspect-ratio: 3 / 4; }
.story-media .span2 { grid-column: 1 / -1; }
.spec { list-style: none; padding: 0; margin: 1.35rem 0 0; font-size: 0.93rem; }
.spec li { position: relative; padding-left: 1.15rem; margin-bottom: 0.4em; color: var(--ink-2); }
.spec li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 7px; height: 1px; background: var(--gold); }

.pair-tag {
  position: absolute; z-index: 2; left: 0.7rem; top: 0.7rem;
  background: rgba(16,15,13,.82); color: #fff; border-radius: 2px;
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 0.3rem 0.55rem;
}

/* -------------------------------------------------------------- machines */
.machines { display: grid; gap: var(--gap); }
.machine {
  display: grid; gap: clamp(1.25rem, 3vw, 2.5rem);
  background: var(--paper); border: 1px solid var(--hair); border-radius: 3px;
  overflow: hidden; align-items: stretch;
}
@media (min-width: 760px) {
  .machine { grid-template-columns: 0.9fr 1.1fr; }
  .machine-flip .machine-img { order: 2; }
}
.machine-img { background: var(--linen-3); min-height: 240px; }
.machine-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.machine-body { padding: clamp(1.4rem, 3vw, 2.4rem); }
.machine-body h3 { margin-bottom: 0.2em; }
.machine-kind {
  display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.8rem;
}
.machine-stat {
  margin: 1.2rem 0 0; padding: 0.9rem 1.1rem;
  background: var(--linen-2); border-left: 2px solid var(--gold);
  border-radius: 0 2px 2px 0; font-size: 0.93rem;
}
.machine-stat b { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; }
.machine.no-img { grid-template-columns: 1fr; }

.counters { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.counter b { display: block; font-family: var(--serif); font-size: clamp(2.1rem, 1.4rem + 2.2vw, 3.2rem); line-height: 1; color: var(--gold-lite); letter-spacing: -0.02em; }
.counter span { display: block; font-size: 0.86rem; color: rgba(255,255,255,.75); margin-top: 0.55rem; }
.counter { border-top: 1px solid rgba(201,162,78,.3); padding-top: 1.1rem; }

/* ------------------------------------------------------------------- cta */
.cta { background: var(--gold); color: #fff; }
.cta-in {
  max-width: var(--max); margin-inline: auto; padding: clamp(2.75rem, 7vw, 4.5rem) var(--pad);
  display: grid; gap: 1.5rem; align-items: center;
}
@media (min-width: 820px) { .cta-in { grid-template-columns: 1fr auto; } }
.cta h2 { color: #fff; margin: 0 0 0.35em; max-width: 34ch; }
.cta p { color: rgba(255,255,255,.9); margin: 0; max-width: 52ch; }
.cta .btn { background: #fff; color: var(--ink); border-color: #fff; }
.cta .btn:hover { background: var(--dark); border-color: var(--dark); color: #fff; }

/* ---------------------------------------------------------------- prose */
.prose { max-width: 70ch; }
.prose h2 { margin-top: 2.2em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.8em; }

.cols { display: grid; gap: clamp(1.5rem, 4vw, 3rem); }
@media (min-width: 880px) { .cols { grid-template-columns: 1.2fr 0.8fr; align-items: start; } }
.aside {
  background: var(--paper); border: 1px solid var(--hair);
  border-top: 2px solid var(--gold); border-radius: 3px;
  padding: clamp(1.3rem, 3vw, 1.9rem); font-size: 0.95rem;
}
.aside h3 { font-size: 1.1rem; }
.aside dl { margin: 0; }
.aside dt { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-top: 1.1rem; }
.aside dt:first-child { margin-top: 0; }
.aside dd { margin: 0.2rem 0 0; }

/* ------------------------------------------------------------------- faq */
.faq { max-width: 74ch; }
.faq details { border-top: 1px solid var(--rule); }
.faq details:last-of-type { border-bottom: 1px solid var(--rule); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.1rem 2.5rem 1.1rem 0;
  font-family: var(--serif); font-size: 1.13rem; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0.25rem; top: 50%;
  transform: translateY(-50%); font-size: 1.4rem; color: var(--gold);
  font-family: var(--sans); line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details > div { padding: 0 0 1.35rem; color: var(--ink-2); max-width: 66ch; }

/* ------------------------------------------------------------------ form */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.35rem; }
.field label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); }
.field .hint { font-size: 0.82rem; color: var(--ink-3); letter-spacing: 0; text-transform: none; font-weight: 400; }
.req { color: var(--gold-deep); }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  font: inherit; font-size: 1rem; color: var(--ink); background: var(--paper);
  border: 1px solid var(--hair); border-radius: 2px; padding: 0.75rem 0.85rem;
  width: 100%; transition: border-color .15s, box-shadow .15s;
}
input:hover, select:hover, textarea:hover { border-color: var(--ink-3); }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(165,124,54,.18);
}
textarea { min-height: 9.5rem; resize: vertical; }
.field-row { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }
.check { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.97rem; }
.check input { width: 1.1rem; height: 1.1rem; margin: 0.25rem 0 0; accent-color: var(--gold); flex: none; }
.check label { font-size: 0.97rem; letter-spacing: 0; text-transform: none; font-weight: 400; color: var(--ink); }

/* Honeypot. Off-screen rather than display:none, because a lot of bots skip
   display:none fields. Anything typed here means "bot". */
.botcheck{position:absolute!important;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}

.form-note { font-size: 0.88rem; color: var(--ink-3); }
.form-msg {
  border-radius: 2px; padding: 0.95rem 1.1rem; font-size: 0.95rem;
  border: 1px solid var(--rule); background: var(--linen-2);
}
.form-msg[hidden] { display: none !important; }
.form-msg.ok { border-color: #5f7d52; background: #eef3ea; color: #2f4426; }
.form-msg.bad { border-color: #a8544a; background: #f8ecea; color: #78302a; }
.banner {
  border: 1px solid #a8544a; background: #f8ecea; color: #78302a;
  border-radius: 3px; padding: 1rem 1.15rem; margin-bottom: 1.75rem; font-size: 0.95rem;
}
.banner[hidden] { display: none !important; }
button[disabled] { opacity: .6; cursor: progress; }

/* ---------------------------------------------------------------- footer */
.site-foot { background: var(--dark); color: rgba(255,255,255,.72); font-size: 0.93rem; }
.foot-in {
  max-width: var(--max); margin-inline: auto; padding: clamp(2.75rem, 6vw, 4.5rem) var(--pad) 1.75rem;
  display: grid; gap: clamp(1.75rem, 4vw, 3rem);
}
@media (min-width: 760px) { .foot-in { grid-template-columns: 1.3fr 1fr 1fr; } }
@media (min-width: 1040px) { .foot-in { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.foot-brand img { width: 46px; height: 46px; margin-bottom: 1rem; }
.foot-brand .brand-name { color: #fff; display: block; }
.foot-brand p { margin-top: 1rem; max-width: 34ch; }
.site-foot h2 {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-lite);
  margin: 0 0 1rem;
}
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { margin-bottom: 0.5em; }
.site-foot a { color: rgba(255,255,255,.82); text-decoration: none; }
.site-foot a:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--gold-lite); }
.site-foot address { font-style: normal; }
.foot-legal {
  max-width: var(--max); margin-inline: auto; padding: 1.4rem var(--pad) 2.25rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.75rem;
  font-size: 0.8rem; color: rgba(255,255,255,.55);
}

/* --------------------------------------------------------------- lightbox */
.lb {
  position: fixed; inset: 0; z-index: 120; display: flex;
  align-items: center; justify-content: center;
  background: rgba(14, 13, 11, .95); padding: clamp(0.75rem, 3vw, 2.5rem);
}
.lb[hidden] { display: none !important; }
.lb-fig { margin: 0; max-width: min(1500px, 100%); max-height: 100%; display: flex; flex-direction: column; gap: 0.9rem; }
.lb-fig img {
  max-width: 100%; max-height: calc(100vh - 9rem); width: auto; height: auto;
  margin-inline: auto; border-radius: 2px; background: #201e1b;
}
.lb-fig figcaption {
  color: rgba(255,255,255,.85); font-size: 0.92rem; text-align: center;
  max-width: 70ch; margin-inline: auto;
}
.lb-fig figcaption span { display: block; color: rgba(255,255,255,.5); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.4rem; }
.lb button {
  position: absolute; background: rgba(255,255,255,.1); color: #fff;
  border: 1px solid rgba(255,255,255,.28); border-radius: 50%;
  width: 46px; height: 46px; font-size: 1.3rem; line-height: 1;
  cursor: pointer; display: grid; place-items: center;
  transition: background .18s, border-color .18s;
}
.lb button:hover { background: rgba(255,255,255,.22); border-color: #fff; }
.lb-close { top: clamp(0.6rem, 2vw, 1.6rem); right: clamp(0.6rem, 2vw, 1.6rem); }
.lb-prev { left: clamp(0.4rem, 2vw, 1.6rem); top: 50%; transform: translateY(-50%); }
.lb-next { right: clamp(0.4rem, 2vw, 1.6rem); top: 50%; transform: translateY(-50%); }

/* ----------------------------------------------------------------- reveal
   Hidden only when scripting is live, so a no-JS visitor sees everything. */
.js .reveal { opacity: 0; transform: translateY(16px); }
.js .reveal.in {
  opacity: 1; transform: none;
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .reveal.in {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  .tile:hover .tile-img img, .feature:hover .feature-img img, .shot:hover img { transform: none; }
}

@media print {
  .site-head, .drawer, .lb, .cta, .strip-media { display: none !important; }
  body { background: #fff; color: #000; }
}
