/* Bronze Square — light advisory styles */
:root {
  --bg: #fbf9f6;
  --bg-elevated: #ffffff;
  --ink: #1a1512;
  --ink-soft: #3a322c;
  --muted: #7a6e64;
  --silver: #c9a882;
  --silver-deep: #a67c52;
  --slate: #8b6914;
  --bronze: #b07d4a;
  --bronze-deep: #8c5e32;
  --bronze-soft: #e8d5c0;
  --line: rgba(26, 21, 18, 0.07);
  --line-strong: rgba(26, 21, 18, 0.12);
  --accent: #b07d4a;
  --accent-soft: rgba(176, 125, 74, 0.11);
  --shadow: 0 20px 50px rgba(26, 21, 18, 0.07);
  --shadow-sm: 0 10px 28px rgba(26, 21, 18, 0.05);
  --max: 1200px;
  --header-h: 128px;
  --radius: 4px;
  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --text-xs: 0.8125rem;
  --text-sm: 0.9375rem;
  --text-base: 1.0625rem;
  --text-md: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: clamp(1.5rem, 2.2vw, 1.85rem);
  --text-2xl: clamp(1.85rem, 3vw, 2.35rem);
  --text-3xl: clamp(2.35rem, 4.2vw, 3.1rem);
  --leading-tight: 1.18;
  --leading-snug: 1.3;
  --leading-body: 1.7;
  --tracking-tight: -0.02em;
  --tracking-wide: 0.08em;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: var(--leading-body);
  letter-spacing: 0.005em;
  color: var(--ink-soft);
  background: var(--bg);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
ul, ol { margin: 0; padding: 0; }

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  z-index: 100;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  padding: 0.65rem 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 5;
  line-height: 1;
  padding: 0.15rem 0.35rem;
  border-radius: 12px;
  background: #ffffff;
}

.brand-logo {
  height: 52px;
  width: auto;
  max-width: min(280px, 62vw);
  object-fit: contain;
  object-position: left center;
  display: block;
}
@media (min-width: 900px) {
  .brand-logo { height: 58px; max-width: 320px; }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: var(--bg-elevated);
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.nav-toggle svg { width: 22px; height: 22px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.35rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 550;
  z-index: 2;
}
.nav-links a {
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--silver-deep);
}
.nav-links .btn { border-bottom: 0; margin-left: 0.35rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 650;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: filter 0.2s, transform 0.15s, background 0.2s;
}
.btn:hover { filter: brightness(1.12); }
.btn:active { transform: translateY(1px); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-secondary:hover {
  background: rgba(26, 31, 42, 0.04);
  filter: none;
  border-color: var(--slate);
}

/* Hero CTAs — refined corporate (sitewide .btn stays pill) */
.hero-actions .btn-hero {
  border-radius: 10px;
  padding: 0.95rem 1.55rem;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  box-shadow: 0 8px 22px rgba(61, 35, 20, 0.12);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.hero-actions .btn-hero:hover {
  filter: none;
  background: #3d2314;
  box-shadow: 0 10px 28px rgba(61, 35, 20, 0.2);
  transform: translateY(-1px);
}
.hero-actions .btn-hero-secondary {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid #d4c4b0;
  box-shadow: 0 4px 14px rgba(61, 35, 20, 0.06);
}
.hero-actions .btn-hero-secondary:hover {
  filter: none;
  background: #faf6f1;
  border-color: #c4a484;
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(61, 35, 20, 0.1);
}


/* Typography — generous line-heights, no glyph clipping */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  font-size: var(--text-xs);
  font-weight: 600;
  margin-bottom: 0.85rem;
  line-height: 1.4;
  padding-block: 0.1rem;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: var(--tracking-tight);
  color: var(--ink);
  overflow: visible;
  margin: 0 0 0.85rem;
  line-height: var(--leading-tight);
  padding-block: 0.05em;
}
h1 { font-size: var(--text-3xl); line-height: var(--leading-tight); font-weight: 600; }
h2 { font-size: var(--text-2xl); line-height: var(--leading-snug); font-weight: 600; }
h3 { font-size: var(--text-lg); line-height: var(--leading-snug); font-weight: 600; letter-spacing: -0.01em; }
.lead {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.65;
  max-width: 40rem;
  margin: 0;
  font-weight: 400;
}
.muted { color: var(--muted); }
.text-accent { color: var(--accent); }

/* Hero — single column / simple split with photo */
.hero {
  position: relative;
  padding: 3.75rem 0 3.25rem;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}
.hero h1 span { color: var(--slate); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.hero-meta div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.hero-meta div span {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
}

.hero-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: #efe6dc;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wave-deco {
  height: 40px;
  background: linear-gradient(90deg, rgba(184, 115, 51, 0.14), rgba(166, 124, 82, 0.07));
  border-block: 1px solid var(--line);
}

/* Sections */
.section { padding: 4rem 0; }
.section-head {
  max-width: 42rem;
  margin-bottom: 2.25rem;
}
.section-head p { color: var(--muted); margin: 0; line-height: 1.65; }
.section-head.wide { max-width: 52rem; }

.capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.cap-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cap-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}
.cap-num {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
  line-height: 1.4;
}
.cap-card h3 { margin-bottom: 0.5rem; }
.cap-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  border-color: var(--silver);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.service-card .svc-photo {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #efe6dc;
}
.service-card .svc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card .svc-body {
  padding: 1.4rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex-grow: 1;
}
.service-card h3 { margin: 0; }
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}
.service-card .svc-link {
  color: var(--slate);
  font-weight: 650;
  font-size: 0.9rem;
}
.service-card .svc-link:hover { color: var(--ink); }

.trust {
  background: #f3ebe3;
  border-block: 1px solid var(--line);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  text-align: center;
}
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.trust-item span {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.work-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: var(--shadow-sm);
}
.work-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.4;
}
.work-card h3 { margin: 0; font-size: 1.15rem; }
.work-card p { margin: 0; color: var(--muted); font-size: 0.94rem; line-height: 1.6; }

.phases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: phase;
}
.phase {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem;
  box-shadow: var(--shadow-sm);
}
.phase::before {
  counter-increment: phase;
  content: "0" counter(phase);
  display: block;
  font-family: var(--font-display);
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.4;
}
.phase h3 { font-size: 1.05rem; margin-bottom: 0.45rem; }
.phase p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.55; }

.cta-band {
  background: var(--ink);
  color: #e8ecf1;
  border-radius: 20px;
  padding: 2.5rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.cta-band h2 { color: #ffffff; margin-bottom: 0; }
.cta-band p {
  margin: 0.45rem 0 0;
  color: rgba(232, 236, 241, 0.72);
  max-width: 34rem;
  line-height: 1.6;
}
.cta-band .btn {
  background: #ffffff;
  color: var(--ink);
}
.cta-band .btn:hover { filter: brightness(0.96); }

/* Media band */
.media-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  align-items: center;
}
.media-band figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: #efe6dc;
}
.media-band figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-band.flip figure { order: 2; }
.media-band.flip .media-copy { order: 1; }

/* Page hero */
.page-hero {
  padding: 3.25rem 0 2.25rem;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}
.page-hero .lead { margin-top: 0.75rem; }

.page-hero-media {
  margin-top: 2rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 21 / 8;
  background: #efe6dc;
}
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.split p { color: var(--muted); line-height: 1.65; }
.split-prose p { margin: 0 0 1rem; }
.split-prose p:last-child { margin-bottom: 0; }

.market-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}
.market-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.market-list .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.55rem;
  flex-shrink: 0;
}
.market-list strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.15rem;
  line-height: 1.35;
}
.market-list span { color: var(--muted); font-size: 0.92rem; line-height: 1.55; }

/* Deep service blocks */
.svc-deep {
  display: grid;
  gap: 2.5rem;
}
.svc-block {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}
.svc-block:first-child { border-top: 0; padding-top: 0; }
.svc-block-meta .num {
  font-family: var(--font-display);
  color: var(--accent);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.svc-block h3 { margin-bottom: 0.5rem; }
.svc-block-body p { color: var(--muted); margin: 0 0 1rem; line-height: 1.65; }
.svc-block-body ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}
.svc-block-body li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}
.svc-block-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--silver-deep);
}

.sub-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 1.5rem;
}
.sub-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.sub-panel h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.sub-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Approach / cases */
.case-list {
  display: grid;
  gap: 1.35rem;
}
.case-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.75rem 1.6rem;
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.case-side .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
  line-height: 1.4;
}
.case-side h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.case-side .region {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}
.case-body p { color: var(--muted); margin: 0 0 0.85rem; line-height: 1.65; }
.case-body p:last-child { margin-bottom: 0; }
.case-outcome {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft) !important;
  font-size: 0.92rem;
}
.case-outcome strong { color: var(--ink); }

.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 48rem;
}
.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}
.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.contact-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { margin-bottom: 0.6rem; }
.contact-card p { color: var(--muted); margin: 0 0 1rem; line-height: 1.6; }
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate);
  font-weight: 650;
  border-bottom: 1px solid rgba(71, 85, 105, 0.35);
  padding-bottom: 0.15rem;
}
.contact-email:hover { color: var(--ink); border-color: var(--ink); }

.company-address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 0.25rem;
}
.company-address strong {
  color: var(--ink);
  font-weight: 600;
}

.map-placeholder {
  margin-top: 1.25rem;
  border-radius: 14px;
  border: 1px dashed var(--line-strong);
  background: #f3ebe3;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.map-photo {
  margin-top: 1.25rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  background: #efe6dc;
}
.map-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form {
  display: grid;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}
input, select, textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  line-height: 1.4;
}
input::placeholder, textarea::placeholder { color: var(--muted); }
textarea { min-height: 140px; resize: vertical; }
.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: #ffffff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.footer-brand .footer-logo {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 10px;
  padding: 0.35rem;
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
  color: var(--ink);
  line-height: 1.35;
}
.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 22rem;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.85rem;
  line-height: 1.4;
}
.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  padding: 0.2rem 0;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .split,
  .contact-grid,
  .case-card,
  .svc-block,
  .media-band {
    grid-template-columns: 1fr;
  }
  .media-band.flip figure,
  .media-band.flip .media-copy { order: unset; }
  .capabilities,
  .phases,
  .trust-row,
  .sub-panels {
    grid-template-columns: 1fr 1fr;
  }
  .brand-logo { height: 72px; max-width: min(260px, 58vw); }
  .page-hero-media { aspect-ratio: 16 / 9; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem;
    background: #ffffff;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a {
    padding: 0.75rem 0.85rem;
    border-bottom: 0;
    border-radius: 8px;
  }
  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    background: rgba(26, 31, 42, 0.04);
    border-bottom-color: transparent;
  }
  .nav-links .btn { margin: 0.5rem 0 0; width: 100%; }

  .service-grid,
  .work-grid,
  .capabilities,
  .phases,
  .trust-row,
  .sub-panels,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 2.25rem; }
  .cta-band { padding: 1.75rem 1.35rem; }
  .brand-logo { height: 68px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


/* —— Site search —— */
.search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: auto;
  margin-right: 0.35rem;
  border: 1px solid var(--line, #d8dde6);
  border-radius: 999px;
  background: #fff;
  color: var(--ink, #1a2332);
  cursor: pointer;
}
.search-toggle:hover,
.search-toggle[aria-expanded="true"] {
  border-color: var(--slate, #4a5568);
  color: var(--slate, #4a5568);
}
.search-toggle svg { width: 18px; height: 18px; }

.site-search {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(15, 23, 42, 0.45);
  padding: 4.5rem 1rem 2rem;
}
.site-search[hidden] { display: none !important; }
.site-search-panel {
  background: #fff;
  border: 1px solid var(--line, #d8dde6);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
  padding: 1.1rem 1.25rem 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}
.site-search-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted, #64748b);
  margin-bottom: 0.55rem;
}
.site-search-row {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.site-search-input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line, #d8dde6);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font: inherit;
  font-size: 1rem;
  color: var(--ink, #1a2332);
  background: #faf6f1;
}
.site-search-input:focus {
  outline: 2px solid rgba(30, 64, 175, 0.35);
  outline-offset: 1px;
  background: #fff;
}
.site-search-close {
  border: 0;
  background: transparent;
  color: var(--muted, #64748b);
  font: inherit;
  font-size: 0.92rem;
  cursor: pointer;
  padding: 0.4rem 0.55rem;
  white-space: nowrap;
}
.site-search-close:hover { color: var(--ink, #1a2332); }
.site-search-results {
  margin-top: 0.9rem;
  max-height: min(50vh, 360px);
  overflow: auto;
}
.site-search-hit {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
}
.site-search-hit:hover,
.site-search-hit:focus {
  background: #f3ebe3;
  border-color: var(--line, #d8dde6);
  outline: none;
}
.site-search-hit strong {
  display: block;
  font-size: 0.98rem;
  color: var(--ink, #1a2332);
  margin-bottom: 0.2rem;
}
.site-search-hit span {
  display: block;
  font-size: 0.88rem;
  color: var(--muted, #64748b);
  line-height: 1.45;
}
.site-search-empty,
.site-search-hint {
  padding: 0.65rem 0.35rem;
  font-size: 0.9rem;
  color: var(--muted, #64748b);
}

@media (max-width: 860px) {
  .search-toggle {
    margin-left: 0;
    order: 2;
  }
  .nav-toggle { order: 3; }
  .brand { order: 1; }
  .nav { display: flex; flex-wrap: wrap; align-items: center; }
}


/* —— AI spotlight (standalone prominence) —— */
.ai-spotlight {
  margin: 0;
  padding: 3.5rem 0;
  background:
    linear-gradient(135deg, #2a1810 0%, #4a2c1a 55%, #6b4423 100%);
  color: #e2e8f0;
}
.ai-spotlight .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}
.ai-spotlight .eyebrow {
  color: #d4b896;
  margin-bottom: 0.75rem;
}
.ai-spotlight h2 {
  color: #ffffff;
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  line-height: 1.2;
}
.ai-spotlight .lead {
  color: #cbd5e1;
  max-width: 38rem;
  margin: 0 0 1.35rem;
}
.ai-spotlight ul {
  margin: 0 0 1.75rem;
  padding-left: 1.15rem;
  color: #cbd5e1;
}
.ai-spotlight li { margin: 0.35rem 0; }
.ai-spotlight .btn {
  background: #ffffff;
  color: #2a1810;
  border-color: transparent;
}
.ai-spotlight .btn:hover { filter: brightness(0.95); }
.ai-spotlight .btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.35);
  margin-left: 0.65rem;
}
.ai-spotlight .btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  filter: none;
}
.ai-spotlight-media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
}
.ai-spotlight-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.ai-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; align-items: center; }

.ai-page-hero {
  background:
    linear-gradient(180deg, #2a1810 0%, #4a2c1a 100%);
  color: #e2e8f0;
  padding: 4rem 0 3.25rem;
}
.ai-page-hero .eyebrow { color: #d4b896; }
.ai-page-hero h1 { color: #ffffff; }
.ai-page-hero .lead { color: #cbd5e1; max-width: 42rem; }
.ai-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.ai-pillar {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.ai-pillar h3 { margin: 0 0 0.5rem; font-size: 1.08rem; }
.ai-pillar p { margin: 0; color: var(--muted); font-size: 0.95rem; }

@media (max-width: 860px) {
  .ai-spotlight .wrap { grid-template-columns: 1fr; }
  .ai-spotlight .btn-ghost { margin-left: 0; }
  .ai-pillars { grid-template-columns: 1fr; }
}


/* ========== Typography + image scale refresh (2026-09-25) ========== */
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.btn {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25;
}
.btn-hero, .hero-actions .btn-hero, .hero .btn {
  font-size: var(--text-sm);
  font-weight: 600;
}

/* Larger imagery sitewide */
.hero-photo,
.hero-media,
.page-hero-media,
.ai-spotlight-media,
.mgmt-feature-media {
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
}
.hero-photo img,
.hero-media img {
  width: 100%;
  height: auto;
  min-height: 28rem;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.page-hero-media img {
  width: 100%;
  min-height: 18rem;
  max-height: 28rem;
  object-fit: cover;
  aspect-ratio: 21 / 9;
}
.service-card .svc-photo img,
.service-card .svc-photo {
  aspect-ratio: 16 / 10;
}
.service-card .svc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 12.5rem;
}
.ai-spotlight-media img,
.mgmt-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* AI primary block — more visual weight */
.ai-spotlight--primary {
  margin: 0 0 2.75rem;
  padding: 4rem 0;
}
.ai-spotlight--primary .wrap {
  gap: 3rem;
}
.ai-spotlight--primary h2 {
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  max-width: 18ch;
}
.ai-spotlight--primary .lead {
  color: #cbd5e1;
  font-size: var(--text-md);
  max-width: 38rem;
}

/* Management second feature */
.mgmt-feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.25rem;
  align-items: center;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  margin: 0 0 3rem;
}
.mgmt-feature-body {
  padding: 0.75rem 1rem 0.75rem 0.25rem;
}
.mgmt-feature-body h3 {
  font-size: var(--text-xl);
  margin-bottom: 0.75rem;
}
.mgmt-feature-body p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: var(--leading-body);
}
.mgmt-feature-body ul {
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}
.mgmt-feature-body li { margin: 0.3rem 0; }

.secondary-head {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.service-grid--secondary {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card--compact {
  box-shadow: none;
}
.service-card--compact h3 {
  font-size: 1.1rem;
}
.service-card--compact p {
  font-size: var(--text-sm);
  line-height: 1.55;
}
.service-card--compact .svc-photo img {
  min-height: 10.5rem;
}

.offer-primary {
  padding-top: 1rem;
}

@media (max-width: 900px) {
  .mgmt-feature { grid-template-columns: 1fr; }
  .service-grid--secondary { grid-template-columns: 1fr; }
  .hero-photo img, .hero-media img { min-height: 18rem; }
  .ai-spotlight-media img, .mgmt-feature-media img { min-height: 16rem; }
}

/* Type scale lock */
.hero h1 { font-size: var(--text-3xl); line-height: var(--leading-tight); font-weight: 600; letter-spacing: var(--tracking-tight); }
.section-head h2, .page-hero h1 { font-family: var(--font-display); }
.nav-links a, .footer a { font-family: var(--font-body); }
.svc-block-body, .service-card p, .cap-card p { font-size: var(--text-base); line-height: var(--leading-body); }
.svc-block-meta h3, .service-card h3 { font-family: var(--font-display); font-weight: 600; }


/* ========== Visual polish pass 2026-09-25e ========== */

/* 1) Header CTA — smaller type so it fits the pill cleanly */
.nav-links .btn,
.nav-links a.btn {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1.15;
  padding: 0.42rem 0.9rem;
  white-space: nowrap;
  border-radius: 999px;
  border-bottom: none !important;
  align-self: center;
  max-height: 2.2rem;
  box-shadow: none;
}

.nav-links a:not(.btn) {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
  padding: 0.35rem 0;
}

.site-header {
  min-height: 110px;
  padding: 0.65rem 0;
}

.brand-logo {
  height: 88px !important;
  width: auto;
  max-width: min(320px, 62vw) !important;
}

/* 2) Type + spacing harmony */
body {
  font-size: 1.05rem;
  line-height: 1.65;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.hero h1,
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 3.8vw, 2.75rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
  font-weight: 600;
}

.section-head h2,
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.95rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.service-card h3,
.svc-body h3,
h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
  font-weight: 600;
}

.hero .lead,
.lead,
.section-head p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--muted);
}

.section {
  padding: 4rem 0;
}

.section-head {
  margin-bottom: 1.85rem;
  max-width: 40rem;
}

/* Peer service cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg-elevated, #fff);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(26, 31, 42, 0.05);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 14px 34px rgba(26, 31, 42, 0.08);
  transform: translateY(-2px);
}

.service-card .svc-photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #efe6dc;
}

.service-card .svc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 0;
}

.service-card .svc-body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.4rem;
}

.service-card .svc-body p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--muted);
  flex: 1;
}

.service-card .svc-link {
  margin-top: 0.75rem;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: none;
}

/* Buttons — proportional sitewide */
.btn {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.25;
  padding: 0.68rem 1.15rem;
  letter-spacing: 0.01em;
}

.hero-actions .btn-hero,
.hero-actions a.btn-hero {
  font-size: 0.9rem;
  padding: 0.78rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
}

.hero-actions .btn-hero-secondary,
.hero-actions a.btn-hero-secondary {
  font-size: 0.9rem;
  padding: 0.78rem 1.25rem;
}

/* Page heroes */
.page-hero {
  padding: 3rem 0 2.25rem;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.18;
}

.page-hero-media,
.page-hero .hero-photo {
  margin-top: 1.6rem;
  border-radius: 16px;
  overflow: hidden;
}

.page-hero-media img,
.page-hero .hero-photo img {
  width: 100%;
  min-height: 15rem;
  max-height: 22rem;
  object-fit: cover;
}

/* Footer calm */
.site-footer,
.footer {
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Soften leftover ranking CSS if any remnant classes remain */
.ai-spotlight--primary {
  padding: 3rem 0;
}
.ai-spotlight--primary h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.95rem);
  max-width: none;
}

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

@media (max-width: 640px) {
  .service-grid { grid-template-columns: 1fr; }
  .nav-links .btn,
  .nav-links a.btn {
    max-height: none;
    width: 100%;
    justify-content: center;
    padding: 0.7rem 1rem;
    font-size: 0.875rem;
  }
  .section { padding: 3rem 0; }
}

/* ========== Header: logo row + nav row beneath ========== */
.site-header {
  min-height: 0;
  padding: 0.55rem 0 0.45rem;
  display: block;
}

.header-stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  width: 100%;
}

.header-logo-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  width: 100%;
}

.header-logo-row .brand {
  position: static;
  left: auto;
  top: auto;
  transform: none;
  z-index: 6;
  background: #ffffff;
  padding: 0.15rem 0.4rem;
}

.brand-logo {
  height: 72px !important;
  width: auto !important;
  max-width: min(300px, 70vw) !important;
  object-fit: contain;
  object-position: center center;
}

.header-logo-row .search-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  order: 0;
  z-index: 7;
}

.header-logo-row .nav-toggle {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  order: 0;
  z-index: 7;
}

.site-header .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.15rem 1.1rem;
  margin: 0;
  padding: 0.35rem 0 0.55rem;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  font-weight: 550;
  z-index: 4;
}

.site-header .nav-links .btn {
  margin-left: 0.25rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.8125rem;
}

@media (min-width: 721px) {
  .header-logo-row .nav-toggle { display: none; }
  .site-header .nav-links { display: flex; }
}

@media (max-width: 720px) {
  .header-logo-row { min-height: 64px; }
  .brand-logo {
    height: 58px !important;
    max-width: min(220px, 55vw) !important;
  }
  .header-logo-row .nav-toggle {
    display: inline-flex;
  }
  .site-header .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    border-top: 1px solid var(--line);
    padding: 0.75rem 0 0.5rem;
  }
  .site-header .nav-links.is-open { display: flex; }
  .site-header .nav-links a {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--line);
  }
  .site-header .nav-links .btn { margin: 0.5rem 0 0; width: 100%; }
}

/* ===== Motion & prestige layer ===== */
@media (prefers-reduced-motion: no-preference) {
  .hero-photo {
    position: relative;
  }
  .hero-photo img,
  .page-hero-media img,
  .ken-burns img {
    animation: kenBurns 22s ease-in-out infinite alternate;
    transform-origin: center center;
    will-change: transform;
  }
  @keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.08) translate(-1.5%, -1%); }
  }

  .hero-mesh {
    position: absolute;
    inset: -20% -10% auto;
    height: 70%;
    pointer-events: none;
    z-index: 0;
    background:
      radial-gradient(ellipse 50% 60% at 15% 40%, rgba(176, 125, 74, 0.14), transparent 60%),
      radial-gradient(ellipse 40% 50% at 85% 20%, rgba(232, 213, 192, 0.55), transparent 55%),
      radial-gradient(ellipse 35% 40% at 60% 80%, rgba(176, 125, 74, 0.08), transparent 50%);
    animation: meshDrift 18s ease-in-out infinite alternate;
  }
  @keyframes meshDrift {
    0% { transform: translate(0, 0) scale(1); opacity: 0.9; }
    100% { transform: translate(-2%, 3%) scale(1.05); opacity: 1; }
  }

  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .reveal.is-in {
    opacity: 1;
    transform: none;
  }
  .reveal-delay-1 { transition-delay: 0.08s; }
  .reveal-delay-2 { transition-delay: 0.16s; }
  .reveal-delay-3 { transition-delay: 0.24s; }

  .cap-card, .service-card, .work-card, .phase, .ai-pillar, .sub-panel {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  }
  .cap-card:hover, .service-card:hover, .work-card:hover, .phase:hover, .ai-pillar:hover, .sub-panel:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(176, 125, 74, 0.28);
  }

  .btn {
    transition: filter 0.2s, transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s, box-shadow 0.25s;
  }
  .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(26, 21, 18, 0.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo img, .page-hero-media img, .ken-burns img, .hero-mesh {
    animation: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

.hero { position: relative; overflow: hidden; }
.hero .wrap { position: relative; z-index: 1; }
.hero-photo { overflow: hidden; }

.prestige-band {
  background: linear-gradient(180deg, #fff 0%, #f7f2eb 100%);
  border-block: 1px solid var(--line);
}
.prestige-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.prestige-stat {
  text-align: center;
  padding: 1.5rem 1rem;
}
.prestige-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  color: var(--bronze-deep);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.prestige-stat span {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

.flagship-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--bronze-deep);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.flagship-label::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--bronze);
  box-shadow: 0 0 0 3px rgba(176, 125, 74, 0.2);
}

.rich-prose {
  max-width: 40rem;
}
.rich-prose p { margin: 0 0 1.1rem; line-height: 1.75; color: var(--ink-soft); }
.rich-prose p:last-child { margin-bottom: 0; }

.offer-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}
.offer-chip {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #fff;
  font-size: 0.85rem;
  font-weight: 550;
  color: var(--ink-soft);
}

@media (max-width: 800px) {
  .prestige-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Soften AI dark panels toward warm bronze elegance (still light site overall) */
.ai-spotlight {
  background: linear-gradient(135deg, #2f2118 0%, #4a3220 55%, #6b4a2e 100%) !important;
}
.ai-page-hero {
  background: linear-gradient(180deg, #2f2118 0%, #4a3220 100%) !important;
}


/* ========== Bronze Square DISTINCT identity layer (vs Silver Sail) ==========
   Full-bleed cinema hero, square motifs, Cormorant+Outfit, framed cards.
   ======================================================================== */

.hero--cinema {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: #1a1512;
}

.hero--cinema .hero-cinema-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: 0 !important;
}

.hero--cinema .hero-cinema-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 40%;
  aspect-ratio: auto;
  display: block;
}

.hero-cinema-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(18, 24, 36, 0.84) 0%, rgba(18, 24, 36, 0.58) 40%, rgba(18, 24, 36, 0.22) 68%, rgba(18, 24, 36, 0.38) 100%),
    linear-gradient(0deg, rgba(18, 24, 36, 0.52) 0%, transparent 48%);
}

.hero-square-motif {
  position: absolute;
  z-index: 2;
  right: clamp(1.5rem, 6vw, 5rem);
  top: 18%;
  width: min(180px, 22vw);
  height: min(180px, 22vw);
  border: 1px solid rgba(201, 168, 130, 0.28);
  opacity: 0.55;
  pointer-events: none;
}
.hero-square-motif::before,
.hero-square-motif::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(201, 168, 130, 0.28);
}
.hero-square-motif::before {
  inset: 10px;
}
.hero-square-motif::after {
  inset: 22px;
  border-color: rgba(176, 125, 74, 0.35);
}

.hero-cinema-copy {
  position: relative;
  z-index: 3;
  max-width: 42rem;
  padding: clamp(3.5rem, 10vh, 6.5rem) 0 clamp(3rem, 7vh, 5rem);
  margin-right: auto;
}

.hero--cinema h1 {
  color: #fbf9f6;
  font-size: clamp(2.4rem, 5.2vw, 3.65rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 1.1rem;
  max-width: 14ch;
}
.hero--cinema h1 span {
  color: #e8c9a0;
  font-style: italic;
  font-weight: 500;
}

.eyebrow--on-dark {
  color: #d4b896 !important;
}
.lead--on-dark {
  color: rgba(251, 249, 246, 0.88) !important;
  max-width: 38rem;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
}
.flagship-label--on-dark {
  background: rgba(232, 213, 192, 0.14) !important;
  color: #e8c9a0 !important;
  border: 1px solid rgba(201, 168, 130, 0.35);
}

.btn-hero-ghost {
  background: transparent !important;
  color: #fbf9f6 !important;
  border: 1px solid rgba(251, 249, 246, 0.55) !important;
  box-shadow: none !important;
}
.btn-hero-ghost:hover {
  background: rgba(251, 249, 246, 0.1) !important;
  border-color: #fbf9f6 !important;
}

.offer-strip--on-dark .offer-chip {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(251, 249, 246, 0.22);
  color: #f3ebe3;
  border-radius: 2px;
}

/* Square motif divider (replaces wave) */
.square-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.75rem 0 0.25rem;
}
.square-divider span {
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--bronze);
  background: transparent;
  transform: rotate(0deg);
}
.square-divider span:nth-child(2) {
  width: 11px;
  height: 11px;
  background: var(--accent-soft);
  border-color: var(--bronze-deep);
}

/* Prestige band — framed square cells */
.prestige-band--square {
  background: #fff !important;
  border-block: none !important;
  position: relative;
}
.prestige-band--square::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(var(--max), calc(100% - 2.5rem));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bronze-soft), transparent);
}
.prestige-stats--framed {
  gap: 0 !important;
  border: 1px solid var(--line-strong);
  background: var(--bg);
}
.prestige-stats--framed .prestige-stat {
  border-right: 1px solid var(--line);
  padding: 1.85rem 1.25rem;
  position: relative;
}
.prestige-stats--framed .prestige-stat:last-child { border-right: none; }
.prestige-stats--framed .prestige-stat::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--bronze);
  border-left: 1px solid var(--bronze);
  opacity: 0.55;
}

/* Atelier rail — vertical numbered band (not SS card grid) */
.atelier-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: #fff;
}
.atelier-item {
  position: relative;
  padding: 2.25rem 1.75rem 2.4rem;
  border-right: 1px solid var(--line);
  background: transparent;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.atelier-item:last-child { border-right: none; }
.atelier-item:hover {
  background: linear-gradient(180deg, rgba(232, 213, 192, 0.22), transparent 70%);
  transform: none !important;
  box-shadow: none !important;
  border-color: var(--line) !important;
}
.atelier-mark {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 14px;
  height: 14px;
  border: 1px solid var(--bronze);
  opacity: 0.5;
}
.atelier-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--bronze);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.atelier-item h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
  letter-spacing: -0.015em;
}
.atelier-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Service / gallery cards — square frames, thin bronze hairline */
.atelier-gallery .service-card,
.service-grid.atelier-gallery .service-card {
  border-radius: 0 !important;
  border: 1px solid var(--line-strong) !important;
  box-shadow: none !important;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.atelier-gallery .service-card:hover {
  border-color: var(--bronze) !important;
  transform: none !important;
  box-shadow: 0 0 0 1px var(--bronze-soft) !important;
}
.atelier-gallery .service-card .svc-photo {
  border-radius: 0 !important;
  aspect-ratio: 5 / 4 !important;
}
.atelier-gallery .service-card .svc-photo img {
  min-height: 14rem;
  aspect-ratio: 5 / 4;
}
.atelier-gallery .svc-body {
  padding: 1.35rem 1.35rem 1.5rem;
  border-top: 1px solid var(--line);
  position: relative;
}
.atelier-gallery .svc-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--bronze);
}

/* Work cards / phases — square, hairline */
.work-card, .phase {
  border-radius: 2px !important;
  border: 1px solid var(--line-strong) !important;
  box-shadow: none !important;
  background: #fff;
}
.work-card:hover, .phase:hover {
  border-color: rgba(176, 125, 74, 0.45) !important;
  transform: none !important;
}

/* Page heroes — inset square frame media */
.page-hero-media,
.page-hero .hero-photo {
  border-radius: 0 !important;
  border: 1px solid var(--line-strong);
  box-shadow: inset 0 0 0 6px #fff, 0 0 0 1px var(--bronze-soft);
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: -0.028em;
}

/* Section rhythm — more air, ornamental eyebrow */
.section {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.section-head .eyebrow::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-left: 0.65rem;
  vertical-align: middle;
  background: var(--bronze);
}

/* CTA band — square corners + bronze frame + readable ink on light panel */
.cta-band {
  border-radius: 0 !important;
  border: 1px solid var(--bronze) !important;
  background: linear-gradient(135deg, #fff 0%, #f7f0e6 100%) !important;
  box-shadow: 8px 8px 0 rgba(176, 125, 74, 0.12) !important;
  color: var(--ink) !important;
}
.cta-band h2 { color: var(--ink) !important; }
.cta-band p { color: var(--ink-soft) !important; }
.cta-band .btn {
  background: var(--bronze-deep) !important;
  color: #fff !important;
  border-color: var(--bronze-deep) !important;
}
.cta-band .btn:hover { filter: brightness(1.06); }

/* Buttons — slightly squarer */
.btn, .nav-links .btn, .nav-links a.btn {
  border-radius: 3px !important;
}

/* Cap-card leftovers (inner pages) */
.cap-card {
  border-radius: 2px !important;
  border: 1px solid var(--line-strong);
  box-shadow: none !important;
}

/* Tuned motion — slower Ken Burns, different path; cinema parallax target */
@media (prefers-reduced-motion: no-preference) {
  .hero--cinema .hero-cinema-media img,
  .ken-burns img {
    animation: bronzePan 28s ease-in-out infinite alternate;
  }
  @keyframes bronzePan {
    0% { transform: scale(1.02) translate(0, 0); }
    100% { transform: scale(1.12) translate(-2.2%, 1.2%); }
  }
  .reveal {
    transform: translateY(28px) scale(0.985);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.is-in {
    transform: none;
  }
  .atelier-item, .atelier-gallery .service-card, .work-card, .phase {
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease !important;
  }
}

@media (max-width: 900px) {
  .hero--cinema { min-height: min(88vh, 720px); align-items: flex-end; }
  .hero-square-motif { opacity: 0.35; top: 12%; right: 1rem; }
  .atelier-rail { grid-template-columns: 1fr; }
  .atelier-item { border-right: none; border-bottom: 1px solid var(--line); }
  .atelier-item:last-child { border-bottom: none; }
  .prestige-stats--framed { grid-template-columns: 1fr 1fr; }
  .prestige-stats--framed .prestige-stat:nth-child(2n) { border-right: none; }
  .prestige-stats--framed .prestige-stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (prefers-reduced-motion: reduce) {
  .hero--cinema .hero-cinema-media img { animation: none !important; }
}


/* Hero network overlay — expanded SVG nodes/lines over skyline */
.hero-network {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}
.hero-network-svg {
  width: 100%;
  height: 100%;
  opacity: 0.9;
}
.hn-lines .hn-line {
  stroke: rgba(232, 201, 160, 0.34);
  stroke-width: 1.1;
}
.hn-lines .hn-line--soft {
  stroke: rgba(255, 248, 239, 0.2);
  stroke-width: 0.85;
}
.hn-nodes .hn-node {
  fill: url(#hn-node-core);
  stroke: rgba(255, 248, 239, 0.65);
  stroke-width: 0.85;
  transform-box: fill-box;
  transform-origin: center;
}

/* Ambient breathing / glow — stronger scale & glow, staggered phases */
@media (prefers-reduced-motion: no-preference) {
  .hn-nodes .hn-node--a {
    animation: hnPulse 5.6s ease-in-out infinite;
  }
  .hn-nodes .hn-node--b {
    animation: hnPulse 6.4s ease-in-out 0.7s infinite;
  }
  .hn-nodes .hn-node--c {
    animation: hnPulse 7.2s ease-in-out 1.4s infinite;
  }
  .hn-nodes .hn-node--d {
    animation: hnPulse 5.2s ease-in-out 0.35s infinite;
  }
  .hn-nodes .hn-node--e {
    animation: hnPulse 6.8s ease-in-out 1.1s infinite;
  }
  .hn-nodes .hn-node--f {
    animation: hnPulse 7.8s ease-in-out 1.9s infinite;
  }
  .hn-lines .hn-line {
    animation: hnLineShimmer 9s ease-in-out infinite;
  }
  .hn-lines .hn-line--soft {
    animation: hnLineShimmer 11s ease-in-out 1.5s infinite;
  }
  @keyframes hnPulse {
    0%, 100% {
      opacity: 0.55;
      transform: scale(0.85);
      filter: drop-shadow(0 0 2px rgba(232, 201, 160, 0.2));
    }
    50% {
      opacity: 1;
      transform: scale(1.25);
      filter: drop-shadow(0 0 10px rgba(232, 201, 160, 0.85)) drop-shadow(0 0 20px rgba(255, 248, 239, 0.5)) drop-shadow(0 0 28px rgba(176, 125, 74, 0.35));
    }
  }
  @keyframes hnLineShimmer {
    0%, 100% { stroke-opacity: 0.45; }
    50% { stroke-opacity: 1; }
  }
}

@media (prefers-reduced-motion: reduce) {
  .hn-nodes .hn-node,
  .hn-lines .hn-line {
    animation: none !important;
    opacity: 0.85;
    transform: none;
    filter: none;
  }
}

@media (max-width: 900px) {
  .hero-network-svg {
    width: 100%;
    opacity: 0.68;
  }
  .hero-square-motif { opacity: 0.22; }
}


/* ===== Mobile harden 20260925m ===== */
html {
  overflow-x: clip;
}
body {
  overflow-x: clip;
  max-width: 100vw;
}
img, svg, video {
  max-width: 100%;
  height: auto;
}
.hero-network-svg {
  max-width: none; /* override global img/svg max-width for full-bleed overlay */
  height: 100%;
}
.contact-address,
.footer-col .muted,
.site-footer address {
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}
.contact-email {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 1024px) {
  .hero-cinema-copy {
    max-width: min(42rem, 100%);
    padding-top: clamp(2.5rem, 8vh, 5rem);
    padding-bottom: clamp(2.25rem, 6vh, 4rem);
  }
  .hero--cinema h1 {
    max-width: 16ch;
    font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  }
  .hero-actions {
    flex-wrap: wrap;
  }
  .hero-actions .btn {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .wrap {
    width: min(var(--max), calc(100% - 1.75rem));
  }
  .hero--cinema {
    min-height: min(86vh, 680px);
    align-items: flex-end;
  }
  .hero-network-svg {
    opacity: 0.62;
  }
  .hero-cinema-veil {
    background:
      linear-gradient(180deg, rgba(18, 24, 36, 0.55) 0%, rgba(18, 24, 36, 0.72) 45%, rgba(18, 24, 36, 0.88) 100%),
      linear-gradient(105deg, rgba(18, 24, 36, 0.78) 0%, rgba(18, 24, 36, 0.35) 70%, transparent 100%);
  }
  .hero-square-motif {
    display: none; /* avoids competing with denser network on tablet/phone */
  }
  .offer-strip {
    gap: 0.4rem;
  }
  .offer-chip {
    font-size: 0.78rem;
    padding: 0.38rem 0.7rem;
  }
  .contact-card {
    padding: 1.35rem 1.15rem;
  }
  .contact-address {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

@media (max-width: 375px) {
  .wrap {
    width: calc(100% - 1.25rem);
  }
  .brand-logo {
    height: 52px !important;
    max-width: min(200px, 52vw) !important;
  }
  .header-logo-row { min-height: 58px; }
  .hero--cinema {
    min-height: min(84vh, 640px);
  }
  .hero--cinema h1 {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
    max-width: 12ch;
  }
  .lead--on-dark {
    font-size: 1rem;
  }
  .hero-network-svg {
    opacity: 0.52;
  }
  /* Keep pulse visible but less aggressive on tiny screens */
  @media (prefers-reduced-motion: no-preference) {
    @keyframes hnPulse {
      0%, 100% {
        opacity: 0.5;
        transform: scale(0.9);
        filter: drop-shadow(0 0 2px rgba(232, 201, 160, 0.25));
      }
      50% {
        opacity: 1;
        transform: scale(1.18);
        filter: drop-shadow(0 0 8px rgba(232, 201, 160, 0.75)) drop-shadow(0 0 16px rgba(255, 248, 239, 0.4));
      }
    }
  }
  .prestige-stats--framed {
    grid-template-columns: 1fr;
  }
  .prestige-stats--framed .prestige-stat {
    border-right: none !important;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .site-header .nav-links .btn,
  .site-header .nav-links a.btn {
    white-space: normal;
    max-height: none;
    text-align: center;
  }
}
