:root {
  --black: #060606;
  --black-soft: #11100e;
  --ink: #181713;
  --ink-muted: #5e5a51;
  --gold: #dcae45;
  --gold-bright: #ffd76a;
  --gold-deep: #a9771c;
  --cream: #f4f0e7;
  --cream-deep: #ebe4d6;
  --white: #fff;
  --line: rgba(24, 23, 19, .14);
  --line-dark: rgba(255, 255, 255, .14);
  --container: 1240px;
  --container-narrow: 820px;
  --header-height: 88px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --radius: 22px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--gold); color: var(--black); }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .55em;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(3.4rem, 7vw, 7.5rem); }
h2 { font-size: clamp(2.3rem, 4vw, 4.5rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.85rem); }
p { margin: 0 0 1.35em; }

.container, .container-wide, .container-narrow {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}
.container-wide { width: min(calc(100% - 48px), 1440px); }
.container-narrow { width: min(calc(100% - 48px), var(--container-narrow)); }
.section { position: relative; padding: clamp(88px, 10vw, 150px) 0; }
.section--soft { background: var(--cream-deep); }
.section--dark-band { background: var(--black); color: var(--white); }
.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 14px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  font-family: Inter, sans-serif;
  letter-spacing: .08em;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: currentColor; opacity: .65; }
.display-heading { max-width: 900px; }
.large-copy { color: var(--ink-muted); font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.55; }

.skip-link {
  position: fixed;
  z-index: 99999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--gold-bright);
  color: var(--black);
  transform: translateY(-150%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }
.scroll-progress { position: fixed; z-index: 1001; top: 0; left: 0; width: 100%; height: 2px; pointer-events: none; }
.scroll-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright)); }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition: height .35s var(--ease), background .35s, border-color .35s, transform .35s var(--ease);
}
.site-header.is-scrolled {
  height: 72px;
  background: rgba(6, 6, 6, .88);
  border-color: rgba(255, 255, 255, .11);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}
.site-header.is-hidden { transform: translateY(-100%); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 28px; }
.site-branding { position: relative; z-index: 2; flex: 0 0 auto; }
.brand-logo, .custom-logo-link { display: block; }
.brand-logo img, .custom-logo { width: auto; height: 58px; object-fit: contain; transition: height .35s var(--ease); }
.is-scrolled .brand-logo img, .is-scrolled .custom-logo { height: 48px; }

.primary-navigation { display: flex; align-items: center; gap: 28px; }
.primary-menu, .primary-navigation .menu, .footer-menu, .footer-menu .primary-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.primary-menu a { position: relative; padding: 14px 0; font-size: 14px; font-weight: 650; }
.primary-menu a::after { content: ""; position: absolute; right: 0; bottom: 8px; left: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
.primary-menu a:hover::after, .primary-menu .current-menu-item > a::after { transform: scaleX(1); transform-origin: left; }
.primary-menu .sub-menu { position: absolute; min-width: 230px; margin: 0; padding: 14px; background: #151412; border: 1px solid var(--line-dark); border-radius: 14px; list-style: none; opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s; }
.primary-menu li { position: relative; }
.primary-menu li:hover > .sub-menu, .primary-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.primary-menu .sub-menu a { display: block; padding: 10px 12px; border-radius: 8px; }
.primary-menu .sub-menu a:hover { background: rgba(255,255,255,.07); }
.menu-toggle { display: none; border: 0; background: transparent; color: inherit; }
.menu-toggle__label { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.menu-toggle__bars { display: grid; gap: 6px; width: 26px; margin-left: 12px; }
.menu-toggle__bars i { display: block; height: 1px; background: currentColor; transition: .3s; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 30px rgba(220, 174, 69, .16);
  transition: transform .3s var(--ease), box-shadow .3s, background .3s;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(220, 174, 69, .26); }
.button svg, .text-link svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .25s; }
.button:hover svg, .text-link:hover svg { transform: translateX(4px); }
.button--small { min-height: 42px; padding: 10px 18px; }
.button--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); box-shadow: none; }
.button--outline:hover { background: var(--white); color: var(--black); }
.button--light { background: var(--black); border-color: var(--black); color: var(--white); box-shadow: none; }
.text-link { display: inline-flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,.35); padding: 4px 0; font-size: 14px; font-weight: 750; }
.text-link--dark { border-bottom-color: var(--line); }

.hero {
  position: relative;
  min-height: 100svh;
  background: radial-gradient(circle at 78% 34%, #262116 0, #0b0a08 34%, #050505 70%);
  color: var(--white);
  overflow: hidden;
}
.hero__grid { position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(to right, transparent, #000 40%, #000); }
.hero__glow { position: absolute; top: 15%; right: 8%; width: 42vw; height: 42vw; border-radius: 50%; background: rgba(220,174,69,.13); filter: blur(80px); }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr); align-items: center; gap: 6vw; min-height: 100svh; padding-top: var(--header-height); }
.hero__copy { max-width: 780px; padding: 80px 0; }
.hero__title { max-width: 850px; margin: 28px 0 30px; }
.hero__title::first-line { color: var(--gold-bright); }
.hero__lead { max-width: 640px; color: rgba(255,255,255,.68); font-size: clamp(1.08rem, 1.8vw, 1.4rem); }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; margin-top: 42px; }
.hero__visual { position: relative; display: grid; place-items: center; aspect-ratio: 1; }
.hero-emblem { position: relative; z-index: 3; display: grid; place-items: center; width: min(31vw, 440px); aspect-ratio: 1; border: 1px solid rgba(255,216,106,.35); border-radius: 50%; background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.1), transparent 42%), linear-gradient(145deg, rgba(220,174,69,.12), rgba(255,255,255,.02)); box-shadow: inset 0 0 80px rgba(220,174,69,.08), 0 40px 100px rgba(0,0,0,.45); backdrop-filter: blur(8px); }
.hero-emblem::before { content: ""; position: absolute; inset: 12%; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.hero-emblem img { width: 76%; filter: drop-shadow(0 14px 24px rgba(0,0,0,.45)); }
.hero-orbit { position: absolute; z-index: 1; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; animation: orbit-spin 28s linear infinite; }
.hero-orbit::after { content: ""; position: absolute; top: 48%; left: -5px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 18px var(--gold); }
.hero-orbit--one { inset: 5%; }
.hero-orbit--two { inset: -7%; transform: rotate(65deg); animation-duration: 40s; animation-direction: reverse; }
.hero-pill { position: absolute; z-index: 5; display: flex; align-items: center; gap: 10px; padding: 11px 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(8,8,8,.72); backdrop-filter: blur(12px); color: rgba(255,255,255,.8); font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.hero-pill span { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); }
.hero-pill--top { top: 20%; right: 0; }
.hero-pill--bottom { bottom: 20%; left: 0; }
.scroll-cue { position: absolute; z-index: 3; right: 36px; bottom: 40px; display: grid; justify-items: center; gap: 10px; color: rgba(255,255,255,.58); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-cue span { display: block; width: 1px; height: 44px; background: linear-gradient(var(--gold), transparent); animation: scroll-cue 2s infinite; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes scroll-cue { 0%,100% { transform: scaleY(.45); transform-origin: top; } 50% { transform: scaleY(1); } }

.section--intro { background: var(--cream); }
.intro-grid, .split-intro { display: grid; grid-template-columns: .55fr 1.45fr; gap: 8vw; }
.intro-grid .text-link { margin-top: 20px; }
.photo-story { padding-top: 0; background: var(--cream); }
.photo-story__grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, .45fr); gap: 18px; }
.photo-story figure { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--black); }
.photo-story img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.photo-story figure:hover img { transform: scale(1.035); }
.photo-story figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(0,0,0,.82)); pointer-events: none; }
.photo-story__main { min-height: 660px; }
.photo-story__side { display: grid; grid-template-rows: 1fr 1fr; gap: 18px; }
.photo-story__small { min-height: 320px; }
.photo-story figcaption { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; display: grid; gap: 8px; padding: clamp(22px, 3vw, 42px); color: var(--white); }
.photo-story figcaption span, .photo-story__small figcaption { color: var(--gold-bright); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.photo-story figcaption strong { max-width: 620px; font-family: Georgia, serif; font-size: clamp(1.7rem, 3vw, 3.2rem); font-weight: 500; line-height: 1.08; }
.section--sectors { background: var(--black); color: var(--white); }
.sectors-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 8vw; }
.sectors-sticky { position: sticky; top: 130px; align-self: start; }
.sectors-sticky h2 { margin-top: 30px; }
.sectors-sticky p { max-width: 460px; color: rgba(255,255,255,.6); }
.sectors-sticky .button { margin-top: 20px; }
.service-list { border-top: 1px solid var(--line-dark); }
.service-row { display: grid; grid-template-columns: 44px 58px 1fr 34px; align-items: center; gap: 20px; min-height: 150px; border-bottom: 1px solid var(--line-dark); transition: background .35s, padding .35s var(--ease); }
.service-row:hover { padding-inline: 18px; background: linear-gradient(90deg, rgba(220,174,69,.12), transparent); }
.service-row__number { color: rgba(255,255,255,.42); font-size: 11px; font-weight: 800; }
.service-row__icon { display: grid; place-items: center; width: 56px; height: 56px; border: 1px solid rgba(220,174,69,.35); border-radius: 50%; color: var(--gold-bright); }
.service-row__icon svg, .service-card__icon svg, .sector-emblem svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-row__content { display: grid; gap: 10px; }
.service-row__content strong { font-family: Georgia, serif; font-size: clamp(1.45rem, 2.5vw, 2.1rem); font-weight: 500; }
.service-row__content small { max-width: 520px; color: rgba(255,255,255,.52); font-size: 14px; line-height: 1.5; }
.service-row__arrow svg { width: 26px; height: 26px; fill: none; stroke: currentColor; }
.service-row:hover .service-row__arrow { color: var(--gold-bright); }

.section-heading { display: grid; grid-template-columns: .65fr 1.35fr; gap: 6vw; margin-bottom: 70px; }
.method-grid, .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.method-card, .value-card { min-height: 310px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.25); transition: transform .35s var(--ease), background .35s, box-shadow .35s; }
.method-card:hover, .value-card:hover { transform: translateY(-8px); background: var(--white); box-shadow: 0 24px 70px rgba(30,25,14,.09); }
.method-card > span, .value-card > span { display: block; margin-bottom: 80px; color: var(--gold-deep); font-size: 12px; font-weight: 800; }
.method-card p, .value-card p { color: var(--ink-muted); }
.section--statement { padding: clamp(130px, 16vw, 230px) 0; background: var(--gold); overflow: hidden; }
.statement-word { position: absolute; top: 50%; left: 50%; color: rgba(255,255,255,.12); font-size: clamp(7rem, 22vw, 25rem); font-weight: 900; letter-spacing: -.08em; transform: translate(-50%, -50%); white-space: nowrap; }
.statement-inner { position: relative; z-index: 2; text-align: center; }
.statement-inner blockquote { max-width: 980px; margin: 38px auto 0; font-family: Georgia, serif; font-size: clamp(2.4rem, 5vw, 5.6rem); line-height: 1.05; letter-spacing: -.04em; }

.inner-hero { position: relative; min-height: min(760px, 82svh); padding-top: var(--header-height); background: radial-gradient(circle at 85% 25%, #2a2416 0, #0b0a08 35%, #050505 70%); color: var(--white); overflow: hidden; }
.inner-hero::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(90deg, #000, transparent); }
.inner-hero__glow { position: absolute; top: 0; right: -10%; width: 50vw; height: 50vw; border-radius: 50%; background: rgba(220,174,69,.1); filter: blur(90px); }
.inner-hero__inner { position: relative; z-index: 2; display: flex; align-items: center; min-height: calc(min(760px, 82svh) - var(--header-height)); }
.inner-hero__copy { max-width: 980px; padding: 90px 0; }
.inner-hero h1 { margin: 30px 0; font-size: clamp(3.3rem, 7vw, 7.2rem); }
.inner-hero p { max-width: 720px; color: rgba(255,255,255,.65); font-size: clamp(1.1rem, 2vw, 1.4rem); }
.inner-hero__mark { position: absolute; right: -4%; bottom: -24%; color: rgba(220,174,69,.06); font-family: Georgia, serif; font-size: clamp(22rem, 52vw, 44rem); line-height: .8; }

.content-with-panel { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 8vw; }
.content-with-panel h2 { margin-top: 28px; }
.about-photo { padding-bottom: clamp(70px, 9vw, 130px); background: var(--cream); }
.about-photo figure { position: relative; height: min(68vw, 720px); margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--black); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-photo figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.78)); }
.about-photo figcaption { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: clamp(26px, 4vw, 54px); color: var(--white); font-family: Georgia, serif; font-size: clamp(1.45rem, 3vw, 3rem); }
.gold-panel { padding: clamp(35px, 5vw, 64px); border-radius: var(--radius); background: linear-gradient(145deg, var(--gold-bright), var(--gold)); box-shadow: 0 35px 90px rgba(116,80,16,.18); }
.check-list { display: grid; gap: 22px; margin: 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid rgba(0,0,0,.15); font-weight: 750; }
.check-list li:last-child { padding-bottom: 0; border: 0; }
.check-list svg, .role-item svg { flex: 0 0 auto; width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2; }

.services-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { display: flex; flex-direction: column; min-height: 560px; padding: clamp(30px, 4vw, 52px); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.28); overflow: hidden; transition: transform .4s var(--ease), background .3s, box-shadow .3s; }
.service-card:hover { transform: translateY(-8px); background: var(--white); box-shadow: 0 26px 80px rgba(40,30,12,.09); }
.service-card__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: auto; color: var(--gold-deep); font-size: 12px; font-weight: 800; }
.service-card__icon { display: grid; place-items: center; width: 66px; height: 66px; border: 1px solid var(--line); border-radius: 50%; color: var(--gold-deep); }
.service-card__photo { position: relative; aspect-ratio: 16 / 8.5; margin: 30px 0 28px; border-radius: 14px; overflow: hidden; background: var(--black); }
.service-card__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 55%, rgba(220,174,69,.13)); pointer-events: none; }
.service-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-card__photo img { transform: scale(1.045); }
.service-card small { margin-top: 0; color: var(--gold-deep); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-card h2 { margin-top: 12px; font-size: clamp(2rem, 3vw, 3.2rem); }
.service-card p { max-width: 490px; color: var(--ink-muted); }
.service-card strong { display: flex; align-items: center; gap: 12px; margin-top: 20px; font-size: 14px; }
.service-card strong svg { width: 20px; height: 20px; fill: none; stroke: currentColor; }
.dark-band__grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 8vw; }
.dark-band__grid p { color: rgba(255,255,255,.65); }

.sector-emblem { display: grid; place-items: center; min-height: 440px; padding: 50px; border-radius: var(--radius); background: var(--black); color: var(--gold-bright); overflow: hidden; }
.sector-emblem div { display: grid; place-items: center; width: 190px; height: 190px; border: 1px solid rgba(255,215,106,.35); border-radius: 50%; box-shadow: 0 0 80px rgba(220,174,69,.14); }
.sector-emblem svg { width: 88px; height: 88px; }
.sector-emblem span { color: var(--white); font-family: Georgia, serif; font-size: 2rem; }
.sector-photo-break { padding: 0 0 clamp(80px, 10vw, 150px); background: var(--cream); }
.sector-photo-break figure { position: relative; height: min(62vw, 700px); margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--black); }
.sector-photo-break figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(0,0,0,.82)); }
.sector-photo-break img { width: 100%; height: 100%; object-fit: cover; }
.sector-photo-break figcaption { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; display: grid; gap: 7px; padding: clamp(25px, 4vw, 54px); color: var(--white); }
.sector-photo-break figcaption span { color: var(--gold-bright); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.sector-photo-break figcaption strong { font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 4.2rem); font-weight: 500; }
.roles-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; }
.roles-layout h2 { margin-top: 28px; }
.roles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.role-item { display: flex; align-items: center; gap: 14px; min-height: 86px; padding: 20px 24px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.32); font-weight: 750; }
.role-item svg { color: var(--gold-deep); }
.service-next { padding-top: 0; }
.service-next__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: clamp(40px, 6vw, 80px); border-radius: var(--radius); background: var(--black); color: var(--white); }
.service-next__inner h2 { max-width: 770px; margin: 22px 0 0; }
.service-next__inner .button { flex: 0 0 auto; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; }
.contact-details h2 { margin-top: 26px; }
.contact-details > p { color: var(--ink-muted); }
.contact-list { display: grid; gap: 18px; margin: 46px 0 0; padding: 0; list-style: none; }
.contact-list > li { display: flex; align-items: center; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line); }
.contact-list > li > svg { width: 25px; height: 25px; fill: none; stroke: var(--gold-deep); stroke-width: 1.6; }
.contact-list div { display: grid; }
.contact-list small { color: var(--ink-muted); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-list a, .contact-list span { font-weight: 700; }
.contact-form-card { padding: clamp(32px, 5vw, 64px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 35px 100px rgba(30,24,12,.08); }
.contact-form-card h3 { margin-bottom: 34px; font-size: 2.2rem; }
.form-placeholder { padding: 26px; border: 1px dashed rgba(169,119,28,.5); border-radius: 14px; background: #faf7ef; }
.form-placeholder p { color: var(--ink-muted); }
.form-placeholder code { display: block; padding: 12px; background: var(--black); color: var(--gold-bright); border-radius: 8px; overflow-x: auto; }

.entry-content > * { max-width: 100%; }
.entry-content > * + * { margin-top: 1.35em; }
.entry-content h2, .entry-content h3 { margin-top: 1.5em; }
.entry-content a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.entry-content ul, .entry-content ol { padding-left: 1.3em; }
.entry-content blockquote { margin: 2em 0; padding: 20px 0 20px 28px; border-left: 3px solid var(--gold); font-family: Georgia, serif; font-size: 1.5rem; }
.entry-content img { border-radius: 14px; }
.entry-content input:not([type="submit"]), .entry-content textarea, .entry-content select,
.contact-form-card input:not([type="submit"]), .contact-form-card textarea, .contact-form-card select {
  width: 100%; min-height: 52px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 10px; background: var(--cream); color: var(--ink); outline: none; transition: border .25s, box-shadow .25s;
}
.entry-content textarea, .contact-form-card textarea { min-height: 150px; resize: vertical; }
.entry-content input:focus, .entry-content textarea:focus, .entry-content select:focus,
.contact-form-card input:focus, .contact-form-card textarea:focus, .contact-form-card select:focus { border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(220,174,69,.15); }
.entry-content input[type="submit"], .contact-form-card input[type="submit"], .wp-element-button { display: inline-flex; min-height: 52px; padding: 14px 25px; border: 0; border-radius: 999px; background: var(--gold); color: var(--black); font-weight: 800; cursor: pointer; }
.entry-featured { margin: -20px 0 60px; }

.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.post-card { border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.3); overflow: hidden; }
.post-card__image { display: grid; place-items: center; aspect-ratio: 16/9; background: var(--black); color: var(--gold); font: 8rem Georgia, serif; overflow: hidden; }
.post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .post-card__image img { transform: scale(1.04); }
.post-card__content { padding: 34px; }
.post-card__content small { color: var(--gold-deep); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.post-card__content h2 { margin-top: 14px; font-size: 2.2rem; }
.post-card__content p { color: var(--ink-muted); }
.nav-links { grid-column: 1 / -1; display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.page-numbers { display: grid; place-items: center; min-width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; }
.page-numbers.current { background: var(--black); color: var(--white); }

.comments-area { padding: 0 0 100px; }
.comment-list { padding: 0; list-style: none; }
.comment { margin: 24px 0; padding: 24px; border: 1px solid var(--line); border-radius: 14px; }
.error-page { display: grid; align-items: center; min-height: 88svh; padding-top: var(--header-height); background: var(--black); color: var(--white); text-align: center; }
.error-page p { color: rgba(255,255,255,.65); }
.error-code { display: block; color: var(--gold); font: clamp(7rem, 20vw, 16rem)/.8 Georgia, serif; opacity: .22; }

.pre-footer { background: var(--gold); }
.pre-footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding-top: clamp(62px, 8vw, 100px); padding-bottom: clamp(62px, 8vw, 100px); }
.pre-footer h2 { max-width: 860px; margin: 24px 0 0; }
.pre-footer .button { flex: 0 0 auto; }
.site-footer { padding: 80px 0 28px; background: var(--black); color: var(--white); }
.site-footer__grid { display: grid; grid-template-columns: 1.2fr .65fr 1fr; gap: 7vw; }
.site-footer__brand img { height: 100px; width: auto; margin-bottom: 24px; }
.site-footer__brand p { max-width: 420px; color: rgba(255,255,255,.52); }
.site-footer h3 { margin-bottom: 24px; color: var(--gold-bright); font-family: Inter, sans-serif; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-menu, .footer-menu .primary-menu { align-items: flex-start; flex-direction: column; gap: 12px; }
.footer-menu .primary-menu { display: contents; }
.site-footer .primary-menu,
.site-footer .menu {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}
.site-footer .primary-menu li,
.site-footer .menu li { width: auto; }
.site-footer .primary-menu a,
.site-footer .menu a {
  display: inline-block;
  padding: 0;
  color: rgba(255,255,255,.68);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.site-footer .primary-menu a::after,
.site-footer .menu a::after { display: none; }
.footer-menu a { color: rgba(255,255,255,.68); font-size: 14px; }
.footer-menu a:hover { color: var(--gold-bright); }
.footer-contact { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,.67); font-size: 14px; }
.footer-contact svg { flex: 0 0 auto; width: 18px; height: 18px; fill: none; stroke: var(--gold); stroke-width: 1.6; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 70px; padding-top: 25px; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,.42); font-size: 12px; }
.site-footer__bottom p { margin: 0; }
.back-to-top { color: rgba(255,255,255,.7); }

.hero-animate { opacity: 0; transform: translateY(28px); animation: hero-in .85s var(--ease) forwards; }
.hero-animate:nth-child(2) { animation-delay: .12s; }
.hero-animate:nth-child(3) { animation-delay: .24s; }
.hero-animate:nth-child(4) { animation-delay: .36s; }
@keyframes hero-in { to { opacity: 1; transform: none; } }
.reveal { opacity: 0; transform: translateY(46px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal--delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .primary-menu, .primary-navigation .menu { gap: 22px; }
  .hero__inner { grid-template-columns: 1.08fr .92fr; gap: 2vw; }
  .hero-emblem { width: min(36vw, 400px); }
  .sectors-layout, .content-with-panel { gap: 5vw; }
}

@media (max-width: 940px) {
  :root { --header-height: 76px; }
  .container, .container-wide, .container-narrow { width: min(calc(100% - 36px), var(--container)); }
  .menu-toggle { position: relative; z-index: 1002; display: flex; align-items: center; padding: 12px 0; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__bars i:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle__bars i:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .primary-navigation { position: fixed; inset: 0; z-index: 1001; display: flex; align-items: flex-start; justify-content: center; flex-direction: column; gap: 32px; padding: 110px 8vw 50px; background: rgba(6,6,6,.98); visibility: hidden; opacity: 0; transform: translateX(100%); transition: opacity .35s, transform .5s var(--ease), visibility .5s; }
  .primary-navigation.is-open { visibility: visible; opacity: 1; transform: none; }
  .primary-menu, .primary-navigation .menu { align-items: flex-start; flex-direction: column; gap: 2px; width: 100%; }
  .primary-menu li { width: 100%; }
  .primary-menu a { display: block; padding: 11px 0; font-family: Georgia, serif; font-size: clamp(2rem, 7vw, 4rem); font-weight: 500; }
  .primary-menu a::after { display: none; }
  .primary-menu .sub-menu { position: static; display: block; padding: 0 0 0 18px; border: 0; background: transparent; opacity: 1; visibility: visible; transform: none; }
  .primary-menu .sub-menu a { font-size: 1.2rem; }
  .nav-cta { margin-top: 18px; }
  .brand-logo img, .custom-logo, .is-scrolled .brand-logo img, .is-scrolled .custom-logo { height: 50px; }
  .hero__inner { grid-template-columns: 1fr; min-height: auto; padding-top: calc(var(--header-height) + 70px); padding-bottom: 90px; }
  .hero__copy { padding: 45px 0 0; }
  .hero__visual { width: min(560px, 90vw); margin: 0 auto; }
  .hero-emblem { width: min(54vw, 390px); }
  .scroll-cue { display: none; }
  .intro-grid, .split-intro, .section-heading, .contact-layout { grid-template-columns: 1fr; gap: 55px; }
  .photo-story__grid { grid-template-columns: 1fr; }
  .photo-story__main { min-height: 560px; }
  .photo-story__side { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .sectors-layout { grid-template-columns: 1fr; }
  .sectors-sticky { position: static; margin-bottom: 40px; }
  .method-grid, .values-grid { grid-template-columns: 1fr; }
  .method-card, .value-card { min-height: 250px; }
  .method-card > span, .value-card > span { margin-bottom: 50px; }
  .content-with-panel, .roles-layout { grid-template-columns: 1fr; gap: 55px; }
  .services-page-grid { gap: 18px; }
  .service-card { min-height: 430px; }
  .dark-band__grid { grid-template-columns: 1fr; gap: 35px; }
  .service-next__inner, .pre-footer__inner { align-items: flex-start; flex-direction: column; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .container, .container-wide, .container-narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 76px 0; }
  .site-header, .site-header.is-scrolled { height: 68px; }
  .brand-logo img, .custom-logo, .is-scrolled .brand-logo img, .is-scrolled .custom-logo { height: 44px; max-width: 190px; }
  .menu-toggle__label { display: none; }
  .hero__inner { padding-top: 100px; padding-bottom: 70px; }
  .hero__copy { padding-top: 20px; }
  .hero__title { margin-block: 22px; font-size: clamp(3.1rem, 15vw, 5rem); }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 32px; }
  .hero__visual { margin-top: 30px; }
  .hero-emblem { width: min(72vw, 330px); }
  .hero-orbit--two { inset: -3%; }
  .hero-pill { padding: 9px 12px; font-size: 10px; }
  .inner-hero { min-height: 650px; }
  .inner-hero__inner { min-height: calc(650px - var(--header-height)); }
  .inner-hero h1 { font-size: clamp(3rem, 14vw, 5rem); }
  .service-row { grid-template-columns: 30px 48px 1fr; gap: 12px; min-height: 130px; }
  .service-row__icon { width: 46px; height: 46px; }
  .service-row__content small { display: none; }
  .service-row__arrow { display: none; }
  .photo-story__main { min-height: 440px; }
  .photo-story__side { grid-template-columns: 1fr; }
  .photo-story__small { min-height: 300px; }
  .about-photo figure, .sector-photo-break figure { height: 440px; border-radius: 16px; }
  .services-page-grid, .post-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 390px; }
  .roles-grid { grid-template-columns: 1fr; }
  .sector-emblem { min-height: 340px; }
  .service-next__inner { padding: 34px 26px; }
  .contact-form-card { padding: 28px 20px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 46px; }
  .site-footer__brand { grid-column: auto; }
  .site-footer__bottom { flex-direction: column; }
}

@media (max-width: 390px) {
  .hero-pill { display: none; }
  .hero-emblem { width: 76vw; }
  .button { width: 100%; }
  .text-link { width: auto; }
  .service-row__number { display: none; }
  .service-row { grid-template-columns: 48px 1fr; }
}

@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; }
  .reveal, .hero-animate { opacity: 1; transform: none; }
}
