/* HMCM — Hermanos Mendez Construction Management
   AEC consultancy: charcoal/ink, warm stone, copper accent.
   Photography-forward. Not a thin brochure. */

:root {
  --ink: #10100e;
  --charcoal: #171614;
  --graphite: #2a2824;
  --stone: #c9bfb0;
  --stone-2: #9a9184;
  --paper: #efe8dc;
  --paper-2: #e4dbce;
  --cream: #f7f2ea;
  --copper: #c45c26;
  --copper-deep: #9e4a1e;
  --copper-soft: #e8c4ae;
  --rule: #d5ccbf;
  --rule-dark: rgba(201, 191, 176, 0.2);
  --focus: #e08a55;
  --header-h: 4.65rem;
  --serif: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --sans: "Barlow", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --cond: "Barlow Condensed", "Barlow", sans-serif;
  --wrap: 1220px;
  --ease: 180ms ease;
}

@font-face {
  font-family: "Libre Baskerville";
  src: url("../assets/fonts/libre-baskerville-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Libre Baskerville";
  src: url("../assets/fonts/libre-baskerville-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../assets/fonts/barlow-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../assets/fonts/barlow-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../assets/fonts/barlow-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../assets/fonts/barlow-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../assets/fonts/barlow-condensed-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
img.page-banner__bg,
img.hero-full__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
a { color: inherit; }
address { font-style: normal; }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -5rem;
  z-index: 200;
  background: var(--copper);
  color: #fff;
  padding: 0.55rem 0.95rem;
  font-weight: 700;
  text-decoration: none;
}
.skip:focus { top: 0.75rem; }

.wrap {
  width: min(var(--wrap), calc(100% - 2.25rem - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-family: var(--cond);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}
.section--dark .eyebrow,
.hero-full .eyebrow { color: var(--copper-soft); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: auto;
  min-height: var(--header-h);
  padding-top: env(safe-area-inset-top, 0px);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  background: var(--charcoal);
  border-bottom: 1px solid var(--rule-dark);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(0,0,0,.28); }

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}
.logo-link img {
  height: 52px;
  width: auto;
  max-width: min(240px, 48vw);
  object-fit: contain;
  object-position: left center;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--stone);
  color: var(--cream);
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  cursor: pointer;
}
.nav-toggle-bars {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  margin: 5px auto;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 0.15rem;
  margin-left: auto;
}

.site-nav > a,
.nav-item > .nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.7rem;
  text-decoration: none;
  color: var(--stone);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  background: none;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
}
.site-nav > a:hover,
.nav-item > .nav-parent:hover,
.site-nav > a:focus-visible,
.nav-item > .nav-parent:focus-visible,
.site-nav a[aria-current="page"],
.nav-item.is-current > .nav-parent {
  color: var(--cream);
}

.nav-item { position: relative; }
.nav-item > .nav-parent::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.7;
}
.nav-caret {
  display: none !important;
  width: 0;
  min-width: 0;
  max-width: 0;
  height: 0;
  min-height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  flex: 0 0 0;
  border: 0;
  background: none;
  color: transparent;
  appearance: none;
  -webkit-appearance: none;
  pointer-events: none;
  visibility: hidden;
  position: absolute;
  font-size: 0;
}
.nav-caret::before {
  content: none;
  display: none;
}
.nav-item.is-open > .nav-caret,
.nav-caret:hover,
.nav-caret:focus-visible {
  color: var(--cream);
}

.nav-drop {
  position: absolute;
  top: calc(100% - 0.15rem);
  left: 0;
  min-width: 16.5rem;
  padding: 0.55rem 0;
  background: #221f1c;
  border: 1px solid var(--rule-dark);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  display: none;
  z-index: 90;
}
.nav-drop--wide {
  min-width: 36rem;
  display: none;
  grid-template-columns: 13.5rem 1fr;
  gap: 0;
  padding: 0;
}
.nav-item:hover > .nav-drop,
.nav-item:focus-within > .nav-drop,
.nav-item.is-open > .nav-drop {
  display: block;
}
.nav-item:hover > .nav-drop--wide,
.nav-item:focus-within > .nav-drop--wide,
.nav-item.is-open > .nav-drop--wide {
  display: grid;
}

.nav-drop a {
  display: block;
  padding: 0.48rem 1rem;
  color: var(--stone);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}
.nav-drop a:hover,
.nav-drop a:focus-visible { color: #fff; background: rgba(255,255,255,.04); }
.nav-drop a[aria-current="page"] { color: var(--copper-soft); }

.nav-drop-col {
  padding: 0.75rem 0 0.85rem;
}
.nav-drop-col + .nav-drop-col {
  border-left: 1px solid var(--rule-dark);
  background: #1c1a17;
}
.nav-drop-label {
  margin: 0.15rem 1rem 0.35rem;
  font-family: var(--cond);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-soft);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.45rem;
  padding-left: 0.75rem;
  border-left: 1px solid var(--rule-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.lang-switch a {
  color: var(--stone-2);
  text-decoration: none;
  padding: 0.2rem 0.15rem;
}
.lang-switch a[aria-current="true"] {
  color: var(--cream);
  box-shadow: inset 0 -2px 0 var(--copper);
}
.lang-switch .sep { color: var(--graphite); user-select: none; }

.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.55rem;
  padding: 0.58rem 0.95rem;
  background: var(--copper);
  color: #fff;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
  white-space: nowrap;
  transition: background var(--ease);
}
.btn-call:hover,
.btn-call:focus-visible { background: var(--copper-deep); color: #fff; }
.btn-call .call-short { display: none; }
.btn-call .call-full { display: inline; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 1.35rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.9rem;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--copper); color: #fff; }
.btn-primary:hover { background: var(--copper-deep); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(247,242,234,.45);
}
.btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.06); }
.btn-ink { background: var(--ink); color: var(--cream); }
.btn-ink:hover { background: var(--copper-deep); color: #fff; }

/* Hero: tall enough to land, not a full-monitor billboard */
.hero-full {
  position: relative;
  min-height: clamp(24rem, 58svh, 36rem);
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
  background: var(--ink);
}
.hero-full__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  background-size: cover;
  background-position: center 30%;
}
.hero-full::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16,16,14,.88) 0%, rgba(16,16,14,.55) 48%, rgba(16,16,14,.28) 100%),
    linear-gradient(180deg, rgba(16,16,14,.2) 0%, rgba(16,16,14,.72) 100%);
}
.hero-full .wrap {
  position: relative;
  z-index: 1;
  padding: 3.25rem 0 2.85rem;
}
.hero-full h1 {
  margin: 0 0 1.1rem;
  max-width: 24ch;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 2.4vw + 0.9rem, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.hero-position {
  margin: 0 0 0.85rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.12rem, 1.2vw + 0.7rem, 1.5rem);
  letter-spacing: -0.015em;
  color: var(--copper-soft);
  text-transform: none;
}
.hero-sub {
  margin: 0 0 1rem;
  max-width: 36rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(0.98rem, 0.8vw + 0.75rem, 1.15rem);
  color: var(--stone);
  text-transform: none;
}
.hero-lead {
  margin: 0 0 1.45rem;
  max-width: 38rem;
  font-size: 1.02rem;
  color: var(--stone);
}
.hero-lead a { color: #fff; text-underline-offset: 3px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 0.85rem;
  margin-bottom: 1.25rem;
}
.hero-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--stone-2);
}
.hero-tag {
  margin: 0 0 1rem;
  font-family: var(--cond);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
}

/* Page banner */
.page-banner {
  position: relative;
  min-height: 22rem;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  background: var(--ink);
  overflow: hidden;
}
.page-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-size: cover;
  background-position: center;
}
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16,16,14,.86) 0%, rgba(16,16,14,.45) 70%);
}
.page-banner .wrap {
  position: relative;
  z-index: 1;
  padding: 3.25rem 0 2.6rem;
}
.page-banner h1 {
  margin: 0;
  max-width: 20ch;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.18;
}
.page-banner .lead {
  margin: 0.9rem 0 0;
  max-width: 42rem;
  color: var(--stone);
  font-size: 1.08rem;
}

.breadcrumbs {
  margin: 0 0 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone-2);
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin: 0;
  padding: 0;
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  opacity: 0.5;
}
.breadcrumbs a { color: var(--stone); text-decoration: none; }
.breadcrumbs a:hover { color: #fff; }
.page-banner .breadcrumbs [aria-current="page"] { color: var(--cream); }

/* Sections */
.section { padding: 4.25rem 0; }
.section--tight { padding: 3.25rem 0; }
.section--dark { background: var(--charcoal); color: var(--cream); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--stone { background: var(--paper); }
.section--rule { border-bottom: 1px solid var(--rule); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: 1.75rem;
  align-items: end;
}
.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.22;
  max-width: 22ch;
}
.section-kicker {
  margin: 0 0 0.55rem;
  font-family: var(--cond);
  font-size: 0.88rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}
.section--dark .section-kicker,
.section--ink .section-kicker { color: var(--copper-soft); }
.section-intro {
  margin: 0;
  max-width: 36rem;
  color: var(--graphite);
}
.section--dark .section-intro,
.section--ink .section-intro { color: var(--stone); }

.link-more {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  color: var(--copper-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.12rem;
}
.section--dark .link-more,
.section--ink .link-more { color: var(--copper-soft); }
.link-more:hover { color: var(--ink); }
.section--dark .link-more:hover,
.section--ink .link-more:hover { color: #fff; }

/* 3 service tiles */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.tile {
  position: relative;
  min-height: 26rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: var(--graphite);
}
.tile__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 500ms ease;
}
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,16,14,.15) 20%, rgba(16,16,14,.88) 100%);
}
.tile:hover .tile__media,
.tile:focus-visible .tile__media { transform: scale(1.06); }
.tile__body {
  position: relative;
  z-index: 1;
  padding: 1.6rem 1.45rem 1.45rem;
}
.tile__index {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--cond);
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: var(--copper-soft);
}
.tile h3 {
  margin: 0 0 0.45rem;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}
.tile p {
  margin: 0;
  color: var(--stone);
  font-size: 0.98rem;
}
.tile .tile-go {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #fff;
  border-bottom: 1px solid var(--copper);
  padding-bottom: 0.12rem;
}

/* Two consulting markets */
.split-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.split-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 16rem;
  background: var(--charcoal);
  color: var(--cream);
  text-decoration: none;
  overflow: hidden;
}
.split-card__media {
  background-size: cover;
  background-position: center;
  min-height: 12rem;
  transition: transform 400ms ease;
}
.split-card:hover .split-card__media { transform: scale(1.05); }
.split-card__body { padding: 1.5rem 1.4rem; }
.split-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}
.split-card p { margin: 0; color: var(--stone); }

/* Other consulting chips / cards */
.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.mini-card {
  display: block;
  padding: 1.15rem 1.1rem 1.2rem;
  background: #fff;
  border: 1px solid var(--rule);
  text-decoration: none;
  min-height: 8.5rem;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.mini-card:hover,
.mini-card:focus-visible {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(16,16,14,.08);
}
.mini-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.mini-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--graphite);
}
.section--dark .mini-card {
  background: var(--graphite);
  border-color: transparent;
  color: var(--cream);
}
.section--dark .mini-card p { color: var(--stone); }
.section--dark .mini-card:hover { border-color: var(--copper); }

/* Specialties photo row */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.spec-card {
  position: relative;
  min-height: 18.5rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: var(--graphite);
}
.spec-card__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 500ms ease;
}
.spec-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,16,14,.05) 30%, rgba(16,16,14,.85) 100%);
}
.spec-card:hover .spec-card__media { transform: scale(1.07); }
.spec-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 1.2rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

/* Industries */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.ind-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 10.5rem;
  padding: 1.25rem 1.2rem 1.15rem;
  background: #fff;
  border: 1px solid var(--rule);
  text-decoration: none;
  transition: border-color var(--ease), transform var(--ease);
}
.ind-card:hover,
.ind-card:focus-visible {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.ind-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 400;
}
.ind-card p {
  margin: 0;
  color: var(--graphite);
  font-size: 0.92rem;
}
.ind-card .go {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--copper-deep);
}

/* Process / why hire */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.process {
  padding-top: 0.35rem;
  border-top: 2px solid var(--copper);
}
.process .num {
  display: block;
  margin-bottom: 0.65rem;
  font-family: var(--cond);
  letter-spacing: 0.16em;
  color: var(--copper-soft);
}
.process h3 {
  margin: 0 0 0.45rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}
.process p { margin: 0; color: var(--stone); font-size: 0.95rem; }

/* Area + contact strip */
.area-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.area-photo {
  min-height: 22rem;
  background-size: cover;
  background-position: center;
}
.contact-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2rem;
  align-items: start;
}
.phone-xl {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  text-decoration: none;
  letter-spacing: -0.02em;
  color: inherit;
  border-bottom: 1px solid transparent;
}
.phone-xl:hover { border-bottom-color: currentColor; }
.addr { line-height: 1.55; }
.map-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  border-bottom: 1px solid var(--copper);
  padding-bottom: 0.1rem;
}
.map-embed {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
  background: var(--paper-2);
}

/* Interior content */
.prose { max-width: 42rem; }
.prose p { margin: 0 0 1rem; }
.prose p:last-child { margin-bottom: 0; }
.prose a {
  color: var(--copper-deep);
  font-weight: 600;
  text-underline-offset: 3px;
}
.prose a:hover { color: var(--ink); }
.section--dark .prose a,
.section--ink .prose a { color: var(--copper-soft); }

.content-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 2.5rem;
  align-items: start;
}
.aside-box {
  padding: 1.35rem 1.25rem;
  background: var(--paper);
  border-top: 3px solid var(--copper);
}
.aside-box h2 {
  margin: 0 0 0.75rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  max-width: none;
}
.aside-box ul { list-style: none; margin: 0; padding: 0; }
.aside-box a {
  display: block;
  padding: 0.4rem 0;
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  font-weight: 600;
}
.aside-box a:hover { color: var(--copper-deep); }

.related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.related a {
  display: block;
  padding: 1.15rem 1.1rem;
  background: #fff;
  border: 1px solid var(--rule);
  text-decoration: none;
}
.related a:hover { border-color: var(--ink); }
.related h3 {
  margin: 0 0 0.35rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
}
.related p { margin: 0; font-size: 0.9rem; color: var(--graphite); }

.cta-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  align-items: center;
}
.cta-band h2 { max-width: 18ch; }

.hours-list { margin: 0; padding: 0; list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--stone);
  padding: 3rem 0 2rem;
  padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 0.85fr);
  gap: 1.75rem 1.4rem;
}
.footer-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.footer-legal {
  margin: 0.85rem 0 0.4rem;
  color: var(--cream);
  font-size: 0.92rem;
}
.footer-meta {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  color: var(--stone-2);
  line-height: 1.55;
}
.footer-meta a { color: var(--cream); text-decoration: none; }
.footer-meta a:hover { color: var(--copper-soft); }
.footer-note {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  color: #6f6a62;
  max-width: 28rem;
}
.footer-nav h2 {
  margin: 0 0 0.7rem;
  font-family: var(--cond);
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone-2);
  max-width: none;
}
.footer-nav ul { list-style: none; margin: 0; padding: 0; }
.footer-nav a {
  display: inline-block;
  padding: 0.18rem 0;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-nav a:hover { color: var(--copper-soft); }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--rule-dark);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #6f6a62;
}
.footer-bottom a { color: var(--stone); text-decoration: none; }

.photo-note {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: #8a8378;
}

/* Redirect notice */
.redirect-note { padding: 6rem 0; text-align: left; }


/* Proof strip + story headlines */
.proof {
  background: var(--ink);
  color: var(--cream);
  padding: 0;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.proof article {
  padding: 3rem 0;
  border-top: 1px solid var(--rule-dark);
}
.proof article + article {
  padding-left: 2.5rem;
  border-left: 1px solid var(--rule-dark);
}
.proof-figure {
  margin: 0 0 0.55rem;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.proof h2 {
  margin: 0;
  max-width: 16ch;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.25;
  color: var(--stone);
}
.story-head { max-width: 24rem; }
.position-line {
  margin: 1.15rem 0 0.35rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  max-width: 28rem;
  text-transform: none;
}
.section--dark .position-line,
.section--ink .position-line { color: var(--cream); }
.story-copy { margin-top: 1.25rem; }

/* Mobile */
@media (max-width: 1080px) {
  .tile-grid,
  .spec-grid,
  .process-grid,
  .mini-grid,
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-drop--wide {
    min-width: 22rem;
    grid-template-columns: 1fr;
  }
  .nav-drop-col + .nav-drop-col { border-left: 0; border-top: 1px solid var(--rule-dark); }
}

@media (max-width: 1100px) {
  :root { --header-h: 4.2rem; }
  .nav-toggle { display: block; order: 4; min-width: 44px; min-height: 44px; width: 44px; height: 44px; }
  .btn-call {
    order: 3;
    margin-left: 0.25rem;
    min-height: 44px;
    padding: 0.55rem 0.8rem;
    font-size: 0.78rem;
  }
  .btn-call .call-full { display: none; }
  .btn-call .call-short { display: inline; }
  .logo-link { flex: 1 1 auto; min-width: 0; }
  .logo-link img { height: 38px; max-width: min(154px, 40vw); }
  .lang-switch { order: 2; margin: 0; padding: 0 0.35rem; border: 0; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0.4rem 0 1.2rem;
    background: #1c1a17;
    border-bottom: 1px solid var(--rule-dark);
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - var(--header-h));
    overflow: auto;
  }
  .site-nav.is-open { display: flex; }
  .site-nav > a,
  .nav-item > .nav-parent {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 1.15rem;
    border-bottom: 1px solid var(--rule-dark);
    white-space: normal;
  }
  .nav-item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: stretch;
  }
  .nav-item > .nav-parent::after { content: none; }
  .nav-caret {
    display: inline-flex !important;
    position: static;
    width: 2.6rem;
    min-width: 2.6rem;
    max-width: none;
    height: auto;
    min-height: 2.7rem;
    padding: 0;
    margin: 0;
    overflow: visible;
    flex: 0 0 auto;
    background: transparent;
    color: var(--stone);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    appearance: none;
    -webkit-appearance: none;
    pointer-events: auto;
    visibility: visible;
    font-size: inherit;
    border: 0;
    border-bottom: 1px solid var(--rule-dark);
    border-left: 1px solid var(--rule-dark);
  }
  .nav-caret::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.8;
  }
  .nav-item > .nav-drop,
  .nav-item > .nav-drop--wide {
    grid-column: 1 / -1;
  }
  .nav-drop,
  .nav-drop--wide {
    position: static;
    display: none;
    min-width: 0;
    box-shadow: none;
    border: 0;
    background: #12110f;
  }
  .nav-item.is-open > .nav-drop { display: block; }
  .nav-item.is-open > .nav-drop--wide { display: grid; grid-template-columns: 1fr; }
  .lang-switch {
    margin: 0.75rem 1.15rem 0;
    padding: 0;
    border: 0;
  }

  .tile-grid,
  .split-cards,
  .spec-grid,
  .ind-grid,
  .process-grid,
  .mini-grid,
  .area-grid,
  .contact-strip,
  .content-grid,
  .related,
  .footer-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .proof article + article {
    padding-left: 0;
    border-left: 0;
  }
  .split-card { grid-template-columns: 1fr; }
  .tile, .spec-card { min-height: 18rem; }
  .hero-full { min-height: 22rem; }
  .hero-full .wrap { padding: 2.4rem 0 2.1rem; }
  .hero-full h1 { font-size: clamp(1.55rem, 7.2vw, 2.15rem); }
}

@media (min-width: 1101px) {
  .nav-caret {
    display: none !important;
    width: 0 !important;
    min-width: 0 !important;
    max-width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: none !important;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
  }
  .nav-caret::before {
    content: none !important;
    display: none !important;
  }
}

@media (min-width: 1101px) and (max-width: 1360px) {
  .site-nav > a,
  .nav-item > .nav-parent {
    padding: 0.55rem 0.45rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }
  .logo-link img { height: 48px; }
  .btn-call { font-size: 0.72rem; padding: 0.55rem 0.75rem; min-height: 44px; }
}


@media (max-height: 820px) {
  .hero-full { min-height: min(28rem, calc(100svh - var(--header-h))); }
  .hero-full .wrap { padding: 2.1rem 0 1.9rem; }
  .hero-full h1 { font-size: clamp(1.6rem, 3.2vw, 2.35rem); }
}


@media (min-width: 1101px) and (max-width: 1280px) {
  body { font-size: 1rem; }
  .logo-link img { height: 46px; max-width: min(210px, 42vw); }
}

@media (max-width: 520px) {
  .wrap {
    width: min(var(--wrap), calc(100% - 2.75rem - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)));
  }
  .header-inner { gap: 0.45rem; }
  .logo-link img { height: 34px; max-width: min(128px, 34vw); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .tile:hover .tile__media,
  .spec-card:hover .spec-card__media,
  .split-card:hover .split-card__media { transform: none; }
}


.sitemap-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem 1.5rem;
}
.sitemap-cols h2 {
  margin: 0 0 0.7rem;
  font-size: 1.25rem;
  max-width: none;
}
.sitemap-cols ul { list-style: none; margin: 0; padding: 0; }
.sitemap-cols a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.2rem 0;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.sitemap-cols a:hover { border-bottom-color: var(--copper); }
