/* Above All Roofing — Storm Slate / Oxide Rust / Lime Render */
:root {
  --bg: #F4F1EC;
  --ink: #16202A;
  --slate: #1F3A4D;
  --slate-2: #2A4A5F;
  --rust: #C7502E;
  --rust-2: #B0431E;
  --mist: #9AA7B0;
  --mist-2: #DDE2E5;
  --white: #FFFFFF;
  --max: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(72px, 9vw, 128px);
  --font-display: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --shadow-card: 0 2px 0 rgba(31,58,77,.06), 0 18px 40px -22px rgba(22,32,42,.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.05; letter-spacing: -0.015em; margin: 0; }
h1 { font-size: clamp(40px, 6.5vw, 88px); }
h2 { font-size: clamp(30px, 4vw, 52px); letter-spacing: -0.02em; }
h3 { font-size: clamp(20px, 1.6vw, 24px); font-weight: 700; }
p { margin: 0 0 1em; }
.mono { font-family: var(--font-mono); font-feature-settings: "ss01","tnum"; }

/* Containers */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-tight { max-width: 920px; margin: 0 auto; padding: 0 var(--gutter); }

/* Header / nav */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 241, 236, .88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--mist-2);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--ink);
}
.brand-mark {
  width: 36px; height: 36px; background: var(--slate); color: var(--white);
  display: grid; place-items: center; border-radius: 4px;
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
}
.brand-name {
  font-family: var(--font-display); font-weight: 800; font-size: 17px;
  letter-spacing: -0.01em;
}
.brand-name small { display: block; font-family: var(--font-mono); font-weight: 500; font-size: 10px; color: var(--mist); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 2px; }
.nav-links {
  display: flex; align-items: center; gap: 30px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  text-decoration: none; color: var(--ink); font-weight: 500; font-size: 15px;
  position: relative;
}
.nav-links a:hover { color: var(--rust); }
.nav-links a.is-active { color: var(--rust); }
.nav-cta {
  display: flex; align-items: center; gap: 14px;
}
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--slate); font-family: var(--font-mono);
  font-weight: 500; font-size: 14px;
}
.nav-phone svg { width: 14px; height: 14px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 2px;
  text-decoration: none; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; transition: transform .15s, background .15s;
}
.btn-primary { background: var(--rust); color: var(--white); }
.btn-primary:hover { background: var(--rust-2); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }
@media (max-width: 880px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-phone { font-size: 13px; }
  .site-header.is-open .nav-links { display: flex; flex-direction: column; gap: 0; position: absolute; top: 76px; left: 0; right: 0; background: var(--bg); padding: 8px var(--gutter) 20px; border-bottom: 1px solid var(--mist-2); }
  .site-header.is-open .nav-links li { padding: 12px 0; border-bottom: 1px solid var(--mist-2); }
  .site-header.is-open .nav-links li:last-child { border-bottom: 0; }
}

/* Hero */
.hero {
  position: relative; min-height: 88vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(31,58,77,.92) 0%, rgba(31,58,77,.55) 35%, rgba(31,58,77,.18) 65%, rgba(31,58,77,.05) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  padding: 0 var(--gutter) clamp(48px, 6vw, 96px);
  max-width: var(--max); width: 100%; margin: 0 auto;
}
.hero-eyebrow {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex; gap: 16px; align-items: center;
  margin-bottom: 28px;
  color: rgba(255,255,255,.78);
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--rust); border-radius: 50%; }
.hero h1 {
  max-width: 18ch;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-sub {
  max-width: 56ch; font-size: clamp(17px, 1.4vw, 19px);
  color: rgba(255,255,255,.88); margin-bottom: 36px;
}
.hero-actions {
  display: flex; gap: 18px; flex-wrap: wrap; align-items: center;
}
.hero-meta {
  display: flex; gap: clamp(20px, 3vw, 48px);
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: clamp(20px, 2.4vw, 32px);
  border-top: 1px solid rgba(255,255,255,.18);
  flex-wrap: wrap;
}
.hero-meta-item {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em;
  color: rgba(255,255,255,.7); text-transform: uppercase;
}
.hero-meta-item strong {
  display: block; color: var(--white); font-family: var(--font-display);
  font-weight: 700; font-size: 20px; letter-spacing: -0.01em;
  text-transform: none; margin-bottom: 2px;
}

/* Page hero (non-home) */
.page-hero {
  background: var(--slate); color: var(--white);
  padding: clamp(96px, 12vw, 140px) 0 clamp(48px, 6vw, 80px);
}
.page-hero .eyebrow {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust); margin-bottom: 20px;
  display: inline-block;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  max-width: 18ch;
}
.page-hero p {
  max-width: 60ch; font-size: 18px; color: rgba(255,255,255,.78);
  margin-top: 20px;
}

/* Sections */
section { padding: var(--section-y) 0; }
.section-head {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px;
  margin-bottom: clamp(48px, 5vw, 72px); align-items: end;
}
.section-head .eyebrow {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rust);
  margin-bottom: 16px; display: inline-block;
}
.section-head .lede { color: #41525E; font-size: 18px; max-width: 52ch; }
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; }
}

/* Services grid (4-up) */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--mist-2);
  border-radius: 4px;
  padding: 32px 28px 0;
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--ink);
  transition: transform .2s, border-color .2s;
  overflow: hidden;
}
.svc-card:hover { transform: translateY(-3px); border-color: var(--slate); }
.svc-icon {
  width: 44px; height: 44px;
  color: var(--slate);
  margin-bottom: 28px;
}
.svc-icon svg { width: 100%; height: 100%; stroke-width: 1.4; }
.svc-card h3 { margin-bottom: 12px; font-size: 22px; }
.svc-card p { color: #41525E; font-size: 15px; line-height: 1.55; margin-bottom: 28px; flex: 1; }
.svc-supplier {
  margin: 0 -28px;
  padding: 14px 28px;
  background: var(--bg);
  border-top: 1px solid var(--mist-2);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.06em; color: #54636F; text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: center;
}
.svc-supplier .arrow { width: 12px; height: 12px; color: var(--rust); }
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* Trust strip */
.trust {
  background: var(--bg);
  border-top: 1px solid var(--mist-2);
  border-bottom: 1px solid var(--mist-2);
  padding: clamp(56px, 6vw, 80px) 0;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px; align-items: start;
  margin-bottom: 56px;
}
.trust-item .num {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 13px; color: var(--rust);
  letter-spacing: 0.06em; margin-bottom: 12px;
  text-transform: uppercase;
}
.trust-item h3 { font-size: 22px; margin-bottom: 10px; }
.trust-item p { color: #54636F; font-size: 15px; margin: 0; }
.suppliers {
  display: flex; align-items: center; gap: clamp(28px, 4vw, 56px);
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--mist-2);
}
.suppliers .label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mist); margin-right: 8px;
}
.supplier-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 17px; color: var(--mist); letter-spacing: -0.01em;
  opacity: .65; filter: grayscale(100%);
}
@media (max-width: 760px) {
  .trust-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Projects grid */
.projects {
  background: var(--ink); color: var(--white);
}
.projects .section-head .eyebrow { color: var(--rust); }
.projects .section-head .lede { color: rgba(255,255,255,.7); }
.proj-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.proj-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--slate);
  border: 1px solid rgba(255,255,255,.06);
}
.proj-card .img {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.proj-card .img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.proj-card:hover .img img { transform: scale(1.04); }
.proj-card .img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22,32,42,.6) 0%, transparent 55%);
}
.proj-card .body {
  padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 16px;
}
.proj-card .body h3 {
  font-size: 22px; color: var(--white); margin: 0 0 6px;
}
.proj-card .body .cap {
  font-family: var(--font-mono); font-size: 12px;
  color: rgba(255,255,255,.6); letter-spacing: 0.06em;
  text-transform: uppercase;
}
.proj-card .num {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--rust); letter-spacing: 0.06em;
}
@media (max-width: 760px) {
  .proj-grid { grid-template-columns: 1fr; }
}

/* Project mosaic (home page — asymmetric 7+5 / 5+7) */
.proj-mosaic { display: grid; gap: 18px; }
.m-row { display: grid; grid-template-columns: 7fr 5fr; gap: 18px; }
.m-row-b { grid-template-columns: 5fr 7fr; }
.m-tile {
  position: relative; overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--slate);
  text-decoration: none; color: var(--white);
  display: block;
}
.m-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.m-tile:hover img { transform: scale(1.04); }
.m-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22,32,42,.78) 0%, transparent 55%);
  pointer-events: none;
}
.m-label {
  position: absolute; left: 24px; right: 24px; bottom: 22px;
  z-index: 1;
}
.m-name {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(20px, 1.6vw, 26px); margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.m-meta {
  display: flex; gap: 14px; align-items: center;
  font-family: var(--font-mono); font-size: 12px;
  color: rgba(255,255,255,.78); letter-spacing: 0.06em; text-transform: uppercase;
}
.m-meta .num { color: var(--rust); }
@media (max-width: 760px) {
  .m-row, .m-row-b { grid-template-columns: 1fr; }
}

/* Split CTA (home only) */
.split-cta {
  display: grid; grid-template-columns: 1.1fr 1fr;
  min-height: 60vh;
  padding: 0;
}
.sc-left {
  background: var(--slate); color: var(--white);
  padding: clamp(56px, 7vw, 96px) clamp(40px, 5vw, 72px);
  display: flex; flex-direction: column; justify-content: center;
}
.sc-left h2 { color: var(--white); margin-bottom: 22px; max-width: 16ch; }
.sc-left p {
  color: rgba(255,255,255,.78); font-size: 17px;
  max-width: 46ch; margin-bottom: 36px;
}
.sc-right {
  background: var(--rust); color: var(--ink);
  padding: clamp(56px, 7vw, 96px) clamp(40px, 5vw, 72px);
  display: flex; flex-direction: column; justify-content: center;
}
.sc-phone {
  text-decoration: none; color: var(--ink);
  display: block;
}
.sc-phone-num {
  display: block; font-family: var(--font-mono); font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.01em; color: var(--ink);
  margin-bottom: 6px;
  font-feature-settings: "tnum";
}
.sc-phone-label {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(22,32,42,.7);
}
.sc-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.sc-meta .k {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(22,32,42,.7); margin-bottom: 6px;
}
.sc-meta .v { font-size: 15px; color: var(--ink); }
@media (max-width: 760px) {
  .split-cta { grid-template-columns: 1fr; min-height: 0; }
  .sc-meta { grid-template-columns: 1fr; gap: 16px; }
}

/* Coverage strip */
.coverage {
  background: var(--slate);
  color: var(--white);
  padding: clamp(56px, 5vw, 72px) 0;
}
.coverage h2 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  color: var(--white); margin-bottom: 28px;
  max-width: 28ch;
}
.coverage-tags {
  display: flex; flex-wrap: wrap; gap: 0;
  font-family: var(--font-mono);
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,.86);
  letter-spacing: 0.02em;
}
.coverage-tags span { padding: 4px 0; }
.coverage-tags .sep { color: var(--rust); padding: 4px 12px; }

/* Owner block */
.owner {
  background: var(--bg);
}
.owner-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.owner-photo {
  background: var(--slate);
  aspect-ratio: 4/5;
  position: relative; overflow: hidden;
}
.owner-photo img { width: 100%; height: 100%; object-fit: cover; }
.owner h2 { margin-bottom: 24px; }
.owner-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--mist-2);
}
.owner-stat .k {
  font-family: var(--font-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--mist); margin-bottom: 8px;
}
.owner-stat .v {
  font-family: var(--font-display); font-weight: 700;
  font-size: 26px; color: var(--ink); letter-spacing: -0.01em;
}
.owner p { color: #41525E; font-size: 17px; }
@media (max-width: 880px) {
  .owner-grid { grid-template-columns: 1fr; }
}

/* End CTA */
.end-cta {
  background: var(--slate);
  color: var(--white);
  text-align: center;
}
.end-cta h2 {
  color: var(--white);
  max-width: 18ch; margin: 0 auto 20px;
}
.end-cta p {
  max-width: 50ch; margin: 0 auto 36px;
  color: rgba(255,255,255,.78); font-size: 18px;
}
.end-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.end-cta-phone {
  display: inline-flex; gap: 10px; align-items: center;
  font-family: var(--font-mono); font-size: 15px; color: rgba(255,255,255,.82);
  text-decoration: none;
}

/* Service page */
.svc-hero {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 0; min-height: 60vh;
}
.svc-hero-text {
  background: var(--slate); color: var(--white);
  padding: clamp(64px, 8vw, 112px) clamp(40px, 6vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
}
.svc-hero-text .eyebrow {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rust); margin-bottom: 22px;
}
.svc-hero-text h1 {
  font-size: clamp(36px, 4.5vw, 60px);
  color: var(--white); margin-bottom: 24px;
}
.svc-hero-text p {
  color: rgba(255,255,255,.82); font-size: 18px; max-width: 50ch;
}
.svc-hero-img {
  position: relative; overflow: hidden;
  background: var(--slate);
}
.svc-hero-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) {
  .svc-hero { grid-template-columns: 1fr; min-height: 0; }
  .svc-hero-img { min-height: 320px; }
}

.spec-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.spec-list {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--mist-2);
}
.spec-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--mist-2);
  display: grid; grid-template-columns: 140px 1fr; gap: 24px;
  font-size: 16px;
}
.spec-list .k {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mist); padding-top: 3px;
}
.spec-list .v { color: var(--ink); }
.spec-callout {
  background: var(--white); border: 1px solid var(--mist-2);
  padding: 36px 32px;
}
.spec-callout h3 { margin-bottom: 16px; }
.spec-callout .badge {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--rust); margin-bottom: 14px; display: block;
}
@media (max-width: 880px) {
  .spec-grid { grid-template-columns: 1fr; gap: 32px; }
  .spec-list li { grid-template-columns: 1fr; gap: 4px; }
}

/* Project page index / gallery */
.proj-index {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px;
}
.proj-index .item-lg { grid-column: span 7; }
.proj-index .item-sm { grid-column: span 5; }
.proj-index .item {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--slate);
}
.proj-index .item img {
  width: 100%; height: 100%; object-fit: cover;
}
.proj-index .item .label {
  position: absolute; left: 20px; bottom: 18px; right: 20px;
  color: var(--white); font-family: var(--font-display); font-weight: 700;
  font-size: 20px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.proj-index .item .label .cap {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.7); letter-spacing: 0.06em; text-transform: uppercase;
}
.proj-index .item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22,32,42,.7) 0%, transparent 50%);
  pointer-events: none;
}
@media (max-width: 880px) {
  .proj-index { grid-template-columns: 1fr; }
  .proj-index .item-lg, .proj-index .item-sm { grid-column: span 1; }
}

/* Gallery grid (re-roof gallery) */
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.gallery img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; cursor: pointer;
  transition: opacity .2s;
}
.gallery img:hover { opacity: .85; }
@media (max-width: 760px) {
  .gallery { grid-template-columns: 1fr 1fr; }
}

/* Lightbox */
.lbox {
  position: fixed; inset: 0; background: rgba(22,32,42,.92);
  display: none; align-items: center; justify-content: center;
  z-index: 100; padding: 5vh 5vw;
}
.lbox.is-open { display: flex; }
.lbox img {
  max-width: 100%; max-height: 90vh; object-fit: contain;
}
.lbox-close {
  position: absolute; top: 20px; right: 24px; background: none; border: 0;
  color: var(--white); font-size: 32px; cursor: pointer;
  width: 44px; height: 44px;
}

/* Contact / forms */
.contact-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px;
  align-items: start;
}
.contact-info dt {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mist); margin-bottom: 6px; margin-top: 24px;
}
.contact-info dt:first-child { margin-top: 0; }
.contact-info dd { margin: 0; font-size: 18px; color: var(--ink); }
.contact-info dd a { text-decoration: none; }
.contact-info dd a:hover { color: var(--rust); }
.form {
  background: var(--white); border: 1px solid var(--mist-2);
  padding: 36px 32px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mist); margin-bottom: 8px;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--mist-2); background: var(--bg);
  border-radius: 2px; font-size: 16px; color: var(--ink);
  font-family: var(--font-body);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: 2px solid var(--rust); outline-offset: -1px; border-color: var(--rust);
}
.form-row textarea { min-height: 130px; resize: vertical; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-success { display: none; padding: 28px; background: #E8F0EA; border: 1px solid #88B79B; color: #16433A; font-size: 16px; }
.form-success.is-shown { display: block; }
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* About page */
.about-lead {
  font-size: clamp(20px, 2vw, 26px);
  font-family: var(--font-display); font-weight: 700;
  line-height: 1.3; max-width: 28ch;
  letter-spacing: -0.015em;
}
.about-body {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px); margin-top: 64px;
}
.about-body p { font-size: 17px; color: #41525E; }
@media (max-width: 760px) {
  .about-body { grid-template-columns: 1fr; gap: 24px; }
}

/* Footer */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,.6);
  padding: 80px 0 32px;
}
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}
.foot-col h4 {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--mist);
  margin-bottom: 18px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: 10px; }
.foot-col a { text-decoration: none; color: rgba(255,255,255,.78); font-size: 15px; }
.foot-col a:hover { color: var(--rust); }
.foot-brand {
  display: flex; gap: 14px; align-items: center; margin-bottom: 20px;
  color: var(--white); text-decoration: none;
}
.foot-brand .brand-name { color: var(--white); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px; color: rgba(255,255,255,.45);
  font-family: var(--font-mono);
}
.foot-bottom a { color: var(--rust); text-decoration: none; }
@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .foot-grid { grid-template-columns: 1fr; }
}

/* Utility */
.eyebrow { font-family: var(--font-mono); font-weight: 500; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rust); }
.rule { height: 1px; background: var(--mist-2); border: 0; margin: 0; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
