:root {
  --ink: #111713;
  --green-950: #07110c;
  --green-900: #0d1a12;
  --green-800: #14281b;
  --green-700: #1f3c29;
  --green-600: #315b3e;
  --gold-500: #c99a43;
  --gold-400: #dab45f;
  --gold-300: #ead38e;
  --cream: #f8f4ea;
  --paper: #f2efe7;
  --white: #ffffff;
  --muted: #6c746e;
  --line-light: rgba(255,255,255,.12);
  --line-dark: rgba(17,23,19,.12);
  --shadow-lg: 0 24px 60px rgba(3, 13, 8, .22);
  --shadow-md: 0 14px 36px rgba(3, 13, 8, .14);
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
svg { fill: currentColor; }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 1rem;
  top: 1rem;
  transform: translateY(-180%);
  padding: .75rem 1rem;
  color: var(--white);
  background: var(--green-950);
  border-radius: 10px;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  color: var(--white);
  background: rgba(7,17,12,.93);
  border-bottom: 1px solid rgba(218,180,95,.18);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  text-decoration: none;
  min-width: 0;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(218,180,95,.72);
  border-radius: 50%;
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: .04em;
}
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong {
  max-width: 350px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 600;
}
.brand-copy small {
  margin-top: .27rem;
  color: var(--gold-300);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.main-nav { display: flex; align-items: center; gap: 1.45rem; }
.main-nav a {
  position: relative;
  padding: .45rem 0;
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold-400);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { transform: scaleX(1); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.section-dark { color: var(--white); background: var(--green-950); }
.section-light { color: var(--ink); background: var(--cream); }
.section-green { color: var(--white); background: var(--green-800); }
.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-300);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow-dark { color: var(--green-700); }
h1, h2, h3 { margin-top: 0; line-height: 1.12; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; }
h1 { margin-bottom: 1.35rem; font-size: clamp(2.75rem, 6vw, 5.65rem); font-weight: 500; letter-spacing: -.045em; }
h2 { margin-bottom: 1rem; font-size: clamp(2.15rem, 4vw, 4rem); font-weight: 500; letter-spacing: -.035em; }
h3 { font-size: 1.05rem; }
.lead { font-size: clamp(1.05rem, 2vw, 1.23rem); color: #4a534d; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  width: 70vw;
  height: 70vw;
  left: -35vw;
  bottom: -48vw;
  border: 1px solid rgba(218,180,95,.23);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(218,180,95,.025), 0 0 0 160px rgba(218,180,95,.018);
}
.hero-glow {
  position: absolute;
  z-index: -1;
  width: 600px;
  height: 600px;
  right: -140px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49,91,62,.58), transparent 68%);
  filter: blur(8px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  padding-block: clamp(4rem, 10vw, 8rem);
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 760px; }
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 1.8rem;
  color: rgba(255,255,255,.76);
  font-size: 1.03rem;
}
.hero-location svg { width: 20px; color: var(--gold-400); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #17120a;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 12px 30px rgba(201,154,67,.23);
}
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.035); }
.btn-ghost:hover { border-color: rgba(218,180,95,.65); background: rgba(218,180,95,.08); }
.btn-dark { color: var(--white); background: var(--green-950); }
.hero-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.hero-tags span {
  padding: .42rem .72rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: rgba(255,255,255,.64);
  font-size: .78rem;
}
.logo-frame {
  position: relative;
  padding: clamp(.7rem, 2vw, 1.1rem);
  border: 1px solid rgba(218,180,95,.3);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}
.logo-frame::before {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: calc(var(--radius-xl) - 9px);
  pointer-events: none;
}
.logo-frame img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  border-radius: calc(var(--radius-xl) - 12px);
}
.corner { position: absolute; z-index: 3; width: 70px; height: 70px; pointer-events: none; }
.corner-a { left: -12px; top: -12px; border-left: 2px solid var(--gold-400); border-top: 2px solid var(--gold-400); }
.corner-b { right: -12px; bottom: -12px; border-right: 2px solid var(--gold-400); border-bottom: 2px solid var(--gold-400); }
.hero-bottom-line { position: absolute; left: 5%; right: 5%; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-500), transparent); }

.profile { padding-block: clamp(4.5rem, 9vw, 8rem); }
.profile-grid { display: grid; grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr); gap: clamp(3rem, 8vw, 7rem); align-items: center; }
.portrait-wrap { position: relative; }
.portrait-frame {
  position: relative;
  max-width: 470px;
  padding: 12px;
  border-radius: 190px 190px 26px 26px;
  background: linear-gradient(145deg, var(--gold-300), var(--green-700));
  box-shadow: var(--shadow-lg);
}
.portrait-frame::before {
  content: "";
  position: absolute;
  inset: -24px 40px auto -24px;
  height: 60%;
  border: 1px solid rgba(31,60,41,.24);
  border-radius: 190px 190px 0 0;
  z-index: -1;
}
.portrait-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 180px 180px 18px 18px;
}
.portrait-caption {
  position: absolute;
  right: -12px;
  bottom: 24px;
  max-width: 285px;
  display: grid;
  gap: .25rem;
  padding: 1rem 1.15rem;
  color: var(--white);
  background: rgba(7,17,12,.95);
  border: 1px solid rgba(218,180,95,.42);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}
.portrait-caption strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.05rem; }
.portrait-caption span { color: var(--gold-300); font-size: .82rem; }
.profile-copy { max-width: 690px; }
.profile-facts { display: grid; gap: .85rem; margin-top: 2rem; }
.profile-facts article {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.58);
}
.profile-facts article > div { display: grid; }
.profile-facts strong { color: var(--green-800); }
.profile-facts span:not(.fact-icon) { color: var(--muted); }
.fact-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--gold-300);
  background: var(--green-900);
}
.fact-icon svg { width: 23px; }

.patterned { position: relative; overflow: hidden; }
.patterned::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .25;
  background:
    radial-gradient(circle at 20% 0%, rgba(49,91,62,.5), transparent 34%),
    linear-gradient(120deg, transparent 0 46%, rgba(218,180,95,.08) 46% 46.4%, transparent 46.4% 100%);
  pointer-events: none;
}
.situations { padding-block: clamp(4.5rem, 9vw, 8rem); }
.section-heading { max-width: 760px; margin-bottom: 2.5rem; position: relative; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading > p:last-child { color: rgba(255,255,255,.65); }
.services .section-heading > p:last-child { color: var(--muted); }
.situation-grid { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
.situation-card {
  position: relative;
  min-height: 96px;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(218,180,95,.24);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.016));
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.situation-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(218,180,95,.07), transparent 45%);
  opacity: 0;
  transition: opacity .22s ease;
}
.situation-card:hover { transform: translateY(-3px); border-color: rgba(218,180,95,.55); }
.situation-card:hover::after { opacity: 1; }
.situation-card .number {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(218,180,95,.55);
  border-radius: 50%;
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}
.situation-card p { position: relative; z-index: 1; margin: 0; color: rgba(255,255,255,.88); line-height: 1.38; }

.services { padding-block: clamp(4.5rem, 9vw, 8rem); }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.service-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.35rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.7);
  box-shadow: 0 8px 28px rgba(3,13,8,.05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(201,154,67,.42); box-shadow: var(--shadow-md); }
.service-card-wide { grid-column: span 2; }
.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  border-radius: 16px;
  color: var(--gold-300);
  background: var(--green-900);
  box-shadow: inset 0 0 0 1px rgba(218,180,95,.18);
}
.service-icon svg { width: 27px; }
.service-card h3 { margin-bottom: .5rem; color: var(--green-900); font-size: 1.1rem; }
.service-card p { margin: 0; color: var(--muted); }

.agency { padding-block: clamp(3.8rem, 7vw, 6rem); position: relative; overflow: hidden; }
.agency::after {
  content: "";
  position: absolute;
  right: -180px;
  top: -180px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(218,180,95,.2);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(218,180,95,.035), 0 0 0 110px rgba(218,180,95,.02);
}
.agency-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.agency-copy p:last-child { color: rgba(255,255,255,.7); }
.agency-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
.agency-list span {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(218,180,95,.25);
  border-radius: 14px;
  background: rgba(7,17,12,.22);
  font-weight: 700;
}

.location { padding-block: clamp(4.5rem, 9vw, 7rem); }
.location-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2.7rem);
  border: 1px solid rgba(31,60,41,.14);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0, rgba(218,180,95,.16), transparent 30%),
    var(--white);
  box-shadow: var(--shadow-md);
}
.location-card h2 { margin-bottom: .35rem; font-size: clamp(2rem, 4vw, 3.4rem); }
.location-card p { margin: 0; color: var(--muted); }
.location-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--gold-300);
  background: var(--green-900);
}
.location-icon svg { width: 36px; }

.site-footer { color: rgba(255,255,255,.72); background: #050a07; border-top: 1px solid rgba(218,180,95,.14); }
.footer-grid { min-height: 170px; display: grid; grid-template-columns: 1.2fr 1fr auto; align-items: center; gap: 2rem; }
.footer-grid strong { color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: 1.2rem; }
.footer-grid p { margin: .35rem 0 0; }
.footer-grid nav { display: flex; flex-wrap: wrap; gap: .85rem 1.2rem; }
.footer-grid a { color: rgba(255,255,255,.68); text-decoration: none; }
.footer-grid a:hover { color: var(--gold-300); }
.footer-location { color: var(--gold-300); white-space: nowrap; }

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(218,180,95,.48);
  border-radius: 50%;
  color: var(--gold-300);
  background: rgba(7,17,12,.94);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 22px; }

.reveal { opacity: 1; transform: none; }

@keyframes fade-up {
  from { transform: translateY(18px); }
  to { transform: translateY(0); }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal { animation: fade-up .65s ease both; }
  .situation-card:nth-child(2n),
  .service-card:nth-child(2n) { animation-delay: .06s; }
}

:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 3px; }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .hero-visual { max-width: 760px; }
  .profile-grid { grid-template-columns: .9fr 1.1fr; gap: 3rem; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card-wide { grid-column: span 2; }
  .agency-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; padding-block: 2rem; }
  .footer-location { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 72px; }
  .header-inner { min-height: 70px; }
  .brand-copy strong { max-width: 210px; font-size: .88rem; }
  .brand-copy small { font-size: .65rem; }
  .brand-mark { width: 38px; height: 38px; font-size: .85rem; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 1rem;
    background: rgba(7,17,12,.985);
    border-bottom: 1px solid rgba(218,180,95,.2);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a { padding: 1rem .5rem; border-bottom: 1px solid rgba(255,255,255,.08); }

  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 4.2rem 5rem; gap: 3.2rem; }
  h1 { font-size: clamp(2.65rem, 13vw, 4.5rem); }
  h2 { font-size: clamp(2.1rem, 10vw, 3.35rem); }
  .hero-actions .btn { width: 100%; }
  .logo-frame { transform: none; }

  .profile-grid { grid-template-columns: 1fr; }
  .portrait-wrap { max-width: 500px; margin-inline: auto; }
  .portrait-caption { right: 0; bottom: 18px; }
  .profile-copy { max-width: none; }

  .situation-grid { grid-template-columns: 1fr; }
  .situation-card { grid-template-columns: 50px 1fr; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: auto; }
  .service-card { min-height: 190px; }

  .agency-list { grid-template-columns: 1fr; }
  .location-card { grid-template-columns: 1fr; text-align: center; }
  .location-icon { margin-inline: auto; }
  .location-card .btn { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-grid nav { justify-content: center; }
  .footer-location { grid-column: auto; }
}

@media (max-width: 430px) {
  .container { width: min(calc(100% - 1.25rem), var(--container)); }
  .brand-copy strong { max-width: 172px; }
  .hero-tags { gap: .45rem; }
  .hero-tags span { font-size: .72rem; }
  .portrait-caption { position: relative; right: auto; bottom: auto; margin: -26px 12px 0; }
  .profile-facts article { align-items: flex-start; }
  .situation-card { min-height: 0; padding: .9rem; }
  .situation-card .number { width: 44px; height: 44px; }
}

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