:root {
  --ink: #0b2220;
  --ink-soft: #123733;
  --gold: #b28a45;
  --gold-light: #d7bb83;
  --paper: #f5f3ed;
  --white: #ffffff;
  --text: #24302e;
  --muted: #66706d;
  --line: #d9ded9;
  --shadow: 0 24px 70px rgba(11, 34, 32, 0.12);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-180%);
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4.3vw, 4.2rem);
}

h3 {
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.3;
}

.lead {
  max-width: 680px;
  color: #3d4a47;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.small {
  font-size: 0.88rem;
}

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 9px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(11, 34, 32, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  background: var(--gold);
  content: "";
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 34px rgba(11, 34, 32, 0.11);
}

.navbar {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  transition: min-height 220ms ease;
}

.site-header.is-scrolled .navbar {
  min-height: 76px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 212px;
  height: auto;
  transition: transform 220ms ease;
}

.brand:hover img {
  transform: translateY(-2px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav > a:not(.button) {
  position: relative;
  padding-block: 8px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.desktop-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  content: "";
  transition: transform 180ms ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(11, 34, 32, 0.12);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button::after {
  content: "\2197";
  font-size: 1rem;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--ink-soft);
  box-shadow: 0 16px 30px rgba(11, 34, 32, 0.2);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button.gold {
  background: var(--gold);
  color: var(--ink);
}

.button.outline {
  border-color: rgba(11, 34, 32, 0.25);
  background: transparent;
  color: var(--ink);
}

.button.outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

.menu-open .menu-toggle span {
  background: transparent;
}

.menu-open .menu-toggle span::before {
  transform: translateY(0) rotate(45deg);
}

.menu-open .menu-toggle span::after {
  transform: translateY(-2px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.hero-grid {
  display: grid;
  min-height: 710px;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
  padding-block: 72px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(11, 34, 32, 0.16);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.hero-visual img {
  width: 100%;
  height: 540px;
  border-radius: 180px 20px 20px 20px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-visual::before {
  position: absolute;
  top: -20px;
  right: -24px;
  z-index: 1;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(178, 138, 69, 0.7);
  border-radius: 50%;
  content: "";
}

.visual-note {
  position: absolute;
  right: -30px;
  bottom: 32px;
  width: min(290px, 78%);
  padding: 24px;
  border-radius: 18px 0 18px 18px;
  background: var(--ink);
  box-shadow: var(--shadow);
  color: var(--white);
}

.visual-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.visual-note span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.section {
  padding-block: clamp(78px, 10vw, 130px);
}

.section.soft {
  background: var(--paper);
}

.section.dark {
  overflow: hidden;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.section.dark h2,
.section.dark h3 {
  color: var(--white);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.section-head h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-head p {
  max-width: 470px;
  margin-bottom: 6px;
  color: var(--muted);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 15px 45px rgba(11, 34, 32, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-body {
  padding: 28px;
}

.service-number {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.service-body p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link::after {
  content: "\2192";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.inline-link {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.inline-link:hover {
  color: var(--gold-light);
}

.section:not(.page-hero) {
  content-visibility: auto;
  contain-intrinsic-size: auto 700px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.feature {
  min-height: 270px;
  padding: 34px;
  background: var(--ink);
}

.feature .number {
  display: block;
  margin-bottom: 50px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
}

.feature p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(44px, 8vw, 100px);
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  min-height: 470px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.split-copy .lead {
  margin-bottom: 28px;
}

.check-list,
.plain-list,
.footer-links,
.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-block: 28px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-list li::before {
  display: grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(178, 138, 69, 0.15);
  color: var(--gold);
  content: "\2713";
  font-size: 0.8rem;
  font-weight: 900;
}

.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 86px);
  border-radius: 30px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
}

.cta::after {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(178, 138, 69, 0.5);
  border-radius: 50%;
  content: "";
}

.cta h2 {
  position: relative;
  z-index: 1;
  max-width: 780px;
  color: var(--white);
}

.cta p {
  position: relative;
  z-index: 1;
  max-width: 680px;
  font-size: 1.12rem;
}

.cta .button {
  position: relative;
  z-index: 1;
  margin-top: 12px;
}

.page-hero {
  padding-block: clamp(70px, 9vw, 120px);
  background: var(--paper);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(44px, 8vw, 100px);
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(3rem, 5.4vw, 5.3rem);
}

.page-hero img {
  width: 100%;
  height: 440px;
  border-radius: 150px 18px 18px 18px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.page-index {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-index::before {
  content: "01";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0;
}

.page-index.index-02::before { content: "02"; }
.page-index.index-03::before { content: "03"; }

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

.info-card {
  min-height: 260px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.info-card .number {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.info-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.two-column-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-group {
  padding: clamp(32px, 5vw, 52px);
  border-radius: var(--radius);
  background: var(--paper);
}

.service-group .group-number {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-list {
  columns: 2;
  column-gap: 30px;
  margin-top: 26px;
}

.service-list li {
  position: relative;
  break-inside: avoid;
  padding: 9px 0 9px 18px;
  border-bottom: 1px solid rgba(11, 34, 32, 0.11);
}

.service-list li::before {
  position: absolute;
  top: 19px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 50px;
}

.timeline-item {
  position: relative;
  padding: 36px 26px 0 0;
  border-top: 1px solid rgba(11, 34, 32, 0.2);
}

.timeline-item::before {
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
  content: "";
}

.timeline-item span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.timeline-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(46px, 8vw, 100px);
}

.statement-stack {
  display: grid;
  gap: 18px;
}

.statement {
  padding: 32px;
  border-left: 4px solid var(--gold);
  background: var(--paper);
}

.statement h3 {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.statement p {
  margin-bottom: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.26rem;
  line-height: 1.45;
}

.leaders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.leader-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.monogram {
  display: grid;
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.leader-card h3 {
  margin-bottom: 4px;
}

.leader-card p {
  margin-bottom: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.detail {
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail dt {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.detail dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 8vw, 100px);
}

.contact-panel {
  display: grid;
  gap: 18px;
}

.contact-method {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.contact-method span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-method a,
.contact-method strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.contact-form {
  padding: clamp(30px, 5vw, 54px);
  border-radius: var(--radius);
  background: var(--paper);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid #c8cfca;
  border-radius: 10px;
  outline: none;
  background: var(--white);
  color: var(--text);
  transition: border 160ms ease, box-shadow 160ms ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(178, 138, 69, 0.15);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
}

.form-note {
  max-width: 360px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer {
  padding-top: 76px;
  background: #071a18;
  color: rgba(255, 255, 255, 0.66);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 70px;
  padding-bottom: 60px;
}

.footer-brand img {
  width: 230px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 440px;
  margin-top: 22px;
}

.footer-title {
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.77rem;
  letter-spacing: 0.04em;
}

/* Responsive motion and interaction layer */
.info-card,
.leader-card,
.statement,
.detail,
.contact-method,
.service-group {
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.feature,
.feature .number {
  transition: transform 260ms ease, background-color 260ms ease, color 260ms ease;
}

.split-media,
.page-hero img,
.hero-visual {
  overflow: hidden;
}

.motion-enabled .reveal {
  opacity: 0;
  translate: 0 26px;
  transition: opacity 680ms ease, translate 680ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-enabled .reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

.motion-enabled .hero-copy > * {
  opacity: 0;
  transform: translateY(24px);
}

.motion-enabled.page-ready .hero-copy > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.motion-enabled.page-ready .hero-copy > :nth-child(2) { transition-delay: 90ms; }
.motion-enabled.page-ready .hero-copy > :nth-child(3) { transition-delay: 170ms; }
.motion-enabled.page-ready .hero-copy > :nth-child(4) { transition-delay: 250ms; }
.motion-enabled.page-ready .hero-copy > :nth-child(5) { transition-delay: 330ms; }

.motion-enabled .hero-visual {
  opacity: 0;
  transform: translateX(34px) scale(0.985);
}

.motion-enabled.page-ready .hero-visual {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition: opacity 820ms ease 180ms, transform 820ms cubic-bezier(0.2, 0.7, 0.2, 1) 180ms;
}

.motion-enabled.page-ready .hero-visual::before {
  animation: ring-breathe 5s ease-in-out infinite;
}

@keyframes ring-breathe {
  0%, 100% { transform: scale(1); opacity: 0.65; }
  50% { transform: scale(1.12); opacity: 1; }
}

@media (hover: hover) {
  .service-card:hover img {
    transform: scale(1.055);
  }

  .info-card:hover,
  .leader-card:hover,
  .service-group:hover {
    transform: translateY(-6px);
    border-color: rgba(178, 138, 69, 0.5);
    box-shadow: 0 18px 44px rgba(11, 34, 32, 0.1);
  }

  .feature:hover {
    background: #10332f;
  }

  .feature:hover .number {
    transform: translateY(-5px);
    color: var(--white);
  }

  .detail:hover,
  .contact-method:hover {
    background: rgba(178, 138, 69, 0.06);
  }
}

@media (max-width: 1020px) {
  .site-header {
    background: var(--white);
    backdrop-filter: none;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-nav {
    position: fixed;
    top: var(--mobile-nav-top, 88px);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 24px max(20px, calc((100vw - var(--container)) / 2));
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    background: #071a18;
    box-shadow: -18px 0 45px rgba(7, 26, 24, 0.24);
    transition: transform 220ms ease, opacity 180ms ease, visibility 220ms;
  }

  .menu-open .mobile-nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .mobile-nav a {
    display: flex;
    min-height: 64px;
    align-items: center;
    padding: 14px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    line-height: 1.25;
    opacity: 0;
    transform: translateX(22px);
    transition: opacity 280ms ease, transform 360ms cubic-bezier(0.2, 0.7, 0.2, 1), color 160ms ease;
  }

  .menu-open .mobile-nav a {
    opacity: 1;
    transform: translateX(0);
  }

  .menu-open .mobile-nav a:nth-child(1) { transition-delay: 70ms; }
  .menu-open .mobile-nav a:nth-child(2) { transition-delay: 110ms; }
  .menu-open .mobile-nav a:nth-child(3) { transition-delay: 150ms; }
  .menu-open .mobile-nav a:nth-child(4) { transition-delay: 190ms; }
  .menu-open .mobile-nav a:nth-child(5) { transition-delay: 230ms; }

  .mobile-nav a:active {
    color: var(--gold-light);
  }

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

  .hero-grid {
    padding-top: 80px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .visual-note {
    right: 20px;
  }

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

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

  .split,
  .story-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 36px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .topbar .container {
    justify-content: center;
  }

  .topbar span:last-child {
    display: none;
  }

  .navbar {
    min-height: 76px;
  }

  .brand img {
    width: 172px;
  }

  .mobile-nav { padding-inline: 18px; }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .hero-grid {
    min-height: auto;
    gap: 54px;
    padding-block: 62px 72px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 420px;
    height: 420px;
  }

  .hero-visual img,
  .page-hero img {
    border-radius: 90px 14px 14px 14px;
  }

  .visual-note {
    right: 12px;
    bottom: 18px;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 20px;
  }

  .services-grid,
  .cards-grid,
  .feature-grid,
  .two-column-cards,
  .leaders,
  .details-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .feature {
    min-height: 230px;
  }

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

  .timeline-item {
    padding-left: 28px;
    border-top: 0;
    border-left: 1px solid rgba(11, 34, 32, 0.2);
  }

  .timeline-item::before {
    top: 42px;
    left: -6px;
  }

  .service-list {
    columns: 1;
  }

  .form-footer,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .field.full {
    grid-column: auto;
  }

  .footer-brand {
    grid-column: auto;
  }

  .cta {
    padding: 40px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .motion-enabled .reveal,
  .motion-enabled .hero-copy > *,
  .motion-enabled .hero-visual {
    opacity: 1 !important;
    translate: none !important;
    transform: none !important;
  }
}
