:root {
  --ink: #071a36;
  --ink-soft: #26344a;
  --gold: #ae7d25;
  --gold-dark: #8f651a;
  --paper: #fbf8f1;
  --paper-2: #f4eee5;
  --line: #d9cbb8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 26, 54, 0.08);
  --serif: Georgia, 'Times New Roman', Times, serif;
  --sans: Avenir, Montserrat, 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: geometricPrecision;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  z-index: 9999;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(251, 248, 241, 0.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  background: rgba(251, 248, 241, 0.96);
  border-color: rgba(217, 203, 184, .8);
  box-shadow: 0 18px 42px rgba(7, 26, 54, .06);
}
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img {
  width: 150px;
  height: auto;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.legal-nav {
  position: static;
  min-height: auto;
  transform: none;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--ink);
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  border: 1px solid var(--gold);
  padding: 13px 22px !important;
  color: var(--gold-dark) !important;
  transition: background .25s ease, color .25s ease;
}
.nav-cta:hover { background: var(--gold); color: var(--white) !important; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 10px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  margin: 6px 0;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.section-pad { padding: 82px 0; }
.section-pad.compact { padding: 64px 0; }
.section-muted, .section-soft { background: linear-gradient(180deg, var(--paper), var(--paper-2)); }
.section-label {
  margin: 0 0 22px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.section-label::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 18px;
  background: var(--gold);
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-bottom: 42px;
  text-align: center;
}
.section-heading span {
  width: min(320px, 24vw);
  height: 1px;
  background: var(--line);
}
.section-heading .section-label { margin: 0; }
.section-heading .section-label::after { margin-inline: auto; }

h1, h2, .metric strong, .step strong, .final-cta h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.02em;
}
h1 {
  margin: 0 0 24px;
  font-size: clamp(3.2rem, 6vw, 6.7rem);
}
h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.9rem);
}
h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: .01em;
}
.highlight { color: var(--gold-dark); font-weight: 600; }
.rule { width: 70px; height: 1px; background: var(--gold); margin: 26px 0; }

.hero {
  position: relative;
  min-height: 760px;
  padding-top: 92px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251,248,241,.98) 0%, rgba(251,248,241,.94) 29%, rgba(251,248,241,.62) 43%, rgba(251,248,241,.06) 64%),
    linear-gradient(180deg, rgba(251,248,241,.4), rgba(251,248,241,0) 42%),
    url('assets/hero-section.jpg') center right / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(251,248,241,0), var(--paper));
  pointer-events: none;
}
.hero-inner {
  position: relative;
  min-height: 668px;
  display: grid;
  align-items: center;
}
.hero-content {
  width: min(570px, 100%);
  padding: 34px 0 70px;
}
.hero-subtitle {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.82rem);
  line-height: 1.22;
  max-width: 470px;
}
.button-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--gold); border-color: var(--gold); }
.btn-secondary { background: transparent; color: var(--ink); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-dark); }
.btn-gold { border-color: var(--gold); color: var(--gold); }
.btn-gold:hover { background: var(--gold); color: var(--ink); }

.positioning { position: relative; overflow: hidden; }
.positioning-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
  min-height: 245px;
}
.positioning h2 { max-width: 470px; }
.positioning-copy {
  max-width: 570px;
  font-size: 1.02rem;
}
.positioning-art {
  position: absolute;
  right: -18vw;
  bottom: -70px;
  width: min(760px, 55vw);
  opacity: .52;
  pointer-events: none;
}

.metric-grid, .impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.metric, .impact-item {
  padding: 22px 34px;
  text-align: center;
  border-left: 1px solid var(--line);
}
.metric:first-child, .impact-item:first-child { border-left: 0; }
.icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  color: var(--gold-dark);
}
.icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(3rem, 4.8vw, 5.4rem);
  line-height: .95;
}
.metric h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.25;
}
.metric p, .impact-item p, .service-card p, .timeline p, .audience-item p {
  color: #1e2530;
  font-size: .92rem;
}
.impact-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  text-align: left;
  align-items: start;
  gap: 16px;
}
.impact-item .icon { margin: 0; }
.impact-item h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
}

.approach {
  position: relative;
  overflow: hidden;
}
.approach::before,
.approach::after {
  content: "";
  position: absolute;
  top: 28%;
  width: 190px;
  height: 330px;
  border: 1px solid rgba(174,125,37,.3);
  border-radius: 50%;
  pointer-events: none;
}
.approach::before { left: -120px; box-shadow: 16px 0 0 -1px var(--paper), 32px 0 0 -1px rgba(174,125,37,.22); }
.approach::after { right: -120px; box-shadow: -16px 0 0 -1px var(--paper), -32px 0 0 -1px rgba(174,125,37,.22); }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: center;
  position: relative;
}
.step {
  position: relative;
  padding: 18px 22px;
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(50% + 130px);
  top: 68px;
  width: calc(100% - 180px);
  min-width: 120px;
  border-top: 2px dotted rgba(174,125,37,.55);
}
.step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: calc(100% + 9px);
  top: 61px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--gold);
  z-index: 1;
}
.step strong {
  display: block;
  font-size: clamp(3rem, 5vw, 5.6rem);
}
.step h3 {
  font-size: 1.5rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
  gap: 48px;
  align-items: stretch;
}
.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.26);
}
.service-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  min-height: 168px;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-card:nth-child(3n) { border-right: 0; }
.service-card:nth-child(n+4) { border-bottom: 0; }
.service-card .icon { margin: 0; }
.service-card h3 { font-size: 1.05rem; }
.service-image {
  margin: 0;
  min-height: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-work-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr minmax(330px, 1.35fr);
  gap: 46px;
  align-items: start;
}
.how-panel, .who-panel, .about-panel {
  position: relative;
  min-height: 520px;
}
.how-panel, .who-panel { border-right: 1px solid var(--line); padding-right: 34px; }
.timeline {
  position: relative;
  display: grid;
  gap: 27px;
  padding-left: 34px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--gold);
}
.timeline article { position: relative; }
.timeline article::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 5px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
}
.timeline h3, .audience-item h3 {
  color: var(--ink);
  font-size: 1.1rem;
}
.audience-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 20px;
  margin-bottom: 36px;
}
.audience-item .icon { margin: 0; }
.about-panel {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(260px, 1fr);
  gap: 14px;
  align-items: end;
}
.about-copy {
  align-self: start;
  padding-top: 0;
  font-size: 1.04rem;
}
.ana-photo {
  width: 100%;
  align-self: end;
  max-height: 520px;
  object-fit: contain;
  object-position: bottom center;
}

.final-cta {
  background:
    radial-gradient(circle at 105% 20%, rgba(174,125,37,.26), transparent 32%),
    linear-gradient(90deg, #061832, #092346);
  color: var(--white);
  padding: 46px 0;
  overflow: hidden;
}
.final-cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  align-items: center;
  gap: 48px;
}
.final-cta h2 {
  font-size: clamp(2rem, 3vw, 3.55rem);
}
.final-cta p { margin: 0; max-width: 480px; }

.site-footer {
  padding: 16px 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: .95rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-inner p { margin: 0; }
.footer-inner a { border-bottom: 1px solid transparent; }
.footer-inner a:hover { border-bottom-color: var(--gold); }
.footer-inner span { padding: 0 12px; color: var(--gold); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.legal-page {
  padding-top: 130px;
}
.legal-content {
  width: min(860px, calc(100% - 64px));
  margin: 0 auto;
  padding: 70px 0 100px;
}
.legal-content h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
.legal-content h2 {
  margin-top: 42px;
  font-size: 1.6rem;
}
.legal-content a { color: var(--gold-dark); border-bottom: 1px solid var(--gold); }
.notice-box {
  padding: 22px;
  margin: 28px 0;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.45);
}

@media (max-width: 1120px) {
  .site-nav { gap: 18px; font-size: 10px; }
  .brand img { width: 138px; }
  .metric, .impact-item { padding-inline: 24px; }
  .service-card-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card, .service-card:nth-child(3n) { border-right: 1px solid var(--line); }
  .service-card:nth-child(2n) { border-right: 0; }
  .service-card:nth-child(n+4) { border-bottom: 1px solid var(--line); }
  .service-card:nth-child(n+5) { border-bottom: 0; }
  .about-work-grid { grid-template-columns: 1fr; }
  .how-panel, .who-panel, .about-panel { min-height: auto; border-right: 0; padding-right: 0; }
  .about-panel { grid-template-columns: 1fr .9fr; }
}

@media (max-width: 920px) {
  .container { width: min(100% - 36px, 720px); }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 86px 0 auto;
    min-height: calc(100vh - 86px);
    flex-direction: column;
    align-items: stretch;
    padding: 28px 28px 60px;
    background: rgba(251,248,241,.98);
    border-top: 1px solid var(--line);
    transform: translateY(-115%);
    transition: transform .28s ease;
    overflow-y: auto;
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav a { padding: 15px 0; font-size: 13px; }
  .nav-cta { width: fit-content; margin-top: 8px; }
  .hero { min-height: 720px; }
  .hero-bg {
    background:
      linear-gradient(180deg, rgba(251,248,241,.98) 0%, rgba(251,248,241,.86) 44%, rgba(251,248,241,.18) 100%),
      url('assets/hero-section.jpg') center bottom / cover no-repeat;
  }
  .hero-inner { align-items: start; padding-top: 44px; }
  .hero-content { padding-top: 28px; }
  .positioning-grid, .services-grid, .final-cta-grid { grid-template-columns: 1fr; }
  .positioning-art { position: static; width: 100%; margin-top: 20px; opacity: .55; }
  .metric-grid, .impact-grid { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .metric:nth-child(3), .impact-item:nth-child(3) { border-left: 0; }
  .approach-grid { grid-template-columns: 1fr; gap: 22px; }
  .step:not(:last-child)::before, .step:not(:last-child)::after { display: none; }
  .section-heading { gap: 18px; }
  .section-heading span { width: 18vw; }
  .final-cta .btn { width: fit-content; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 620px) {
  body { font-size: 15px; }
  .header-inner { min-height: 76px; }
  .brand img { width: 128px; }
  .site-nav { top: 76px; min-height: calc(100vh - 76px); }
  .legal-nav {
    position: static;
    min-height: auto;
    flex-direction: row;
    transform: none;
    padding: 0;
    border-top: 0;
    overflow: visible;
  }
  .section-pad { padding: 58px 0; }
  .section-pad.compact { padding: 50px 0; }
  .hero { min-height: 690px; padding-top: 76px; }
  h1 { font-size: clamp(2.9rem, 16vw, 4.2rem); }
  h2 { font-size: clamp(1.85rem, 9vw, 2.65rem); }
  .button-row { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .metric-grid, .impact-grid, .service-card-grid { grid-template-columns: 1fr; }
  .metric, .impact-item, .metric:first-child, .impact-item:first-child { border-left: 0; border-top: 1px solid var(--line); }
  .metric:first-child, .impact-item:first-child { border-top: 0; }
  .impact-item { grid-template-columns: 62px 1fr; }
  .service-card, .service-card:nth-child(2n), .service-card:nth-child(3n) { grid-template-columns: 62px 1fr; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .service-image { min-height: 290px; }
  .about-panel { grid-template-columns: 1fr; }
  .ana-photo { max-height: 450px; }
  .audience-item { grid-template-columns: 62px 1fr; }
  .legal-content { width: min(100% - 36px, 860px); padding-top: 45px; }
}
