@font-face {
    font-family: 'Vega Antikva';
    src: url('/Vega antikva Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
  font-family: "Gotham Pro";
  src: local("Gotham Pro"), local("GothamPro");
}

:root {
  --green: #fff;
  --green-deep: #b89a4f;
  --gold: #d9c17a;
  --green-soft: rgba(217, 193, 122, 0.14);
  --bg: #0f3f31;
  --surface: rgba(18, 34, 28, 0.92);
  --surface-strong: #17342c;
  --text: #f4f2ea;
  --muted: #becbc4;
  --line: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 10px 24px rgba(2, 8, 6, 0.24);
  --shadow-md: 0 18px 42px rgba(2, 8, 6, 0.3);
  --shadow-lg: 0 28px 74px rgba(2, 8, 6, 0.42);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Gotham Pro", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at top left, rgba(217, 193, 122, 0.12), transparent 26%),
    radial-gradient(circle at top right, rgba(190, 203, 196, 0.08), transparent 24%),
    var(--bg);
  min-height: 100vh;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 80%);
  opacity: 0.5;
  z-index: -2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

img.is-broken {
  opacity: 0;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  max-width: 100%;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(20px);
  background: rgba(11, 30, 24, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 62px;
  padding: 10px 14px;
  gap: 0;
  min-width: 0;
  border-radius: 14px;
  background: #0a3127;
  border: 1px solid rgba(217, 193, 122, 0.32);
}

.brand-mark {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  -webkit-mask: url("/logo.png") center / contain no-repeat;
  mask: url("/logo.png") center / contain no-repeat;
  flex: 0 0 auto;
}

.brand-text {
  display: none;
  gap: 3px;
}

.brand-text strong {
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  font-family: 'Vega Antikva', serif;
  font-weight: 600;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 9px;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
  opacity: 0.8;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--green);
  background: rgba(217, 193, 122, 0.12);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  display: none;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--green);
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-backdrop {
  display: none;
}

.menu-intro {
  display: none;
}

.nav-close {
  display: none;
}

.site-main {
  padding-bottom: 84px;
}

.hero {
  padding: 34px 0 24px;
}

.hero-layout,
.page-hero-layout,
.split-layout,
.service-layout,
.contact-grid,
.about-grid {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.hero-layout {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
}

.team-hero {
  padding: 40px 0 28px;
}

.team-hero__layout {
  width: min(calc(100% - 48px), 1440px);
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(600px, 1.1fr);
  align-items: center;
  gap: clamp(32px, 4vw, 64px);
}

.hero.team-hero .hero-copy {
  padding: 0;
}

.hero.team-hero h1 {
  max-width: 15ch;
  margin: 18px 0 18px;
  font-size: clamp(2.5rem, 3.2vw, 3.75rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  overflow-wrap: normal;
  hyphens: none;
}

.hero.team-hero .hero-actions {
  margin-top: 24px;
}

.team-hero__media {
  min-height: 0;
  aspect-ratio: 3 / 2;
}

.team-hero__media img {
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  padding: 10px 0;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.3rem, 4.6vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 12ch;
  overflow-wrap: normal;
  color: var(--gold);
}

.hero p,
.page-hero p,
.section-lead,
.card p,
.split-content p,
.service-card p,
.case-card p,
.contact-card p,
.form-card p,
.about-panel p {
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions,
.cta-row,
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  min-width: 0;
}

.hero-actions {
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  will-change: transform;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: linear-gradient(180deg, #d9c17a, var(--green-deep));
  color: #10221b;
  box-shadow: 0 14px 30px rgba(2, 8, 6, 0.32);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #ead88f, #c8a95a);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--green);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  border-color: rgba(217, 193, 122, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--green);
  border-color: rgba(217, 193, 122, 0.22);
}

.btn-ghost:hover {
  background: rgba(217, 193, 122, 0.1);
}

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-visual {
  display: block;
  min-width: 0;
}

.page-hero-layout .hero-visual {
  grid-template-columns: 1fr;
}

.page-hero-layout .hero-stack {
  grid-template-columns: 1fr;
}

.page-hero-layout .media-frame--hero {
  min-height: 430px;
  aspect-ratio: 16 / 10;
}

.media-frame,
.media-tile,
.card,
.service-card,
.case-card,
.contact-card,
.form-card,
.map-card,
.quote-card,
.stat-card,
.mini-card,
.section-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(217, 193, 122, 0.12), rgba(255, 255, 255, 0.04)),
    var(--surface-strong);
  min-width: 0;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame--hero {
  min-height: 560px;
  aspect-ratio: 4 / 5;
}

.media-frame--tall {
  min-height: 100%;
  aspect-ratio: 4 / 5;
}

.media-frame--wide {
  min-height: 0;
  aspect-ratio: auto;
}

.media-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.glass-card {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(8, 20, 16, 0.62);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 34px rgba(2, 8, 6, 0.26);
}

.glass-card strong {
  display: block;
  color: var(--green);
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.glass-card span {
  font-size: 0.88rem;
  color: var(--muted);
}

.hero-stack {
  display: grid;
  gap: 16px;
}

.mini-card {
  padding: 18px;
  border-radius: 24px;
  overflow: hidden;
}

.mini-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 14px;
}

.mini-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.stat-card {
  padding: 16px;
  opacity: 1;
  border-radius: 20px;
}

.stat-card strong {
  display: block;
  color: var(--text);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.84rem;
}

.section {
  padding: 26px 0 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.section-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.section-title {
  margin: 8px 0 0;
  font-size: clamp(1.5rem, 2vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--gold);
}

.section-title::after {
  content: "";
  display: block;
  width: 74px;
  height: 3px;
  border-radius: 99px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, 0.08));
}

.section-lead {
  max-width: 66ch;
  margin: 12px 0 0;
}

.grid {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  padding: 22px;
  border-radius: var(--radius-lg);
  min-width: 0;
}

.card--feature {
  display: grid;
  gap: 12px;
  min-height: 210px;
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.outcome-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 28px 24px;
  min-width: 0;
}

.outcome-item + .outcome-item {
  border-left: 1px solid var(--line);
}

.outcome-item > span {
  color: var(--gold);
  font-family: 'Vega Antikva', Georgia, serif;
  font-size: 1.25rem;
  line-height: 1;
}

.outcome-item h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.outcome-item p {
  margin: 0;
  color: var(--muted);
}

.card--feature p {
  margin: 0;
}

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--green);
  flex: 0 0 auto;
}

.icon-circle svg,
.site-nav svg,
.service-icon svg,
.contact-icon svg,
.case-icon svg,
.map-pin svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3,
.service-card h3,
.case-card h3,
.contact-card h3,
.about-panel h3,
.form-card h3,
.quote-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.feature-list,
.compact-list,
.timeline,
.contact-list,
.service-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compact-list li,
.service-list li,
.timeline li,
.about-panel li {
  position: relative;
  padding-left: 18px;
  color: inherit;
}

.compact-list li::before,
.service-list li::before,
.timeline li::before,
.about-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
  transform: translateY(-50%);
}

.feature-list {
  gap: 14px;
}

.feature-list li {
  display: grid;
  gap: 6px;
  padding-left: 0;
}

.feature-list strong {
  color: var(--green);
}

.feature-list span,
.timeline span {
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-list span {
  line-height: 1.45;
}

.timeline strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.section-panel {
  border-radius: var(--radius-xl);
  padding: 24px;
  overflow: hidden;
  max-width: 100%;
}

.split-layout {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.split-layout--reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.split-media {
  position: relative;
}

.split-content {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.split-content .card {
  background: rgba(255, 255, 255, 0.05);
}

.quote-card {
  border-radius: var(--radius-xl);
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.quote-card::before {
  content: "“";
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 8rem;
  line-height: 1;
  color: rgba(217, 193, 122, 0.12);
  font-family: Georgia, serif;
}

.quote-card p {
  margin: 30px 0 0 0 ;
  font-size: 2cqmax;
  color: var(--text);
}

.quote-card footer {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.4rem;
}

.ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(217, 193, 122, 0.12);
  font-size: 0.85rem;
  font-weight: 600;
}

.chip--soft {
  background: rgba(255, 255, 255, 0.12);
  color: #10221b;
}

.dark-band {
  background: linear-gradient(135deg, rgba(7, 19, 15, 0.98), rgba(20, 40, 34, 0.98));
  color: #fff;
}

.dark-band .section-kicker,
.dark-band .section-title,
.dark-band .section-lead,
.dark-band .card,
.dark-band .quote-card,
.dark-band .service-card,
.dark-band .case-card,
.dark-band .contact-card,
.dark-band .form-card,
.dark-band .map-card,
.dark-band .about-panel,
.dark-band .stat-card {
  color: inherit;
}

.dark-band .section-title::after {
  background: linear-gradient(90deg, var(--green), rgba(255, 255, 255, 0.12));
}

.dark-band .section-lead,
.dark-band p,
.dark-band .muted {
  color: rgba(255, 255, 255, 0.8);
}

.dark-band .card,
.dark-band .service-card,
.dark-band .case-card,
.dark-band .contact-card,
.dark-band .form-card,
.dark-band .map-card,
.dark-band .about-panel,
.dark-band .stat-card,
.dark-band .quote-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.dark-band .icon-circle,
.dark-band .service-icon,
.dark-band .contact-icon,
.dark-band .case-icon,
.dark-band .map-pin {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.dark-band .chip {
  background: rgba(217, 193, 122, 0.18);
  color: #10221b;
}

.dark-band .feature-list strong,
.dark-band .feature-list span,
.dark-band .timeline strong,
.dark-band .timeline span {
  color: rgba(255, 255, 255, 0.9);
}

.service-layout {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
}

.service-layout--reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.service-visual {
  position: relative;
}

.service-visual .media-frame {
  min-height: 560px;
}

.service-grid {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.service-grid--mosaic {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  padding: 22px;
  border-radius: 22px;
  display: grid;
  gap: 14px;
  min-width: 0;
}

.service-card--wide {
  grid-column: span 2;
}

.service-card--tall {
  min-height: 100%;
}

.service-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.service-icon,
.contact-icon,
.case-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold);
  flex: 0 0 auto;
}

.service-card p,
.case-card p,
.contact-card p {
  margin: 0;
}

.service-card .compact-list,
.service-card .service-list {
  color: inherit;
}

.note-panel {
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.dark-band .note-panel {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.84);
  border-left-color: rgba(255, 255, 255, 0.5);
}

.case-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-card {
  overflow: hidden;
  border-radius: 24px;
  min-width: 0;
}

.case-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background:
    linear-gradient(135deg, rgba(217, 193, 122, 0.12), rgba(255, 255, 255, 0.04)),
    var(--surface-strong);
}

.case-card__body {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.case-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.case-card--feature {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.case-card--feature img {
  height: 100%;
  aspect-ratio: auto;
  min-height: 320px;
}

.about-grid {
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
}

.about-panel {
  padding: 22px;
  border-radius: 24px;
  display: grid;
  gap: 14px;
}

.timeline {
  gap: 0;
}

.timeline li {
  padding: 16px 0 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline li:first-child {
  padding-top: 0;
  border-top: 0;
}

.values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.contact-list {
  gap: 14px;
}

.contact-card {
  padding: 20px;
  border-radius: 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-card a {
  color: var(--green);
  font-weight: 700;
}

.form-card {
  padding: 24px;
  border-radius: 28px;
  display: grid;
  gap: 16px;
  min-width: 0;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.9rem;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(217, 193, 122, 0.5);
  box-shadow: 0 0 0 4px rgba(217, 193, 122, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.map-card {
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(7, 19, 15, 0.92)),
    repeating-linear-gradient(45deg, rgba(217, 193, 122, 0.06) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 28px);
}

.map-card .media-frame {
  position: absolute;
  inset: 0;
  border-radius: 0;
  z-index: 0;
}

.map-card .map-content {
  position: relative;
  z-index: 1;
  max-width: 32ch;
}

.map-pin {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d9c17a, #9e7d32);
  color: #10221b;
  box-shadow: 0 16px 34px rgba(2, 8, 6, 0.28);
  margin-bottom: 14px;
}

.cta-panel {
  margin-top: 18px;
  padding: 26px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(7, 19, 15, 0.98), rgba(24, 45, 38, 0.98));
  color: #fff;
  box-shadow: var(--shadow-lg);
  max-width: 100%;
}

.cta-panel .section-title::after {
  background: linear-gradient(90deg, var(--green), rgba(255, 255, 255, 0.12));
}

.cta-panel .section-lead,
.cta-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-panel .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.cta-panel .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  padding: 32px 0 42px;
}

.footer-shell {
  padding: 24px;
  border-radius: 28px;
  background: rgba(8, 20, 16, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-sm);
}

.footer-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
}

.footer-logo {
  position: relative;
  display: block;
  width: 190px;
  height: 74px;
  border-radius: 12px;
  background: #0a3127;
  border: 1px solid rgba(217, 193, 122, 0.32);
}

.footer-logo::before {
  content: "";
  position: absolute;
  inset: 10px 12px;
  background: var(--gold);
  -webkit-mask: url("/logo.png") center / contain no-repeat;
  mask: url("/logo.png") center / contain no-repeat;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.team-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-card__media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: rgba(255, 255, 255, 0.03);
}

.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.team-card:hover .team-card__media img {
  transform: scale(1.025);
}

.team-card__body {
  display: grid;
  gap: 7px;
  padding: 20px;
}

.team-card__body h3 {
  margin: 0;
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.28;
  overflow-wrap: break-word;
}

.team-card__company {
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-grid h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links > div > img {
  width: 28px !important;
  height: 28px;
  padding: 5px;
  border-radius: 50%;
  background: var(--gold);
  object-fit: contain;
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact > span:first-child {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  background: rgba(217, 193, 122, 0.14);
  color: var(--gold);
  font-size: 0.86rem;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.floaty {
  animation: floaty 5.5s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1080px) {
  .hero-layout,
  .split-layout,
  .split-layout--reverse,
  .service-layout,
  .service-layout--reverse,
  .about-grid,
  .contact-grid,
  .footer-grid,
  .page-hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: block;
  }

  .team-hero__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero.team-hero h1 {
    max-width: 14ch;
  }

  .case-grid,
  .values-grid,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-card--feature {
    grid-column: span 2;
  }

  .outcome-list {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .outcome-item + .outcome-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(100vw, 430px);
    max-width: 100vw;
    height: 100dvh;
    overflow-y: auto;
    padding: 28px max(16px, env(safe-area-inset-right)) 24px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    background: rgba(7, 19, 15, 0.97);
    backdrop-filter: blur(26px);
    box-shadow: -32px 0 90px rgba(0, 0, 0, 0.24);
    clip-path: inset(0 0 0 100%);
    transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: clip-path 0.32s ease, opacity 0.24s ease, visibility 0.24s ease;
    z-index: 100;
  }

  .nav-close {
    position: absolute;
    top: 20px;
    right: 18px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  }

  .nav-close:hover {
    transform: rotate(90deg);
    background: rgba(217, 193, 122, 0.12);
    border-color: rgba(217, 193, 122, 0.22);
  }

  .nav-close svg {
    width: 21px;
    height: 21px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .menu-intro {
    display: grid;
    gap: 6px;
    padding: 44px 64px 8px 16px;
  }

  .menu-intro span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.78rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .menu-intro strong {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.1;
    font-family: 'Vega Antikva', serif;
    font-weight: 600;
  }

  .site-nav.is-open {
    clip-path: inset(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 16px;
    border-radius: 18px;
  }

  .site-nav .btn {
    width: 100%;
    min-height: 52px;
    margin-top: 6px;
  }

  .site-nav a[aria-current="page"] {
    background: rgba(217, 193, 122, 0.12);
    color: #fff;
  }

  .site-nav a::after {
    left: 18px;
    right: 18px;
    bottom: 10px;
    background: var(--green);
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(8, 18, 14, 0.46);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
    z-index: 70;
  }

  .nav-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .brand-text span {
    display: none;
  }

  .header-cta {
    display: inline-flex;
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.9rem;
    margin-left: 0;
    flex: 0 0 auto;
  }

  .hero {
    padding-top: 22px;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 100%;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .media-frame--hero,
  .service-visual .media-frame,
  .split-media .media-frame {
    min-height: 420px;
  }

  .case-card--feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .brand {
    display: flex;
    align-items: center;
    width: 172px;
    height: 52px;
    padding: 8px 10px;
    gap: 0;
    min-width: 0;
    flex: 0 0 172px;
  }

  .brand-mark {
    width: 100%;
    height: 100%;
    flex: 0 0 auto;
  }

  .brand-text {
    display: none;
  }

  .brand-text strong {
    max-width: 180px;
    font-size: 0.9rem;
    line-height: 1.1;
    white-space: normal;
  }
  .media-frame--hero {
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .team-hero {
    padding-top: 24px;
  }

  .hero.team-hero h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 11vw, 3.1rem);
    line-height: 1.03;
  }

  .team-hero__media {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .stat-card {
    padding: 13px;
    border-radius: 20px;
  }

  .media-frame img {
    width: 100%;
  }
  .brand-text span {
    font-size: 0.72rem;
    line-height: 1.15;
    white-space: normal;
  }
  .nav-toggle {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .page-hero-layout .media-frame--hero {
    aspect-ratio: 16 / 10;
  }

  .media-frame--hero,
  .service-visual .media-frame,
  .split-media .media-frame {
    min-height: 0;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
  }

  .team-card__media {
    aspect-ratio: 4 / 4.7;
  }

  .team-card__body {
    padding: 18px;
  }


  .hero-actions,
  .cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
.quote-card p {
  margin: 10px 0 0 0;
  font-size: 1.08rem;
}
.quote-card footer {
  font-size: 0.88rem;
}
  .hero-metrics,
  .grid-2,
  .grid-3,
  .grid-4,
  .case-grid,
  .values-grid,
  .service-grid--mosaic {
    grid-template-columns: 1fr;
    display: grid;
  }
.media-frame--wide {
      aspect-ratio: 0;
      width: 100%;
      object-fit: cover;
}
  .split-content {
    width: auto;
  }

  .service-card--wide {
    grid-column: span 1;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-panel,
  .cta-panel,
  .footer-shell {
    padding: 20px;
  }

  .media-overlay {
    inset: auto 14px 14px 14px;
    flex-direction: column;
    align-items: stretch;
  }

  .glass-card {
    width: 100%;
  }
}
@media (max-width: 420px) {

.split-content {
  width: auto;
}
  .brand-text strong {
    max-width: 140px;
    font-size: 0.84rem;
  }

  .brand-text span {
    font-size: 0.68rem;
  }
  .nav-toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
}

@media (max-width: 340px) {


  .brand-text strong {
    max-width: 118px;
    font-size: 0.78rem;
  }

  .brand-text span {
    font-size: 0.64rem;
  }
}
