:root {
  --ink: #07111d;
  --ink-2: #0c1a2a;
  --ink-3: #13263a;
  --paper: #f6f3ed;
  --paper-2: #ece7de;
  --white: #ffffff;
  --text: #17202a;
  --muted: #66717d;
  --line: rgba(15, 27, 40, 0.14);
  --line-dark: rgba(255, 255, 255, 0.15);
  --gold: #d8ad56;
  --gold-light: #f5d98c;
  --teal: #71c7ca;
  --teal-dark: #2e777d;
  --shadow: 0 24px 80px rgba(4, 12, 22, 0.13);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-h: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

::selection { background: rgba(216, 173, 86, 0.32); color: var(--ink); }

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 112px 0; position: relative; }
.section-light { background: var(--paper); }
.section-stone { background: var(--paper-2); }
.section-ink { background: var(--ink); color: var(--white); }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 14px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 750;
  box-shadow: var(--shadow);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 3px solid var(--teal); outline-offset: 4px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled,
.policy-header {
  background: rgba(7, 17, 29, 0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(255,255,255,.09);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand img { width: 48px; height: 48px; border-radius: 14px; object-fit: cover; }
.brand-copy { display: grid; line-height: 1.02; color: var(--white); letter-spacing: .01em; }
.brand-copy strong { font-size: 17px; letter-spacing: .16em; color: var(--gold-light); }
.brand-copy span { margin-top: 4px; font-size: 12px; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.7); }

.primary-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.primary-nav a { color: rgba(255,255,255,.82); font-size: 14px; font-weight: 650; letter-spacing: .015em; position: relative; }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--gold); transition: right .2s ease; }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { right: 0; }
.primary-nav a:hover { color: var(--white); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: linear-gradient(135deg, #efc96f, #c89339);
  color: #07111d;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .015em;
  box-shadow: 0 10px 28px rgba(210, 159, 66, .18);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 15px 34px rgba(210, 159, 66, .26); filter: saturate(1.08); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: 13px; }
.button-light { background: var(--white); border-color: var(--white); color: var(--ink); box-shadow: none; }
.header-cta { margin-left: 2px; }

.menu-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); color: white; border-radius: 12px; cursor: pointer; padding: 0; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 18px; height: 1.5px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.hero { min-height: 780px; background: var(--ink); color: var(--white); display: flex; align-items: center; overflow: hidden; position: relative; padding: calc(var(--header-h) + 88px) 0 92px; }
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 54%; }
.hero-overlay { background: linear-gradient(90deg, rgba(5,14,24,.94) 0%, rgba(5,14,24,.88) 42%, rgba(5,14,24,.45) 70%, rgba(5,14,24,.58) 100%), linear-gradient(0deg, rgba(5,14,24,.48), transparent 40%); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.34fr) minmax(300px, .66fr); gap: 76px; align-items: end; }
.hero-copy { max-width: 760px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .19em; font-size: 11px; font-weight: 800; color: var(--gold-light); }
.eyebrow span { width: 30px; height: 1px; background: currentColor; }
.eyebrow-dark { color: var(--teal-dark); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: inherit; line-height: 1.08; }
h1 { font-size: clamp(44px, 6vw, 72px); letter-spacing: -.045em; max-width: 760px; margin: 20px 0 24px; font-weight: 760; }
h2 { font-size: clamp(34px, 4.2vw, 56px); letter-spacing: -.038em; font-weight: 740; margin: 16px 0 0; }
h3 { font-size: 22px; letter-spacing: -.02em; font-weight: 760; }
.hero-lead { max-width: 650px; color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.7; margin-bottom: 30px; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.text-link { color: rgba(255,255,255,.88); font-size: 14px; font-weight: 740; display: inline-flex; align-items: center; gap: 9px; }
.text-link span { color: var(--gold-light); transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px,3px); }
.hero-note { margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.17); display: flex; gap: 14px; align-items: flex-start; max-width: 565px; }
.hero-note p { margin: 0; color: rgba(255,255,255,.68); font-size: 13px; }
.note-icon { color: var(--teal); }

.hero-card { border: 1px solid rgba(255,255,255,.16); background: rgba(7,17,29,.48); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: var(--radius); padding: 26px; box-shadow: 0 26px 60px rgba(0,0,0,.22); }
.card-kicker { color: rgba(255,255,255,.58); text-transform: uppercase; letter-spacing: .13em; font-size: 10px; font-weight: 800; margin-bottom: 8px; }
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li { display: grid; grid-template-columns: 40px 1fr; gap: 13px; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.check-list li:last-child { border-bottom: 0; padding-bottom: 5px; }
.check-list li > span { color: var(--gold-light); font-size: 11px; font-weight: 850; letter-spacing: .08em; }
.check-list strong { display: block; font-size: 15px; margin-bottom: 4px; }
.check-list small { color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.45; }

.split-heading { display: grid; grid-template-columns: 1fr .9fr; gap: 76px; align-items: start; }
.split-heading h2 { color: var(--ink); max-width: 650px; }
.split-copy { padding-top: 35px; color: #56616b; font-size: 17px; }
.split-copy p { margin-bottom: 20px; }
.split-copy p:last-child { margin-bottom: 0; }
.principles-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.principle-card { background: rgba(255,255,255,.66); border: 1px solid rgba(14,28,44,.1); border-radius: var(--radius); padding: 30px; min-height: 260px; }
.icon-shell { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--ink); color: var(--gold-light); margin-bottom: 40px; }
.principle-card h3 { color: var(--ink); margin-bottom: 13px; }
.principle-card p { color: var(--muted); font-size: 14px; margin: 0; }

.section-heading { display: grid; grid-template-columns: 1fr .55fr; gap: 72px; align-items: end; margin-bottom: 50px; }
.section-heading h2 { max-width: 720px; }
.section-heading > p { color: rgba(255,255,255,.6); font-size: 15px; margin: 0 0 6px; }
.section-heading-dark > p { color: var(--muted); }
.section-heading-dark h2 { color: var(--ink); }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.service-card { min-height: 390px; position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,.12); }
.service-image-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.service-image-card:hover img { transform: scale(1.035); }
.service-card-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,14,24,.92) 0%, rgba(5,14,24,.22) 72%); }
.service-card-content { position: absolute; z-index: 2; inset: auto 0 0; padding: 30px; }
.service-card-content > span { display: block; color: var(--gold-light); font-size: 11px; font-weight: 850; letter-spacing: .12em; margin-bottom: 13px; }
.service-card-content h3 { font-size: 29px; margin: 0 0 10px; }
.service-card-content p { max-width: 530px; color: rgba(255,255,255,.68); font-size: 14px; margin: 0; }
.service-text-card { padding: 36px; min-height: 390px; background: linear-gradient(140deg, rgba(113,199,202,.11), rgba(216,173,86,.08)); display: flex; flex-direction: column; justify-content: space-between; }
.service-number { color: var(--gold-light); font-size: 11px; font-weight: 850; letter-spacing: .12em; }
.service-text-card h3 { font-size: 31px; margin-bottom: 14px; }
.service-text-card p { color: rgba(255,255,255,.64); margin: 0; max-width: 520px; }
.service-text-card a { color: var(--white); display: inline-flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.14); padding-top: 18px; font-weight: 750; font-size: 14px; }
.service-text-card a span { color: var(--gold-light); }
.image-disclaimer { margin-top: 20px; margin-bottom: 0; color: rgba(255,255,255,.46); font-size: 12px; }

.visual-story { display: grid; grid-template-columns: .85fr 1.15fr; gap: 76px; align-items: center; }
.visual-copy h2 { color: var(--ink); }
.visual-copy > p { color: var(--muted); font-size: 16px; margin: 25px 0 34px; }
.detail-lines { border-top: 1px solid rgba(7,17,29,.14); }
.detail-lines div { display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(7,17,29,.12); padding: 16px 0; }
.detail-lines span { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.detail-lines strong { color: var(--ink); font-size: 14px; }
.visual-figure { margin: 0; }
.visual-figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.visual-figure figcaption { color: #6d756f; font-size: 11px; margin-top: 12px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.process-step { border-top: 2px solid var(--ink); padding: 22px 20px 6px 0; min-height: 250px; }
.process-step > span { color: var(--teal-dark); font-size: 11px; font-weight: 850; letter-spacing: .12em; }
.process-step h3 { color: var(--ink); font-size: 21px; margin: 42px 0 12px; }
.process-step p { color: var(--muted); font-size: 14px; margin: 0; }

.section-contact { padding: 92px 0; background: var(--ink-2); color: var(--white); }
.contact-panel { min-height: 340px; border-radius: var(--radius-lg); padding: 54px; background: radial-gradient(circle at 85% 15%, rgba(113,199,202,.16), transparent 34%), linear-gradient(135deg, #12263a 0%, #07111d 74%); border: 1px solid rgba(255,255,255,.12); display: grid; grid-template-columns: 1.15fr .85fr; gap: 66px; align-items: center; position: relative; overflow: hidden; }
.contact-panel::after { content: "A"; position: absolute; right: 2%; bottom: -32%; font-size: 310px; line-height: 1; font-weight: 900; color: rgba(255,255,255,.025); pointer-events: none; }
.contact-copy h2 { max-width: 620px; }
.contact-copy p { color: rgba(255,255,255,.62); font-size: 16px; max-width: 640px; margin: 22px 0 0; }
.contact-action { position: relative; z-index: 2; border-left: 1px solid rgba(255,255,255,.14); padding-left: 40px; }
.contact-action > span { display: block; color: rgba(255,255,255,.48); text-transform: uppercase; letter-spacing: .13em; font-size: 10px; font-weight: 800; margin-bottom: 11px; }
.contact-action > a:not(.button) { display: block; color: var(--gold-light); font-size: clamp(18px, 2.1vw, 24px); font-weight: 760; margin-bottom: 25px; word-break: break-word; }

.site-footer { background: #050d16; color: var(--white); padding: 58px 0 24px; }
.footer-main { display: grid; grid-template-columns: .8fr 1.3fr 1fr; gap: 60px; align-items: start; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand img { width: 46px; height: 46px; border-radius: 13px; }
.footer-main > p { color: rgba(255,255,255,.5); font-size: 13px; max-width: 420px; margin: 7px 0 0; }
.footer-links { display: flex; justify-content: flex-end; gap: 22px; flex-wrap: wrap; padding-top: 8px; }
.footer-links a { color: rgba(255,255,255,.72); font-size: 13px; font-weight: 650; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; color: rgba(255,255,255,.4); font-size: 11px; letter-spacing: .04em; }
.footer-bottom a:hover { color: var(--white); }

/* Privacy Policy */
.policy-page { background: #eef0ef; }
.policy-hero { padding: calc(var(--header-h) + 90px) 0 82px; background: radial-gradient(circle at 80% 20%, rgba(113,199,202,.15), transparent 30%), linear-gradient(150deg, #11253a, #07111d 72%); color: var(--white); }
.policy-hero-inner { text-align: center; max-width: 780px; }
.policy-hero h1 { margin: 18px auto 10px; font-size: clamp(42px, 6vw, 66px); }
.policy-hero p { margin: 0; color: var(--gold-light); font-weight: 800; letter-spacing: .15em; font-size: 11px; }
.policy-date { display: inline-flex; margin-top: 26px; padding: 9px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.66); font-size: 12px; }
.policy-section { padding: 72px 0 108px; }
.policy-layout { display: block; max-width: 980px; margin-inline: auto; }
.policy-card { background: #fff; border: 1px solid rgba(14,28,44,.1); border-radius: 24px; padding: 56px 62px; box-shadow: 0 20px 55px rgba(4,12,22,.07); }
.policy-card section { scroll-margin-top: calc(var(--header-h) + 26px); padding-bottom: 34px; margin-bottom: 34px; border-bottom: 1px solid #e7e9e8; }
.policy-card section:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.policy-card h2 { color: var(--ink); font-size: 21px; letter-spacing: -.015em; margin: 0 0 13px; }
.policy-card p { color: #57616c; font-size: 14px; line-height: 1.8; margin: 0; }
.policy-card p + p { margin-top: 14px; }
.policy-email { color: var(--teal-dark); font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }

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

@media (max-width: 1020px) {
  :root { --header-h: 74px; }
  .container { width: min(var(--container), calc(100% - 36px)); }
  .header-cta { display: none; }
  .primary-nav { gap: 22px; }
  .hero { min-height: 720px; }
  .hero-layout { grid-template-columns: 1fr; gap: 38px; align-items: start; }
  .hero-card { max-width: 560px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(5,14,24,.95), rgba(5,14,24,.76) 68%, rgba(5,14,24,.52)); }
  .split-heading, .section-heading, .visual-story, .contact-panel { grid-template-columns: 1fr; gap: 38px; }
  .split-copy { padding-top: 0; }
  .principles-grid { gap: 14px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  .contact-action { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); padding-left: 0; padding-top: 30px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 780px) {
  .section { padding: 84px 0; }
  .brand img { width: 43px; height: 43px; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy span { font-size: 10px; }
  .menu-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute;
    top: calc(var(--header-h) - 1px);
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: rgba(7,17,29,.98);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 16px;
    box-shadow: 0 24px 70px rgba(0,0,0,.34);
    transform: translateY(-8px) scale(.985);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }
  .primary-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .primary-nav a { padding: 13px 14px; border-radius: 10px; }
  .primary-nav a:hover { background: rgba(255,255,255,.06); }
  .primary-nav a::after { display: none; }
  .hero { min-height: auto; padding: calc(var(--header-h) + 68px) 0 72px; }
  .hero-media img { object-position: 62% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(5,14,24,.96), rgba(5,14,24,.82) 76%, rgba(5,14,24,.65)); }
  h1 { font-size: clamp(40px, 11vw, 58px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-card { padding: 22px; }
  .principles-grid { grid-template-columns: 1fr; }
  .principle-card { min-height: 0; }
  .icon-shell { margin-bottom: 26px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 350px; }
  .section-heading { margin-bottom: 34px; }
  .visual-story { gap: 46px; }
  .visual-figure img { border-radius: 24px; }
  .process-grid { grid-template-columns: 1fr; gap: 18px; }
  .process-step { min-height: 0; padding-bottom: 24px; }
  .process-step h3 { margin-top: 26px; }
  .contact-panel { padding: 34px 26px; border-radius: 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-links { gap: 16px 20px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .policy-section { padding: 48px 0 84px; }
  .policy-card { padding: 34px 26px; border-radius: 18px; }
}

@media (max-width: 480px) {
  .container { width: min(var(--container), calc(100% - 26px)); }
  .site-header { height: 70px; }
  :root { --header-h: 70px; }
  .brand-copy { display: none; }
  .button { width: 100%; }
  .hero-actions .text-link { width: auto; }
  .hero-copy h1 { margin-top: 17px; }
  .hero-card { border-radius: 18px; }
  .check-list li { grid-template-columns: 34px 1fr; }
  .principle-card { padding: 25px; }
  .service-card-content { padding: 24px; }
  .service-card-content h3, .service-text-card h3 { font-size: 26px; }
  .service-text-card { padding: 26px; }
  .detail-lines div { align-items: flex-start; flex-direction: column; gap: 4px; }
  .contact-panel { padding: 30px 22px; }
  .contact-action .button { width: 100%; }
  .policy-header .brand-copy { display: none; }
  .policy-header .button { width: auto; }
}

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