/* ── Brand tokens ─────────────────────────────────────────────── */
:root {
  --alto: #020C27;          /* primary navy (in place of black) */
  --tractor: #00577C;       /* secondary blue */
  --gold: #FFCD2B;          /* gold */
  --blood: #85102A;         /* blood red */
  --white: #FFFFFF;
  --paper: #f5f1e8;         /* off-white for warm sections */
  --paper-2: #ece5d3;       /* warmer card */
  --line: rgba(2, 12, 39, 0.12);
  --muted: rgba(2, 12, 39, 0.62);

  --serif: "DM Serif Display", "Domine", Georgia, serif;
  --roman: "Cinzel", "Trajan Pro", serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --radius: 4px;
  --radius-lg: 8px;

  --content: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--paper); color: var(--alto); overflow-x: hidden; }
img, svg, video { max-width: 100%; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ── Typography utilities ────────────────────────────────────── */
.eyebrow {
  font-family: var(--roman);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--tractor);
}
.eyebrow-gold { color: var(--gold); }
.eyebrow-white { color: rgba(255,255,255,0.7); }

.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.serif { font-family: var(--serif); }
.italic { font-style: italic; }

/* ── Layout ───────────────────────────────────────────────────── */
.container {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 30px 0; }
.section-tight { padding: 30px 0; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 0;
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--gold); color: var(--alto); box-shadow: 0 2px 0 rgba(0,0,0,0.18); }
.btn-primary:hover { background: #ffd644; }
.btn-secondary { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.7); }
.btn-dark { background: var(--alto); color: var(--white); }
.btn-dark:hover { background: #0a1840; }
.btn-blood { background: var(--blood); color: var(--white); box-shadow: 0 2px 0 rgba(0,0,0,0.18); }
.btn-blood:hover { background: #9b1633; }
.btn-lg { padding: 18px 28px; font-size: 15px; }

/* ── Decorative ───────────────────────────────────────────────── */
.gold-rule {
  height: 3px;
  width: 56px;
  background: var(--gold);
  display: block;
}

/* ── Header ───────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--alto);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 205, 43, 0.18);
}
.site-header .top-strip {
  background: #010820;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.site-header .top-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
}
.site-header .top-strip a { color: var(--gold); }
.site-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: var(--content);
  margin: 0 auto;
  gap: 24px;
}
.site-header .brand { display: flex; align-items: center; gap: 12px; }
.site-header .brand img { height: 44px; width: auto; }
.site-header .nav-links {
  display: flex;
  gap: 32px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.site-header .nav-links a {
  position: relative;
  padding: 4px 0;
  color: rgba(255,255,255,0.86);
}
.site-header .nav-links a:hover { color: var(--gold); }
.site-header .nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--gold);
}
.site-header .actions { display: flex; align-items: center; gap: 16px; }
.site-header .phone {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  font-size: 16px;
}
.site-header .phone .phone-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold); color: var(--alto);
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger toggle — hidden on desktop, shown ≤840px */
.site-header .nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  cursor: pointer;
}
.site-header .nav-toggle .bar {
  display: block; height: 2px; width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform .22s, opacity .18s;
}
.site-header.menu-open .nav-toggle .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.menu-open .nav-toggle .bar:nth-child(2) { opacity: 0; }
.site-header.menu-open .nav-toggle .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-down menu */
.site-header .mobile-menu {
  display: none;
  overflow: hidden;
  max-height: 0;
  background: var(--alto);
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: max-height .3s ease;
}
.site-header.menu-open .mobile-menu { max-height: 520px; }
.site-header .mobile-menu-inner {
  display: flex; flex-direction: column;
  gap: 4px;
  padding: 16px 32px 28px;
  max-width: var(--content);
  margin: 0 auto;
}
.site-header .mobile-menu-inner a:not(.btn) {
  font-weight: 600; font-size: 16px;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .mobile-menu-inner a.active { color: var(--gold); }
.site-header .mobile-menu-inner .mm-phone {
  display: flex; align-items: center; gap: 10px;
  text-transform: none; letter-spacing: 0.02em;
  font-size: 18px; color: var(--white);
}
.site-header .mobile-menu-inner .btn { margin-top: 16px; text-align: center; justify-content: center; }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--alto);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(0, 87, 124, 0.55), transparent 60%),
    radial-gradient(ellipse at 10% 90%, rgba(133, 16, 42, 0.18), transparent 50%);
  z-index: -1;
}
.hero .grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.18'/></svg>");
  mix-blend-mode: overlay; opacity: 0.4;
}
.hero .container {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 96px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--roman);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-eyebrow .star { color: var(--gold); }
.hero h1 {
  font-family: var(--serif);
  font-size: 92px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  font-weight: 400;
}
.hero h1 em { font-style: italic; color: var(--gold); font-family: var(--serif); }
.hero .lead {
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin-bottom: 40px;
}
.hero .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .hero-meta {
  margin-top: 56px;
  display: flex; gap: 40px; flex-wrap: wrap;
  font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 600;
  color: rgba(255,255,255,0.66);
}
.hero .hero-meta b { color: var(--gold); font-weight: 700; }
.hero-mark {
  position: relative;
}
.hero-mark img { width: 100%; max-width: 520px; margin: 0 auto; display: block;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.45)); }
.hero-mark .ring {
  position: absolute; inset: -10% 8%;
  border: 2px solid rgba(255, 205, 43, 0.22);
  border-radius: 50%;
  z-index: -1;
}
.hero-mark .ring.inner { inset: 5% 22%; border-color: rgba(255, 205, 43, 0.12); }

/* ── Trust strip ──────────────────────────────────────────────── */
.trust-strip {
  background: var(--gold);
  color: var(--alto);
  padding: 18px 0;
  border-top: 1px solid rgba(2, 12, 39, 0.12);
  border-bottom: 1px solid rgba(2, 12, 39, 0.12);
}
.trust-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-strip .item {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}
.trust-strip .check {
  width: 24px; height: 24px;
  background: var(--alto); color: var(--gold);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
}

/* ── Section header ──────────────────────────────────────────── */
.sec-head { display: flex; flex-direction: column; gap: 16px; margin-bottom: 56px; }
.sec-head .title {
  font-family: var(--serif);
  font-size: 64px;
  letter-spacing: -0.02em;
  line-height: 1.04;
}
.sec-head .title em { font-style: italic; color: var(--tractor); }
.sec-head .sub {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}
.sec-head.center { align-items: center; text-align: center; }
.sec-head.center .sub { margin: 0 auto; }
.sec-head.row {
  flex-direction: row; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 32px;
}

/* ── Services ─────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -20px rgba(2, 12, 39, 0.18);
  border-color: rgba(2, 12, 39, 0.22);
}
.service-card .num {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--serif);
  font-size: 56px; line-height: 1;
  color: rgba(2, 12, 39, 0.08);
}
.service-card .ico {
  width: 56px; height: 56px;
  background: var(--alto);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  padding: 10px;
}
.service-card .ico img { width: 100%; height: 100%; object-fit: contain; }
.service-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.1;
}
.service-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-card .more {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--tractor);
  display: inline-flex; align-items: center; gap: 6px;
}
.service-card .more::after { content: "→"; transition: transform .18s; }
.service-card:hover .more::after { transform: translateX(3px); }

/* ── Gallery ──────────────────────────────────────────────────── */
.gallery {
  background: var(--alto);
  color: var(--white);
  position: relative;
}
.gallery .sec-head .title { color: var(--white); }
.gallery .sec-head .title em { color: var(--gold); }
.gallery .sec-head .sub { color: rgba(255,255,255,0.66); }
.gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.gallery-grid .tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #08153a;
}
.gallery-grid .tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease;
}
.gallery-grid .tile:hover img { transform: scale(1.05); }
.gallery-grid .tile.feature { grid-row: span 2; }
.gallery-grid .tile .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px 24px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  display: flex; justify-content: space-between; align-items: flex-end;
  pointer-events: none;
}
.gallery-grid .tile .cap .lbl {
  font-family: var(--serif); font-size: 20px;
}
.gallery-grid .tile .cap .place {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold); font-weight: 700;
}

/* ── Why ──────────────────────────────────────────────────────── */
.why { background: var(--paper); position: relative; }
.why-grid {
  display: grid; grid-template-columns: 1fr; gap: 0; max-width: 980px;
}
.why-list { display: flex; flex-direction: column; gap: 4px; }
.why-list .why-item {
  display: grid; grid-template-columns: 64px 1fr; gap: 28px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.why-list .why-item:last-child { border-bottom: 1px solid var(--line); }
.why-list .why-item .num {
  font-family: var(--serif);
  font-size: 56px; line-height: 1;
  color: var(--gold);
  -webkit-text-stroke: 1.5px var(--alto);
}
.why-list .why-item h3 {
  font-family: var(--serif); font-size: 32px;
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.why-list .why-item p {
  font-size: 17px; color: var(--muted); line-height: 1.6;
  max-width: 560px;
}

/* ── Testimonials ─────────────────────────────────────────────── */
.testimonials { background: var(--paper); }
.testimonials .quote-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
}
.testimonial .stars { display: flex; gap: 2px; margin-bottom: 20px; color: var(--gold); font-size: 18px; }
.testimonial blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--alto);
  flex: 1;
}
.testimonial .who {
  display: flex; align-items: center; gap: 14px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testimonial .who .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--tractor); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
  letter-spacing: 0.02em;
}
.testimonial .who .name { font-weight: 700; font-size: 15px; }
.testimonial .who .where { font-size: 12px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }

/* ── Process / Steps ──────────────────────────────────────────── */
.process { background: var(--white); }
.process .steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
}
.process .steps::before {
  content: ""; position: absolute;
  left: 5%; right: 5%; top: 36px; height: 1px;
  background: repeating-linear-gradient(to right, var(--line) 0 8px, transparent 8px 16px);
}
.process .step { padding: 0 16px; position: relative; }
.process .step .badge {
  width: 72px; height: 72px;
  background: var(--white);
  border: 2px solid var(--alto);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--alto);
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.process .step .badge::after {
  content: ""; position: absolute; inset: -6px;
  border: 1px solid var(--gold); border-radius: 50%;
}
.process .step h4 { font-family: var(--serif); font-size: 24px; margin-bottom: 8px; }
.process .step p { font-size: 15px; color: var(--muted); line-height: 1.55; }

/* ── Big CTA ──────────────────────────────────────────────────── */
.big-cta {
  background: var(--alto);
  color: var(--white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.big-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(255, 205, 43, 0.16), transparent 60%);
  z-index: -1;
}
.big-cta .container { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.big-cta h2 {
  font-family: var(--serif);
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.big-cta h2 em { font-style: italic; color: var(--gold); }
.big-cta .sub { font-size: 19px; color: rgba(255,255,255,0.78); max-width: 480px; margin-bottom: 36px; }
.big-cta .phone-block {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 24px;
}
.big-cta .phone-block .lbl {
  font-family: var(--roman); font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.big-cta .phone-block .num {
  font-family: var(--serif); font-size: 48px; letter-spacing: -0.01em;
}

/* ── Quote form ───────────────────────────────────────────────── */
.quote-card {
  background: var(--white);
  color: var(--alto);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
  border-top: 4px solid var(--gold);
}
.quote-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 6px;
}
.quote-card .lead {
  font-size: 14px; color: var(--muted); margin-bottom: 24px;
}
.quote-card .field {
  display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px;
}
.quote-card .field label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.quote-card .field input, .quote-card .field textarea, .quote-card .field select {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-size: 15px;
  background: var(--paper);
  color: var(--alto);
  transition: border-color .12s, background .12s;
}
.quote-card .field input:focus, .quote-card .field textarea:focus, .quote-card .field select:focus {
  outline: none; border-color: var(--tractor); background: var(--white);
}
.quote-card .field textarea { resize: vertical; min-height: 80px; }
.quote-card .field input.file-input {
  padding: 10px 14px;
  font-size: 13px;
  cursor: pointer;
}
.quote-card .field input.file-input::file-selector-button {
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--alto);
  background: var(--gold);
  border: none;
  border-radius: var(--radius);
  padding: 8px 14px;
  margin-right: 12px;
  cursor: pointer;
  transition: filter .12s;
}
.quote-card .field input.file-input::file-selector-button:hover { filter: brightness(0.94); }
.quote-card .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-card .submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
  background: #010820;
  color: rgba(255,255,255,0.7);
  padding: 44px 0 24px;
}
.site-footer .top {
  display: flex; justify-content: space-between; align-items: center;
  gap: 48px; flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-footer .brand-foot img { height: 48px; width: auto; }
.site-footer .brand-foot p { font-size: 14px; line-height: 1.6; max-width: 320px; }
.site-footer h5 {
  font-family: var(--roman); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; font-weight: 600;
}
.site-footer ul li { padding: 4px 0; font-size: 14px; }
.site-footer ul li a:hover { color: var(--gold); }
.site-footer .bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px;
  font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.site-footer .bottom .scripture {
  font-family: var(--serif); font-style: italic;
  text-transform: none; letter-spacing: 0;
  font-size: 14px; color: rgba(255,255,255,0.5);
}

/* ── Misc ─────────────────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-tractor { color: var(--tractor); }
.text-blood { color: var(--blood); }
.bg-alto { background: var(--alto); color: var(--white); }

/* ── Page hero (subpage compact hero) ─────────────────────── */
.page-hero {
  background: var(--alto);
  color: var(--white);
  padding: 120px 0 96px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 40%, rgba(0, 87, 124, 0.5), transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(133, 16, 42, 0.16), transparent 50%);
  z-index: -1;
}
.page-hero .grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.18'/></svg>");
  mix-blend-mode: overlay; opacity: 0.4;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .crumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--roman);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}
.page-hero .crumb a { color: var(--gold); }
.page-hero .crumb span:first-of-type { color: rgba(255,255,255,0.35); }
.page-hero .page-h1 {
  font-family: var(--serif);
  font-size: 88px;
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin: 18px 0 24px;
  max-width: 1000px;
}
.page-hero .page-h1 em { font-style: italic; color: var(--gold); }
.page-hero .page-sub {
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 680px;
}

/* ── Service detail block ─────────────────────────────────── */
.svc-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.svc-block.reverse > div:first-child { order: 2; }
.svc-block.no-img { grid-template-columns: 1fr; max-width: 760px; }
.svc-block:last-child { border-bottom: 0; }
.svc-block .meta {
  display: flex; flex-direction: column; gap: 16px;
}
.svc-block .meta .num {
  font-family: var(--serif);
  font-size: 72px;
  color: var(--gold);
  -webkit-text-stroke: 2px var(--alto);
  line-height: 0.9;
}
.svc-block .meta h2 {
  font-family: var(--serif); font-size: 56px;
  letter-spacing: -0.02em; line-height: 1.04;
}
.svc-block .meta h2 em { font-style: italic; color: var(--tractor); }
.svc-block .meta .desc { font-size: 17px; line-height: 1.65; color: var(--muted); }
.svc-block .meta ul.bullets {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 8px;
}
.svc-block .meta ul.bullets li {
  display: grid; grid-template-columns: 18px 1fr; gap: 12px;
  font-size: 15px; color: var(--alto); line-height: 1.5;
}
.svc-block .meta ul.bullets li::before {
  content: ""; width: 12px; height: 12px;
  background: var(--gold);
  display: block; margin-top: 6px;
  transform: rotate(45deg);
}
.svc-block .meta .ctarow {
  margin-top: 20px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.svc-block .img-card {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  background-image:
    repeating-linear-gradient(135deg, rgba(2,12,39,0.04) 0 10px, transparent 10px 20px);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.svc-block .img-card img { width: 100%; height: 100%; object-fit: cover; }
.svc-block .img-card .placeholder {
  font-family: var(--roman);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { background: var(--paper); }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  display: grid; grid-template-columns: 1fr 2fr; gap: 56px;
  align-items: start;
}
.faq-list .faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item .q {
  font-family: var(--serif); font-size: 26px;
  line-height: 1.2; letter-spacing: -0.01em;
}
.faq-item .a {
  font-size: 16px; color: var(--muted); line-height: 1.65;
}

/* ── Gallery — 2-column project grid ──────────────────────── */
.g-section { background: var(--paper); }

.g-feed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 28px;
  max-width: 1180px;
  margin: 0 auto;
}

/* Year divider — spans both columns */
.g-year {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin: 16px 0 0;
}
.g-year .line { height: 1px; background: var(--line); }
.g-year .yr {
  font-family: var(--serif);
  font-size: 56px;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--alto);
  padding: 0 4px;
}

/* Project card */
.g-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.g-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px -22px rgba(2, 12, 39, 0.22);
}

.g-stage { position: relative; }

.g-body {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  padding: 20px 22px 24px;
}

.g-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 8px 12px;
  background: var(--alto);
  color: var(--white);
  height: fit-content;
  border: 1px solid rgba(255, 205, 43, 0.45);
}
.g-date .m {
  font-family: var(--roman);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.g-date .d {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
  margin-top: 5px;
  letter-spacing: -0.01em;
}

.g-meta .eyebrow { margin-bottom: 8px; }
.g-meta h3 {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-bottom: 8px;
}
.g-meta h3 em { font-style: italic; color: var(--tractor); }
.g-place {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--roman);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--alto);
  margin-bottom: 10px;
}
.g-place::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  display: inline-block;
}
.g-meta p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 6.2em;
}

/* Before/after slider */
.ba {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #08153a;
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
}
.ba .pane {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ba .pane img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
}
.ba .pane.after { clip-path: inset(0 0 0 var(--pos, 50%)); }

.ba .lbl {
  position: absolute;
  top: 12px;
  font-family: var(--roman);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 9px;
  font-weight: 700;
  z-index: 3;
  pointer-events: none;
}
.ba .lbl.before {
  left: 12px;
  background: rgba(2, 12, 39, 0.82);
  color: var(--white);
}
.ba .lbl.after  {
  right: 12px;
  background: var(--gold);
  color: var(--alto);
}

.ba .handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos, 50%);
  width: 2px;
  background: var(--gold);
  z-index: 2;
  transform: translateX(-1px);
  pointer-events: none;
}
.ba .handle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 34px; height: 34px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 3px rgba(255, 205, 43, 0.18),
    0 6px 14px rgba(0, 0, 0, 0.35);
}
.ba .handle .arrows {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  z-index: 1;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 800;
  color: var(--alto);
  letter-spacing: -2px;
  pointer-events: none;
}

/* Pair-switcher thumb strip (overlays the slider, bottom-center) */
.pair-thumbs {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
  padding: 5px;
  background: rgba(2, 12, 39, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 205, 43, 0.32);
}
.pair-thumb {
  position: relative;
  display: flex;
  width: 56px;
  height: 36px;
  padding: 0;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.62;
  transition: opacity .15s ease, border-color .15s ease;
}
.pair-thumb:hover { opacity: 0.92; }
.pair-thumb.on {
  opacity: 1;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
.pair-thumb .thumb-half {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.pair-thumb .thumb-half img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pair-thumb .thumb-half.before { border-right: 1px solid var(--gold); }

/* Loading + error states */
.g-loading {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 96px 0;
  color: var(--muted);
  font-family: var(--roman);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  grid-column: 1 / -1;
}
.g-loading-dot {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  animation: g-pulse 1.4s ease-in-out infinite;
}
@keyframes g-pulse {
  0%, 100% { opacity: 0.3; transform: scale(0.85); }
  50%      { opacity: 1;   transform: scale(1.1);  }
}
.g-err {
  margin: 24px auto;
  max-width: 640px;
  padding: 18px 22px;
  border: 1px solid var(--blood);
  background: rgba(133, 16, 42, 0.05);
  color: var(--alto);
  border-radius: var(--radius);
  font-size: 14px;
}
.g-err code { background: var(--paper-2); padding: 2px 6px; border-radius: 3px; font-size: 12px; }

/* Footer CTA on the gallery page */
.g-foot-cta {
  margin: 72px auto 0;
  max-width: 1180px;
  padding: 44px 48px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.g-foot-cta .t {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.g-foot-cta .t em { font-style: italic; color: var(--tractor); }
.g-foot-cta p {
  color: var(--muted);
  font-size: 16px;
  max-width: 520px;
}
.g-foot-cta .ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── About page ───────────────────────────────────────────── */
.about-story {
  display: grid; grid-template-columns: 1fr; gap: 80px;
  max-width: 760px; margin: 0 auto;
  padding: 30px 0;
  align-items: start;
}
.about-story.founder {
  grid-template-columns: 1fr;
  max-width: 760px;
  gap: 56px;
}
.founder-gallery {
  max-width: 1040px;
  margin: 0 auto;
  columns: 3;
  column-gap: 16px;
  padding-bottom: 24px;
}
.founder-gallery img {
  width: 100%;
  margin-bottom: 16px;
  border-radius: var(--radius-lg);
  display: block;
  break-inside: avoid;
  box-shadow: 0 16px 40px -24px rgba(2, 12, 39, 0.45);
}
.about-story aside {
  position: sticky; top: 140px;
  display: flex; flex-direction: column; gap: 18px;
}
.about-story aside img { width: 100%; }
.about-story aside .meta-list {
  display: flex; flex-direction: column;
  font-size: 14px;
}
.about-story aside .meta-list > div {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 100px 1fr; gap: 8px;
}
.about-story aside .meta-list > div:last-child { border-bottom: 1px solid var(--line); }
.about-story aside .meta-list .k {
  font-family: var(--roman); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); padding-top: 2px;
}
.about-story aside .meta-list .v { color: var(--alto); }
.about-story article h2 {
  font-family: var(--serif); font-size: 44px;
  letter-spacing: -0.02em; line-height: 1.06;
  margin-bottom: 24px;
}
.about-story article h2 em { font-style: italic; color: var(--tractor); }
.about-story article h3 {
  font-family: var(--serif); font-size: 26px;
  letter-spacing: -0.01em;
  margin: 40px 0 12px;
}
.about-story article p {
  font-size: 18px; line-height: 1.7;
  margin-bottom: 18px;
  color: var(--alto);
}
.about-story article p.lead {
  font-size: 22px; line-height: 1.5;
  font-family: var(--serif); font-style: italic;
  color: var(--alto);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
}

/* ── Values grid ──────────────────────────────────────────── */
.values-section { background: var(--alto); color: var(--white); }
.values-section .sec-head .title { color: var(--white); }
.values-section .sec-head .title em { color: var(--gold); }
.values-section .sec-head .sub { color: rgba(255,255,255,0.66); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.value-card .ico {
  font-family: var(--serif); font-size: 44px; line-height: 1;
  color: var(--gold); margin-bottom: 24px;
}
.value-card h3 {
  font-family: var(--serif); font-size: 26px;
  margin-bottom: 8px;
}
.value-card p {
  color: rgba(255,255,255,0.7);
  font-size: 15px; line-height: 1.6;
}

/* ── Contact page ─────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 30px 0;
  align-items: start;
}
.contact-info {
  display: flex; flex-direction: column; gap: 32px;
}
.contact-info .block {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.contact-info .block:last-child { border-bottom: 0; }
.contact-info h3 {
  font-family: var(--roman); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; color: var(--tractor);
  margin-bottom: 12px;
}
.contact-info .big {
  font-family: var(--serif); font-size: 44px;
  letter-spacing: -0.015em; line-height: 1.05;
  color: var(--alto);
}
.contact-info .big a { color: var(--alto); }
.contact-info p { color: var(--muted); font-size: 15px; }
.contact-info .hours {
  display: grid; grid-template-columns: 110px 1fr; gap: 12px;
  font-size: 15px;
}
.contact-info .hours .k {
  font-family: var(--roman); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); padding-top: 4px;
}
.contact-info .hours .v { color: var(--alto); }
.area-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.area-grid li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--alto);
}
.area-grid li::before {
  content: ""; width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}
.map-card {
  margin-top: 16px;
  background: var(--alto);
  border-radius: var(--radius-lg);
  aspect-ratio: 5 / 3;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  isolation: isolate;
}
.map-card svg.map-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.85;
}
.map-card .pin {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  color: var(--gold);
}
.map-card .pin .dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(255, 205, 43, 0.2);
  margin-bottom: 8px;
}
.map-card .pin .label {
  font-family: var(--serif); font-size: 18px; color: var(--white);
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1180px) {
  .hero h1 { font-size: 48px; }
  .hero .container { grid-template-columns: 1.6fr 1fr; gap: 32px; }
  .hero-mark img { max-width: 320px; }
  .sec-head .title { font-size: 52px; }
  .big-cta h2 { font-size: 60px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .gallery .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 240px);
  }
  .gallery .gallery-grid .tile.feature { grid-row: span 1; grid-column: span 2; }
  .big-cta .container { grid-template-columns: 1fr; gap: 48px; }
  .site-footer .top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .page-hero { padding: 88px 0 72px; }
  .page-hero .page-h1 { font-size: 64px; }
  .svc-block { grid-template-columns: 1fr; gap: 32px; padding: 30px 0; }
  .svc-block.reverse > div:first-child { order: 1; }
  .svc-block .meta h2 { font-size: 44px; }
  /* Gallery stays 2-col here — only collapses below 720px (see media block lower down) */
  .about-story { grid-template-columns: 1fr; gap: 48px; padding: 30px 0; }
  .about-story aside { position: static; max-width: 320px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; padding: 30px 0; }
  .faq-item { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 840px) {
  .section { padding: 30px 0; }
  .hero .container { grid-template-columns: 1fr; padding-top: 56px; padding-bottom: 56px; }
  .hero h1 { font-size: 52px; }
  .hero-mark { display: none; }
  .sec-head .title { font-size: 40px; }
  .sec-head.row { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials .quote-grid { grid-template-columns: 1fr; }
  .process .steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process .steps::before { display: none; }
  .big-cta h2 { font-size: 44px; }
  .big-cta .phone-block .num { font-size: 36px; }
  .site-header .nav-links { display: none; }
  .site-header .actions { display: flex; }
  .site-header .actions .phone { display: none; }
  .site-header .nav-toggle { display: flex; }
  .site-header .mobile-menu { display: block; }
  .site-header nav { gap: 12px; }
  .site-header .top-strip .container { flex-direction: column; gap: 4px; align-items: flex-start; }
  .site-footer .top { flex-direction: column; gap: 28px; text-align: center; }
  .site-footer .bottom { flex-direction: column; gap: 12px; text-align: center; }
  .page-hero .page-h1 { font-size: 48px; }
  .page-hero { padding: 64px 0 56px; }
  .svc-block .meta h2 { font-size: 32px; }
  .g-foot-cta { padding: 28px 24px; }
  .g-foot-cta .t { font-size: 28px; }
  .ba .handle::after { width: 32px; height: 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-info .big { font-size: 32px; }

  /* Center single-column content when two-col layouts collapse on mobile */
  .hero .hero-text { text-align: center; }
  .hero .hero-eyebrow { justify-content: center; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero .hero-ctas { justify-content: center; }
  .hero .hero-meta { justify-content: center; }

  .sec-head { align-items: center; text-align: center; }
  .sec-head .sub { margin-left: auto; margin-right: auto; }

  .svc-block { text-align: center; }
  .svc-block.no-img { margin-left: auto; margin-right: auto; }
  .svc-block .meta { align-items: center; }
  .svc-block .meta ul.bullets { text-align: left; }
  .svc-block .meta .ctarow { justify-content: center; }

  .big-cta .container > div:first-child { text-align: center; }
  .big-cta .phone-block { display: flex; flex-direction: column; align-items: center; }

  .about-story aside { margin-left: auto; margin-right: auto; align-items: center; text-align: center; }
  .about-story aside .meta-list { width: 100%; max-width: 320px; }

  .about-story.founder { grid-template-columns: 1fr; gap: 28px; max-width: 760px; }
  .founder-gallery { columns: 2; }

  .page-hero .crumb { justify-content: center; }
  .page-hero .container { text-align: center; }
  .page-hero .page-sub { margin-left: auto; margin-right: auto; }
}

@media (max-width: 540px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .quote-card .row2 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; }
  .hero .lead { font-size: 17px; }
  .hero .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; }
  .hero .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero .hero-meta { gap: 14px 24px; }
  .page-hero .page-h1 { font-size: 38px; }
  .sec-head .title { font-size: 32px; }
  .svc-block .meta h2 { font-size: 28px; }
  .svc-block .meta .num { font-size: 56px; }
  .big-cta h2 { font-size: 34px; }
  .big-cta .phone-block .num { font-size: 30px; }
  .area-grid { grid-template-columns: 1fr; }
  .contact-info .big { font-size: 28px; }
  .faq-item .q { font-size: 22px; }
  .testimonials .quote-grid { gap: 20px; }
  .process .steps { grid-template-columns: 1fr; gap: 24px; }
  .site-header nav { padding: 14px 20px; }
  .site-header .brand img { height: 36px; }
  .site-header .actions .btn { padding: 10px 14px; font-size: 13px; }
}

@media (max-width: 720px) {
  .g-feed { grid-template-columns: 1fr; gap: 28px; }
  .g-year .yr { font-size: 40px; }
  .g-body { grid-template-columns: 56px 1fr; gap: 14px; padding: 18px 18px 22px; }
  .g-meta h3 { font-size: 22px; }
  .pair-thumb { width: 48px; height: 32px; }
}
