/* ============================================================
   Nicholson Bros Developments — brand system
   Palette: Limestone & Iron · Type: Fraunces + Inter + IBM Plex Mono
   ============================================================ */

:root {
  /* Palette */
  --limestone: #ebe4d6;
  --limestone-warm: #ede5d4;
  --bone: #f6f1e6;
  --vellum: #faf6ec;
  --ink: #1a1815;
  --ink-soft: #2a2723;
  --slate: #5a554d;
  --slate-soft: #7a7468;
  --brass: #9c7b45;
  --brass-deep: #876736;
  --iron: #2a2723;
  --hairline: rgba(26, 24, 21, 0.10);
  --hairline-soft: rgba(26, 24, 21, 0.06);
  --heritage-red: #8e0f12;

  /* Type stack */
  --font-display: "Fraunces", "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Layout */
  --container: min(1320px, calc(100vw - 4rem));
  --container-narrow: min(960px, calc(100vw - 4rem));
  --nav-h: 88px;
  --radius: 0;
  --radius-sm: 2px;
  --shadow-soft: 0 30px 80px rgba(26, 24, 21, 0.08);
}

/* ===== Reset ===== */
*, *::before, *::after { 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.6;
  color: var(--ink);
  background: var(--limestone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}
img, picture, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; padding: 0; }
ul { padding: 0; margin: 0; list-style: none; }

/* ===== Typography ===== */
.display, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
h1 { font-size: clamp(2.4rem, 5.6vw, 4.8rem); line-height: 1.04; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08; }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.2; }
p  { margin: 0 0 1.2em; }
.lead { font-size: clamp(1.1rem, 1.4vw, 1.25rem); color: var(--slate); line-height: 1.6; }
em, .italic { font-style: italic; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  display: inline-block;
}
.mono {
  font-family: var(--font-mono);
  font-size: 0.86em;
  letter-spacing: 0;
}
.mono-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
}

/* ===== Layout helpers ===== */
.shell { width: var(--container); margin: 0 auto; }
.shell-narrow { width: var(--container-narrow); margin: 0 auto; }
.section { padding: clamp(4.5rem, 9vw, 9rem) 0; }
.section-tight { padding: clamp(3rem, 6vw, 6rem) 0; }
.divider {
  height: 1px;
  background: var(--hairline);
  border: 0;
  margin: 0;
}
.brass-rule {
  width: 64px;
  height: 1px;
  background: var(--brass);
  margin: 1.4rem auto;
  border: 0;
}

/* ===== Nav ===== */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 30;
  padding: 1.6rem 0;
}
.nav.nav-on-light {
  position: relative;
  border-bottom: 1px solid var(--hairline);
  background: var(--limestone);
}
.nav-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-brand { display: flex; align-items: center; gap: 0.9rem; }
.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--ink);
}
.nav.is-on-photo .nav-wordmark,
.nav.is-on-photo .nav-link,
.nav.is-on-photo .nav-phone { color: var(--bone); }
.nav-wordmark-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.32em;
  margin-top: 4px;
  font-weight: 500;
  color: inherit;
  opacity: 0.92;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.4rem);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-link { color: var(--ink); transition: color 0.2s ease; }
.nav-link:hover { color: var(--brass); }
.nav-divider {
  width: 1px; height: 16px; background: currentColor; opacity: 0.25;
  margin: 0 0.4rem;
}
.nav-phone {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: var(--ink);
}
.nav-toggle {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; height: 1px; background: currentColor; transition: 0.2s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--iron);
}
.hero-media {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero-media img,
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0) 22%, rgba(0,0,0,0) 62%, rgba(0,0,0,0.78) 100%);
}
.hero-inner {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 clamp(2.4rem, 5vh, 4.5rem);
  text-align: center;
  color: var(--bone);
  z-index: 2;
}
.hero h1 {
  color: var(--bone);
  letter-spacing: -0.01em;
  font-weight: 400;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero-sub {
  margin: 1.4rem auto 2.2rem;
  max-width: 64ch;
  color: rgba(255, 250, 240, 0.92);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.55;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-brass {
  background: var(--brass);
  color: var(--bone);
}
.btn-brass:hover { background: var(--brass-deep); }
.btn-ghost {
  border-color: currentColor;
  color: inherit;
  background: transparent;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: border-color 0.2s ease;
}
.btn-text:hover { border-bottom-color: var(--brass); }
.btn-text .arrow { transition: transform 0.2s; }
.btn-text:hover .arrow { transform: translateX(4px); }

/* ===== Process section (homepage) ===== */
.process { background: var(--bone); padding: clamp(5rem, 10vw, 9rem) 0; }
.process-head { text-align: center; margin-bottom: clamp(3rem, 6vw, 5rem); }
.process-head h2 { margin-top: 0.6rem; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}
.process-card { display: flex; flex-direction: column; }
.process-card-image {
  aspect-ratio: 4/3;
  background: var(--limestone);
  margin-bottom: 1.6rem;
  overflow: hidden;
}
.process-card-image img { width: 100%; height: 100%; object-fit: cover; }
.process-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--brass);
  margin-bottom: 0.4rem;
}
.process-card h3 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.9rem;
}
.process-card p {
  color: var(--slate);
  font-size: 15.5px;
  line-height: 1.65;
}
.process-foot { text-align: center; margin-top: clamp(3rem, 5vw, 4rem); }

/* ===== Featured projects (homepage) ===== */
.featured { background: var(--limestone); }
.featured-head { text-align: center; margin-bottom: clamp(3rem, 6vw, 5rem); }

.project-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  border-top: 1px solid var(--hairline);
}
.project-row:last-child { border-bottom: 1px solid var(--hairline); }
.project-row.reverse .project-image { order: 2; }
.project-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bone);
}
.project-image img { width: 100%; height: 100%; object-fit: cover; }
.project-meta { padding: 0 clamp(0rem, 2vw, 2rem); }
.project-meta .project-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--brass);
  display: inline-block;
  margin-right: 1.5rem;
  vertical-align: top;
}
.project-meta-inner { display: inline-block; vertical-align: top; }
.project-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
}
.project-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-style: italic;
  font-weight: 400;
  margin: 0.5rem 0 0.6rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.project-place {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 1.1rem;
}
.project-blurb {
  color: var(--slate);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 50ch;
  margin-bottom: 1.6rem;
}

/* ===== Page hero (interior pages) ===== */
.page-hero { padding: clamp(5rem, 10vw, 8rem) 0 clamp(2rem, 5vw, 4rem); text-align: center; }
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { max-width: 18ch; margin: 0 auto; }

/* ===== Project hero ===== */
.project-hero {
  position: relative;
  height: 78vh; min-height: 560px;
  overflow: hidden;
  background: var(--iron);
}
.project-hero-media { position: absolute; inset: 0; }
.project-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.project-hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0) 38%, rgba(0,0,0,0.45) 100%);
}
.project-hero-inner {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  color: var(--bone);
  z-index: 2;
}
.project-hero-title {
  flex: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--bone);
}
.project-hero-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--brass);
  margin-bottom: 1rem;
}
.project-meta-card {
  background: rgba(245, 240, 232, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.6rem 1.8rem;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1.9;
  min-width: 320px;
}
.project-meta-card .label { color: var(--brass); margin-right: 0.6rem; font-weight: 500; }

.project-blurb-section {
  background: var(--limestone);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.project-blurb-section .blurb {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.4;
  color: var(--ink);
  text-align: center;
  max-width: 28ch;
  margin: 0 auto;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.project-gallery {
  background: var(--bone);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.gallery-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-image { aspect-ratio: 3/2; overflow: hidden; background: var(--limestone); }
.gallery-image img { width: 100%; height: 100%; object-fit: cover; }
.gallery-image.tall { aspect-ratio: 3/4; }

.project-nav {
  background: var(--limestone);
  border-top: 1px solid var(--hairline);
  padding: clamp(3rem, 5vw, 4rem) 0;
}
.project-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.project-nav-link {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--ink);
}
.project-nav-link.next { text-align: right; }
.project-nav-link .nav-eyebrow {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
}
.project-nav-link .nav-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
}

/* ===== About ===== */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}
.about-portrait { background: var(--iron); position: relative; overflow: hidden; }
.about-portrait img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.92) saturate(0.85); }
.about-content {
  background: var(--limestone);
  padding: clamp(3rem, 7vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-stamp {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--heritage-red);
  margin-bottom: 1.4rem;
}
.about-content h1 { margin-bottom: 1.6rem; max-width: 16ch; }
.about-content p { color: var(--slate); margin-bottom: 1.2rem; max-width: 52ch; }
.about-sig {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--brass);
  margin-top: 2rem;
}

.team {
  background: var(--bone);
  padding: clamp(5rem, 9vw, 8rem) 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 880px;
  margin: 0 auto;
}
.team-card { text-align: left; }
.team-image {
  aspect-ratio: 4/5;
  background: var(--limestone);
  margin-bottom: 1.4rem;
  overflow: hidden;
}
.team-image img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  margin-bottom: 0.3rem;
}
.team-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
}
.team-card p { color: var(--slate); font-size: 15px; line-height: 1.65; }

/* ===== Inquire ===== */
.inquire-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
  background: var(--limestone);
}
.inquire-content {
  padding: clamp(3rem, 7vw, 6rem) clamp(3rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.inquire-content .eyebrow { margin-bottom: 1.4rem; }
.inquire-content h1 { margin-bottom: 1.8rem; max-width: 14ch; }
.inquire-content .lead { max-width: 48ch; margin-bottom: 1rem; }
.inquire-italic {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--slate);
  font-size: 1.05rem;
  margin: 1.2rem 0 2.6rem;
}
.inquire-call-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.inquire-phone {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.inquire-form-wrap {
  background: var(--bone);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
}
.inquire-form {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.field { margin-bottom: 1.8rem; }
.field label {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.7rem 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
}
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%231a1815' stroke-width='1' /></svg>"); background-repeat: no-repeat; background-position: right 4px center; padding-right: 24px; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--brass); }
.field textarea { resize: vertical; min-height: 90px; }
.inquire-submit {
  width: 100%;
  margin-top: 1.4rem;
}
.inquire-fine {
  font-size: 11px;
  color: var(--slate);
  margin-top: 1.4rem;
  letter-spacing: 0.04em;
}

/* ===== Journal ===== */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: clamp(2rem, 4vw, 4rem);
}
.journal-card { display: flex; flex-direction: column; }
.journal-image {
  aspect-ratio: 16/10;
  background: var(--limestone);
  margin-bottom: 1.4rem;
  overflow: hidden;
}
.journal-image img { width: 100%; height: 100%; object-fit: cover; }
.journal-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.5rem;
}
.journal-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0.6rem;
}
.journal-card p { color: var(--slate); font-size: 15px; }

/* ===== Footer ===== */
.footer {
  background: var(--iron);
  color: rgba(245, 241, 230, 0.78);
  padding: clamp(4rem, 7vw, 6rem) 0 2.4rem;
}
.footer a { color: inherit; }
.footer a:hover { color: var(--bone); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-wordmark { color: var(--bone); font-size: 22px; }
.footer-brand p { margin-top: 1rem; max-width: 32ch; font-size: 14px; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.footer-col ul li { margin-bottom: 0.6rem; font-size: 14px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.4rem;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 241, 230, 0.55);
}
.footer-stamp { color: var(--brass); }

/* ===== CTA strip ===== */
.cta-strip {
  background: var(--iron);
  color: var(--bone);
  padding: clamp(4rem, 7vw, 6rem) 0;
  text-align: center;
}
.cta-strip h2 { color: var(--bone); margin-bottom: 1.4rem; max-width: 22ch; margin-left: auto; margin-right: auto; }
.cta-strip p { color: rgba(245, 241, 230, 0.78); margin-bottom: 2.4rem; max-width: 50ch; margin-left: auto; margin-right: auto; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  :root { --nav-h: 72px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .process-grid { grid-template-columns: 1fr; gap: 3rem; }
  .project-row,
  .project-row.reverse { grid-template-columns: 1fr; }
  .project-row.reverse .project-image { order: 0; }
  .about-hero { grid-template-columns: 1fr; min-height: auto; }
  .about-portrait { aspect-ratio: 4/5; }
  .inquire-shell { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid-3 { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .project-hero-inner { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .project-meta-card { min-width: 0; width: 100%; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .nav-wordmark { font-size: 16px; }
  .nav-wordmark-sub { font-size: 8px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .btn { padding: 16px 28px; font-size: 11px; }
}

/* ===== Mobile nav drawer ===== */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--iron);
  color: var(--bone);
  z-index: 100;
  padding: 6rem 2.4rem 3rem;
  transform: translateY(-100%);
  transition: transform 0.32s cubic-bezier(0.45, 0, 0.15, 1);
}
.mobile-drawer.open { transform: translateY(0); }
.mobile-drawer ul { display: flex; flex-direction: column; gap: 1.6rem; }
.mobile-drawer ul li a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--bone);
}
.mobile-drawer-close {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
}
.mobile-drawer-foot {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(245, 241, 230, 0.6);
  letter-spacing: 0.06em;
}

/* ===== Misc ===== */
::selection { background: var(--brass); color: var(--bone); }
.is-narrow { max-width: 56ch; margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* ===== Photo placeholder (used until Caleb sends real photos) ===== */
.photo-placeholder {
  background:
    repeating-linear-gradient(135deg, rgba(26, 24, 21, 0.04) 0 14px, transparent 14px 28px),
    var(--limestone-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
  width: 100%;
  height: 100%;
}
.photo-placeholder span { max-width: 24ch; }
.photo-placeholder.dark {
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 14px, transparent 14px 28px),
    var(--iron);
  color: rgba(245, 241, 230, 0.55);
}

/* ===== About — "What we love" list ===== */
.love-list {
  display: grid;
  gap: 1.2rem;
  margin: 2.4rem 0 0;
  padding: 0;
  list-style: none;
}
.love-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 1rem;
  align-items: baseline;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--hairline);
}
.love-list li:last-child { border-bottom: 0; }
.love-list .love-marker {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brass);
  font-size: 1.2rem;
  line-height: 1;
}
.love-list .love-body { color: var(--ink-soft); line-height: 1.6; }
.love-list .love-body strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
  letter-spacing: -0.005em;
}

/* ===== About — By-the-numbers strip ===== */
.metrics {
  background: var(--bone);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}
.metric-cell { padding: 0 0.5rem; border-left: 1px solid var(--hairline); }
.metric-cell:first-child { border-left: 0; }
.metric-value {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 0.7rem;
}
.metric-value .tbd { color: var(--slate-soft); font-size: 0.6em; font-style: italic; }
.metric-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
}
@media (max-width: 720px) {
  .metric-row { grid-template-columns: repeat(2, 1fr); }
  .metric-cell:nth-child(3) { border-left: 0; }
}

/* ===== About — Meet-the-brothers CTA card ===== */
.meet-card {
  background: var(--limestone);
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 4rem);
  border: 1px solid var(--hairline);
  text-align: center;
  max-width: 820px;
  margin: clamp(4rem, 8vw, 6rem) auto;
}
.meet-card .meet-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
}
.meet-card h2 { max-width: 18ch; margin: 0 auto 1.2rem; }
.meet-card p { color: var(--slate); max-width: 52ch; margin: 0 auto 2rem; }
.meet-card .meet-actions {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== Projects — Type / Sq Ft / Budget chips on cards ===== */
.project-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  margin: 0 0 1.2rem;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}
.project-chips .chip-label { color: var(--brass); margin-right: 0.35rem; font-weight: 500; }

/* ===== Project detail — TBD / verify-name note ===== */
.name-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--heritage-red);
  background: rgba(142, 15, 18, 0.06);
  padding: 0.4rem 0.8rem;
  display: inline-block;
  margin-top: 0.8rem;
  max-width: 56ch;
}
