:root {
  --navy: #0b2545;
  --navy-deep: #071a31;
  --navy-soft: #173858;
  --gold: #b29667;
  --gold-light: #d3b889;
  --ivory: #faf9f6;
  --stone: #e9e4db;
  --stone-light: #f3f0ea;
  --ink: #11243a;
  --muted: #66717e;
  --white: #ffffff;
  --line: rgba(11, 37, 69, 0.14);
  --shell: min(1180px, calc(100vw - 48px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.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;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 86px;
  border-bottom: 1px solid rgba(11, 37, 69, 0.09);
  background: rgba(250, 249, 246, 0.94);
  backdrop-filter: blur(16px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; width: 220px; flex: 0 0 auto; }
.brand img { width: 100%; height: 64px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a {
  position: relative;
  color: #31445a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.language-switch { display: flex; align-items: center; gap: 6px; font-size: 13px; }
.language-switch span { color: #a5a9af; }
.lang-button { padding: 5px 2px; border: 0; background: transparent; opacity: 0.45; cursor: pointer; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; }
.lang-button.is-active { color: var(--navy); opacity: 1; }
.menu-button { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.menu-button > span:not(.sr-only) { display: block; width: 18px; height: 1px; margin: 5px auto; background: var(--navy); transition: transform 200ms ease; }
.menu-button[aria-expanded="true"] > span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-button[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }
.mobile-nav { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 13px 24px;
  border: 1px solid var(--navy);
  color: var(--white);
  background: var(--navy);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.025em;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
.button-small { min-height: 42px; padding: 9px 18px; }
.button-gold { border-color: var(--gold); color: var(--navy-deep); background: var(--gold-light); }
.button-gold:hover { background: #e0c797; }
.button svg { width: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.button-outline { border-color: rgba(255,255,255,.4); background: transparent; }
.button-outline:hover { border-color: var(--gold-light); color: var(--navy-deep); background: var(--gold-light); }
.section-dark { color: var(--white); background: var(--navy); }
.section-light { background: var(--ivory); }

.hero { position: relative; overflow: hidden; padding: 182px 0 0; }
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -230px;
  top: 40px;
  border: 1px solid rgba(211,184,137,.25);
  border-radius: 50%;
}
.hero-lines {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, transparent, black 55%, black);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 80px; min-height: 530px; padding-bottom: 76px; }
.eyebrow { display: flex; align-items: center; gap: 14px; margin: 0 0 26px; color: var(--gold-light); font-size: 12px; font-weight: 800; letter-spacing: 0.18em; }
.eyebrow > span:first-child { width: 34px; height: 1px; background: currentColor; }
.eyebrow-dark { color: #8d744d; }
.hero h1, .section-heading h2, .approach h2, .audience h2, .faq h2, .contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}
.hero h1 { max-width: 720px; font-size: clamp(48px, 5.5vw, 80px); }
.hero h1 em, .approach h2 em, .audience h2 em, .contact h2 em { color: var(--gold-light); font-weight: 400; }
.hero-lead { max-width: 650px; margin: 32px 0 0; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,.26); color: rgba(255,255,255,.8); font-size: 14px; font-weight: 700; }
.text-link:hover { color: var(--white); }

.hero-composition { position: relative; min-height: 420px; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(211,184,137,.35); border-radius: 50%; }
.orbit-one { width: 370px; height: 370px; }
.orbit-two { width: 270px; height: 270px; border-style: dashed; animation: slow-spin 42s linear infinite; }
.orbit-two::before, .orbit-two::after { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-light); }
.orbit-two::before { top: 34px; right: 38px; }
.orbit-two::after { bottom: 20px; left: 68px; }
.monogram-card { position: relative; z-index: 2; width: 235px; min-height: 270px; padding: 28px; border: 1px solid rgba(211,184,137,.42); background: rgba(7,26,49,.88); box-shadow: 0 30px 80px rgba(0,0,0,.2); }
.monogram-card::after { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(255,255,255,.08); pointer-events: none; }
.card-kicker { display: block; color: rgba(255,255,255,.5); font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.monogram-card strong { display: block; margin: 8px 0 -8px; color: var(--gold-light); font-family: var(--serif); font-size: 104px; font-weight: 400; letter-spacing: -.12em; line-height: 1; }
.monogram-card p { position: relative; z-index: 1; margin: 18px 0 0; color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.7; }
.expertise-tags { position: absolute; inset: 0; z-index: 3; }
.expertise-tags span { position: absolute; padding: 7px 12px; border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.76); background: rgba(11,37,69,.75); backdrop-filter: blur(8px); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.expertise-tags span:nth-child(1) { left: 0; top: 76px; }
.expertise-tags span:nth-child(2) { right: 6px; top: 122px; }
.expertise-tags span:nth-child(3) { left: 20px; bottom: 80px; }
.expertise-tags span:nth-child(4) { right: 0; bottom: 44px; }
.trust-strip { position: relative; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,.14); }
.trust-strip div { display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 10px; min-height: 100px; padding: 20px 28px; border-right: 1px solid rgba(255,255,255,.12); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip span { color: var(--gold-light); font-family: var(--serif); font-size: 17px; }
.trust-strip p { margin: 0; color: rgba(255,255,255,.72); font-size: 14px; }
@keyframes slow-spin { to { transform: rotate(360deg); } }

.services, .process, .faq { padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: .75fr 2fr; align-items: start; gap: 60px; margin-bottom: 66px; }
.section-heading .eyebrow { margin-top: 12px; }
.section-heading h2, .faq h2 { color: var(--navy); font-size: clamp(40px, 4.5vw, 62px); }
.section-heading > div > p { max-width: 700px; margin: 24px 0 0; color: var(--muted); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 360px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.45); transition: background-color 220ms ease, transform 220ms ease, box-shadow 220ms ease; }
.service-card:hover { z-index: 2; background: var(--white); box-shadow: 0 20px 50px rgba(11,37,69,.08); transform: translateY(-4px); }
.service-card-featured { grid-row: span 2; min-height: 720px; color: var(--white); background: var(--navy); }
.service-card-featured:hover { background: var(--navy-soft); }
.service-number { position: absolute; top: 28px; right: 28px; color: #a69e92; font-family: var(--serif); font-size: 15px; }
.service-card-featured .service-number { color: var(--gold-light); }
.service-icon { width: 50px; height: 50px; margin: 68px 0 42px; color: var(--gold); }
.service-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0 0 16px; font-family: var(--serif); font-size: 28px; font-weight: 400; letter-spacing: -.025em; line-height: 1.2; }
.service-card p { margin: 0; color: var(--muted); font-size: 15px; }
.service-card-featured p { color: rgba(255,255,255,.68); }
.service-card ul { margin: 48px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.13); }
.service-card li { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.82); font-size: 14px; }
.service-card li::before { content: "—"; margin-right: 12px; color: var(--gold-light); }
.service-card > a { position: absolute; right: 34px; bottom: 30px; left: 34px; display: flex; justify-content: space-between; padding-top: 15px; border-top: 1px solid var(--line); color: #765f3d; font-size: 13px; font-weight: 800; }
.service-card > a::after { content: "↗"; }

.approach { color: var(--white); background: var(--navy-deep); }
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; }
.approach-panel { display: flex; min-height: 690px; padding: 110px 78px 110px 0; flex-direction: column; align-items: flex-start; justify-content: center; border-right: 1px solid rgba(255,255,255,.12); }
.approach h2, .audience h2, .contact h2 { font-size: clamp(43px, 4.5vw, 64px); }
.approach-panel > p:not(.eyebrow) { max-width: 550px; margin: 30px 0 38px; color: rgba(255,255,255,.67); }
.principles { display: grid; grid-template-columns: 1fr 1fr; }
.principle { min-height: 345px; padding: 54px 42px; border-right: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.principle:nth-child(2n) { border-right: 0; }
.principle:nth-child(n+3) { border-bottom: 0; }
.principle > span { color: var(--gold-light); font-family: var(--serif); font-size: 16px; }
.principle div { margin-top: 90px; }
.principle h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 25px; font-weight: 400; }
.principle p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; }

.section-heading-compact { margin-bottom: 54px; }
.timeline { display: grid; grid-template-columns: repeat(4,1fr); margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; counter-reset: none; }
.timeline li { position: relative; min-height: 250px; padding: 36px 30px 24px 0; border-right: 1px solid var(--line); }
.timeline li:not(:first-child) { padding-left: 30px; }
.timeline li:last-child { border-right: 0; }
.timeline li::before { content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border: 2px solid var(--ivory); border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.timeline li:not(:first-child)::before { left: 30px; }
.timeline span { color: var(--gold); font-family: var(--serif); font-size: 17px; }
.timeline h3 { margin: 52px 0 12px; color: var(--navy); font-family: var(--serif); font-size: 26px; font-weight: 400; }
.timeline p { margin: 0; color: var(--muted); font-size: 14px; }

.audience { padding: 110px 0; }
.audience-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.audience-list { border-top: 1px solid rgba(255,255,255,.16); }
.audience-list div { display: grid; grid-template-columns: 50px 1fr; gap: 20px; align-items: center; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.audience-list span { color: var(--gold-light); font-family: var(--serif); }
.audience-list p { margin: 0; color: rgba(255,255,255,.76); }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.faq-intro > p:last-child { max-width: 360px; margin: 24px 0 0; color: var(--muted); }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0; color: var(--navy); cursor: pointer; font-family: var(--serif); font-size: 21px; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary i { position: relative; width: 20px; height: 20px; flex: 0 0 auto; }
.accordion summary i::before, .accordion summary i::after { content: ""; position: absolute; top: 9px; left: 3px; width: 14px; height: 1px; background: var(--gold); transition: transform 180ms ease; }
.accordion summary i::after { transform: rotate(90deg); }
.accordion details[open] summary i::after { transform: rotate(0); }
.accordion details p { max-width: 680px; margin: -4px 44px 24px 0; color: var(--muted); }

.contact { padding: 0 0 88px; background: var(--ivory); }
.contact-card { display: grid; grid-template-columns: 1fr 1fr; min-height: 660px; color: var(--white); background: var(--navy); box-shadow: 0 30px 80px rgba(11,37,69,.13); }
.contact-copy { position: relative; overflow: hidden; padding: 76px 64px; border-right: 1px solid rgba(255,255,255,.13); }
.contact-copy::after { content: "CF"; position: absolute; right: -35px; bottom: -72px; color: rgba(211,184,137,.08); font-family: var(--serif); font-size: 250px; line-height: 1; letter-spacing: -.12em; }
.contact-copy > p:not(.eyebrow) { max-width: 440px; margin: 28px 0; color: rgba(255,255,255,.66); }
.contact-location { position: absolute; bottom: 60px; left: 64px; z-index: 2; display: flex; flex-direction: column; }
.contact-location span { color: var(--gold-light); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.contact-location small { margin-top: 5px; color: rgba(255,255,255,.5); }
.contact-form { display: flex; padding: 70px 64px; flex-direction: column; justify-content: center; }
.contact-form label { display: block; margin-bottom: 20px; }
.contact-form label > span { display: block; margin-bottom: 7px; color: rgba(255,255,255,.66); font-size: 12px; font-weight: 700; letter-spacing: .045em; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 12px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.22); border-radius: 0; color: var(--white); outline: none; background: transparent; appearance: none; }
.contact-form select { background-image: linear-gradient(45deg, transparent 50%, var(--gold-light) 50%), linear-gradient(135deg, var(--gold-light) 50%, transparent 50%); background-position: calc(100% - 12px) 50%, calc(100% - 7px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.contact-form select option { color: var(--ink); background: var(--white); }
.contact-form textarea { resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.37); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-bottom-color: var(--gold-light); }
.form-submit { width: 100%; margin-top: 12px; }
.form-note { margin: 12px 0 0; color: rgba(255,255,255,.42); font-size: 12px; line-height: 1.5; }
.form-status { min-height: 24px; margin: 10px 0 0; color: var(--gold-light); font-size: 13px; }

.footer { padding: 62px 0 24px; background: var(--stone-light); }
.footer-main { display: grid; grid-template-columns: 230px 1fr auto; align-items: center; gap: 40px; padding-bottom: 38px; border-bottom: 1px solid var(--line); }
.footer-brand img { width: 220px; height: 70px; object-fit: contain; }
.footer-main p { margin: 0; color: var(--muted); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.back-top { display: flex; align-items: center; gap: 12px; color: var(--navy); font-size: 13px; font-weight: 800; }
.back-top span:last-child { color: var(--gold); font-size: 20px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; color: #8a8f94; font-size: 12px; }
.footer-bottom p { margin: 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: 120ms; }

@media (max-width: 1040px) {
  :root { --shell: min(100% - 36px, 920px); }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .mobile-nav { position: fixed; inset: 86px 0 auto; display: grid; padding: 18px; border-bottom: 1px solid var(--line); background: var(--ivory); transform: translateY(-130%); transition: transform 220ms ease; }
  .mobile-nav.is-open { transform: translateY(0); }
  .mobile-nav a { padding: 14px 18px; border-bottom: 1px solid var(--line); color: var(--navy); font-family: var(--serif); font-size: 21px; }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-composition { min-height: 390px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card-featured { grid-row: span 2; }
  .approach-panel { padding-right: 50px; }
  .principle { padding: 42px 30px; }
  .principle div { margin-top: 70px; }
  .audience-grid, .faq-grid { gap: 60px; }
  .contact-copy, .contact-form { padding: 64px 44px; }
  .contact-location { left: 44px; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100vw - 32px); }
  .site-header { height: 74px; }
  .brand { width: 166px; }
  .brand img { height: 52px; }
  .button-small { display: none; }
  .mobile-nav { top: 74px; }
  .header-actions { gap: 12px; }
  .hero { padding-top: 132px; }
  .hero-grid { min-height: auto; padding-bottom: 46px; }
  .hero h1 { font-size: clamp(42px, 13vw, 58px); }
  .hero-lead { margin-top: 24px; font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 20px; }
  .hero-actions .button { width: 100%; }
  .text-link { align-self: flex-start; }
  .hero-composition { min-height: 330px; transform: scale(.88); margin: -12px 0; }
  .orbit-one { width: 320px; height: 320px; }
  .orbit-two { width: 240px; height: 240px; }
  .expertise-tags span:nth-child(1) { left: 0; }
  .expertise-tags span:nth-child(2) { right: 0; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip div { min-height: 76px; padding: 14px 8px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .services, .process, .faq { padding: 82px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 8px; margin-bottom: 42px; }
  .section-heading h2, .faq h2 { font-size: 42px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card-featured { min-height: 340px; grid-row: auto; }
  .service-card-featured { min-height: 580px; }
  .service-icon { margin-top: 48px; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-panel { min-height: auto; padding: 82px 0; border-right: 0; }
  .principles { border-top: 1px solid rgba(255,255,255,.1); }
  .principle { min-height: 280px; padding: 38px 22px; }
  .principle div { margin-top: 52px; }
  .timeline { grid-template-columns: 1fr; border-top: 0; border-left: 1px solid var(--line); }
  .timeline li, .timeline li:not(:first-child) { min-height: auto; padding: 8px 0 44px 30px; border-right: 0; }
  .timeline li::before, .timeline li:not(:first-child)::before { top: 4px; left: -5px; }
  .timeline h3 { margin-top: 14px; }
  .audience { padding: 82px 0; }
  .audience-grid, .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact { padding-bottom: 0; }
  .contact-card { width: 100%; grid-template-columns: 1fr; }
  .contact-copy { min-height: 500px; padding: 72px 28px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .contact-location { bottom: 48px; left: 28px; }
  .contact-form { padding: 54px 28px; }
  .footer-main { grid-template-columns: 1fr auto; }
  .footer-main > p { grid-column: 1 / -1; grid-row: 2; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.contact-location a{display:block;width:fit-content;margin-top:8px;font-size:16px;text-decoration:underline;text-underline-offset:4px}.company-registration{font-size:12px;line-height:1.8;padding-top:20px;color:var(--muted)}
