@import url("/brand-assets/tokens/brand-tokens.css");
@import url("/brand-assets/tokens/fonts.css");

:root {
  --bg: #f6f4ef;
  --bg-deep: #e9e3d8;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #f6f4ef;

  --dark: #1b1b1d;
  --dark-mid: #29292c;
  --dark-surface: rgba(27, 27, 29, 0.94);

  --ink: #1b1b1d;
  --ink-light: #ffffff;
  --muted: #57585b;
  --muted-dark: rgba(246, 244, 239, 0.72);

  --gold: #ff5a00;
  --gold-light: #d4c3a1;
  --gold-deep: #164f9c;

  --line: rgba(27, 27, 29, 0.16);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow: 0 8px 24px rgba(27, 27, 29, 0.08);
  --shadow-deep: 0 16px 40px rgba(27, 27, 29, 0.16);

  --radius-xl: 8px;
  --radius-lg: 8px;
  --radius-md: 4px;
  --max-width: 1200px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main section[id] {
  scroll-margin-top: 72px;
}

body {
  margin: 0;
  font-family: "Barlow", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--dark);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(22, 79, 156, 0.62);
  outline-offset: 3px;
}

/* ── Layout ───────────────────────────────────────────────── */

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 40px 0 40px;
}

/* ── Navigation ───────────────────────────────────────────── */

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(20px, 4vw, 60px);
  background: rgba(247, 243, 236, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 20px rgba(26, 17, 10, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  min-width: 0;
  flex: 1 1 auto;
}

.brand-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: none;
}

.brand-logo-frame {
  display: block;
  flex: 0 1 auto;
}

.brand-logo {
  width: 280px;
  height: auto;
  display: block;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: background 180ms ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.9);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 0 0 auto;
}

.nav a:not(.nav-cta) {
  position: relative;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  padding-bottom: 3px;
  transition: color 180ms ease;
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 220ms var(--ease-out);
  border-radius: 2px;
}

.nav a:not(.nav-cta):hover {
  color: var(--ink);
}

.nav a:not(.nav-cta):hover::after,
.nav a[aria-current]::after {
  width: 100%;
}

.nav a[aria-current] {
  color: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  min-height: 44px;
  padding: 0 20px;
  color: #fff;
  background: var(--gold-deep);
  border: none;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 18px rgba(138, 106, 48, 0.30);
  transition: background 200ms ease, transform 180ms ease, box-shadow 180ms ease;
  gap: 6px;
}

.nav-cta:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(138, 106, 48, 0.36);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  box-shadow: 0 14px 30px rgba(105, 66, 36, 0.28);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(105, 66, 36, 0.34);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(26, 20, 15, 0.10);
}

.button-secondary:hover {
  transform: translateY(-2px);
}

.button-light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

/* ── Typography ───────────────────────────────────────────── */

.eyebrow,
.card-index,
.process span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gold-deep);
}

.eyebrow-light {
  color: var(--gold-light);
  letter-spacing: 0.18em;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
}

h1,
h2 {
  font-family: "Newsreader", serif;
  font-weight: 700;
  line-height: 0.96;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.7rem, 6.2vw, 5rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.06;
  max-width: 14ch;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.15;
}

/* ── Hero ─────────────────────────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
}

.hero-dark-panel {
  background: linear-gradient(160deg, #2a1c12 0%, var(--dark) 60%);
  background-blend-mode: multiply;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(40px, 6vw, 88px) clamp(32px, 5vw, 72px);
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
}

.hero-dark-panel h1 {
  color: #fff;
  max-width: 12ch;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  margin-top: 18px;
  line-height: 0.95;
}

.hero-text {
  color: var(--muted-dark);
  max-width: 52ch;
  margin: 22px 0 0;
  font-size: 1.04rem;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.40);
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  flex-wrap: wrap;
}

.trust-divider {
  color: var(--gold-deep);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Intro panel ──────────────────────────────────────────── */

.intro-panel {
  display: block;
  padding: 32px 36px;
  margin: 40px 0 0;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.intro-panel h2 {
  max-width: 20ch;
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.04;
}

.intro-panel p {
  max-width: 68ch;
  margin: 16px 0 0;
  font-size: 1rem;
  line-height: 1.78;
  color: var(--muted);
}

/* ── Section heading ──────────────────────────────────────── */

.section-heading {
  display: grid;
  gap: 8px;
  margin: 52px 0 24px;
}

.section-heading h2 {
  max-width: 14ch;
}

/* ── Product grid ─────────────────────────────────────────── */

.products {
  padding: 12px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.product-card:nth-child(1),
.product-card:nth-child(2) {
  grid-column: span 3;
}

.product-card:nth-child(3),
.product-card:nth-child(4),
.product-card:nth-child(5) {
  grid-column: span 2;
}

.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--dark);
  box-shadow: var(--shadow);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.product-card-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms var(--ease-out);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 12, 7, 0.92) 0%,
    rgba(20, 12, 7, 0.42) 44%,
    transparent 72%
  );
  transition: background 320ms ease;
}

.product-card:hover .product-card-media img {
  transform: scale(1.04);
}

.product-card:hover::after {
  background: linear-gradient(
    to top,
    rgba(20, 12, 7, 0.96) 0%,
    rgba(20, 12, 7, 0.58) 52%,
    rgba(20, 12, 7, 0.12) 82%
  );
}

.product-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 24px;
}

.card-index {
  position: absolute;
  top: 14px;
  left: 18px;
  font-size: 5rem;
  font-weight: 800;
  font-family: "Newsreader", serif;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
  text-transform: none;
  z-index: 3;
}

.product-card h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.product-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0 0 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: gap 200ms ease;
}

.text-link:hover {
  gap: 10px;
}

.link-arrow {
  display: inline-block;
  transform: translateX(-4px);
  opacity: 0;
  transition: transform 220ms var(--ease-out), opacity 200ms ease;
}

.product-card:hover .link-arrow {
  transform: translateX(0);
  opacity: 1;
}

/* ── Stone types / applications ───────────────────────────── */

.stone-types {
  display: grid;
  gap: 18px;
  padding: 12px 0;
}

.stone-row {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: stretch;
  padding: 28px;
  background: rgba(255, 250, 244, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.stone-row-reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.stone-row-reverse .stone-row-media {
  order: 2;
}

.stone-row-reverse .stone-row-copy {
  order: 1;
}

.stone-row-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 340px;
}

.stone-row-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stone-row-copy {
  display: grid;
  align-content: center;
  gap: 12px;
}

.stone-row-copy p,
.stone-row-copy li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.stone-row-copy ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

/* ── Gallery ──────────────────────────────────────────────── */

.gallery {
  padding: 12px 0;
}

.gallery-grid {
  columns: 3;
  column-gap: 18px;
}

.gallery-item {
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  break-inside: avoid;
  cursor: pointer;
  position: relative;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 17, 10, 0);
  transition: background 280ms ease;
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.gallery-item:hover::after {
  background: rgba(26, 17, 10, 0.18);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 400ms var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* ── Lightbox ─────────────────────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 6, 3, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 260ms ease;
  padding: 48px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox.is-active {
  opacity: 1;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  object-fit: contain;
  transition: opacity 200ms ease;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
  font-family: inherit;
  padding: 0;
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: #fff;
}

.lightbox-close {
  top: 20px;
  right: 28px;
  font-size: 2.4rem;
  font-weight: 300;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.2rem;
  font-weight: 300;
}

.lightbox-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox-next:hover { transform: translateY(-50%) translateX(3px); }

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ── Feature band (dark stats) ────────────────────────────── */

.feature-band {
  background: var(--dark);
  padding: 72px clamp(32px, 5vw, 80px);
  margin: 56px 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-deep);
}

.feature-band-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: center;
}

.feature-band-heading h2 {
  color: #fff;
  max-width: 13ch;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
}

.feature-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.stat-number {
  font-family: "Newsreader", serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.44);
}

/* ── Process steps ────────────────────────────────────────── */

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process article {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 246, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow);
}

.process span {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.82rem;
}

.process p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin: 8px 0 0;
}

/* ── Quote panel ──────────────────────────────────────────── */

.quote-panel {
  position: relative;
  overflow: hidden;
  margin: 56px 0 24px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-deep);
  background: #2f241c;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20, 12, 7, 0.90) 0%, rgba(20, 12, 7, 0.44) 100%);
}

.quote-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 64px 56px;
}

.quote-content h2,
.quote-content p {
  color: #fff;
}

.quote-content h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  max-width: 16ch;
  margin-bottom: 20px;
}

.quote-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.gold-rule {
  border: none;
  height: 3px;
  width: 48px;
  background: var(--gold);
  margin: 0 0 28px;
  border-radius: 2px;
  display: block;
}

/* ── Contact ──────────────────────────────────────────────── */

.contact {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  margin-top: 56px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 1px solid rgba(255, 255, 255, 0.30);
}

.contact-copy {
  background: var(--dark);
  padding: 52px 48px;
}

.contact-copy h2 {
  color: #fff;
  max-width: 14ch;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.contact-copy .eyebrow {
  color: var(--gold-light);
  margin-bottom: 8px;
  display: block;
}

.contact-phone {
  display: block;
  font-family: "Newsreader", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold-light);
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 16px 0 20px;
  transition: color 180ms ease;
}

.contact-phone:hover {
  color: #fff;
}

.contact-sub {
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.58);
  margin: 0 0 24px;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.44);
}

.contact-meta a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 700;
  transition: color 180ms ease;
}

.contact-meta a:hover {
  color: #fff;
}

.contact-card {
  background: var(--surface-strong);
  display: grid;
  grid-template-rows: 1fr auto;
}

.contact-card-copy {
  padding: 52px 40px 32px;
}

.contact-card-copy h3 {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.contact-points {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.contact-points li {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
}

.contact-card > img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* ── Footer ───────────────────────────────────────────────── */

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.footer-brand img {
  width: 28px;
  height: 28px;
}

.not-found-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.not-found-card {
  width: min(100%, 600px);
  padding: clamp(32px, 7vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
}

.not-found-card > img {
  width: min(100%, 320px);
  height: auto;
  margin-bottom: 36px;
}

.not-found-card h1 {
  margin: 12px auto 18px;
  font-size: clamp(2.6rem, 8vw, 4.8rem);
}

.not-found-card p:not(.eyebrow) {
  margin: 0 0 28px;
  color: var(--muted);
}

/* ── Development front door ───────────────────────────────── */

.front-door-page {
  min-width: 320px;
  min-height: 100vh;
}

.front-door-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  background: var(--surface-strong);
}

.front-door-story {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(36px, 6vw, 82px);
  color: #fff;
  background:
    radial-gradient(circle at 80% 18%, rgba(184, 146, 74, 0.23), transparent 27%),
    linear-gradient(145deg, #1a110a 0%, #2d2117 62%, #392b1e 100%);
}

.front-door-brand {
  width: min(330px, 66%);
  padding: 12px 18px;
  border-radius: var(--radius-lg);
  background: rgba(250, 247, 242, 0.97);
}

.front-door-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.front-door-story h1 {
  max-width: 11ch;
  margin: 16px 0 22px;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.96;
}

.front-door-story > div:nth-child(2) > p:last-child {
  max-width: 53ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.front-door-story small {
  color: rgba(255, 255, 255, 0.46);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.front-door-panel {
  display: grid;
  place-items: center;
  padding: clamp(32px, 6vw, 84px);
}

.front-door-form-wrap {
  width: min(100%, 470px);
}

.front-door-form-wrap h2 {
  margin: 8px 0 14px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
}

.front-door-intro,
.front-door-help {
  color: var(--muted);
  line-height: 1.7;
}

.front-door-intro {
  margin: 0 0 28px;
}

.front-door-help {
  margin: 26px 0 0;
  font-size: 0.88rem;
}

.front-door-return {
  display: inline-block;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.9rem;
  text-underline-offset: 3px;
}

.front-door-form {
  display: grid;
  gap: 18px;
}

.front-door-form > label:not(.remember-control) {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.front-door-form input:not([type="checkbox"]) {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(76, 63, 41, 0.18);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.remember-control {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  cursor: pointer;
}

.remember-control input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--gold-deep);
}

.remember-control span {
  display: grid;
  gap: 2px;
}

.remember-control small {
  color: var(--muted);
}

.front-door-error {
  padding: 13px 15px;
  border-radius: var(--radius-lg);
  color: #7b2720;
  background: rgba(175, 52, 43, 0.13);
}

.front-door-submit {
  width: 100%;
  border: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 900px) {
  .front-door-shell {
    grid-template-columns: 1fr;
  }

  .front-door-story {
    display: none;
  }

  .front-door-panel {
    min-height: 100vh;
  }
}

/* ── Inner hero (product pages) ───────────────────────────── */

.inner-hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 0;
  align-items: stretch;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  margin-bottom: 4px;
}

.inner-hero-copy {
  padding: 52px 44px;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.inner-hero-copy h1 {
  color: #fff;
  max-width: 14ch;
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  margin-top: 14px;
}

.inner-hero-copy p {
  color: var(--muted-dark);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 52ch;
}

.inner-hero-media {
  overflow: hidden;
  min-height: 460px;
}

.inner-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Detail grid (product pages) ──────────────────────────── */

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.detail-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.detail-card h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.detail-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.detail-card li {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--muted);
}

/* ── Page story (product pages) ───────────────────────────── */

.page-story {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  align-items: end;
  margin: 28px 0 12px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.page-story h2 {
  max-width: 15ch;
}

.page-story p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ── Compact gallery (product pages) ─────────────────────── */

.compact-gallery {
  columns: 2;
}

.compact-gallery .gallery-item-large {
  break-inside: avoid;
}

/* ── Scroll entrance animations ──────────────────────────── */

.will-fade {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 600ms var(--ease-out),
    transform 600ms var(--ease-out);
}

.will-fade.is-visible {
  opacity: 1;
  transform: none;
}

.product-card.will-fade:nth-child(2) { transition-delay: 80ms; }
.product-card.will-fade:nth-child(3) { transition-delay: 160ms; }
.product-card.will-fade:nth-child(4) { transition-delay: 240ms; }
.product-card.will-fade:nth-child(5) { transition-delay: 320ms; }

.stat-item.will-fade:nth-child(2) { transition-delay: 70ms; }
.stat-item.will-fade:nth-child(3) { transition-delay: 140ms; }
.stat-item.will-fade:nth-child(4) { transition-delay: 210ms; }

@media (prefers-reduced-motion: reduce) {
  .will-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 1120px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card:nth-child(1),
  .product-card:nth-child(2),
  .product-card:nth-child(3),
  .product-card:nth-child(4),
  .product-card:nth-child(5) {
    grid-column: span 1;
  }

  .stone-row,
  .stone-row-reverse {
    grid-template-columns: 1fr;
  }

  .stone-row-reverse .stone-row-media,
  .stone-row-reverse .stone-row-copy {
    order: initial;
  }

  .gallery-grid {
    columns: 2;
  }

  .feature-band-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .feature-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inner-hero {
    grid-template-columns: 1fr;
  }

  .inner-hero-media {
    min-height: 340px;
  }

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

  .page-story {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    background: rgba(247, 243, 236, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 40px rgba(26, 17, 10, 0.12);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a:not(.nav-cta) {
    padding: 10px 14px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.50);
  }

  .nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav .nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }

  .brand-logo-frame {
    display: none;
  }

  .brand-icon {
    display: block;
    width: 48px;
    height: 48px;
  }

  .topbar {
    position: sticky;
  }
}

@media (max-width: 760px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 300px;
    order: -1;
  }

  .hero-visual img {
    position: relative;
    height: 300px;
    width: 100%;
  }

  .hero-dark-panel {
    padding: 44px 28px 36px;
  }

  .hero-dark-panel h1 {
    font-size: clamp(2.6rem, 12vw, 3.8rem);
  }

  .process-steps,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    aspect-ratio: 4 / 5;
  }

  .intro-panel {
    padding: 24px;
  }

  .quote-content {
    padding: 40px 28px;
  }

  .contact-copy {
    padding: 40px 28px;
  }

  .contact-card-copy {
    padding: 32px 28px 24px;
  }

  .gallery-grid {
    columns: 1;
  }

  .footer {
    display: grid;
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }
}

/* ── Homepage: limestone partner direction ───────────────── */

.home-page {
  --home-forest: #14251f;
  --home-forest-soft: #20362e;
  --home-paper: #f5f0e7;
  --home-paper-deep: #e9e0d2;
  --home-ink: #1d211e;
  --home-muted: #5f655f;
  --home-orange: #d9682f;
  --home-orange-dark: #b54818;
  --home-limestone: #d7c5a4;
  --home-line: rgba(29, 33, 30, 0.16);
  --home-line-light: rgba(255, 255, 255, 0.22);
  --home-max: 1440px;
  color: var(--home-ink);
  background: var(--home-paper);
}

.home-page h1,
.home-page h2 {
  max-width: none;
  font-family: "Newsreader", serif;
  font-weight: 500;
}

.home-page h3 {
  color: inherit;
}

.home-page main section[id] {
  scroll-margin-top: 92px;
}

.home-page :focus-visible {
  outline: 3px solid #f59b6e;
  outline-offset: 4px;
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 300;
  width: 100%;
  background: rgba(248, 244, 237, 0.97);
  border-bottom: 1px solid var(--home-line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.home-header-inner {
  width: min(calc(100% - 64px), var(--home-max));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.home-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--home-ink);
  text-decoration: none;
}

.home-brand > img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
}

.home-brand-name {
  display: grid;
  gap: 2px;
}

.home-brand-name strong {
  font-family: "Newsreader", serif;
  font-size: 1.13rem;
  font-weight: 600;
  line-height: 1;
}

.home-brand-name > span {
  color: var(--home-muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.home-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.home-nav a:not(.nav-cta) {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: #4d554f;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.home-nav a:not(.nav-cta)::after {
  bottom: 6px;
  left: 13px;
  background: var(--home-orange);
}

.home-nav a.home-nav-cta {
  min-height: 46px;
  margin-left: 10px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--home-forest);
  border-radius: 2px;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.home-nav a.home-nav-cta:hover {
  color: #fff;
  background: var(--home-orange-dark);
  transform: translateY(-1px);
}

.home-nav a.home-nav-cta::after {
  display: none;
}

.home-menu-toggle {
  min-height: 44px;
  border: 1px solid var(--home-forest);
  border-radius: 2px;
  color: var(--home-forest);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero {
  width: min(100%, 1680px);
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  background: var(--home-forest);
}

.home-hero-copy {
  min-width: 0;
  padding: clamp(76px, 8vw, 132px) clamp(40px, 7vw, 112px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background:
    radial-gradient(circle at 20% 0%, rgba(105, 137, 119, 0.24), transparent 32%),
    var(--home-forest);
}

.home-kicker {
  margin: 0;
  color: var(--home-orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 9.4ch;
  margin: 24px 0 0;
  color: #fff;
  font-size: clamp(3.8rem, 5.7vw, 6.35rem);
  line-height: 0.91;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.home-hero-text {
  max-width: 58ch;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.78;
}

.home-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.home-button:hover {
  transform: translateY(-2px);
}

.home-button-primary {
  color: #fff;
  background: var(--home-orange-dark);
}

.home-button-primary:hover {
  color: #fff;
  background: #963711;
}

.home-button-quiet {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
}

.home-button-quiet:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.home-button-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
}

.home-button-outline:hover {
  color: var(--home-forest);
  border-color: #fff;
  background: #fff;
}

.home-hero-media {
  min-width: 0;
  min-height: 760px;
  position: relative;
  overflow: hidden;
  background: #c9c0af;
}

.home-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20, 37, 31, 0.34), transparent 30%),
    linear-gradient(180deg, transparent 52%, rgba(13, 22, 19, 0.42));
}

.home-hero-media > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;
  object-position: 54% center;
}

.home-project-prompt {
  width: min(520px, calc(100% - 64px));
  min-height: 272px;
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 32px;
  padding: 32px 34px;
  color: var(--home-ink);
  background: rgba(248, 245, 239, 0.95);
  box-shadow: 0 24px 72px rgba(14, 24, 20, 0.24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.home-project-prompt h2 {
  max-width: 15ch;
  margin: 12px 0 0;
  color: var(--home-ink);
  font-size: clamp(1.85rem, 2.6vw, 2.45rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.home-project-prompt ul {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 24px;
  list-style: none;
  color: var(--home-muted);
  font-size: 0.81rem;
  font-weight: 700;
}

.home-project-prompt li::before {
  content: "—";
  margin-right: 7px;
  color: var(--home-orange);
}

.home-project-prompt > a {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--home-forest);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.home-project-prompt > a:hover {
  color: var(--home-orange-dark);
}

.home-scope-strip {
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #f9f6f0;
  border-bottom: 1px solid var(--home-line);
}

.home-scope-strip p {
  min-height: 84px;
  margin: 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--home-line);
  color: #48504b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.home-scope-strip p:last-child {
  border-right: 0;
}

.home-section {
  width: min(calc(100% - 96px), var(--home-max));
  margin: 0 auto;
  padding: 124px 0;
}

.home-section-heading {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(40px, 9vw, 144px);
}

.home-section-heading h2 {
  max-width: 13ch;
  margin: 14px 0 0;
  color: var(--home-ink);
  font-size: clamp(2.8rem, 4.6vw, 5.15rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.home-section-heading > p {
  margin: 0 0 4px;
  color: var(--home-muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.home-audiences {
  padding-bottom: 112px;
}

.home-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--home-line);
}

.home-audience-card {
  min-width: 0;
  padding: 34px 38px 12px 0;
  border-right: 1px solid var(--home-line);
}

.home-audience-card + .home-audience-card {
  padding-left: 38px;
}

.home-audience-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.home-audience-card > span {
  color: var(--home-orange);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.home-audience-card h3 {
  margin: 24px 0 0;
  font-family: "Newsreader", serif;
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  font-weight: 500;
  line-height: 1.02;
}

.home-audience-card p {
  min-height: 104px;
  margin: 18px 0 0;
  color: var(--home-muted);
  font-size: 0.9rem;
  line-height: 1.72;
}

.home-audience-card a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--home-forest);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.home-audience-card a:hover {
  color: var(--home-orange-dark);
}

.home-products {
  width: 100%;
  max-width: 1680px;
  padding-right: clamp(32px, 5.5vw, 92px);
  padding-left: clamp(32px, 5.5vw, 92px);
  background: var(--home-paper-deep);
}

.home-products .home-section-heading {
  max-width: var(--home-max);
  margin-right: auto;
  margin-left: auto;
}

.home-product-grid {
  max-width: var(--home-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.home-product-card {
  min-width: 0;
  min-height: 430px;
  position: relative;
  grid-column: span 2;
  display: block;
  overflow: hidden;
  color: #fff;
  background: var(--home-forest);
  text-decoration: none;
  isolation: isolate;
}

.home-product-card-wide {
  min-height: 520px;
  grid-column: span 3;
}

.home-product-card > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.home-product-card:hover > img {
  transform: scale(1.035);
}

.home-product-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11, 18, 15, 0.02) 20%, rgba(11, 18, 15, 0.88) 100%),
    linear-gradient(90deg, rgba(11, 18, 15, 0.45), transparent 72%);
}

.home-product-copy {
  min-height: inherit;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.home-product-number {
  color: #f2b28f;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-product-copy > strong {
  margin-top: 10px;
  font-family: "Newsreader", serif;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 500;
  line-height: 0.98;
}

.home-product-copy > strong + span {
  max-width: 40ch;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  line-height: 1.6;
}

.home-product-link {
  min-height: 40px;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.44);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}

.home-work {
  padding-top: 128px;
}

.home-gallery {
  min-height: 720px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, 350px);
  gap: 18px;
}

.home-gallery-item {
  min-width: 0;
  min-height: 0;
  position: relative;
  grid-column: span 3;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: var(--home-forest);
  cursor: pointer;
  text-align: left;
}

.home-gallery-item:nth-child(3) {
  grid-column: span 4;
}

.home-gallery-item-tall {
  grid-column: span 5;
  grid-row: span 2;
}

.home-gallery-item-wide {
  grid-column: span 7;
}

.home-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(9, 16, 13, 0.76));
  pointer-events: none;
}

.home-gallery-item > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.home-gallery-item:hover > img {
  transform: scale(1.03);
}

.home-gallery-caption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  font-family: "Newsreader", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.05;
}

.home-lightbox {
  padding: 56px 88px 42px;
}

.home-lightbox figure {
  max-width: min(1180px, calc(100vw - 180px));
  max-height: calc(100vh - 98px);
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.home-lightbox .lightbox-img {
  max-width: 100%;
  max-height: calc(100vh - 150px);
  border-radius: 0;
}

.home-lightbox-caption {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.home-lightbox .lightbox-close,
.home-lightbox .lightbox-prev,
.home-lightbox .lightbox-next {
  min-width: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.home-process {
  width: min(100%, 1680px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  background: #e4d9ca;
}

.home-process-media {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  background: #c7c1b4;
}

.home-process-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(10, 18, 15, 0.68));
}

.home-process-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;
}

.home-process-media p {
  max-width: 36ch;
  margin: 0;
  position: absolute;
  z-index: 1;
  right: 42px;
  bottom: 38px;
  left: 42px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Newsreader", serif;
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
  line-height: 1.08;
}

.home-process-copy {
  padding: clamp(72px, 8vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-process-copy h2 {
  max-width: 11ch;
  margin: 14px 0 0;
  color: var(--home-ink);
  font-size: clamp(3rem, 4.5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.home-process-steps {
  margin: 46px 0 0;
  padding: 0;
  border-top: 1px solid var(--home-line);
  list-style: none;
}

.home-process-steps li {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--home-line);
}

.home-process-steps li > span {
  padding-top: 4px;
  color: var(--home-orange-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.home-process-steps h3 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.home-process-steps p {
  max-width: 52ch;
  margin: 7px 0 0;
  color: var(--home-muted);
  font-size: 0.86rem;
  line-height: 1.68;
}

.home-contact {
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: clamp(78px, 8vw, 124px) clamp(40px, 7vw, 116px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.7fr);
  align-items: center;
  gap: clamp(52px, 9vw, 156px);
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(97, 137, 115, 0.2), transparent 28%),
    var(--home-forest);
}

.home-contact-copy h2 {
  max-width: 10ch;
  margin: 16px 0 0;
  color: #fff;
  font-size: clamp(3.4rem, 5.5vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.home-contact-copy > p:not(.home-kicker):not(.home-contact-hours) {
  max-width: 58ch;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.home-contact-hours {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-contact-checklist {
  padding: 34px;
  border: 1px solid var(--home-line-light);
  background: rgba(255, 255, 255, 0.045);
}

.home-contact-checklist ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.home-contact-checklist li {
  min-height: 58px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--home-line-light);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
  line-height: 1.45;
}

.home-contact-checklist li:last-child {
  border-bottom: 1px solid var(--home-line-light);
}

.home-contact-checklist li span {
  color: #f2a47a;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-footer {
  width: min(calc(100% - 64px), var(--home-max));
  min-height: 116px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 42px;
  color: var(--home-muted);
}

.home-footer p,
.home-footer > a:last-child {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
}

.home-footer > a:last-child:hover {
  color: var(--home-orange-dark);
}

@media (max-width: 1220px) {
  .home-header-inner {
    width: min(calc(100% - 40px), var(--home-max));
    gap: 20px;
  }

  .home-nav a:not(.nav-cta) {
    padding-right: 9px;
    padding-left: 9px;
  }

  .home-nav a:not(.nav-cta)::after {
    left: 9px;
  }

  .home-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .home-hero-copy {
    padding-right: clamp(36px, 5vw, 72px);
    padding-left: clamp(36px, 5vw, 72px);
  }

  .home-hero h1 {
    font-size: clamp(3.65rem, 6vw, 5.15rem);
  }

  .home-section {
    width: min(calc(100% - 64px), var(--home-max));
  }

  .home-products {
    width: 100%;
  }

  .home-process-copy {
    padding: 72px 64px;
  }
}

@media (max-width: 1040px) {
  .home-page .home-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .home-page .home-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 16px 20px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border-bottom: 1px solid var(--home-line);
    background: rgba(248, 244, 237, 0.99);
    box-shadow: 0 18px 42px rgba(20, 37, 31, 0.14);
  }

  .home-page .home-nav.is-open {
    display: flex;
  }

  .home-page .home-nav a:not(.nav-cta),
  .home-page .home-nav a.home-nav-cta {
    width: 100%;
    min-height: 50px;
    margin: 0;
    padding: 0 14px;
    justify-content: flex-start;
    border-radius: 0;
  }

  .home-page .home-nav a:not(.nav-cta) {
    color: var(--home-ink);
    background: transparent;
  }

  .home-page .home-nav a:not(.nav-cta)::after {
    display: none;
  }

  .home-page .home-nav a.home-nav-cta {
    margin-top: 6px;
    justify-content: center;
  }

  .home-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .home-hero-copy {
    min-height: 650px;
  }

  .home-hero-media {
    min-height: 660px;
  }

  .home-hero-media::after {
    background: linear-gradient(180deg, transparent 45%, rgba(13, 22, 19, 0.4));
  }

  .home-project-prompt {
    right: 28px;
    bottom: 28px;
  }

  .home-section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-section-heading > p {
    max-width: 66ch;
  }

  .home-product-card,
  .home-product-card-wide {
    min-height: 450px;
    grid-column: span 3;
  }

  .home-product-card:last-child {
    grid-column: 2 / span 4;
  }

  .home-gallery {
    min-height: 1040px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 520px 320px 320px;
  }

  .home-gallery-item,
  .home-gallery-item:nth-child(3),
  .home-gallery-item-wide,
  .home-gallery-item-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .home-gallery-item-tall {
    grid-column: span 2;
  }

  .home-gallery-item-wide {
    grid-column: span 2;
  }

  .home-process {
    grid-template-columns: 1fr;
  }

  .home-process-media {
    min-height: 520px;
  }

  .home-process-copy h2 {
    max-width: 14ch;
  }

  .home-contact {
    grid-template-columns: 1fr;
  }

  .home-contact-copy > p:not(.home-kicker):not(.home-contact-hours) {
    max-width: 64ch;
  }

  .home-contact-checklist {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .home-header-inner {
    width: calc(100% - 32px);
    min-height: 74px;
  }

  .home-brand > img {
    width: 42px;
    height: 42px;
  }

  .home-brand-name strong {
    font-size: 1rem;
  }

  .home-brand-name > span {
    font-size: 0.58rem;
  }

  .home-hero-copy {
    min-height: 0;
    padding: 66px 24px 72px;
  }

  .home-hero h1 {
    max-width: 10ch;
    font-size: clamp(3.25rem, 15vw, 4.8rem);
  }

  .home-hero-text {
    margin-top: 24px;
    font-size: 0.96rem;
  }

  .home-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-button {
    width: 100%;
    text-align: center;
  }

  .home-hero-media {
    min-height: auto;
    display: grid;
    overflow: visible;
    background: var(--home-paper-deep);
  }

  .home-hero-media > img {
    height: 480px;
    position: relative;
    object-position: 57% center;
  }

  .home-project-prompt {
    width: calc(100% - 32px);
    min-height: 0;
    margin: -104px auto 24px;
    position: relative;
    right: auto;
    bottom: auto;
    padding: 28px 24px;
  }

  .home-project-prompt ul {
    grid-template-columns: 1fr;
  }

  .home-scope-strip {
    padding: 0 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-scope-strip p {
    min-height: 72px;
    padding: 0 10px;
    border-bottom: 1px solid var(--home-line);
    font-size: 0.63rem;
  }

  .home-scope-strip p:nth-child(2) {
    border-right: 0;
  }

  .home-scope-strip p:nth-child(n + 3) {
    border-bottom: 0;
  }

  .home-section {
    width: calc(100% - 40px);
    padding: 88px 0;
  }

  .home-section-heading {
    margin-bottom: 38px;
  }

  .home-section-heading h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .home-audience-grid {
    grid-template-columns: 1fr;
  }

  .home-audience-card,
  .home-audience-card + .home-audience-card,
  .home-audience-card:last-child {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  .home-audience-card p {
    min-height: 0;
  }

  .home-products {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .home-product-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-product-card,
  .home-product-card-wide,
  .home-product-card:last-child {
    min-height: 430px;
    grid-column: 1;
  }

  .home-product-copy {
    padding: 24px;
  }

  .home-product-copy > strong {
    font-size: 2.55rem;
  }

  .home-gallery {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: 330px;
    gap: 12px;
  }

  .home-gallery-item,
  .home-gallery-item:nth-child(3),
  .home-gallery-item-wide,
  .home-gallery-item-tall {
    grid-column: 1;
    grid-row: auto;
  }

  .home-lightbox {
    padding: 56px 16px 34px;
  }

  .home-lightbox figure {
    max-width: 100%;
    max-height: calc(100vh - 90px);
  }

  .home-lightbox .lightbox-prev {
    left: 4px;
  }

  .home-lightbox .lightbox-next {
    right: 4px;
  }

  .home-process-media {
    min-height: 410px;
  }

  .home-process-media p {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .home-process-copy {
    padding: 72px 24px 80px;
  }

  .home-process-copy h2 {
    font-size: clamp(2.85rem, 12vw, 4rem);
  }

  .home-process-steps {
    margin-top: 36px;
  }

  .home-process-steps li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
  }

  .home-contact {
    padding: 80px 24px;
    gap: 52px;
  }

  .home-contact-copy h2 {
    font-size: clamp(3.2rem, 15vw, 4.9rem);
  }

  .home-contact-checklist {
    padding: 26px 20px;
  }

  .home-footer {
    width: calc(100% - 40px);
    padding: 34px 0;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
  }
}

@media (max-width: 420px) {
  .home-brand-name > span {
    display: none;
  }

  .home-hero-media > img {
    height: 420px;
  }

  .home-scope-strip {
    grid-template-columns: 1fr;
  }

  .home-scope-strip p,
  .home-scope-strip p:nth-child(2),
  .home-scope-strip p:nth-child(n + 3) {
    min-height: 62px;
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  .home-scope-strip p:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .home-page *,
  .home-page *::before,
  .home-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ── 2026 limestone editorial refresh ────────────────────── */

.home-hero-media {
  margin: 0;
}

.home-hero h1 {
  max-width: 10.8ch;
  font-size: clamp(3.55rem, 5.1vw, 5.8rem);
}

.home-hero-caption {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 30px;
  margin: 0;
  padding: 11px 14px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(12, 23, 19, 0.66);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.45;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.home-hero-caption span {
  display: block;
  color: #fff;
}

.home-project-prompt {
  width: min(470px, calc(100% - 64px));
}

.home-paths {
  padding-bottom: 128px;
}

.home-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.home-path-card {
  min-width: 0;
  min-height: 420px;
  padding: 30px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  color: var(--home-ink);
  border-right: 1px solid var(--home-line);
  background: transparent;
  text-decoration: none;
  transition:
    color 220ms ease,
    background 220ms ease;
}

.home-path-card:last-child {
  border-right: 0;
}

.home-path-card::after {
  content: "";
  width: 0;
  height: 4px;
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  background: var(--home-orange);
  transition: width 260ms var(--ease-out);
}

.home-path-card:hover,
.home-path-card:focus-visible {
  color: #fff;
  background: var(--home-forest);
}

.home-path-card:hover::after,
.home-path-card:focus-visible::after {
  width: 100%;
}

.home-path-number,
.home-path-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-path-number {
  color: var(--home-orange-dark);
}

.home-path-label {
  margin-top: 54px;
  color: var(--home-muted);
}

.home-path-card:hover .home-path-number,
.home-path-card:focus-visible .home-path-number {
  color: #f2a47a;
}

.home-path-card:hover .home-path-label,
.home-path-card:focus-visible .home-path-label {
  color: rgba(255, 255, 255, 0.58);
}

.home-path-card strong {
  margin-top: 14px;
  display: block;
  font-family: "Newsreader", serif;
  font-size: clamp(1.8rem, 2.35vw, 2.55rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}

.home-path-copy {
  margin-top: 20px;
  color: var(--home-muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.home-path-card:hover .home-path-copy,
.home-path-card:focus-visible .home-path-copy {
  color: rgba(255, 255, 255, 0.7);
}

.home-path-link {
  min-height: 44px;
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--home-forest);
  font-size: 0.73rem;
  font-weight: 800;
}

.home-path-card:hover .home-path-link,
.home-path-card:focus-visible .home-path-link {
  color: #fff;
}

.home-products .home-section-heading h2 {
  max-width: 15ch;
}

.home-process-refresh {
  background: #e5dacb;
}

.home-process-collage {
  min-height: 800px;
  position: relative;
  padding: 58px 54px;
  display: block;
  background: #c7bdac;
}

.home-process-collage::after {
  display: none;
}

.home-process-collage figure {
  margin: 0;
  overflow: hidden;
  background: var(--home-forest);
}

.home-process-collage figure img,
.home-process-collage img {
  width: 100%;
  height: 100%;
  position: static;
  display: block;
  object-fit: cover;
}

.home-process-collage figcaption {
  position: absolute;
  z-index: 2;
  padding: 9px 11px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(12, 23, 19, 0.72);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-process-image-main {
  width: calc(100% - 92px);
  height: calc(100% - 100px);
  position: absolute;
  top: 44px;
  left: 40px;
}

.home-process-image-main img {
  object-position: 46% center;
}

.home-process-image-main figcaption {
  top: 16px;
  left: 16px;
}

.home-process-image-inset {
  width: min(360px, 44%);
  height: 270px;
  position: absolute;
  right: 26px;
  bottom: 34px;
  border: 10px solid #e5dacb;
  box-shadow: 0 22px 50px rgba(20, 37, 31, 0.24);
}

.home-process-image-inset figcaption {
  right: 7px;
  bottom: 7px;
  left: 7px;
}

.home-process-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 4.05vw, 4.6rem);
}

.home-process-intro {
  max-width: 55ch;
  margin: 24px 0 0;
  color: var(--home-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.home-gallery-caption {
  display: grid;
  gap: 5px;
}

.home-gallery-caption strong {
  font-family: "Newsreader", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.05;
}

.home-gallery-caption span {
  font-family: "Manrope", sans-serif;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-gallery-note {
  max-width: 68ch;
  margin: 22px 0 0 auto;
  color: var(--home-muted);
  font-size: 0.7rem;
  line-height: 1.6;
  text-align: right;
}

.home-partners {
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: clamp(80px, 8vw, 124px) clamp(40px, 7vw, 116px);
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.45fr);
  align-items: start;
  gap: clamp(52px, 8vw, 130px);
  color: #fff;
  background:
    radial-gradient(circle at 12% 0%, rgba(98, 133, 113, 0.18), transparent 30%),
    var(--home-forest);
}

.home-partners-heading h2 {
  max-width: 10ch;
  margin: 16px 0 0;
  color: #fff;
  font-family: "Newsreader", serif;
  font-size: clamp(3rem, 4.5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.home-partners-heading > p:last-child {
  max-width: 52ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
  line-height: 1.72;
}

.home-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--home-line-light);
}

.home-partner-grid article {
  min-width: 0;
  min-height: 345px;
  padding: 28px 28px 24px 0;
  border-right: 1px solid var(--home-line-light);
}

.home-partner-grid article + article {
  padding-left: 28px;
}

.home-partner-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.home-partner-grid article > span {
  color: #f2a47a;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.home-partner-grid h3 {
  margin: 88px 0 0;
  color: #fff;
  font-family: "Newsreader", serif;
  font-size: clamp(1.6rem, 2.1vw, 2.2rem);
  font-weight: 500;
  line-height: 1.04;
}

.home-partner-grid p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
  line-height: 1.7;
}

.home-footer {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.home-footer-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.home-footer-links a {
  color: var(--home-muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
}

.home-footer-links a:hover {
  color: var(--home-orange-dark);
}

/* ── Notes page ───────────────────────────────────────────── */

.notes-page {
  background: #f5f0e7;
}

.notes-page main {
  overflow: hidden;
}

.notes-page .home-nav a[aria-current="page"] {
  color: var(--home-ink);
}

.notes-hero {
  width: min(100%, 1680px);
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.62fr);
  background:
    linear-gradient(90deg, transparent 0 68%, rgba(20, 37, 31, 0.04) 68%),
    #eee6d9;
}

.notes-hero-copy {
  padding: clamp(84px, 9vw, 142px) clamp(44px, 8vw, 132px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.notes-hero h1 {
  max-width: 10ch;
  margin: 22px 0 0;
  color: var(--home-ink);
  font-family: "Newsreader", serif;
  font-size: clamp(4rem, 6.3vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.88;
  text-wrap: balance;
}

.notes-hero-copy > p:not(.home-kicker) {
  max-width: 60ch;
  margin: 30px 0 0;
  color: var(--home-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.notes-back-link {
  min-height: 44px;
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  color: var(--home-forest);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.notes-back-link:hover {
  color: var(--home-orange-dark);
}

.notes-first-move {
  margin: clamp(36px, 5vw, 76px) clamp(36px, 5vw, 76px) clamp(36px, 5vw, 76px) 0;
  padding: clamp(38px, 4vw, 62px);
  display: flex;
  flex-direction: column;
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(103, 143, 120, 0.22), transparent 30%),
    var(--home-forest);
}

.notes-first-number {
  margin-top: 64px;
  color: #f2a47a;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.notes-first-move h2 {
  max-width: 12ch;
  margin: 14px 0 0;
  color: #fff;
  font-family: "Newsreader", serif;
  font-size: clamp(2.5rem, 3.7vw, 4.1rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.notes-first-move > p:not(.home-kicker):not(.notes-placement) {
  max-width: 52ch;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.75;
}

.notes-placement {
  margin: auto 0 0;
  padding-top: 30px;
  border-top: 1px solid var(--home-line-light);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.6;
}

.notes-placement span {
  display: block;
  color: #f2a47a;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.notes-intro {
  width: min(calc(100% - 96px), var(--home-max));
  margin: 0 auto;
  padding: 112px 0 108px;
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1.3fr);
  gap: clamp(60px, 10vw, 168px);
  border-bottom: 1px solid var(--home-line);
}

.notes-intro h2 {
  max-width: 16ch;
  margin: 0;
  color: var(--home-ink);
  font-family: "Newsreader", serif;
  font-size: clamp(3rem, 4.7vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.notes-intro div > p {
  max-width: 66ch;
  margin: 26px 0 0;
  color: var(--home-muted);
  font-size: 0.94rem;
  line-height: 1.8;
}

.notes-group {
  width: min(calc(100% - 96px), var(--home-max));
  margin: 0 auto;
  padding: 118px 0 126px;
}

.notes-group + .notes-group {
  border-top: 1px solid var(--home-line);
}

.notes-group-heading {
  margin-bottom: 52px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(270px, 0.48fr);
  align-items: end;
  gap: clamp(48px, 10vw, 160px);
}

.notes-priority {
  margin: 0;
  color: var(--home-orange-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.notes-group-heading h2 {
  max-width: 15ch;
  margin: 14px 0 0;
  color: var(--home-ink);
  font-family: "Newsreader", serif;
  font-size: clamp(2.8rem, 4.4vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.notes-group-heading > p {
  margin: 0 0 4px;
  color: var(--home-muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.notes-list {
  border-top: 1px solid var(--home-line);
}

.notes-item {
  padding: 42px 0 46px;
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(260px, 0.78fr) minmax(0, 1.4fr);
  gap: clamp(32px, 6vw, 86px);
  border-bottom: 1px solid var(--home-line);
}

.notes-item-title > span,
.notes-later-grid article > span {
  color: var(--home-orange-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.notes-item-title h3 {
  max-width: 13ch;
  margin: 15px 0 0;
  color: var(--home-ink);
  font-family: "Newsreader", serif;
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.notes-item-brief {
  margin: 28px 0 0;
  color: var(--home-muted);
  font-size: 0.85rem;
  line-height: 1.72;
}

.notes-item dl {
  margin: 0;
  display: grid;
  gap: 0;
}

.notes-item dl > div {
  padding: 14px 0;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 18px;
  border-top: 1px solid var(--home-line);
}

.notes-item dl > div:last-child {
  border-bottom: 1px solid var(--home-line);
}

.notes-item dt {
  color: var(--home-ink);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.notes-item dd {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.76rem;
  line-height: 1.65;
}

.notes-group-next {
  width: 100%;
  max-width: 1680px;
  padding-right: clamp(48px, 7vw, 116px);
  padding-left: clamp(48px, 7vw, 116px);
  background: #e9e0d2;
}

.notes-list-compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.notes-list-compact .notes-item {
  min-height: 470px;
  padding: 36px 42px 40px 0;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 0;
}

.notes-list-compact .notes-item:nth-child(even) {
  padding-right: 0;
  padding-left: 42px;
  border-left: 1px solid var(--home-line);
}

.notes-list-compact .notes-item:nth-last-child(1):nth-child(odd) {
  grid-column: 1 / -1;
  padding-right: calc(50% + 42px);
}

.notes-list-compact .notes-item-title h3 {
  max-width: 19ch;
}

.notes-list-compact .notes-item-brief {
  min-height: 90px;
  margin-top: 24px;
}

.notes-list-compact .notes-item dl {
  margin-top: 28px;
}

.notes-group-later {
  padding-bottom: 138px;
}

.notes-later-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.notes-later-grid article {
  min-width: 0;
  min-height: 390px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--home-line);
}

.notes-later-grid article:last-child {
  border-right: 0;
}

.notes-later-grid h3 {
  margin: 72px 0 0;
  color: var(--home-ink);
  font-family: "Newsreader", serif;
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  font-weight: 500;
  line-height: 1.04;
}

.notes-later-grid p {
  margin: 18px 0 0;
  color: var(--home-muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.notes-later-grid small {
  margin-top: auto;
  padding-top: 24px;
  color: var(--home-orange-dark);
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.55;
}

.notes-close {
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: clamp(92px, 10vw, 150px) clamp(44px, 9vw, 150px);
  color: #fff;
  background:
    radial-gradient(circle at 84% 10%, rgba(101, 141, 119, 0.22), transparent 28%),
    var(--home-forest);
}

.notes-close h2 {
  max-width: 13ch;
  margin: 16px 0 0;
  color: #fff;
  font-family: "Newsreader", serif;
  font-size: clamp(3.3rem, 5.3vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.notes-close > p:not(.home-kicker) {
  max-width: 64ch;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.8;
}

.notes-close .home-button {
  margin-top: 34px;
}

@media (max-width: 1220px) {
  .home-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-path-card {
    min-height: 360px;
    border-bottom: 1px solid var(--home-line);
  }

  .home-path-card:nth-child(2) {
    border-right: 0;
  }

  .home-path-card:nth-child(n + 3) {
    border-bottom: 0;
  }

  .home-process-collage {
    min-height: 720px;
  }

  .home-partners {
    grid-template-columns: 1fr;
  }

  .home-partners-heading h2 {
    max-width: 13ch;
  }

  .home-partners-heading > p:last-child {
    max-width: 64ch;
  }

  .notes-hero {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.58fr);
  }

  .notes-hero-copy {
    padding-right: 64px;
    padding-left: 64px;
  }

  .notes-item {
    grid-template-columns: minmax(210px, 0.65fr) minmax(0, 1fr);
  }

  .notes-item dl {
    grid-column: 1 / -1;
  }

  .notes-item-brief {
    margin-top: 24px;
  }

  .notes-list-compact .notes-item {
    display: grid;
  }

  .notes-later-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .notes-later-grid article {
    border-bottom: 1px solid var(--home-line);
  }

  .notes-later-grid article:nth-child(2) {
    border-right: 0;
  }

  .notes-later-grid article:nth-child(n + 3) {
    border-bottom: 0;
  }
}

@media (max-width: 1040px) {
  .home-hero-caption {
    top: 24px;
    right: 24px;
  }

  .home-process-collage {
    min-height: 600px;
  }

  .home-process-image-main {
    width: calc(100% - 120px);
  }

  .home-process-image-inset {
    width: min(390px, 48%);
  }

  .notes-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .notes-hero-copy {
    min-height: 620px;
  }

  .notes-first-move {
    min-height: 570px;
    margin: 0 40px 40px;
  }

  .notes-intro,
  .notes-group-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .notes-intro {
    width: min(calc(100% - 64px), var(--home-max));
  }

  .notes-group {
    width: min(calc(100% - 64px), var(--home-max));
  }

  .notes-group-next {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .home-hero h1 {
    max-width: 11ch;
    font-size: clamp(3.15rem, 13.5vw, 4.35rem);
  }

  .home-hero-caption {
    top: 14px;
    right: 14px;
  }

  .home-paths {
    padding-bottom: 92px;
  }

  .home-path-grid {
    grid-template-columns: 1fr;
  }

  .home-path-card,
  .home-path-card:nth-child(2),
  .home-path-card:nth-child(n + 3) {
    min-height: 350px;
    padding: 28px 22px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  .home-path-card:last-child {
    border-bottom: 0;
  }

  .home-path-label {
    margin-top: 36px;
  }

  .home-process-collage {
    min-height: 510px;
    padding: 0;
  }

  .home-process-image-main {
    width: calc(100% - 36px);
    height: 390px;
    top: 0;
    left: 0;
  }

  .home-process-image-inset {
    width: 58%;
    height: 190px;
    right: 0;
    bottom: 0;
    border-width: 8px 0 0 8px;
  }

  .home-process-collage figcaption {
    display: none;
  }

  .home-process-copy h2 {
    font-size: clamp(2.7rem, 11.5vw, 3.8rem);
  }

  .home-gallery-note {
    margin-right: 0;
    text-align: left;
  }

  .home-partners {
    padding: 80px 24px;
    gap: 48px;
  }

  .home-partners-heading h2 {
    font-size: clamp(2.9rem, 12vw, 4rem);
  }

  .home-partner-grid {
    grid-template-columns: 1fr;
  }

  .home-partner-grid article,
  .home-partner-grid article + article,
  .home-partner-grid article:last-child {
    min-height: 0;
    padding: 26px 0 30px;
    border-right: 0;
    border-bottom: 1px solid var(--home-line-light);
  }

  .home-partner-grid h3 {
    margin-top: 44px;
  }

  .home-footer {
    grid-template-columns: 1fr;
  }

  .home-footer-links {
    flex-wrap: wrap;
  }

  .notes-hero-copy {
    min-height: 0;
    padding: 82px 24px 86px;
  }

  .notes-hero h1 {
    font-size: clamp(3.65rem, 16vw, 5.2rem);
  }

  .notes-first-move {
    min-height: 540px;
    margin: 0 20px 20px;
    padding: 34px 26px;
  }

  .notes-first-number {
    margin-top: 48px;
  }

  .notes-intro {
    width: calc(100% - 40px);
    padding: 88px 0 84px;
  }

  .notes-intro h2,
  .notes-group-heading h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .notes-group {
    width: calc(100% - 40px);
    padding: 88px 0 96px;
  }

  .notes-group-next {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .notes-item {
    padding: 34px 0 38px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .notes-item-brief {
    margin-top: 22px;
  }

  .notes-item dl {
    margin-top: 26px;
    grid-column: auto;
  }

  .notes-item dl > div {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .notes-list-compact {
    grid-template-columns: 1fr;
  }

  .notes-list-compact .notes-item,
  .notes-list-compact .notes-item:nth-child(even),
  .notes-list-compact .notes-item:nth-last-child(1):nth-child(odd) {
    min-height: 0;
    padding: 34px 0 38px;
    grid-column: auto;
    border-left: 0;
  }

  .notes-list-compact .notes-item-brief {
    min-height: 0;
  }

  .notes-later-grid {
    grid-template-columns: 1fr;
  }

  .notes-later-grid article,
  .notes-later-grid article:nth-child(2),
  .notes-later-grid article:nth-child(n + 3) {
    min-height: 340px;
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  .notes-later-grid article:last-child {
    border-bottom: 0;
  }

  .notes-close {
    padding: 88px 24px 96px;
  }

  .notes-close h2 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }
}

/* ── Higgins Stone V3 brand system ───────────────────────── */

:root {
  --v3-black: #1b1b1d;
  --v3-blue: #164f9c;
  --v3-orange: #ff5a00;
  --v3-limestone: #d4c3a1;
  --v3-warm-white: #f6f4ef;
  --v3-gray: #8d8f8e;
  --v3-line: rgba(27, 27, 29, 0.16);
  --v3-line-dark: rgba(246, 244, 239, 0.24);
  --v3-display: "Archivo Black", "Arial Black", sans-serif;
  --v3-body: "Barlow", Arial, sans-serif;
}

html {
  background: var(--v3-warm-white);
}

body,
.home-page {
  color: var(--v3-black);
  background: var(--v3-warm-white);
  font-family: var(--v3-body);
}

h1,
h2 {
  font-family: var(--v3-display);
  font-weight: 400;
  letter-spacing: -0.035em;
}

h3,
button,
input,
textarea,
select {
  font-family: var(--v3-body);
}

:focus-visible,
.home-page :focus-visible {
  outline: 3px solid var(--v3-blue);
  outline-offset: 4px;
}

.skip-link {
  border-radius: 0;
  color: var(--v3-warm-white);
  background: var(--v3-black);
}

.skip-link:focus {
  box-shadow: 4px 4px 0 var(--v3-orange);
}

/* Shared navigation */

.home-page {
  --home-forest: var(--v3-black);
  --home-forest-soft: #29292c;
  --home-paper: var(--v3-warm-white);
  --home-paper-deep: #e9e3d8;
  --home-ink: var(--v3-black);
  --home-muted: #57585b;
  --home-orange: var(--v3-orange);
  --home-orange-dark: var(--v3-blue);
  --home-limestone: var(--v3-limestone);
  --home-line: var(--v3-line);
  --home-line-light: var(--v3-line-dark);
}

.home-page h1,
.home-page h2,
.home-page h3 {
  font-family: var(--v3-display);
  font-weight: 400;
}

.home-header,
.topbar {
  min-height: 78px;
  border-bottom: 1px solid var(--v3-blue);
  background: rgba(246, 244, 239, 0.98);
  box-shadow: none;
}

.home-header-inner {
  min-height: 78px;
}

.home-brand,
.brand {
  flex: 0 1 auto;
  gap: 0;
}

.home-logo,
.brand-logo,
.brand-mark,
.home-footer-logo,
.brand-footer-mark {
  display: block;
  object-fit: contain;
}

.home-logo-horizontal,
.brand-logo-horizontal {
  width: 280px;
  height: 79px;
}

.home-brand > img.home-logo-horizontal {
  width: 280px;
  height: 79px;
}

.home-footer-brand > img.home-footer-logo {
  width: 238px;
  height: auto;
}

.home-logo-mark,
.brand-mark {
  display: none;
}

.home-nav,
.nav {
  gap: 2px;
}

.home-nav a:not(.nav-cta),
.nav a:not(.nav-cta) {
  color: var(--v3-black);
  font-family: var(--v3-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-nav a:not(.nav-cta)::after,
.nav a:not(.nav-cta)::after {
  height: 3px;
  background: var(--v3-blue);
  border-radius: 0;
}

.home-nav a.home-nav-cta,
.nav-cta {
  border-radius: 0;
  color: var(--v3-black);
  background: var(--v3-orange);
  box-shadow: none;
  font-family: var(--v3-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-nav a.home-nav-cta:hover,
.nav-cta:hover {
  color: #fff;
  background: var(--v3-blue);
  box-shadow: none;
}

.home-menu-toggle,
.menu-toggle {
  border: 1px solid var(--v3-black);
  border-radius: 0;
  color: var(--v3-black);
  background: transparent;
  box-shadow: none;
  font-family: var(--v3-body);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--v3-blue);
  font-family: var(--v3-body);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.4;
}

.home-kicker::before,
.eyebrow::before {
  width: 18px;
  height: 3px;
  content: "";
  flex: 0 0 auto;
  background: var(--v3-orange);
}

.home-hero-copy > .home-kicker,
.home-partners .home-kicker,
.home-contact .home-kicker,
.notes-first-move .home-kicker,
.notes-close .home-kicker {
  color: var(--v3-warm-white);
}

.eyebrow-light {
  color: var(--v3-warm-white);
}

.button,
.home-button {
  border-radius: 0;
  box-shadow: none;
  font-family: var(--v3-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-primary,
.home-button-primary {
  color: var(--v3-black);
  background: var(--v3-orange);
  box-shadow: none;
}

.button-primary:hover,
.home-button-primary:hover {
  color: #fff;
  background: var(--v3-blue);
  box-shadow: none;
}

.button-secondary,
.home-button-quiet,
.home-button-outline {
  border-color: currentColor;
  border-radius: 0;
  box-shadow: none;
}

/* Homepage */

.home-hero,
.home-partners,
.home-contact {
  background: var(--v3-black);
}

.home-hero-copy {
  background:
    linear-gradient(90deg, rgba(27, 27, 29, 0.98) 0%, rgba(27, 27, 29, 0.95) 100%),
    url("/brand-assets/patterns/source-faithful-saw-crop.webp") left bottom / min(690px, 80%) auto no-repeat,
    var(--v3-black);
}

.home-hero h1,
.home-contact-copy h2,
.home-partners-heading h2 {
  color: var(--v3-warm-white);
  letter-spacing: -0.05em;
}

.home-hero-media::after {
  background: linear-gradient(90deg, rgba(27, 27, 29, 0.38), transparent 38%);
}

.home-hero-caption,
.home-process-collage figcaption {
  border-left: 4px solid var(--v3-orange);
  color: var(--v3-warm-white);
  background: rgba(27, 27, 29, 0.88);
  font-family: var(--v3-body);
  font-weight: 600;
}

.home-project-prompt {
  border-top: 6px solid var(--v3-blue);
  color: var(--v3-black);
  background: var(--v3-warm-white);
  box-shadow: 10px 10px 0 rgba(27, 27, 29, 0.22);
}

.home-project-prompt h2 {
  color: var(--v3-black);
}

.home-project-prompt li::before {
  color: var(--v3-orange);
}

.home-scope-strip {
  background: var(--v3-warm-white);
  border-top: 4px solid var(--v3-blue);
  border-bottom: 1px solid var(--v3-line);
}

.home-scope-strip p {
  color: var(--v3-black);
  border-color: var(--v3-line);
  font-family: var(--v3-body);
  font-weight: 600;
}

.home-section-heading h2,
.home-process-copy h2,
.notes-hero h1,
.notes-intro h2,
.notes-group-heading h2,
.notes-close h2 {
  color: var(--v3-black);
}

.home-section-heading > div::after,
.section-heading::before {
  width: 152px;
  height: 18px;
  margin-top: 20px;
  display: block;
  content: "";
  background: url("/brand-assets/patterns/stripe-system.svg") left center / 152px auto no-repeat;
}

.section-heading::before {
  margin: 0 0 18px;
}

.home-path-grid,
.home-path-card,
.home-path-card:last-child {
  border-color: var(--v3-line);
}

.home-path-card {
  min-height: 438px;
}

.home-path-card strong {
  font-family: var(--v3-display);
  font-weight: 400;
}

.home-path-icon {
  width: 43px;
  height: 43px;
  margin-bottom: 24px;
  color: var(--v3-blue);
}

.home-path-card:hover,
.home-path-card:focus-visible {
  background: var(--v3-black);
}

.home-path-card:hover .home-path-icon,
.home-path-card:focus-visible .home-path-icon {
  color: var(--v3-warm-white);
}

.home-path-number,
.home-process-steps li > span {
  color: var(--v3-blue);
}

.home-path-card:hover .home-path-number,
.home-path-card:focus-visible .home-path-number,
.home-product-number,
.home-partner-grid article > span {
  color: var(--v3-orange);
}

.home-path-link {
  color: var(--v3-blue);
}

.home-product-card,
.home-gallery-item {
  border-radius: 0;
  background: var(--v3-black);
}

.home-product-shade {
  background:
    linear-gradient(180deg, rgba(27, 27, 29, 0.04) 20%, rgba(27, 27, 29, 0.94) 100%),
    linear-gradient(90deg, rgba(27, 27, 29, 0.42), transparent 72%);
}

.home-product-copy > strong,
.home-gallery-caption,
.home-gallery-caption strong {
  font-family: var(--v3-display);
  font-weight: 400;
}

.home-gallery-caption span {
  font-family: var(--v3-body);
  font-weight: 600;
}

.home-product-link {
  border-color: var(--v3-orange);
}

.home-process,
.home-process-refresh {
  background: var(--v3-limestone);
}

.home-process-collage {
  background: #c7b792;
}

.home-process-image-inset {
  border-color: var(--v3-warm-white);
  box-shadow: 10px 10px 0 rgba(27, 27, 29, 0.2);
}

.home-process-copy h2,
.home-process-steps h3 {
  font-family: var(--v3-display);
  font-weight: 400;
}

.home-process-steps,
.home-process-steps li {
  border-color: rgba(27, 27, 29, 0.22);
}

.process-step-icon,
.partner-icon,
.notes-kicker-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  vertical-align: middle;
  color: var(--v3-blue);
}

.home-process-steps h3 {
  display: flex;
  align-items: center;
}

.home-work {
  padding-top: 118px;
}

.home-gallery-item::after {
  background: linear-gradient(180deg, transparent 45%, rgba(27, 27, 29, 0.86));
}

.home-partners,
.home-contact {
  background-image: none;
}

.home-partner-grid,
.home-partner-grid article,
.home-contact-checklist,
.home-contact-checklist li {
  border-color: var(--v3-line-dark);
}

.home-partner-grid h3 {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: var(--v3-display);
  font-weight: 400;
}

.home-partner-grid .partner-icon {
  width: 38px;
  height: 38px;
  color: var(--v3-warm-white);
}

.home-contact-checklist {
  border-top: 5px solid var(--v3-blue);
  background: rgba(246, 244, 239, 0.06);
}

.home-footer {
  width: 100%;
  min-height: 142px;
  margin: 0;
  padding: 34px max(32px, calc((100% - var(--home-max)) / 2));
  color: rgba(246, 244, 239, 0.7);
  background: var(--v3-black);
  border-top: 4px solid var(--v3-blue);
}

.home-footer-logo {
  width: 238px;
  height: auto;
}

.home-footer p,
.home-footer > a:last-child,
.home-footer-links a {
  color: rgba(246, 244, 239, 0.72);
}

.home-footer-links a:hover,
.home-footer > a:last-child:hover {
  color: var(--v3-orange);
}

/* Product detail pages */

body:not(.home-page) {
  background: var(--v3-warm-white);
}

.site-shell {
  width: min(calc(100% - 64px), 1320px);
  padding-top: 48px;
}

.topbar {
  padding: 8px clamp(20px, 4vw, 60px);
}

.brand-logo-horizontal {
  width: 278px;
  height: 78px;
}

.inner-hero {
  border-radius: 0;
  box-shadow: none;
  border: 1px solid var(--v3-black);
}

.inner-hero-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(27, 27, 29, 0.98), rgba(27, 27, 29, 0.94)),
    url("/brand-assets/patterns/source-faithful-saw-crop.webp") left bottom / 540px auto no-repeat,
    var(--v3-black);
}

.inner-hero-copy h1 {
  color: var(--v3-warm-white);
  font-family: var(--v3-display);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.inner-hero-copy p {
  color: rgba(246, 244, 239, 0.77);
}

.product-hero-icon {
  width: 31px;
  height: 31px;
  color: var(--v3-warm-white);
}

.inner-hero-media,
.inner-hero-media img,
.gallery-item,
.gallery-item::after,
.gallery-item img {
  border-radius: 0;
}

.detail-grid {
  gap: 0;
  margin-top: 28px;
  border: 1px solid var(--v3-line);
}

.detail-card {
  padding: 34px;
  border: 0;
  border-radius: 0;
  background: #fffdf8;
  box-shadow: none;
}

.detail-card + .detail-card {
  border-left: 1px solid var(--v3-line);
}

.detail-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--v3-black);
  font-family: var(--v3-display);
  font-weight: 400;
}

.detail-heading svg {
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  color: var(--v3-blue);
}

.detail-card li::marker {
  color: var(--v3-orange);
}

.page-story {
  gap: 40px;
  margin: 28px 0 18px;
  padding: clamp(32px, 5vw, 56px);
  border: 0;
  border-left: 8px solid var(--v3-blue);
  border-radius: 0;
  background: var(--v3-limestone);
  box-shadow: none;
}

.page-story h2,
.section-heading h2 {
  font-family: var(--v3-display);
  font-weight: 400;
}

.gallery-item {
  box-shadow: none;
}

.gallery-item::after {
  background: rgba(27, 27, 29, 0);
}

.gallery-item:hover::after {
  background: rgba(27, 27, 29, 0.22);
}

.quote-panel {
  margin-top: 56px;
  border: 1px solid var(--v3-black);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(27, 27, 29, 0.98), rgba(27, 27, 29, 0.92)),
    url("/brand-assets/patterns/source-faithful-saw-crop.webp") right bottom / 560px auto no-repeat,
    var(--v3-black);
  box-shadow: none;
}

.quote-overlay {
  display: none;
}

.quote-content {
  max-width: 760px;
  padding: clamp(44px, 6vw, 76px);
}

.quote-brand {
  width: min(280px, 74%);
  height: auto;
  margin-bottom: 32px;
}

.quote-content h2 {
  color: var(--v3-warm-white);
  font-family: var(--v3-display);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.quote-content p {
  color: rgba(246, 244, 239, 0.75);
}

.gold-rule {
  width: 74px;
  height: 4px;
  border-radius: 0;
  background: var(--v3-orange);
}

.footer {
  align-items: center;
  padding: 34px 0 20px;
  border-top: 1px solid var(--v3-line);
  color: #5b5c5f;
}

.footer-brand {
  gap: 10px;
}

.brand-footer-mark {
  width: 34px;
  height: 24px;
}

.lightbox {
  background: rgba(27, 27, 29, 0.96);
}

/* Notes stays useful and quiet, but now belongs to the same system. */

.notes-page {
  background: var(--v3-warm-white);
}

.notes-hero {
  background: var(--v3-limestone);
}

.notes-first-move,
.notes-close {
  background: var(--v3-black);
}

.notes-first-move h2,
.notes-close h2 {
  color: var(--v3-warm-white);
}

.notes-group-next,
.notes-group-later {
  border-color: var(--v3-line);
}

.notes-item,
.notes-later-grid article {
  border-color: var(--v3-line);
}

@media (max-width: 1040px) {
  .home-page .home-nav,
  .nav {
    border-top: 3px solid var(--v3-blue);
    background: var(--v3-warm-white);
    box-shadow: 0 16px 36px rgba(27, 27, 29, 0.16);
  }

  .home-page .home-nav a.home-nav-cta,
  .nav .nav-cta {
    border-radius: 0;
  }
}

@media (max-width: 980px) {
  .brand-logo-horizontal {
    display: none;
  }

  .brand-mark {
    display: block;
    width: 56px;
    height: 39px;
  }

  .detail-card + .detail-card {
    border-top: 1px solid var(--v3-line);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .home-header,
  .topbar,
  .home-header-inner {
    min-height: 70px;
  }

  .home-logo-horizontal {
    display: none;
  }

  .home-logo-mark {
    display: block;
    width: 52px;
    height: 36px;
  }

  .home-brand > img.home-logo-mark {
    width: 52px;
    height: 36px;
  }

  .home-hero-copy,
  .inner-hero-copy,
  .quote-panel {
    background-image: none;
  }

  .home-path-card {
    min-height: 374px;
  }

  .home-path-icon {
    margin-bottom: 18px;
  }

  .home-process-steps h3 {
    align-items: flex-start;
  }

  .home-footer {
    padding: 36px 20px;
  }

  .home-footer-logo {
    width: 226px;
  }

  .site-shell {
    width: min(calc(100% - 40px), 1320px);
    padding-top: 28px;
  }

  .inner-hero-copy {
    padding: 42px 28px;
  }

  .detail-grid {
    border: 0;
  }

  .detail-card {
    padding: 28px 24px;
    border: 1px solid var(--v3-line);
  }

  .detail-card + .detail-card {
    border-top: 0;
  }

  .page-story {
    gap: 22px;
    padding: 32px 24px;
    border-left-width: 5px;
  }

  .quote-content {
    padding: 42px 28px;
  }

  .quote-brand {
    width: min(250px, 82%);
  }
}

/* Secure preview and generated system pages */

.front-door-shell {
  color: var(--v3-black);
  background: var(--v3-warm-white);
}

.front-door-story {
  position: relative;
  overflow: hidden;
  color: var(--v3-warm-white);
  background:
    linear-gradient(90deg, var(--v3-blue) 0 118px, var(--v3-orange) 118px 158px, transparent 158px) top left / 100% 5px no-repeat,
    var(--v3-black);
}

.front-door-brand {
  width: min(300px, 68%);
  min-width: 220px;
  padding: 14px 18px;
  border: 1px solid rgba(246, 244, 239, 0.2);
  border-radius: 0;
  background: var(--v3-warm-white);
}

.front-door-story h1,
.front-door-form-wrap h2,
.not-found-card h1 {
  font-family: var(--v3-display);
  font-weight: 400;
}

.front-door-story h1 {
  color: var(--v3-warm-white);
}

.front-door-story > div:nth-child(2) > p:last-child,
.front-door-story small {
  color: rgba(246, 244, 239, 0.72);
}

.front-door-panel {
  border-left: 1px solid var(--v3-line);
  background: var(--v3-warm-white);
}

.front-door-form input:not([type="checkbox"]) {
  min-height: 48px;
  border: 1px solid rgba(27, 27, 29, 0.34);
  border-radius: 0;
  color: var(--v3-black);
  background: #fff;
}

.front-door-form input:not([type="checkbox"]):focus {
  border-color: var(--v3-blue);
  box-shadow: 0 0 0 3px rgba(22, 79, 156, 0.14);
  outline: 0;
}

.remember-control {
  color: var(--v3-black);
}

.remember-control input {
  accent-color: var(--v3-blue);
}

.front-door-error {
  border: 1px solid rgba(156, 48, 41, 0.28);
  border-radius: 0;
  color: #822820;
  background: rgba(156, 48, 41, 0.1);
}

.front-door-return {
  color: var(--v3-blue);
  font-weight: 600;
}

.not-found-page {
  background:
    linear-gradient(90deg, var(--v3-blue) 0 84px, var(--v3-orange) 84px 112px, transparent 112px) top left / 100% 4px no-repeat,
    var(--v3-warm-white);
}

.not-found-card {
  border: 1px solid var(--v3-line);
  border-top: 6px solid var(--v3-blue);
  border-radius: 0;
  background: #fff;
  box-shadow: 10px 10px 0 rgba(27, 27, 29, 0.1);
}

@media (max-width: 900px) {
  .front-door-panel {
    border-left: 0;
  }
}

/* ── Stone field guide + project archive ────────────────── */

.nav a[aria-current="page"],
.home-nav a[aria-current="page"] {
  color: var(--v3-blue);
}

.nav a[aria-current="page"]::after,
.home-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.home-text-link {
  color: var(--v3-blue);
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.home-text-link:hover {
  color: var(--v3-orange);
}

.home-materials {
  padding-top: 112px;
}

.home-material-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.1fr;
  gap: 16px;
}

.home-material-card {
  min-height: 520px;
  position: relative;
  display: block;
  overflow: hidden;
  color: var(--v3-warm-white);
  background: var(--v3-black);
  text-decoration: none;
  isolation: isolate;
}

.home-material-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(27, 27, 29, 0.08) 18%, rgba(27, 27, 29, 0.94) 100%),
    linear-gradient(90deg, rgba(27, 27, 29, 0.42), transparent 72%);
}

.home-material-card > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.home-material-card-color > img {
  object-position: center 42%;
}

.home-material-card-surface > img {
  object-position: center;
}

.home-material-card:hover > img,
.home-material-card:focus-visible > img {
  transform: scale(1.035);
}

.home-material-card:focus-visible {
  outline-offset: 5px;
}

.home-material-card-copy {
  min-height: inherit;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.home-material-card-copy > span:first-child {
  color: var(--v3-orange);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-material-card-copy strong {
  max-width: 11ch;
  margin-top: 12px;
  font-family: var(--v3-display);
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.home-material-card-copy > span:last-child {
  max-width: 34ch;
  margin-top: 15px;
  color: rgba(246, 244, 239, 0.76);
  font-size: 0.84rem;
  line-height: 1.6;
}

.home-material-footer {
  margin-top: 22px;
  padding-top: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid var(--v3-line);
}

.home-material-footer p {
  max-width: 70ch;
  margin: 0;
  color: var(--home-muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.home-material-footer .home-text-link {
  flex: 0 0 auto;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-product-card[href="/architectural-stone"] > img {
  object-position: center 38%;
}

.home-gallery-item:nth-child(3) > img {
  object-position: center 54%;
}

.home-gallery-item-wide > img {
  object-position: center 48%;
}

.field-shell,
.projects-shell {
  width: min(calc(100% - 64px), 1440px);
  padding-top: 48px;
}

.field-hero,
.projects-hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(380px, 0.84fr) minmax(0, 1.16fr);
  overflow: hidden;
  border: 1px solid var(--v3-black);
}

.field-hero-copy,
.projects-hero-copy {
  padding: clamp(48px, 6vw, 84px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--v3-warm-white);
  background:
    linear-gradient(90deg, rgba(27, 27, 29, 0.98), rgba(27, 27, 29, 0.93)),
    url("/brand-assets/patterns/source-faithful-saw-crop.webp") left bottom / min(560px, 100%) auto no-repeat,
    var(--v3-black);
}

.field-hero-copy h1,
.projects-hero-copy h1 {
  max-width: 10ch;
  margin: 24px 0 0;
  color: var(--v3-warm-white);
  font-family: var(--v3-display);
  font-size: clamp(3.7rem, 5.6vw, 6.6rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.field-hero-copy > p:not(.eyebrow),
.projects-hero-copy > p:not(.eyebrow) {
  max-width: 53ch;
  margin: 28px 0 0;
  color: rgba(246, 244, 239, 0.74);
  font-size: 1rem;
  line-height: 1.75;
}

.projects-hero-copy > .button {
  align-self: flex-start;
  margin-top: 34px;
}

.field-hero-media,
.projects-hero-media {
  min-width: 0;
  min-height: inherit;
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--v3-limestone);
}

.field-hero-media img,
.projects-hero-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;
}

.field-hero-media img {
  object-position: center;
}

.projects-hero-media img {
  object-position: center 50%;
}

.field-hero-media::after,
.projects-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(27, 27, 29, 0.56));
}

.field-hero-media figcaption,
.projects-hero-media figcaption {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 24px;
  left: 26px;
  padding-left: 14px;
  border-left: 4px solid var(--v3-orange);
  color: var(--v3-warm-white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field-intro {
  margin-top: 28px;
  padding: clamp(42px, 6vw, 76px);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
  border-left: 8px solid var(--v3-blue);
  background: var(--v3-limestone);
}

.field-intro h2,
.field-section-heading h2 {
  max-width: 12ch;
  margin: 16px 0 0;
  font-family: var(--v3-display);
  font-size: clamp(3rem, 4.6vw, 5.2rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.field-sequence {
  margin: 0;
  padding: 0;
  display: grid;
  list-style: none;
  border-top: 1px solid rgba(27, 27, 29, 0.24);
}

.field-sequence li {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  border-bottom: 1px solid rgba(27, 27, 29, 0.24);
}

.field-sequence li > span {
  color: var(--v3-blue);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.field-sequence strong {
  font-family: var(--v3-display);
  font-size: 1.08rem;
  font-weight: 400;
}

.field-sequence p {
  margin: 7px 0 0;
  color: #535457;
  font-size: 0.88rem;
  line-height: 1.6;
}

.field-section,
.projects-section,
.projects-process {
  padding: 118px 0;
}

.field-section + .field-section,
.projects-section + .projects-process {
  border-top: 1px solid var(--v3-line);
}

.field-section-heading {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.68fr);
  gap: clamp(48px, 9vw, 132px);
  align-items: end;
}

.field-section-heading > p {
  margin: 0 0 4px;
  color: #5b5c5f;
  font-size: 0.96rem;
  line-height: 1.78;
}

.stone-color-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--v3-line);
  border-left: 1px solid var(--v3-line);
}

.stone-color-card {
  min-width: 0;
  border-right: 1px solid var(--v3-line);
  border-bottom: 1px solid var(--v3-line);
  background: #fffdf8;
}

.stone-color-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  border-bottom: 1px solid var(--v3-line);
}

.stone-color-card > div {
  min-height: 230px;
  padding: 26px 24px 28px;
}

.stone-color-card span,
.pattern-card-grid article > span,
.veneer-compare article > span {
  color: var(--v3-blue);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stone-color-card h3 {
  margin: 42px 0 0;
  font-family: var(--v3-display);
  font-size: clamp(1.35rem, 1.8vw, 2rem);
  font-weight: 400;
  line-height: 1;
}

.stone-color-card p {
  margin: 14px 0 0;
  color: #626366;
  font-size: 0.84rem;
  line-height: 1.62;
}

.field-caveat {
  max-width: 90ch;
  margin: 26px 0 0 auto;
  color: #626366;
  font-size: 0.78rem;
  line-height: 1.65;
  text-align: right;
}

.field-section-dark {
  padding-right: clamp(32px, 5vw, 72px);
  padding-left: clamp(32px, 5vw, 72px);
  color: var(--v3-warm-white);
  background: var(--v3-black);
  border-top: 0;
}

.field-section-dark .field-section-heading h2 {
  color: var(--v3-warm-white);
}

.field-section-dark .field-section-heading > p {
  color: rgba(246, 244, 239, 0.68);
}

.finish-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.finish-image-grid figure {
  min-height: 470px;
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #353538;
}

.finish-image-grid img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;
}

.finish-image-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(27, 27, 29, 0.88));
}

.finish-image-grid figcaption {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: grid;
  gap: 8px;
}

.finish-image-grid figcaption strong {
  font-family: var(--v3-display);
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
}

.finish-image-grid figcaption span {
  color: rgba(246, 244, 239, 0.72);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.finish-card-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--v3-line-dark);
  border-left: 1px solid var(--v3-line-dark);
}

.finish-card-grid article {
  min-height: 235px;
  padding: 26px 24px;
  border-right: 1px solid var(--v3-line-dark);
  border-bottom: 1px solid var(--v3-line-dark);
}

.finish-card-grid article > span {
  color: var(--v3-orange);
  font-size: 0.72rem;
  font-weight: 600;
}

.finish-card-grid h3 {
  margin: 56px 0 0;
  color: var(--v3-warm-white);
  font-family: var(--v3-display);
  font-size: 1.5rem;
  font-weight: 400;
}

.finish-card-grid p {
  margin: 13px 0 0;
  color: rgba(246, 244, 239, 0.64);
  font-size: 0.82rem;
  line-height: 1.6;
}

.pattern-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(440px, 0.94fr);
  gap: 18px;
}

.pattern-feature {
  min-height: 660px;
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--v3-black);
}

.pattern-feature img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;
}

.pattern-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(27, 27, 29, 0.9));
}

.pattern-feature figcaption {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 32px;
  left: 34px;
  display: grid;
  gap: 12px;
  color: var(--v3-warm-white);
}

.pattern-feature figcaption > span {
  color: var(--v3-orange);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pattern-feature figcaption strong {
  max-width: 18ch;
  font-family: var(--v3-display);
  font-size: clamp(2rem, 3vw, 3.3rem);
  font-weight: 400;
  line-height: 0.98;
}

.pattern-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--v3-line);
  border-left: 1px solid var(--v3-line);
}

.pattern-card-grid article {
  min-height: 321px;
  padding: 28px;
  border-right: 1px solid var(--v3-line);
  border-bottom: 1px solid var(--v3-line);
  background: #fffdf8;
}

.pattern-card-grid h3 {
  margin: 62px 0 0;
  font-family: var(--v3-display);
  font-size: clamp(1.35rem, 2vw, 2.15rem);
  font-weight: 400;
  line-height: 1.05;
}

.pattern-card-grid p {
  margin: 15px 0 0;
  color: #626366;
  font-size: 0.84rem;
  line-height: 1.62;
}

.veneer-compare {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 5px solid var(--v3-blue);
  background: var(--v3-limestone);
}

.veneer-compare article {
  min-height: 220px;
  padding: 34px;
  border-right: 1px solid rgba(27, 27, 29, 0.22);
}

.veneer-compare article:nth-child(2) {
  border-right: 0;
}

.veneer-compare h3 {
  margin: 48px 0 0;
  font-family: var(--v3-display);
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.veneer-compare article p {
  margin: 14px 0 0;
  color: #515255;
  line-height: 1.65;
}

.veneer-compare > p {
  margin: 0;
  padding: 22px 34px;
  grid-column: 1 / -1;
  border-top: 1px solid rgba(27, 27, 29, 0.22);
  color: #57585b;
  font-size: 0.78rem;
  line-height: 1.65;
}

.field-downloads {
  padding-right: clamp(32px, 5vw, 72px);
  padding-left: clamp(32px, 5vw, 72px);
  background: #e9e3d8;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--v3-line);
  border-left: 1px solid var(--v3-line);
}

.download-grid > a {
  min-height: 330px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--v3-line);
  border-bottom: 1px solid var(--v3-line);
  color: var(--v3-black);
  background: var(--v3-warm-white);
  text-decoration: none;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.download-grid > a:hover,
.download-grid > a:focus-visible {
  color: var(--v3-warm-white);
  background: var(--v3-black);
}

.download-grid > a > span:first-child {
  color: var(--v3-blue);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.download-grid > a:hover > span:first-child,
.download-grid > a:focus-visible > span:first-child {
  color: var(--v3-orange);
}

.download-grid strong {
  max-width: 14ch;
  margin-top: 44px;
  font-family: var(--v3-display);
  font-size: clamp(1.7rem, 2.6vw, 2.8rem);
  font-weight: 400;
  line-height: 0.98;
}

.download-grid p {
  max-width: 48ch;
  margin: 18px 0 0;
  color: #626366;
  font-size: 0.86rem;
  line-height: 1.65;
}

.download-grid > a:hover p,
.download-grid > a:focus-visible p {
  color: rgba(246, 244, 239, 0.68);
}

.download-action {
  margin-top: auto;
  padding-top: 30px;
  color: var(--v3-blue);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.download-grid > a:hover .download-action,
.download-grid > a:focus-visible .download-action {
  color: var(--v3-orange);
}

.field-cta {
  margin: 0;
  padding: clamp(52px, 7vw, 94px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(48px, 9vw, 132px);
  color: var(--v3-warm-white);
  background:
    linear-gradient(90deg, rgba(27, 27, 29, 0.98), rgba(27, 27, 29, 0.94)),
    url("/brand-assets/patterns/source-faithful-saw-crop.webp") right bottom / 520px auto no-repeat,
    var(--v3-black);
}

.field-cta h2 {
  max-width: 13ch;
  margin: 18px 0 0;
  color: var(--v3-warm-white);
  font-family: var(--v3-display);
  font-size: clamp(3rem, 4.8vw, 5.5rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.field-cta > div:last-child > p {
  margin: 0;
  color: rgba(246, 244, 239, 0.7);
  font-size: 0.96rem;
  line-height: 1.75;
}

.footer a {
  color: var(--v3-blue);
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.footer a:hover {
  color: var(--v3-orange);
}

.projects-hero {
  grid-template-columns: minmax(420px, 0.78fr) minmax(0, 1.22fr);
}

.projects-hero-copy h1 {
  max-width: 8.6ch;
}

.projects-scope {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 4px solid var(--v3-blue);
  border-right: 1px solid var(--v3-line);
  border-bottom: 1px solid var(--v3-line);
  border-left: 1px solid var(--v3-line);
}

.projects-scope span {
  min-height: 84px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--v3-line);
  color: var(--v3-black);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.projects-scope span:last-child {
  border-right: 0;
}

.project-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 270px;
  gap: 14px;
}

.project-card {
  min-width: 0;
  min-height: 0;
  position: relative;
  grid-column: span 4;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: var(--v3-warm-white);
  background: var(--v3-black);
  cursor: pointer;
  text-align: left;
}

.project-card-wide {
  grid-column: span 8;
}

.project-card-tall {
  grid-row: span 2;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(27, 27, 29, 0.9)),
    linear-gradient(90deg, rgba(27, 27, 29, 0.2), transparent 70%);
  pointer-events: none;
}

.project-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.project-card:hover img,
.project-card:focus-visible img {
  transform: scale(1.035);
}

.project-card:focus-visible {
  outline-offset: 5px;
}

.project-card > span {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: grid;
  gap: 8px;
}

.project-card strong {
  font-family: var(--v3-display);
  font-size: clamp(1.55rem, 2.5vw, 2.8rem);
  font-weight: 400;
  line-height: 0.98;
}

.project-card small {
  color: rgba(246, 244, 239, 0.72);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-image-grid figure {
  margin: 0;
  border: 1px solid var(--v3-line);
  background: #fffdf8;
}

.process-image-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.process-image-grid figcaption {
  min-height: 150px;
  padding: 24px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-content: center;
  column-gap: 10px;
}

.process-image-grid figcaption > span {
  grid-row: 1 / 3;
  color: var(--v3-blue);
  font-size: 0.72rem;
  font-weight: 600;
}

.process-image-grid strong {
  font-family: var(--v3-display);
  font-size: 1.35rem;
  font-weight: 400;
}

.process-image-grid small {
  margin-top: 8px;
  color: #626366;
  font-size: 0.76rem;
}

@media (max-width: 1180px) {
  .home-material-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-material-card:last-child {
    grid-column: 1 / -1;
  }

  .stone-color-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .finish-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pattern-layout {
    grid-template-columns: 1fr;
  }

  .pattern-feature {
    min-height: 600px;
  }

  .pattern-card-grid article {
    min-height: 260px;
  }
}

@media (max-width: 980px) {
  .field-shell,
  .projects-shell {
    width: min(calc(100% - 40px), 1440px);
    padding-top: 28px;
  }

  .field-hero,
  .projects-hero {
    grid-template-columns: 1fr;
  }

  .field-hero-copy,
  .projects-hero-copy {
    min-height: 560px;
  }

  .field-hero-media,
  .projects-hero-media {
    min-height: 520px;
  }

  .field-intro,
  .field-cta {
    grid-template-columns: 1fr;
  }

  .field-section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .field-section-heading > p {
    max-width: 66ch;
  }

  .finish-image-grid {
    grid-template-columns: 1fr 1fr;
  }

  .finish-image-grid figure:last-child {
    grid-column: 1 / -1;
  }

  .project-mosaic {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 300px;
  }

  .project-card {
    grid-column: span 3;
  }

  .project-card-wide {
    grid-column: span 6;
  }

  .projects-scope {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .projects-scope span {
    border-bottom: 1px solid var(--v3-line);
  }

  .projects-scope span:nth-child(even) {
    border-right: 0;
  }

  .projects-scope span:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .home-materials {
    padding-top: 88px;
  }

  .home-material-grid {
    grid-template-columns: 1fr;
  }

  .home-material-card,
  .home-material-card:last-child {
    min-height: 430px;
    grid-column: 1;
  }

  .home-material-card-copy {
    padding: 24px;
  }

  .home-material-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .field-shell,
  .projects-shell {
    width: calc(100% - 32px);
  }

  .field-hero-copy,
  .projects-hero-copy {
    min-height: 0;
    padding: 64px 24px 70px;
  }

  .field-hero-copy h1,
  .projects-hero-copy h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .field-hero-media,
  .projects-hero-media {
    min-height: 400px;
  }

  .field-intro {
    padding: 48px 24px;
    gap: 40px;
    border-left-width: 5px;
  }

  .field-intro h2,
  .field-section-heading h2 {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .field-section,
  .projects-section,
  .projects-process {
    padding: 86px 0;
  }

  .stone-color-grid,
  .finish-card-grid,
  .pattern-card-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .stone-color-card > div {
    min-height: 0;
  }

  .stone-color-card h3 {
    margin-top: 34px;
  }

  .field-caveat {
    text-align: left;
  }

  .field-section-dark,
  .field-downloads {
    margin-right: -16px;
    margin-left: -16px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .finish-image-grid {
    grid-template-columns: 1fr;
  }

  .finish-image-grid figure,
  .finish-image-grid figure:last-child {
    min-height: 420px;
    grid-column: 1;
  }

  .finish-card-grid article {
    min-height: 210px;
  }

  .pattern-feature {
    min-height: 480px;
  }

  .pattern-card-grid article {
    min-height: 230px;
  }

  .veneer-compare {
    grid-template-columns: 1fr;
  }

  .veneer-compare article,
  .veneer-compare article:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(27, 27, 29, 0.22);
  }

  .veneer-compare h3 {
    margin-top: 38px;
  }

  .download-grid > a {
    min-height: 300px;
  }

  .field-cta {
    margin-right: -16px;
    margin-left: -16px;
    padding: 64px 24px 72px;
    gap: 42px;
    background-image: none;
  }

  .field-cta h2 {
    font-size: clamp(2.9rem, 13vw, 4.4rem);
  }

  .projects-scope {
    grid-template-columns: 1fr;
  }

  .projects-scope span,
  .projects-scope span:nth-child(even),
  .projects-scope span:last-child {
    min-height: 66px;
    grid-column: 1;
    border-right: 0;
    border-bottom: 1px solid var(--v3-line);
  }

  .projects-scope span:last-child {
    border-bottom: 0;
  }

  .project-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 10px;
  }

  .project-card,
  .project-card-wide,
  .project-card-tall {
    aspect-ratio: 4 / 3;
    grid-column: 1;
    grid-row: auto;
  }

  .project-card-tall {
    aspect-ratio: 4 / 5;
  }

  .process-image-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Decision-ready product modules ──────────────────────── */

.inner-hero-media img[src*="/top-25/"] {
  object-position: center;
}

.inner-hero-media img[src*="10-improved-commercial-facade"] {
  object-position: 52% 50%;
}

.inner-hero-media img[src*="03-live-modern-veneer-home"] {
  object-position: 60% 50%;
}

.inner-hero-media img[src*="14-enhanced-fabrication-saw"] {
  object-position: 54% 50%;
}

.inner-hero-media img[src*="15-maintained-quarry"] {
  object-position: 41% 50%;
}

.project-card img[src*="22-engraved-entry-sign"] {
  object-position: 50% 34%;
}

.project-card-tall img[src*="06-finished-carved-entry"],
.project-card-tall img[src*="19-finished-carved-garden-entry"] {
  object-fit: contain;
}

.product-selector {
  margin: 28px 0 48px;
  border-top: 6px solid var(--v3-blue);
  background: #e9e3d8;
}

.product-selector-heading {
  padding: clamp(38px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  column-gap: clamp(46px, 8vw, 118px);
  align-items: end;
}

.product-selector-heading .eyebrow {
  grid-column: 1;
}

.product-selector-heading h2 {
  max-width: 12ch;
  margin: 16px 0 0;
  grid-column: 1;
  font-family: var(--v3-display);
  font-size: clamp(2.8rem, 4.3vw, 4.8rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.product-selector-heading > p:last-child {
  margin: 0 0 4px;
  grid-column: 2;
  grid-row: 1 / 3;
  color: #57585b;
  font-size: 0.93rem;
  line-height: 1.76;
}

.product-selector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--v3-line);
  border-left: 1px solid var(--v3-line);
}

.product-selector-grid article {
  min-height: 310px;
  padding: 28px;
  border-right: 1px solid var(--v3-line);
  border-bottom: 1px solid var(--v3-line);
  background: var(--v3-warm-white);
}

.product-selector-grid article > span {
  color: var(--v3-blue);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-selector-grid h3 {
  margin: 58px 0 0;
  font-family: var(--v3-display);
  font-size: clamp(1.35rem, 1.9vw, 2.1rem);
  font-weight: 400;
  line-height: 1.02;
}

.product-selector-grid p {
  margin: 16px 0 0;
  color: #626366;
  font-size: 0.83rem;
  line-height: 1.62;
}

.product-selector-link {
  min-height: 72px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--v3-warm-white);
  background: var(--v3-black);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.product-selector-link:hover {
  color: var(--v3-orange);
}

.product-care-note {
  margin: 0;
  padding: 24px 30px;
  border-top: 1px solid var(--v3-line);
  color: #57585b;
  background: var(--v3-limestone);
  font-size: 0.8rem;
  line-height: 1.68;
}

.product-gallery-caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px 22px;
  color: var(--v3-warm-white);
  background: linear-gradient(180deg, transparent, rgba(27, 27, 29, 0.92));
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  pointer-events: none;
}

.gallery-item:focus-visible {
  outline: 3px solid var(--v3-blue);
  outline-offset: 4px;
}

.raw-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--v3-line);
  border-left: 1px solid var(--v3-line);
}

.raw-process-grid figure {
  margin: 0;
  border-right: 1px solid var(--v3-line);
  border-bottom: 1px solid var(--v3-line);
  background: var(--v3-warm-white);
}

.raw-process-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.raw-process-grid figcaption {
  min-height: 172px;
  padding: 26px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-content: center;
  column-gap: 10px;
}

.raw-process-grid figcaption > span {
  grid-row: 1 / 3;
  color: var(--v3-blue);
  font-size: 0.72rem;
  font-weight: 600;
}

.raw-process-grid strong {
  font-family: var(--v3-display);
  font-size: 1.25rem;
  font-weight: 400;
}

.raw-process-grid small {
  margin-top: 8px;
  color: #626366;
  font-size: 0.75rem;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .product-selector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .product-selector {
    margin-top: 20px;
  }

  .product-selector-heading {
    padding: 38px 24px 42px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-selector-heading .eyebrow,
  .product-selector-heading h2,
  .product-selector-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .product-selector-heading h2 {
    font-size: clamp(2.6rem, 11.5vw, 3.8rem);
  }

  .product-selector-grid,
  .raw-process-grid {
    grid-template-columns: 1fr;
  }

  .product-selector-grid article {
    min-height: 260px;
    padding: 26px 24px;
  }

  .product-selector-grid h3 {
    margin-top: 44px;
  }

  .product-selector-link {
    min-height: 84px;
    padding: 0 24px;
  }

  .product-care-note {
    padding: 22px 24px;
  }
}

/* ── Brand values ───────────────────────────────────────── */

.home-values {
  padding-bottom: 112px;
}

.home-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--v3-line);
  border-left: 1px solid var(--v3-line);
}

.home-value-card {
  min-width: 0;
  border-right: 1px solid var(--v3-line);
  border-bottom: 1px solid var(--v3-line);
  background: #fffdf8;
}

.home-value-media {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--v3-limestone);
}

.home-value-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 320ms ease;
}

.home-value-card:hover .home-value-media img {
  transform: scale(1.025);
}

.home-value-copy {
  position: relative;
  min-height: 300px;
  padding: 62px 30px 34px;
}

.home-value-icon {
  position: absolute;
  top: -38px;
  left: 28px;
  width: 76px;
  height: 76px;
  border: 6px solid #fffdf8;
  border-radius: 50%;
}

.home-value-copy > span {
  color: var(--v3-blue);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-value-copy h3 {
  max-width: 12ch;
  margin: 34px 0 0;
  font-family: var(--v3-display);
  font-size: clamp(1.55rem, 2.15vw, 2.45rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.home-value-copy p {
  max-width: 35ch;
  margin: 18px 0 0;
  color: #57585b;
  font-size: 0.88rem;
  line-height: 1.68;
}

@media (max-width: 1100px) {
  .home-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-value-card:last-child {
    grid-column: 1 / -1;
  }

  .home-value-card:last-child .home-value-media {
    aspect-ratio: 2 / 1;
  }
}

@media (max-width: 760px) {
  .home-values {
    width: calc(100% - 40px);
    padding: 84px 0;
  }

  .home-value-grid {
    grid-template-columns: 1fr;
  }

  .home-value-card:last-child {
    grid-column: auto;
  }

  .home-value-card:last-child .home-value-media {
    aspect-ratio: 16 / 9;
  }

  .home-value-copy {
    min-height: 270px;
    padding: 58px 24px 30px;
  }

  .home-value-icon {
    left: 22px;
    width: 72px;
    height: 72px;
  }
}
