:root {
  --ink-950: #09101c;
  --ink-900: #10253d;
  --ink-800: #17314e;
  --ink-700: #294766;
  --sand-50: #fffdf8;
  --sand-100: #f6f1e8;
  --mist-100: #eef2f5;
  --mist-200: #dbe3ea;
  --mist-300: #b9c5d1;
  --stone-500: #738192;
  --stone-700: #455365;
  --accent-500: #bc9b73;
  --accent-600: #9f7f58;
  --success-500: #2e6f58;
  --shadow-strong: 0 28px 90px rgba(9, 16, 28, 0.16);
  --shadow-soft: 0 18px 52px rgba(16, 37, 61, 0.08);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-xl: 48px;
  --max-width: 1220px;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-body: "Avenir Next", "Segoe UI", "Helvetica Neue", Helvetica, sans-serif;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background:
    radial-gradient(circle at top left, rgba(188, 155, 115, 0.08), transparent 24%),
    linear-gradient(180deg, #fffefb 0%, #f6f3ed 38%, #f3f5f7 100%);
  line-height: 1.6;
  min-width: 320px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(188, 155, 115, 0.22);
  color: var(--ink-950);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  transform: translateY(-200%);
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: var(--ink-900);
  color: var(--sand-50);
  z-index: 100;
  transition: transform var(--transition);
}

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

.site-header {
  position: sticky;
  top: 0.85rem;
  z-index: 40;
  width: min(calc(100% - 1.5rem), 1320px);
  margin: 0 auto 0.85rem;
  border-radius: 34px;
  backdrop-filter: blur(16px);
  border: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-solid {
  background: rgba(255, 252, 247, 0.88);
  border-color: rgba(16, 37, 61, 0.08);
  box-shadow: 0 14px 40px rgba(16, 37, 61, 0.09);
}

.nav-shell,
.section-inner,
.footer-inner {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  gap: 1.25rem;
  padding: 0.7rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  text-align: center;
}

.brand-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.54rem;
  line-height: 1;
}

.brand-mark-shell {
  display: block;
  width: 84px;
  line-height: 0;
}

.brand-symbol {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 24px rgba(16, 37, 61, 0.12));
}

.brand-word {
  font-size: 1.16rem;
  font-weight: 750;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-900);
  padding-left: 0.26em;
}

.brand-rule {
  width: 76%;
  height: 1px;
  background: rgba(16, 37, 61, 0.22);
}

.brand-subline {
  font-size: 0.54rem;
  font-weight: 650;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--stone-700);
  padding-left: 0.26em;
}

.brand-stack-dark .brand-word,
.brand-stack-dark .brand-subline {
  color: var(--sand-50);
}

.brand-stack-dark .brand-symbol {
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.28));
}

.brand-stack-dark .brand-rule {
  background: rgba(255, 253, 248, 0.28);
}

.brand-stack-header {
  width: 150px;
}

.brand-stack-header .brand-mark-shell {
  width: 58px;
}

.brand-stack-header .brand-word {
  font-size: 1rem;
  letter-spacing: 0.22em;
}

.brand-stack-header .brand-subline {
  font-size: 0.5rem;
  letter-spacing: 0.24em;
}

.brand-stack-footer {
  width: min(100%, 264px);
  gap: 0.72rem;
}

.brand-stack-footer .brand-mark-shell {
  width: 106px;
}

.brand-stack-footer .brand-word {
  font-size: 1.65rem;
  letter-spacing: 0.2em;
}

.brand-stack-footer .brand-subline {
  font-size: 0.64rem;
  letter-spacing: 0.22em;
}

.brand-stack-hero {
  width: min(100%, 278px);
  gap: 0.8rem;
}

.brand-stack-hero .brand-mark-shell {
  width: 122px;
}

.brand-stack-hero .brand-word {
  font-size: clamp(1.95rem, 2.6vw, 2.7rem);
  letter-spacing: 0.18em;
}

.brand-stack-hero .brand-subline {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
}

.brand-footer {
  display: inline-flex;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.02rem;
  border-radius: 999px;
  color: var(--stone-700);
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--ink-900);
  background: rgba(16, 37, 61, 0.06);
  box-shadow: inset 0 0 0 1px rgba(16, 37, 61, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: rgba(16, 37, 61, 0.08);
  color: var(--ink-900);
}

.menu-toggle .menu-bar,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle::before {
  transform: translateY(-6px);
}

.menu-toggle::after {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] .menu-bar {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: rotate(-45deg);
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.88rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.button {
  background: linear-gradient(135deg, var(--ink-900), var(--ink-700));
  color: var(--sand-50);
  border: 1px solid rgba(16, 37, 61, 0.04);
  box-shadow: 0 14px 30px rgba(16, 37, 61, 0.16);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(16, 37, 61, 0.18);
}

.button-secondary {
  background: rgba(255, 253, 248, 0.86);
  color: var(--ink-900);
  border: 1px solid rgba(16, 37, 61, 0.1);
  box-shadow: 0 10px 24px rgba(16, 37, 61, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 253, 248, 1);
  transform: translateY(-2px);
}

.button-ghost {
  border: 1px solid rgba(255, 253, 248, 0.22);
  color: var(--sand-50);
  background: rgba(255, 255, 255, 0.06);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.page-main {
  overflow: clip;
}

.hero {
  padding: 0.6rem 0 2.5rem;
}

.hero-surface {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #0b1524, #10253d 60%, #18344f);
  color: var(--sand-50);
  box-shadow: var(--shadow-strong);
}

.hero-surface::before,
.hero-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-surface::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.18;
}

.hero-surface::after {
  background:
    linear-gradient(135deg, rgba(9, 16, 28, 0.06), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(188, 155, 115, 0.16), transparent 18%);
}

.hero-home-stage {
  padding: 0 0 3rem;
}

.hero-immersive {
  position: relative;
  min-height: clamp(760px, calc(100vh - 2rem), 980px);
  color: var(--sand-50);
  overflow: hidden;
  background: #09101c;
  box-shadow: var(--shadow-strong);
}

.hero-immersive::before {
  content: "";
  position: absolute;
  inset: clamp(16px, 1.8vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius-xl) - 14px);
  pointer-events: none;
  z-index: 1;
}

.hero-immersive-media {
  position: absolute;
  inset: 0;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.05);
  will-change: transform;
}

.hero-immersive-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02) brightness(0.92);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-immersive-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 12, 20, 0.84) 0%, rgba(7, 12, 20, 0.62) 28%, rgba(7, 12, 20, 0.2) 60%, rgba(7, 12, 20, 0.08) 100%),
    linear-gradient(180deg, rgba(7, 12, 20, 0.16) 0%, rgba(7, 12, 20, 0.08) 28%, rgba(7, 12, 20, 0.56) 100%),
    radial-gradient(circle at 78% 16%, rgba(188, 155, 115, 0.16), transparent 16%);
}

.hero-immersive-grid {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  grid-template-rows: auto 1fr auto;
  gap: 1.3rem 2.4rem;
  align-content: stretch;
  padding: clamp(2rem, 4vw, 3.6rem) 0;
}

.hero-brand-wrap {
  justify-self: start;
  align-self: start;
  padding-top: 0.2rem;
}

.hero-immersive-note {
  justify-self: end;
  align-self: start;
  max-width: 300px;
  padding: 1rem 1.1rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(9, 16, 28, 0.48), rgba(9, 16, 28, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(9, 16, 28, 0.14);
  backdrop-filter: blur(12px);
}

.hero-immersive-note .mini-label {
  color: rgba(255, 253, 248, 0.68);
}

.hero-immersive-note p {
  color: rgba(255, 253, 248, 0.82);
}

.hero-immersive-copy {
  grid-column: 1 / 2;
  align-self: end;
  max-width: 760px;
  display: grid;
  gap: 1.2rem;
  padding: 0;
}

.hero-immersive-copy h1 {
  max-width: 10.8ch;
  font-size: clamp(3rem, 5.6vw, 6rem);
  text-shadow: 0 20px 50px rgba(9, 16, 28, 0.32);
}

.hero-immersive-copy .hero-subtitle {
  max-width: 56ch;
  color: rgba(255, 253, 248, 0.82);
  text-shadow: 0 10px 28px rgba(9, 16, 28, 0.22);
}

.hero-immersive-copy .eyebrow {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.hero-immersive-trust {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-self: end;
}

.hero-immersive-trust .trust-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.hero-immersive-trust .trust-item strong {
  color: var(--sand-50);
}

.hero-immersive-trust .trust-item p {
  color: rgba(255, 253, 248, 0.74);
}

.hero-editorial {
  padding: 0.6rem 0 2.8rem;
}

.hero-page-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 4vw, 3.8rem);
  padding: clamp(1.1rem, 2vw, 1.5rem);
  border-radius: 46px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(246, 241, 232, 0.84));
  border: 1px solid rgba(16, 37, 61, 0.08);
  box-shadow: 0 26px 76px rgba(16, 37, 61, 0.1);
}

.hero-page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(16, 37, 61, 0.04), transparent 32%),
    radial-gradient(circle at top right, rgba(188, 155, 115, 0.1), transparent 18%);
  opacity: 1;
  pointer-events: none;
}

.hero-page-shell::after {
  content: "";
  position: absolute;
  top: 9%;
  bottom: 9%;
  left: calc(58% + 0.5rem);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(16, 37, 61, 0.1), transparent);
  pointer-events: none;
}

.hero-page-engineering::before {
  background:
    linear-gradient(130deg, rgba(16, 37, 61, 0.04), transparent 32%),
    radial-gradient(circle at top right, rgba(188, 155, 115, 0.08), transparent 18%),
    url("../images/visuals/engineering-sheet.svg") center / 1380px auto no-repeat;
  opacity: 0.045;
}

.hero-page-works {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(238, 242, 245, 0.86));
}

.hero-page-works::before {
  background:
    linear-gradient(130deg, rgba(16, 37, 61, 0.04), transparent 32%),
    radial-gradient(circle at top right, rgba(188, 155, 115, 0.08), transparent 18%),
    url("../images/visuals/operations-board.svg") center / 1380px auto no-repeat;
  opacity: 0.045;
}

.hero-page-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.35rem;
  min-width: 0;
  padding: clamp(1.9rem, 4vw, 4rem) clamp(1.3rem, 2.8vw, 3rem);
}

.hero-page-copy h1 {
  max-width: 11ch;
}

.hero-page-copy .large-copy {
  max-width: 60ch;
  color: var(--stone-700);
}

.hero-page-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-page-points .pill {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(16, 37, 61, 0.08);
}

.hero-page-visual {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  align-content: center;
  justify-items: end;
  padding: clamp(1.1rem, 2vw, 1.6rem) clamp(0.9rem, 1.8vw, 1.4rem) clamp(1.4rem, 2.2vw, 2rem) 0;
}

.hero-visual-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 470px);
  aspect-ratio: 0.9;
  min-height: 0;
  border-radius: 38px;
  border: 1px solid rgba(16, 37, 61, 0.08);
  background: linear-gradient(180deg, rgba(16, 37, 61, 0.06), rgba(16, 37, 61, 0.02));
  box-shadow: var(--shadow-soft);
}

.hero-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(16, 37, 61, 0.14));
  pointer-events: none;
  z-index: 1;
}

.hero-visual-card::after {
  content: "";
  position: absolute;
  inset: 1rem;
  height: auto;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  opacity: 0.5;
}

.hero-visual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.02);
  opacity: 0.72;
}

.hero-visual-card-engineering img {
  object-position: center center;
  filter: saturate(0.8) contrast(1.04) brightness(0.92);
  opacity: 0.86;
}

.hero-visual-card-works {
  aspect-ratio: 1.08;
  background: linear-gradient(180deg, rgba(16, 37, 61, 0.08), rgba(16, 37, 61, 0.03));
}

.hero-visual-card-works img {
  object-position: 24% center;
  filter: saturate(0.34) contrast(1.01) brightness(1.04);
  opacity: 0.92;
}

.hero-visual-caption {
  position: relative;
  z-index: 2;
  justify-self: start;
  width: min(88%, 320px);
  margin-top: -4rem;
  margin-right: auto;
  margin-left: 1.2rem;
  padding: 1.1rem 1.15rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 37, 61, 0.08);
  box-shadow: 0 18px 42px rgba(16, 37, 61, 0.08);
  backdrop-filter: blur(16px);
}

.hero-visual-caption p {
  color: var(--stone-700);
}

.hero-engineering::before,
.page-banner-engineering::before {
  background-image: url("../images/visuals/engineering-sheet.svg");
}

.hero-team::before {
  background-image: url("../images/visuals/hero-plan.svg");
}

.hero-works::before,
.page-banner-works::before {
  background-image: url("../images/visuals/operations-board.svg");
}

.hero-notes::before {
  background-image: url("../images/visuals/notes-insights.svg");
}

.hero-contact::before {
  background:
    radial-gradient(circle at 76% 24%, rgba(188, 155, 115, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 46%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1.4rem;
  align-items: stretch;
  padding: clamp(2rem, 3vw, 3rem);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  min-width: 0;
}

.eyebrow,
.section-kicker,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  max-width: 100%;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 253, 248, 0.88);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker,
.pill {
  border-color: rgba(16, 37, 61, 0.08);
  background: rgba(16, 37, 61, 0.05);
  color: var(--ink-900);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 600;
  line-height: 1.06;
}

h1,
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 5rem);
  letter-spacing: -0.04em;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.2rem, 1.2vw + 1rem, 1.8rem);
  letter-spacing: -0.02em;
}

h4 {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

.hero-subtitle,
.section-lead,
.large-copy {
  font-size: clamp(1rem, 0.46vw + 0.95rem, 1.2rem);
  color: rgba(255, 253, 248, 0.78);
  max-width: 64ch;
}

.section-lead,
.large-copy {
  color: var(--stone-700);
}

.hero-actions,
.stack-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-panel,
.info-panel,
.article-panel,
.cta-panel,
.quote-panel,
.map-panel,
.form-panel,
.detail-panel,
.portrait-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 1rem;
  align-content: start;
}

.panel-card {
  padding: 1rem 1.05rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-card strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.hero-media {
  display: flex;
  align-items: stretch;
}

.figure-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
  border-radius: calc(var(--radius-xl) - 12px);
  background: linear-gradient(180deg, rgba(9, 16, 28, 0.18), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.figure-frame::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: calc(var(--radius-lg) - 4px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.figure-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.figure-frame-brand {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 74% 24%, rgba(188, 155, 115, 0.16), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.contact-brand-emblem {
  display: grid;
  place-items: center;
  width: min(70%, 290px);
  aspect-ratio: 1;
  padding: 1.4rem;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 58px rgba(9, 16, 28, 0.18);
  backdrop-filter: blur(10px);
}

.contact-brand-symbol {
  width: 100%;
  max-width: 176px;
  height: auto;
  filter: drop-shadow(0 24px 34px rgba(9, 16, 28, 0.22));
}

.figure-technical,
.figure-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-details .pill {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 253, 248, 0.92);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.trust-ribbon {
  padding: 0 0 2rem;
}

body[data-page="accueil"] .trust-ribbon {
  position: relative;
  z-index: 2;
  margin-top: -3rem;
}

.trust-ribbon-inner {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.trust-item {
  padding: 1.35rem 1.45rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 37, 61, 0.07);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.trust-item strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.section {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.section-dark {
  position: relative;
  color: var(--sand-50);
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #09101c, #10253d 54%, #1b3755);
}

.section-dark .section-inner {
  position: relative;
  z-index: 1;
}

.section-dark .section-lead,
.section-dark p,
.section-dark li {
  color: rgba(255, 253, 248, 0.76);
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(238, 242, 245, 0.72));
}

.section-warm {
  background:
    radial-gradient(circle at top left, rgba(188, 155, 115, 0.09), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.88), rgba(246, 241, 232, 0.82));
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.section-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.section-grid,
.card-grid,
.services-grid,
.lots-grid,
.articles-grid,
.trust-grid,
.team-grid,
.contact-grid,
.engagement-grid,
.insight-grid,
.notes-grid {
  display: grid;
  gap: 1.2rem;
}

.section-grid.two,
.team-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section-grid.three,
.trust-grid,
.insight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four,
.services-grid,
.notes-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lots-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.articles-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.service-card,
.lot-card,
.article-card,
.team-card,
.contact-card,
.stat-card,
.engagement-card,
.insight-card,
.note-card {
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 37, 61, 0.07);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.section-dark .card,
.section-dark .service-card,
.section-dark .lot-card,
.section-dark .engagement-card,
.section-dark .insight-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

a.card:hover,
a.service-card:hover,
a.lot-card:hover,
a.article-card:hover,
.article-card:hover,
.team-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(16, 37, 61, 0.12);
  border-color: rgba(16, 37, 61, 0.14);
}

.card::before,
.service-card::before,
.lot-card::before,
.article-card::before,
.team-card::before,
.contact-card::before,
.note-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-500), transparent 72%);
  opacity: 0.72;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.1rem;
  border-radius: 16px;
  background: rgba(16, 37, 61, 0.06);
  color: var(--ink-900);
  font-size: 1.25rem;
  font-weight: 700;
}

.meta-list,
.detail-list,
.article-meta,
.inline-list,
.bullet-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bullet-list li,
.detail-list li,
.article-meta li {
  position: relative;
  padding-left: 1.2rem;
}

.bullet-list li::before,
.detail-list li::before,
.article-meta li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-500), var(--ink-700));
}

.inline-list {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.mini-label {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--stone-500);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.split-card,
.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.84fr);
  gap: 1.6rem;
  align-items: center;
}

.story-callout {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(16, 37, 61, 0.04), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(16, 37, 61, 0.08);
}

.story-callout strong {
  display: block;
  margin-bottom: 0.5rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-step {
  position: relative;
  overflow: hidden;
  padding: 1.3rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 37, 61, 0.08);
  box-shadow: var(--shadow-soft);
}

.process-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(16, 37, 61, 0.08);
  color: var(--ink-900);
  font-size: 0.88rem;
  font-weight: 700;
}

.section-dark .process-step {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.quote-panel {
  padding: clamp(1.8rem, 3vw, 2.6rem);
  background:
    radial-gradient(circle at top right, rgba(188, 155, 115, 0.14), transparent 26%),
    linear-gradient(150deg, rgba(16, 37, 61, 0.04), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(16, 37, 61, 0.08);
  box-shadow: var(--shadow-soft);
}

.quote-panel blockquote {
  margin: 0;
  display: grid;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  line-height: 1.34;
  letter-spacing: -0.03em;
  color: var(--ink-900);
  max-width: 28ch;
}

.quote-panel blockquote p {
  margin: 0;
}

.quote-signature {
  margin-top: 1.8rem;
  color: var(--stone-700);
  font-size: 0.96rem;
  line-height: 1.7;
}

.quote-signature strong {
  display: inline-block;
  margin-bottom: 0.18rem;
  color: var(--ink-900);
  font-size: 1.04rem;
  letter-spacing: 0.02em;
}

.manager-letter {
  padding: clamp(2rem, 4vw, 3.4rem);
  border-radius: 40px;
  background:
    radial-gradient(circle at top right, rgba(188, 155, 115, 0.16), transparent 24%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(246, 241, 232, 0.92));
  border: 1px solid rgba(16, 37, 61, 0.08);
  box-shadow: var(--shadow-soft);
}

.manager-letter-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.3fr) minmax(0, 0.7fr);
  gap: clamp(1.8rem, 4vw, 4rem);
  align-items: start;
}

.manager-letter-head {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.manager-letter-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.6vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: var(--ink-900);
  max-width: 9ch;
}

.manager-letter-content {
  display: grid;
  gap: 1.6rem;
}

.manager-letter-lead {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.4vw, 2.8rem);
  line-height: 1.26;
  letter-spacing: -0.035em;
  color: var(--ink-900);
  max-width: 23ch;
}

.manager-letter-columns {
  column-count: 2;
  column-gap: clamp(2rem, 4vw, 3rem);
}

.manager-letter-columns p {
  break-inside: avoid;
  margin: 0 0 1.15rem;
  color: var(--stone-700);
  font-size: 1rem;
  line-height: 1.86;
}

.manager-letter-signature {
  justify-self: end;
  display: grid;
  gap: 0.28rem;
  min-width: min(100%, 360px);
  margin-top: 0.8rem;
  padding-top: 1.35rem;
  text-align: right;
}

.manager-letter-signature::before {
  content: "";
  justify-self: end;
  width: 124px;
  height: 1px;
  margin-bottom: 0.55rem;
  background: linear-gradient(90deg, transparent, rgba(16, 37, 61, 0.34));
}

.manager-letter-name {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 1.8vw, 1.9rem);
  letter-spacing: -0.025em;
  color: var(--ink-900);
}

.manager-letter-role {
  color: var(--stone-700);
  font-size: 0.94rem;
  letter-spacing: 0.04em;
}

.portrait-panel {
  background: linear-gradient(160deg, rgba(16, 37, 61, 0.08), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(16, 37, 61, 0.08);
  box-shadow: var(--shadow-soft);
}

.portrait-panel img {
  aspect-ratio: 3 / 4;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.portrait-caption {
  padding: 1.2rem 1.35rem;
  border-top: 1px solid rgba(16, 37, 61, 0.08);
}

.featured-article {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.78fr);
  gap: 1.2rem;
  align-items: stretch;
}

.article-cover {
  min-height: 100%;
  border-radius: calc(var(--radius-md) - 4px);
  overflow: hidden;
  background: rgba(16, 37, 61, 0.06);
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(16, 37, 61, 0.05);
  color: var(--stone-700);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.newsletter-layout,
.contact-layout,
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 1.4rem;
}

.form-panel,
.map-panel,
.detail-panel {
  padding: 1.7rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 37, 61, 0.07);
  box-shadow: var(--shadow-soft);
}

.section-dark .detail-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 241, 232, 0.92));
  border-color: rgba(16, 37, 61, 0.09);
  box-shadow: 0 18px 46px rgba(9, 16, 28, 0.1);
}

.section-dark .detail-panel li {
  color: var(--stone-700);
}

.section-dark .detail-panel .detail-list li::before {
  background: linear-gradient(135deg, var(--accent-500), var(--ink-700));
}

.form-grid {
  display: grid;
  gap: 0.95rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.field label {
  font-weight: 600;
  color: var(--ink-900);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.92rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(16, 37, 61, 0.14);
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink-900);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  outline: 0;
  border-color: rgba(16, 37, 61, 0.3);
  box-shadow: 0 0 0 4px rgba(16, 37, 61, 0.08);
}

.form-note,
.status-message,
.card-copy {
  color: var(--stone-700);
  font-size: 0.94rem;
}

.status-message {
  min-height: 1.4rem;
}

.benefit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.benefit-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(16, 37, 61, 0.06);
  border: 1px solid rgba(16, 37, 61, 0.09);
  color: var(--ink-900);
  font-size: 0.82rem;
  font-weight: 600;
}

.map-panel {
  display: grid;
  gap: 1rem;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(238, 242, 245, 0.9));
}

.map-visual {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border-radius: 28px;
  background: #dde3e8;
  border: 1px solid rgba(16, 37, 61, 0.08);
}

.map-visual::before {
  display: none;
}

.map-visual iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.08) saturate(0.92) contrast(1.03);
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(1.8rem, 2vw, 2.4rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, #0f2034, #17314e 72%);
  color: var(--sand-50);
  box-shadow: var(--shadow-strong);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(188, 155, 115, 0.18), transparent 25%);
  opacity: 1;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.breadcrumbs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  color: var(--stone-500);
  font-size: 0.92rem;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--ink-900);
}

.article-hero {
  padding: 1.4rem 0 1rem;
}

.article-layout .detail-panel {
  align-self: start;
  position: sticky;
  top: 6.4rem;
}

.article-prose {
  display: grid;
  gap: 1.4rem;
}

.article-prose h2 {
  font-size: clamp(1.7rem, 2.2vw, 2.4rem);
}

.article-prose p,
.article-prose li {
  color: var(--stone-700);
}

.article-prose ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding-left: 1.1rem;
}

.site-footer {
  padding: 0 0 2rem;
}

.footer-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(188, 155, 115, 0.14), transparent 22%),
    linear-gradient(160deg, #0b1524, #10253d 62%, #18324d);
  color: var(--sand-50);
  box-shadow: var(--shadow-strong);
}

.footer-inner {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 3vw, 3rem);
}

.footer-inner::before {
  display: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) repeat(3, minmax(180px, 0.76fr));
  gap: 2rem;
}

.footer-brand-block {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 0.2rem 0 0;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand-mark {
  flex: 0 0 auto;
  width: 42px;
  line-height: 0;
}

.footer-brand-symbol {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.2));
}

.footer-brand-text {
  display: grid;
  gap: 0;
}

.footer-brand-name {
  font-size: 0.98rem;
  font-weight: 750;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sand-50);
}

.footer-brand-name:hover,
.footer-brand-name:focus-visible {
  color: var(--sand-50);
}

.footer-copy {
  color: rgba(255, 253, 248, 0.8);
  max-width: 40ch;
}

.footer-title {
  margin-bottom: 0.85rem;
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.64);
}

.footer-links,
.footer-contacts,
.footer-hours {
  display: grid;
  gap: 0.7rem;
}

.footer-links a,
.footer-contacts a,
.footer-contacts span,
.footer-hours span {
  color: rgba(255, 253, 248, 0.82);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contacts a:hover,
.footer-contacts a:focus-visible {
  color: var(--sand-50);
}

.footer-hours {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.92rem;
}

.footer-legal-link {
  color: rgba(255, 253, 248, 0.82);
}

.footer-legal-link:hover,
.footer-legal-link:focus-visible {
  color: var(--sand-50);
}

body[data-page="contact"] .contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-page-shell .hero-actions,
.hero-immersive-copy .hero-actions {
  margin-top: 0.1rem;
}

@keyframes heroDrift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(0, -10px, 0);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1100px) {
  .hero-inner,
  .hero-immersive-grid,
  .hero-page-shell,
  .featured-article,
  .newsletter-layout,
  .contact-layout,
  .article-layout,
  .split-card,
  .feature-split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .card-grid.four,
  .services-grid,
  .lots-grid,
  .section-grid.three,
  .trust-grid,
  .articles-grid,
  .notes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-immersive {
    min-height: clamp(780px, calc(100vh - 2rem), 920px);
  }

  .hero-brand-wrap {
    grid-column: 1 / 2;
  }

  .hero-immersive-note {
    justify-self: start;
    grid-column: 1 / 2;
  }

  .hero-immersive-copy {
    max-width: 640px;
  }

  .hero-immersive-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-page-visual {
    justify-items: start;
    padding: 0 clamp(0.6rem, 1.4vw, 1rem) clamp(1rem, 1.6vw, 1.2rem);
  }

  .hero-visual-card {
    width: min(100%, 520px);
    aspect-ratio: 1.18;
  }

  .hero-visual-caption {
    margin-top: -3.4rem;
  }

  .hero-page-shell::after {
    display: none;
  }

  .manager-letter-layout {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .manager-letter-title,
  .manager-letter-lead {
    max-width: none;
  }

  .manager-letter-columns {
    column-count: 1;
  }

  .manager-letter-signature {
    justify-self: start;
    min-width: 0;
    text-align: left;
  }

  .manager-letter-signature::before {
    justify-self: start;
    background: linear-gradient(90deg, rgba(16, 37, 61, 0.34), transparent);
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  body[data-page="contact"] .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    gap: 2rem;
  }
}

@media (max-width: 920px) {
  .nav-shell {
    min-height: auto;
    padding: 0.7rem 0;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
  }

  .nav-controls {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border-radius: 28px;
    background: rgba(255, 253, 248, 0.96);
    border: 1px solid rgba(16, 37, 61, 0.08);
    box-shadow: var(--shadow-soft);
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.98) translateY(-8px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }

  .site-header.nav-open .nav-controls {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
  }

  .nav-links,
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link,
  .nav-actions a {
    justify-content: flex-start;
  }

  .trust-ribbon-inner,
  .section-grid.two,
  .team-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    width: min(calc(100% - 1rem), 1320px);
    border-radius: 30px;
  }

  .brand-stack-header {
    width: 126px;
  }

  .brand-stack-header .brand-mark-shell {
    width: 52px;
  }

  .brand-stack-header .brand-word {
    font-size: 0.92rem;
  }

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

@media (max-width: 640px) {
  .hero {
    padding-top: 1rem;
  }

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

  .hero-panel {
    gap: 0.85rem;
  }

  .hero-media {
    min-height: 320px;
  }

  .hero-home-stage {
    padding-bottom: 2rem;
  }

  .hero-immersive {
    min-height: max(760px, calc(100svh - 1.2rem));
  }

  .hero-immersive::before {
    inset: 10px;
    border-radius: 26px;
  }

  .hero-immersive-grid {
    gap: 1rem;
    padding: 1.1rem 0;
  }

  .hero-immersive-note {
    display: none;
  }

  .hero-immersive-copy {
    align-self: end;
    padding: 0;
  }

  .hero-immersive-copy h1 {
    max-width: 10.5ch;
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .brand-stack-hero {
    width: 224px;
  }

  .brand-stack-hero .brand-mark-shell {
    width: 96px;
  }

  .brand-stack-hero .brand-word {
    font-size: 1.65rem;
  }

  .hero-page-shell {
    padding: 0.9rem;
    border-radius: 30px;
  }

  .manager-letter {
    padding: 1.4rem;
    border-radius: 30px;
  }

  .manager-letter-content {
    gap: 1.25rem;
  }

  .manager-letter-lead {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .manager-letter-columns p {
    font-size: 0.98rem;
    line-height: 1.78;
  }

  .hero-page-copy {
    padding: 1rem;
  }

  .hero-visual-card {
    width: 100%;
    aspect-ratio: 1.06;
  }

  .hero-visual-caption {
    width: 100%;
    margin-top: 0.9rem;
    margin-left: 0;
  }

  .process-grid,
  .card-grid.four,
  .services-grid,
  .lots-grid,
  .section-grid.three,
  .trust-grid,
  .articles-grid,
  .insight-grid,
  .notes-grid {
    grid-template-columns: 1fr;
  }

  .nav-shell,
  .section-inner,
  .footer-inner,
  .trust-ribbon-inner {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .hero-surface,
  .footer-card {
    border-radius: 28px;
  }

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .cta-layout,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-brand-row {
    align-items: flex-start;
  }

  .footer-brand-mark {
    width: 40px;
  }

  .footer-brand-name {
    font-size: 0.92rem;
  }

  .footer-brand-block {
    padding: 0.2rem 0 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
