/* ========== Reset & Base ========== */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #f5f2ec;
  --cream-deep: #ebe7df;
  --cream-mid: #efebe3;
  --ink: #14110e;
  --ink-soft: #2a2620;
  --ink-muted: #6e685e;
  --line: rgba(20, 17, 14, 0.12);
  --line-strong: rgba(20, 17, 14, 0.22);
  --accent: #8a7456;

  --max-width: 1440px;
  --gutter: 2rem;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-style: normal;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}

h1 { font-size: clamp(3rem, 7.5vw, 6.5rem); }
h2 { font-size: clamp(2.25rem, 5vw, 4.25rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.25rem, 1.6vw, 1.6rem); margin-bottom: 0.5rem; line-height: 1.2; }

p { color: var(--ink-soft); margin-bottom: 1rem; }
p.lead { font-size: clamp(1.05rem, 1.4vw, 1.3rem); line-height: 1.55; color: var(--ink-soft); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-narrow {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: 7rem 0; }
section.tight { padding: 4.5rem 0; }

/* Divider rule */
.rule { height: 1px; background: var(--line); border: none; margin: 0; }

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 2rem;
}

.brand {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.brand span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.35rem;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  list-style: none;
  margin-left: auto;
  margin-right: 2rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--ink);
}

.nav-phone {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
  border-radius: 0;
}
.btn:hover { background: transparent; color: var(--ink); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

.btn-ghost {
  background: transparent;
  border-color: transparent;
  padding: 0.5rem 0;
  color: var(--ink);
}
.btn-ghost::after { content: '\2192'; transition: transform 0.25s; }
.btn-ghost:hover { background: transparent; color: var(--ink); }
.btn-ghost:hover::after { transform: translateX(4px); }

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,17,14,0.10) 0%, rgba(20,17,14,0.55) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--gutter) 5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  max-width: 16ch;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}
.hero p {
  color: rgba(245, 242, 236, 0.88);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  max-width: 38ch;
  margin-bottom: 0;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  color: var(--cream);
}
.hero-meta::before {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--cream);
  opacity: 0.7;
}
.hero-meta-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.85);
}

/* ========== Page Hero (interior pages) ========== */
.page-hero {
  padding: 7rem 0 4rem;
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 1.5rem; }
.page-hero h1 {
  max-width: 18ch;
  margin-bottom: 1.5rem;
}
.page-hero p {
  max-width: 56ch;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--ink-soft);
}

/* ========== Brand Statement ========== */
.statement {
  padding: 9rem 0;
  background: var(--cream);
}
.statement .container {
  max-width: 1200px;
}
.statement-text {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 3.2vw, 2.85rem);
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--ink);
  max-width: 28ch;
}
.statement-text em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

/* ========== Section heads ========== */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: end;
}
.section-head .eyebrow { margin-bottom: 1.25rem; }
.section-head h2 { margin-bottom: 0; max-width: 14ch; }
.section-head p {
  font-size: 1.05rem;
  max-width: 50ch;
  margin-bottom: 0;
}

/* ========== Developments Grid ========== */
.developments {
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.dev-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem 2rem;
}
.dev-card { display: block; }
.dev-card.span-7 { grid-column: span 7; }
.dev-card.span-5 { grid-column: span 5; }
.dev-card.span-6 { grid-column: span 6; }
.dev-card.span-12 { grid-column: span 12; }
.dev-card.offset-2 { grid-column: 3 / span 8; }

.dev-image {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.dev-card:hover .dev-image { transform: scale(0.99); filter: brightness(0.96); }

.dev-card.tall .dev-image { aspect-ratio: 4/5; }
.dev-card.wide .dev-image { aspect-ratio: 16/10; }

.dev-meta {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.4rem;
}
.dev-meta .eyebrow {
  margin-bottom: 0;
  font-size: 0.68rem;
}
.dev-meta .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--ink-muted);
  display: inline-block;
}
.dev-card h3 {
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  margin-bottom: 0.4rem;
  font-weight: 400;
}
.dev-card p { color: var(--ink-muted); font-size: 0.95rem; margin-bottom: 0; }

/* ========== Two-column Split ========== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split-image {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}
.split-image.landscape { aspect-ratio: 5/4; }
.split-content .eyebrow { margin-bottom: 1.25rem; }
.split-content h2 { margin-bottom: 1.5rem; max-width: 14ch; }
.split-content p { font-size: 1.02rem; max-width: 52ch; }
.split-content .actions { margin-top: 2rem; }

/* ========== Approach pillars ========== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 1.5rem;
}
.pillar h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.pillar .num {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: block;
  font-style: italic;
}
.pillar p { color: var(--ink-soft); font-size: 0.97rem; }

/* ========== Stats ========== */
.stats {
  background: var(--cream-deep);
  padding: 5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
.stat { padding-left: 1.5rem; border-left: 1px solid var(--line-strong); }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}

/* ========== Pull Quote ========== */
.pullquote {
  padding: 8rem 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.pullquote blockquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 36ch;
  margin: 0 auto;
  text-align: center;
}
.pullquote blockquote::before {
  content: '\2014';
  display: block;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 2rem;
  font-style: normal;
}
.pullquote-attr {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}

/* ========== Inquiry CTA ========== */
.inquiry {
  background: var(--ink);
  color: var(--cream);
  padding: 7rem 0;
}
.inquiry .container { max-width: 1100px; }
.inquiry .eyebrow { color: rgba(245, 242, 236, 0.7); margin-bottom: 1.5rem; }
.inquiry h2 {
  color: var(--cream);
  max-width: 18ch;
  margin-bottom: 2rem;
  font-weight: 300;
}
.inquiry p { color: rgba(245, 242, 236, 0.78); max-width: 50ch; font-size: 1.05rem; margin-bottom: 2.5rem; }
.inquiry .btn {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.inquiry .btn:hover { background: transparent; color: var(--cream); }

/* ========== Contact ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5rem;
}
.contact-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.contact-info .info-block { margin-bottom: 2rem; }
.contact-info .info-block p {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0;
  line-height: 1.3;
}
.contact-info .info-block a { color: var(--ink); border-bottom: 1px solid var(--line-strong); }
.contact-info .info-block a:hover { border-bottom-color: var(--ink); }

.contact-form { padding: 0; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink);
  font-family: inherit;
  font-size: 1.02rem;
  transition: border-color 0.2s;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; cursor: pointer; }

/* ========== Service Category ========== */
.service-category {
  padding: 5rem 0;
  border-top: 1px solid var(--line);
}
.service-category:first-of-type { border-top: none; padding-top: 4rem; }

/* Two-column image + content layout for each category */
.cat-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  margin-bottom: 4rem;
  align-items: center;
}
.cat-row.reverse { grid-template-columns: 1fr 1.1fr; }
.cat-row.reverse .cat-image { order: 2; }
.cat-image {
  width: 100%;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}
.cat-image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  width: 100%;
}
.cat-image-pair > div {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}

.cat-image-collage {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.5rem;
  width: 100%;
  aspect-ratio: 1/1;
}
.cat-image-collage > div {
  background-size: cover;
  background-position: center;
}
.cat-image-collage .primary {
  grid-row: 1 / span 2;
}
.cat-info { max-width: 460px; }
.cat-info .num {
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  color: var(--accent);
  font-style: italic;
  display: block;
  margin-bottom: 1rem;
}
.cat-info h2 { margin-bottom: 1.25rem; max-width: 14ch; }
.cat-info p { font-size: 1rem; margin-bottom: 0; }

.service-cat-head {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5rem;
  margin-bottom: 3.5rem;
  align-items: baseline;
}
.service-cat-head .num {
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  color: var(--accent);
  font-style: italic;
  display: block;
  margin-bottom: 1rem;
}
.service-cat-head h2 {
  margin-bottom: 0;
  max-width: 14ch;
}
.service-cat-head p {
  font-size: 1.02rem;
  margin-bottom: 0;
  max-width: 52ch;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
}
.service-list.two-col { grid-template-columns: repeat(2, 1fr); }

.service-item {
  display: block;
}
.service-item h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.45rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.service-item p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.55;
}
.service-item .service-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  display: block;
}

/* ========== Services Preview (homepage) ========== */
.services-preview {
  background: var(--cream-deep);
  padding: 6rem 0;
}
.services-preview-head {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: baseline;
  margin-bottom: 3.5rem;
}
.services-preview-head h2 { margin-bottom: 0; max-width: 14ch; }
.services-preview-head p { font-size: 1.05rem; margin-bottom: 0; max-width: 50ch; }

.svc-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-tile {
  background: var(--cream);
  padding: 2rem 1.75rem;
  border: 1px solid var(--line);
  transition: border-color 0.2s, transform 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.svc-tile:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.svc-tile .svc-tile-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--accent);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 1rem;
}
.svc-tile h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.svc-tile p {
  color: var(--ink-muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ========== Quote Page (two-column hero) ========== */
.quote-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
}
.quote-hero-text {
  padding: 6rem 4rem 5rem 0;
}
.quote-hero-text .eyebrow { margin-bottom: 1.5rem; }
.quote-hero-text h1 { margin-bottom: 1.5rem; max-width: 14ch; }
.quote-hero-text p {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  margin-bottom: 2.5rem;
  max-width: 48ch;
}
.quote-hero-image {
  background-size: cover;
  background-position: center;
  min-height: 100%;
}
.quote-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.call-card {
  border: 1px solid var(--line);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 460px;
}
.call-card .call-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--ink);
  flex-shrink: 0;
}
.call-card .call-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.2rem;
}
.call-card .call-number {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--ink);
  font-weight: 400;
}
.call-card .call-number:hover { color: var(--accent); }

/* ========== Quote Form ========== */
.quote-form-section {
  padding: 6rem 0;
}
.quote-form-section .container { max-width: 880px; }
.quote-form-section h2 {
  text-align: center;
  margin-bottom: 1rem;
}
.quote-form-section .form-intro {
  text-align: center;
  max-width: 48ch;
  margin: 0 auto 3.5rem;
  font-size: 1.05rem;
}

.quote-form .form-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.quote-form .form-section {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}
.quote-form .form-section:first-of-type { border-top: none; padding-top: 0; }
.quote-form .form-section-head {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.quote-form .form-submit {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.quote-form .form-submit .btn { padding: 1.1rem 2.5rem; }
.quote-form .form-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* ========== Footer ========== */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 5rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
}
.footer-brand .brand { margin-bottom: 1.5rem; display: inline-block; }
.footer-brand p {
  max-width: 36ch;
  color: var(--ink-muted);
  font-size: 0.95rem;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a {
  color: var(--ink-soft);
  font-size: 0.97rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--ink); }
.footer-col li.address {
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p,
.footer-bottom a {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin: 0;
  letter-spacing: 0.05em;
}
.footer-bottom .legal { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--ink); }

/* ========== Responsive ========== */
@media (max-width: 1000px) {
  .nav-links,
  .nav-phone,
  .nav > a.btn { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 2rem var(--gutter);
    gap: 1.5rem;
    border-bottom: 1px solid var(--line);
    margin-right: 0;
  }
  .nav-links.open a.active::after { display: none; }

  .section-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .section-head h2 { max-width: none; }

  .dev-card.span-7,
  .dev-card.span-5,
  .dev-card.span-6,
  .dev-card.offset-2 { grid-column: 1 / -1; }

  .split { grid-template-columns: 1fr; gap: 3rem; }
  .split-image { aspect-ratio: 4/3; order: -1; }

  .pillars { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .service-cat-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-cat-head h2 { max-width: none; }
  .service-list { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .service-list.two-col { grid-template-columns: 1fr; }

  .cat-row,
  .cat-row.reverse { grid-template-columns: 1fr; gap: 2rem; }
  .cat-row .cat-image,
  .cat-row.reverse .cat-image { aspect-ratio: 4/3; order: -1; }
  .cat-image-pair { order: -1; }
  .cat-image-pair > div { aspect-ratio: 4/5; }
  .cat-image-collage {
    order: -1;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    aspect-ratio: auto;
  }
  .cat-image-collage .primary {
    grid-column: 1 / span 2;
    grid-row: auto;
    aspect-ratio: 4/3;
  }
  .cat-image-collage > div:not(.primary) {
    aspect-ratio: 4/5;
  }
  .cat-info { max-width: none; }
  .cat-info h2 { max-width: none; }

  .services-preview-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .svc-preview-grid { grid-template-columns: 1fr; }

  .quote-hero { grid-template-columns: 1fr; }
  .quote-hero-text { padding: 4.5rem var(--gutter) 3rem; }
  .quote-hero-image { min-height: 280px; order: -1; }
  .quote-form .form-row-3 { grid-template-columns: 1fr; gap: 0; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  section { padding: 5rem 0; }
  .statement, .pullquote { padding: 5rem 0; }
  .hero { min-height: 70vh; }
  .hero-inner { padding-bottom: 4rem; }
}

@media (max-width: 520px) {
  :root { --gutter: 1.25rem; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .service-list { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.75rem; }
  .statement-text { font-size: 1.5rem; }
}
