/* ═══════════════════════════════════════════
   TALLMAN'S LANDSCAPE — styles
   Palette: ink/forest/sage/timber/paper
   Type: Playfair Display + DM Sans
   Motion: hero ken-burns, marquee, reveals, parallax
   ═══════════════════════════════════════════ */

:root {
  --ink:        #0A1306;
  --ink-2:      #12210D;
  --forest:     #314125;
  --forest-2:   #3F562B;
  --sage:       #708A55;
  --sage-light: #9DB38A;
  --timber:     #51463E;
  --paper:      #F8F8F6;
  --white:      #FFFFFF;
  --gold:       #C9A24B;

  --serif: "Playfair Display", Georgia, serif;
  --sans:  "DM Sans", "Helvetica Neue", Arial, sans-serif;

  --container: 1200px;
  --radius: 18px;
  --shadow-1: 0 20px 60px rgba(10, 19, 6, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 76px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: 0; }
em { font-style: italic; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--sage); color: var(--white); }

.container { width: min(var(--container), 92vw); margin-inline: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  font-family: var(--sans); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.02em;
  border-radius: 999px; border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, color 0.35s, border-color 0.35s;
}
.btn--primary { background: var(--forest-2); color: var(--white); box-shadow: 0 10px 30px rgba(63, 86, 43, 0.35); }
.btn--primary:hover { background: var(--forest); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(63, 86, 43, 0.45); }
.btn--gold { background: var(--gold); color: var(--ink); box-shadow: 0 10px 30px rgba(201, 162, 75, 0.35); }
.btn--gold:hover { background: #d4b25f; transform: translateY(-2px); }
.btn--outline { border-color: var(--forest-2); color: var(--forest-2); }
.btn--outline:hover { background: var(--forest-2); color: var(--white); transform: translateY(-2px); }
.btn--outline-light { border-color: rgba(255,255,255,0.65); color: var(--white); }
.btn--outline-light:hover { background: var(--white); color: var(--ink); }
.btn--ghost { border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn--ghost:hover { background: var(--white); border-color: var(--white); color: var(--ink); }
.btn--sm { padding: 0.6rem 1.3rem; font-size: 0.875rem; }
.btn--full { width: 100%; }
.btn:disabled { cursor: not-allowed; opacity: 0.58; transform: none; box-shadow: none; }

/* ── Nav ── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(10, 19, 6, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(10,19,6,0.25);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  display: inline-flex; align-items: center;
  width: clamp(190px, 18vw, 250px); height: 58px;
}
.logo img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links > a:not(.btn) {
  color: rgba(255,255,255,0.85); font-size: 0.92rem; font-weight: 500; letter-spacing: 0.04em;
  position: relative; padding: 0.25rem 0;
}
.nav-links > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1.5px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-links > a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-burger { display: none; background: none; border: 0; flex-direction: column; gap: 5px; padding: 0.5rem; }
.nav-burger span { width: 26px; height: 2px; background: var(--white); transition: transform 0.3s, opacity 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
  background: rgba(10,19,6,0.97); backdrop-filter: blur(14px);
  padding: 1rem 6vw 2rem; flex-direction: column; gap: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile a:not(.btn) { color: rgba(255,255,255,0.9); font-size: 1.15rem; font-weight: 500; }

/* ── Hero ── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden; isolation: isolate;
}
.hero-media { position: absolute; inset: -12% 0; z-index: -2; overflow: hidden; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 26s var(--ease) infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  from { transform: scale(1.02) translateY(0); }
  to   { transform: scale(1.16) translateY(-2.5%); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(10,19,6,0.82) 0%, rgba(10,19,6,0.45) 45%, rgba(10,19,6,0.12) 75%),
    linear-gradient(0deg, rgba(10,19,6,0.72) 0%, transparent 35%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 4px 4px;
  animation: grain 9s steps(8) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 20% { transform: translate(-2%, 1%); }
  40% { transform: translate(1%, -2%); } 60% { transform: translate(-1%, 2%); }
  80% { transform: translate(2%, -1%); }
}
.hero-content { position: relative; z-index: 2; padding-top: var(--nav-h); max-width: 780px; }
.hero-eyebrow {
  display: inline-block; color: var(--sage-light);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  margin-bottom: 1.6rem;
  padding-left: 1.1rem; border-left: 2px solid var(--gold);
}
.hero h1 {
  color: var(--white); font-size: clamp(2.9rem, 7vw, 5.6rem); font-weight: 600;
  margin-bottom: 1.6rem; text-shadow: 0 4px 40px rgba(10,19,6,0.45);
}
.hero h1 em { color: var(--sage-light); }
.hero-sub {
  color: rgba(255,255,255,0.86); font-size: clamp(1.02rem, 1.6vw, 1.22rem); font-weight: 300;
  max-width: 560px; margin-bottom: 2.4rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-scroll {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.7); font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1.5px; height: 52px; overflow: hidden; position: relative; background: rgba(255,255,255,0.18);
}
.hero-scroll-line::after {
  content: ""; position: absolute; left: 0; top: -50%; width: 100%; height: 50%;
  background: var(--gold); animation: scrolldrop 2.2s var(--ease) infinite;
}
@keyframes scrolldrop { to { top: 110%; } }

/* ── Marquee ── */
.marquee {
  background: var(--ink); color: var(--paper);
  overflow: hidden; padding: 1.05rem 0;
  border-block: 1px solid rgba(255,255,255,0.07);
}
.marquee-track {
  display: flex; align-items: center; gap: 2.4rem; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span { font-family: var(--serif); font-size: 1.22rem; font-style: italic; letter-spacing: 0.03em; white-space: nowrap; }
.marquee-track .dot { color: var(--gold); font-size: 0.9rem; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Sections base ── */
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section--paper { background: var(--paper); }
.section--dark { background: var(--ink); color: var(--paper); }
.section-label {
  display: inline-block; color: var(--forest-2);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.section-label--light { color: var(--sage-light); }
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 1rem; }
.section-head h2::after, .contact-info h2::after, .bidding h2::after {
  content: ""; display: block; width: 64px; height: 3px; background: var(--gold); margin-top: 1.1rem; border-radius: 2px;
}

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.about-visual { position: relative; }
.about-img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius);
  box-shadow: var(--shadow-1); will-change: transform;
}
.about-badge {
  position: absolute; left: -1.4rem; bottom: -1.4rem;
  background: var(--forest-2); color: var(--white);
  padding: 1.3rem 1.7rem; border-radius: 14px;
  display: flex; flex-direction: column; line-height: 1.2;
  box-shadow: var(--shadow-1);
}
.about-badge strong { font-family: var(--serif); font-size: 2.1rem; font-weight: 700; }
.about-badge span { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.about-copy p { color: #3d4438; margin-bottom: 1.2rem; font-weight: 300; }
.about-quote {
  margin-top: 1.8rem; padding-left: 1.4rem; border-left: 3px solid var(--gold);
  font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--forest);
}

/* ── Services ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.service-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 6px 24px rgba(10,19,6,0.06);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(10,19,6,0.16); }
.service-img { aspect-ratio: 16 / 10; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.service-card:hover .service-img img { transform: scale(1.07); }
.service-body { padding: 1.6rem 1.7rem 1.9rem; }
.service-num {
  font-family: var(--serif); font-style: italic; color: var(--sage); font-size: 1.05rem;
}
.service-body h3 { font-size: 1.35rem; margin: 0.35rem 0 0.6rem; }
.service-body p { font-size: 0.94rem; color: #4c5346; font-weight: 300; }
.service-card--cta { background: var(--ink); color: var(--paper); display: flex; align-items: center; }
.service-card--cta .service-body { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.service-card--cta h3 { font-size: 1.5rem; }
.service-card--cta p { color: rgba(255,255,255,0.72); margin-bottom: 1.4rem; }
.service-card--cta .service-num { color: var(--gold); }

/* ── Work / Projects ── */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.work-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 3; cursor: pointer;
  box-shadow: 0 10px 30px rgba(10,19,6,0.10);
}
.work-item--wide { grid-column: 1 / -1; aspect-ratio: 21 / 10; }
.work-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); will-change: transform; }
.work-item:hover img { transform: scale(1.05); }
.work-item--link:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.work-cap {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  display: flex; flex-direction: column; gap: 0.15rem;
  padding: 2.2rem 1.6rem 1.3rem;
  background: linear-gradient(0deg, rgba(10,19,6,0.78), transparent);
  color: var(--white);
}
.work-place { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--sage-light); }
.work-name { font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.45rem); font-style: italic; }
.work-view {
  position: absolute; right: 1.6rem; bottom: 1.45rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); opacity: 0; transform: translateY(6px);
  transition: opacity 0.35s, transform 0.35s var(--ease);
}
.work-item--link:hover .work-view, .work-item--link:focus-visible .work-view { opacity: 1; transform: none; }
.work-all { display: flex; justify-content: center; margin-top: clamp(2rem, 4vw, 3rem); }

/* ── Trust signals ── */
.trust .section-head > p { color: #4c5346; font-weight: 300; max-width: 620px; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.trust-card {
  display: flex; flex-direction: column; min-height: 270px; padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid rgba(49,65,37,0.14); border-radius: var(--radius); background: var(--white);
  box-shadow: 0 8px 30px rgba(10,19,6,0.05);
}
.trust-card > span { font-family: var(--serif); font-style: italic; color: var(--sage); font-size: 1.15rem; }
.trust-card h3 { font-size: 1.45rem; margin: 0.65rem 0 0.75rem; }
.trust-card p { color: #4c5346; font-weight: 300; }
.trust-card small { display: block; margin-top: auto; padding-top: 1.5rem; color: var(--forest-2); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

/* ── Bidding ── */
.bidding { position: relative; overflow: hidden; }
.bidding-bg { position: absolute; inset: 0; z-index: 0; }
.bidding-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.bidding-shade {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(63,86,43,0.35), transparent 60%),
              linear-gradient(120deg, rgba(10,19,6,0.94), rgba(10,19,6,0.82));
}
.bidding-inner { position: relative; z-index: 1; max-width: 780px; }
.bidding h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--white); }
.bidding-sub { color: rgba(255,255,255,0.78); font-weight: 300; margin-top: 1.4rem; max-width: 640px; }
.bidding-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin: 2.6rem 0; }
.bidding-point {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 1.3rem 1.4rem; backdrop-filter: blur(6px);
  transition: background 0.4s, transform 0.4s var(--ease);
}
.bidding-point:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.bp-num { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.05rem; }
.bidding-point p { margin-top: 0.4rem; font-size: 0.94rem; color: rgba(255,255,255,0.85); font-weight: 300; }
.bidding-cta { display: flex; align-items: center; flex-wrap: wrap; gap: 1.4rem; }
.bidding-note { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ── Process ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.process-grid--seven .process-step:last-child { grid-column: span 2; }
.process-step {
  border-top: 2px solid rgba(10,19,6,0.12); padding-top: 1.5rem;
  transition: border-color 0.4s;
}
.process-step:hover { border-color: var(--forest-2); }
.step-num { font-family: var(--serif); font-style: italic; font-size: 2rem; color: var(--sage); }
.process-step h3 { font-size: 1.3rem; margin: 0.6rem 0 0.5rem; }
.process-step p { font-size: 0.93rem; color: #4c5346; font-weight: 300; }

/* ── Client reviews ── */
.reviews { border-top: 1px solid rgba(49,65,37,0.1); }
.reviews-head {
  display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(2rem, 6vw, 6rem);
  align-items: end; margin-bottom: 1rem;
}
.reviews-head .section-head { margin-bottom: 0; }
.reviews-intro { color: #4c5346; font-weight: 300; max-width: 480px; padding-bottom: 0.3rem; }
.reviews-sample-note {
  display: inline-flex; margin-bottom: 2rem; padding: 0.55rem 0.75rem;
  border: 1px solid rgba(49,65,37,0.16); border-radius: 999px;
  color: #62695d; background: rgba(255,255,255,0.58);
  font-size: 0.75rem; line-height: 1.35;
}
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review-card {
  display: flex; flex-direction: column; min-width: 0; min-height: 330px;
  padding: clamp(1.5rem, 3vw, 2.1rem); border-radius: var(--radius);
  background: var(--white); border: 1px solid rgba(49,65,37,0.12);
  box-shadow: 0 10px 34px rgba(10,19,6,0.06);
}
.review-card::before {
  content: "“"; height: 2.1rem; color: var(--sage); font-family: var(--serif);
  font-size: 3.5rem; line-height: 0.95;
}
.review-card blockquote {
  margin: 1.1rem 0 2rem; color: var(--forest); font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.35rem); font-style: italic; line-height: 1.48;
}
.review-card figcaption { display: flex; align-items: center; gap: 0.9rem; margin-top: auto; }
.review-card figcaption img {
  width: 58px; height: 58px; flex: 0 0 58px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 0 0 3px var(--paper);
}
.review-card figcaption span { display: flex; min-width: 0; flex-direction: column; gap: 0.08rem; }
.review-card figcaption strong { color: var(--ink); font-size: 0.95rem; }
.review-card figcaption small { color: #73796d; font-size: 0.75rem; line-height: 1.35; }

/* ── Stats ── */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; text-align: center;
}
.stat { display: flex; flex-direction: column; gap: 0.3rem; }
.stat strong {
  font-family: var(--serif); font-weight: 700; font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--forest-2); line-height: 1;
}
.stat strong::after { content: ""; }
.stat span { font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase; color: #6b7165; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact-info h2 { color: var(--white); font-size: clamp(2rem, 4.4vw, 3.2rem); }
.contact-info > p { color: rgba(255,255,255,0.72); font-weight: 300; margin-top: 1rem; max-width: 420px; }
.contact-lines { margin-top: 2.4rem; display: flex; flex-direction: column; gap: 1.2rem; }
.contact-lines > div { display: flex; flex-direction: column; gap: 0.1rem; }
.contact-lines span { font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--sage-light); }
.contact-lines a, .contact-lines p { color: var(--white); font-size: 1.05rem; transition: color 0.3s; }
.contact-lines a:hover { color: var(--gold); }
.lead-form {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem);
  backdrop-filter: blur(8px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--sage-light); margin-bottom: 0.45rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: rgba(10,19,6,0.45); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px; color: var(--white); font-family: var(--sans); font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(10,19,6,0.65);
}
.form-group select option { background: var(--ink); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { margin-top: 0.9rem; font-size: 0.78rem; color: rgba(255,255,255,0.45); text-align: center; }
.form-success { text-align: center; padding: 2rem 0.5rem; }
.success-icon {
  width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: 50%;
  background: var(--forest-2); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.form-success h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 0.4rem; }
.form-success p { color: rgba(255,255,255,0.7); margin-bottom: 1.4rem; }
.lead-form.submitted > :not(.form-success) { display: none; }
.hidden { display: none !important; }

/* ── Footer ── */
.footer { background: var(--ink); color: rgba(255,255,255,0.65); padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-wordmark {
  display: block; width: min(360px, 70vw); height: clamp(72px, 10vw, 112px);
  margin: 0 auto clamp(2rem, 4vw, 3.5rem);
  transition: opacity 0.4s;
}
.footer-wordmark:hover { opacity: 0.78; }
.footer-wordmark img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-col { display: flex; flex-direction: column; align-items: center; text-align: center; min-width: 0; gap: 0.5rem; }
.footer-col h4 { font-size: 0.75rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--sage-light); margin-bottom: 0.4rem; font-family: var(--sans); font-weight: 700; }
.footer-col a, .footer-col p { overflow-wrap: anywhere; font-size: 0.95rem; font-weight: 300; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem; padding-top: 1.8rem; font-size: 0.8rem; }
.footer-made { color: rgba(255,255,255,0.4); }
.footer-legal { margin-top: 0.8rem; color: rgba(255,255,255,0.34); font-size: 0.72rem; line-height: 1.5; }

/* ── Inner pages ── */
.nav--solid { background: rgba(10,19,6,0.96); box-shadow: 0 8px 30px rgba(10,19,6,0.2); }
.inner-page { background: var(--paper); }
.inner-hero { position: relative; min-height: 66svh; display: flex; align-items: end; overflow: hidden; color: var(--white); }
.inner-hero__media, .inner-hero__shade { position: absolute; inset: 0; }
.inner-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.inner-hero__shade { background: linear-gradient(90deg, rgba(10,19,6,0.9), rgba(10,19,6,0.4)), linear-gradient(0deg, rgba(10,19,6,0.78), transparent 55%); }
.inner-hero__content { position: relative; z-index: 1; padding-block: calc(var(--nav-h) + 4rem) clamp(3.5rem, 8vw, 6rem); }
.inner-hero h1 { max-width: 820px; font-size: clamp(2.8rem, 7vw, 5.5rem); }
.inner-hero h1 em { color: var(--sage-light); }
.inner-hero p { max-width: 650px; margin-top: 1.4rem; color: rgba(255,255,255,0.78); font-size: clamp(1rem, 1.7vw, 1.2rem); font-weight: 300; }
.bid-page__grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(2.5rem, 7vw, 6rem); align-items: start; }
.bid-aside { position: sticky; top: calc(var(--nav-h) + 2rem); }
.bid-aside h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.25rem; }
.bid-aside > p { color: #4c5346; font-weight: 300; }
.bid-aside ul { display: grid; gap: 0.8rem; margin-top: 2rem; }
.bid-aside li { position: relative; padding-left: 1.5rem; color: var(--forest); }
.bid-aside li::before { content: "✓"; position: absolute; left: 0; color: var(--forest-2); font-weight: 700; }
.lead-form--paper { background: var(--ink); box-shadow: var(--shadow-1); }
.projects-intro { padding: calc(var(--nav-h) + clamp(4rem, 8vw, 7rem)) 0 clamp(3.5rem, 7vw, 6rem); background: var(--paper); }
.project-list-back { display: inline-flex; gap: 0.45rem; margin-bottom: 2rem; color: var(--forest-2); font-weight: 600; }
.projects-intro .section-label { display: block; }
.projects-intro h1 { max-width: 900px; font-size: clamp(3rem, 8vw, 6.5rem); }
.projects-intro h1 em { color: var(--forest-2); }
.projects-intro p { max-width: 650px; margin-top: 1.4rem; color: #4c5346; font-size: clamp(1rem, 1.6vw, 1.18rem); font-weight: 300; }
.projects-index { padding-top: 0; }
.projects-index__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem); }
.project-index-card { overflow: hidden; border-radius: var(--radius); background: var(--white); box-shadow: 0 10px 34px rgba(10,19,6,0.08); transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease); }
a.project-index-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(10,19,6,0.14); }
a.project-index-card:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.project-index-card__image { aspect-ratio: 16 / 10; overflow: hidden; background: var(--forest); }
.project-index-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
a.project-index-card:hover img { transform: scale(1.04); }
.project-index-card__body { padding: 1.35rem 1.5rem 1.6rem; }
.project-index-card__body > span { color: var(--sage); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.project-index-card h2 { margin: 0.35rem 0; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.project-index-card p { color: #60665b; font-weight: 300; }
.project-index-card small { display: block; margin-top: 1rem; color: var(--forest-2); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.project-index-card--pending small { color: #7d8278; }
.projects-cta .container { display: grid; grid-template-columns: 0.72fr 1.4fr auto; align-items: center; gap: clamp(1.5rem, 4vw, 4rem); }
.projects-cta .section-label { margin: 0; }
.projects-cta h2 { color: var(--white); font-size: clamp(2rem, 4.3vw, 4rem); }
.footer--compact { padding-top: 2.6rem; }
.footer--compact .footer-wordmark { margin-bottom: 1.5rem; }
.confirmation-page { min-height: 100svh; background: var(--ink); }
.confirmation { min-height: 100svh; display: grid; place-items: center; padding: 3rem 6vw; background: radial-gradient(circle at 75% 15%, rgba(112,138,85,0.2), transparent 38%); }
.confirmation__logo { position: absolute; top: 1rem; left: 4vw; width: min(240px, 55vw); height: 68px; }
.confirmation__logo img { width: 100%; height: 100%; object-fit: contain; }
.confirmation__card { max-width: 760px; text-align: center; color: var(--white); }
.confirmation__mark { display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 1.2rem; border-radius: 50%; background: var(--forest-2); color: var(--white); font-size: 1.5rem; }
.confirmation__card h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
.confirmation__card > p { max-width: 620px; margin: 1.3rem auto 0; color: rgba(255,255,255,0.74); }
.confirmation__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.confirmation__direct { font-size: 0.86rem; }
.confirmation__direct a { color: var(--sage-light); text-decoration: underline; }

/* ── Scroll reveals ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid--seven .process-step:last-child { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.4rem; }
  .bidding-points { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-card { min-height: 0; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { min-height: 0; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { left: 1rem; bottom: -1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .work-item--wide { aspect-ratio: 4 / 3; }
  .bid-page__grid { grid-template-columns: 1fr; }
  .bid-aside { position: static; }
  .projects-cta .container { grid-template-columns: 1fr; }
  .reviews-head { grid-template-columns: 1fr; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .questions-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .logo { width: 175px; height: 52px; }
  .work-view { position: static; margin-top: 0.35rem; opacity: 0.86; transform: none; }
  .projects-index__grid { grid-template-columns: 1fr; }
  .reviews-sample-note { border-radius: 12px; }
  .review-card { padding: 1.4rem; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-img { animation: none; }
  .marquee-track { animation: none; }
  .hero-scroll-line::after { animation: none; }
  .hero-grain { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* Project descriptions use the existing three-card design without quotation marks. */
.project-story-card::before { content: none; }
.project-story-card h3 { font-size: 1.65rem; color: var(--forest); }
.project-story-card .story-location { font-size: 0.78rem; color: #59664e; margin: 0.5rem 0 1.3rem; }
.project-story-card .story-copy { color: #46513d; line-height: 1.7; margin-bottom: 1.5rem; }
.project-story-card > a { margin-top: auto; color: var(--forest); font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }
.reviews-head { margin-bottom: 2rem; }
.questions-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem,5vw,5rem); }
.questions h2 { font-size: clamp(2rem,4vw,3.3rem); }
.questions-list details { border-bottom: 1px solid rgba(49,65,37,0.2); padding: 1.1rem 0; }
.questions-list summary { cursor: pointer; font-weight: 600; color: var(--forest); }
.questions-list p { margin-top: 0.8rem; color: #46513d; }
.questions-list a, .bid-direct a { text-decoration: underline; text-underline-offset: 3px; overflow-wrap: anywhere; }
.form-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 0.85rem; font-size: 0.9rem; line-height: 1.5; }
.form-status:empty { display: none; }
.form-status[data-state="error"] { color: #ffd5bd; }
.lead-form--paper .form-status[data-state="error"] { color: #8b281b; }
.form-status[data-state="success"] { color: var(--sage-light); }
.lead-form--paper .form-status[data-state="success"] { color: var(--forest); }
.lead-form [type="submit"]:disabled { cursor: wait; opacity: 0.7; }
.bid-direct { margin-top: 1.4rem; }
@media (max-width: 820px) { .questions-grid { grid-template-columns: 1fr; } }
