*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --void: #060608;
  --abyss: #0a0a0e;
  --deep: #0e0e14;
  --surface: #131318;
  --surface-mid: #18181f;
  --surface-up: #1f1f28;
  --border: rgba(255, 255, 255, 0.05);
  --border-mid: rgba(255, 255, 255, 0.08);
  --border-high: rgba(255, 255, 255, 0.12);
  --text-dim: #7e7e94;
  --text-muted: #808098;
  --text-mid: #8a8aa0;
  --text-soft: #b0b0c8;
  --text-pale: #d0d0e0;
  --text-bright: #ebebf5;
  --platinum: #c8c8d8;
  --silver: #e0e0f0;
  --accent: #a87840;
  --accent-mid: #c49050;
  --accent-light: #d8a860;
  --accent-glow: rgba(168, 120, 64, 0.12);
  --red: #e06060;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--void);
  color: var(--text-soft);
  font-family: "Syne", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Cinematic grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  mix-blend-mode: overlay;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 80px;
  background: rgba(6, 6, 8, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}

.nav-logo:hover .nav-logo-img {
  opacity: 0.85;
}

.nav-logo-text {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-bright);
}

.nav-logo-text span {
  color: var(--accent-mid);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: "Syne", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-soft);
}

.nav-cta {
  font-family: "Syne", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  border: 1px solid rgba(168, 120, 64, 0.3);
  padding: 0.7rem 1.6rem;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.nav-cta:hover {
  border-color: var(--accent-mid);
  background: var(--accent-glow);
}

/* ── HERO LOGO ── */
.hero-logo-display {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-20%, -54%);
  width: 420px;
  height: 420px;
  pointer-events: none;
  z-index: 0;
}

.hero-logo-display::before {
  content: "";
  position: absolute;
  inset: -60px;
  background: radial-gradient(
    ellipse,
    rgba(168, 120, 64, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-logo-display img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: sepia(1) saturate(1.6) hue-rotate(5deg) brightness(1.3);
  animation: logo-breathe 5s ease-in-out infinite;
}

@keyframes logo-breathe {
  0%,
  100% {
    opacity: 0.12;
  }
  50% {
    opacity: 0.52;
  }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 8rem 5% 6rem;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 70% 30%,
      rgba(168, 120, 64, 0.06) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 60% at 10% 90%,
      rgba(168, 120, 64, 0.04) 0%,
      transparent 60%
    ),
    linear-gradient(to bottom, transparent 40%, var(--void) 100%);
}

.hero-counter {
  position: absolute;
  top: 8rem;
  right: 5%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

.hero-counter-num {
  font-family: "Syne Mono", monospace;
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.hero-counter-active {
  color: var(--accent-mid);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-label {
  font-family: "Syne", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-label::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--text-bright);
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-mid);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-sub {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 400px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-end;
}

.btn-primary {
  font-family: "Syne", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--accent-mid);
  padding: 0.9rem 2rem;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.btn-ghost {
  font-family: "Syne", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  border: 1px solid var(--border-high);
  padding: 0.9rem 2rem;
  text-decoration: none;
  transition:
    color 0.2s,
    border-color 0.2s;
  white-space: nowrap;
}

.btn-ghost:hover {
  color: var(--text-pale);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 1rem 0;
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: "Syne", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-mid);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.marquee-item::after {
  content: "✦";
  color: var(--accent-mid);
  font-size: 0.65rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── SERVICES ── */
.services {
  padding: 8rem 5%;
  position: relative;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-family: "Syne", sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--text-bright);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--accent-mid);
}

.section-count {
  font-family: "Syne Mono", monospace;
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
}

.service-row {
  background: var(--void);
  display: grid;
  grid-template-columns: 60px 1fr 1fr auto;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem 0;
  cursor: pointer;
  transition: background 0.25s;
  position: relative;
}

.service-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 0.3s;
}

.service-row:hover {
  background: var(--surface);
}
.service-row:hover::before {
  transform: scaleY(1);
}

.service-row-num {
  font-family: "Syne Mono", monospace;
  font-size: 0.85rem;
  color: var(--text-dim);
  text-align: right;
  padding-right: 1rem;
  border-right: 1px solid var(--border);
}

.service-row-name {
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--text-pale);
}

.service-row-desc {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-row-arrow {
  font-size: 1.3rem;
  color: var(--text-dim);
  padding-right: 2rem;
  transition:
    color 0.2s,
    transform 0.2s;
}

.service-row:hover .service-row-arrow {
  color: var(--accent-mid);
  transform: translateX(4px);
}

/* ── STATS ── */
.stats {
  padding: 6rem 5%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.stat-block {
  background: var(--surface);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}

.stat-block::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-block:hover::before {
  opacity: 1;
}

.stat-value {
  font-family: "Fraunces", serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--text-bright);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-unit {
  font-size: 1.5rem;
  color: var(--accent-mid);
}

.stat-label {
  font-family: "Syne", sans-serif;
  font-size: 0.975rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ── STATEMENT ── */
.statement {
  padding: 10rem 5%;
  position: relative;
  overflow: hidden;
}

.statement-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(168, 120, 64, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.statement-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.statement-quote {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-pale);
  line-height: 1.35;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}

.statement-attr {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.statement-attr-line {
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.statement-attr-text {
  font-family: "Syne", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── TEAM ── */
.team {
  padding: 8rem 5%;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.team-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.team-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  transition: background 0.25s;
}

.team-card:hover {
  background: var(--surface-up);
}

.team-initial-block {
  width: 72px;
  height: 72px;
  border: 1px solid var(--border-high);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent-mid);
  margin-bottom: 1.5rem;
}

.team-name {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-pale);
  margin-bottom: 0.3rem;
}

.team-title {
  font-family: "Syne", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.team-bio {
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.75;
}

.csuite-points {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.csuite-points p {
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── CONTACT ── */
.contact {
  padding: 8rem 5%;
  position: relative;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}

.contact-left .section-label {
  margin-bottom: 0.8rem;
}
.contact-left .section-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.contact-left p {
  font-family: "Syne", sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-meta-label {
  font-family: "Syne", sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.contact-meta-value {
  font-family: "Syne Mono", monospace;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.contact-form {
  display: grid;
  gap: 0.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: "Syne", sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-pale);
  font-family: "Syne", sans-serif;
  font-size: 0.85rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  width: 100%;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-mid);
  box-shadow: 0 0 0 3px rgba(168, 120, 64, 0.25);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ── FOOTER ── */
footer {
  background: var(--void);
  border-top: 1px solid var(--border);
  padding: 3.5rem 5%;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.footer-logo-img {
  height: 28px;
  width: auto;
  opacity: 0.55;
}

.footer-logo-wordmark {
  font-family: "Syne", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.footer-logo-wordmark span {
  color: var(--accent);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-family: "Syne", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-copy {
  font-family: "Syne Mono", monospace;
  font-size: 0.62rem;
  color: var(--text-dim);
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 8, 0.88);
  backdrop-filter: blur(14px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-panel {
  background: var(--surface);
  border-top: 2px solid var(--accent);
  max-width: 860px;
  width: 100%;
  padding: 4.5rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.35s;
}

.modal-overlay.active .modal-panel {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0.4rem;
  line-height: 1;
}

.modal-close:hover {
  color: var(--accent-mid);
}

.modal-eyebrow {
  font-family: "Syne", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.modal-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.modal-title {
  font-family: "Fraunces", serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--text-bright);
  margin-bottom: 2rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.modal-body {
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 2;
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 200;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--accent-mid);
  transition:
    transform 0.3s,
    opacity 0.3s,
    width 0.3s;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── MOBILE DRAWER ── */
.nav-drawer {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(6, 6, 8, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 2.5rem 8%;
  flex-direction: column;
  gap: 0;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nav-drawer-link {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-pale);
  text-decoration: none;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
  letter-spacing: -0.01em;
}

.nav-drawer-link:hover {
  color: var(--accent-mid);
}
.nav-drawer-link:last-of-type {
  border-bottom: none;
}

.nav-drawer-link::after {
  content: "→";
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  color: var(--text-dim);
  transition:
    color 0.2s,
    transform 0.2s;
}

.nav-drawer-link:hover::after {
  color: var(--accent-mid);
  transform: translateX(4px);
}

.nav-drawer-cta {
  margin-top: 2rem;
  font-family: "Syne", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  border: 1px solid rgba(168, 120, 64, 0.3);
  padding: 1rem 1.6rem;
  text-decoration: none;
  text-align: center;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.nav-drawer-cta:hover {
  border-color: var(--accent-mid);
  background: var(--accent-glow);
}

@media (max-width: 900px) and (orientation: portrait) {
  .hero-logo-display {
    display: none;
  }
}

@media (min-width: 700px) and (max-width: 900px) and (orientation: portrait) {
  .hero {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10rem;
  }
  .hero-logo-display {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 351px;
    height: 351px;
    margin: 0 auto 2rem;
    align-self: center;
  }
  .hero-content {
    margin-top: 0;
    text-align: center;
    align-self: center;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero h1 {
    font-size: clamp(1.75rem, 4.5vw, 4rem);
  }
  .hero-logo-display {
    width: 210px;
    height: 210px;
  }
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-drawer {
    display: flex;
  }
}

@media (max-width: 900px) {
  .hero {
    align-items: flex-start;
    padding-top: 10rem;
  }
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .service-row {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }
  .service-row-desc,
  .service-row-arrow {
    display: none;
  }
  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── CLIENTS ── */
.clients {
  padding: 7rem 5%;
  background: var(--void);
  border-top: 1px solid var(--border);
}

.clients-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.clients-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.client-item {
  background: var(--void);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.8rem 2rem;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}

.client-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--accent),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.client-logo-img {
  max-width: 140px;
  max-height: 44px;
  width: auto;
  height: auto;
  display: block;
  filter: grayscale(0.45) sepia(0.25) brightness(0.9) opacity(0.75);
}

.client-logo-img--lg {
  max-width: 210px;
  max-height: 66px;
}

.client-logo-img--zoom {
  transform: scale(1.5);
}

.client-placeholder {
  font-family: "Syne", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.45;
  transition:
    opacity 0.3s,
    color 0.3s;
  text-align: center;
}

.client-item:hover .client-placeholder {
  opacity: 0.9;
  color: var(--text-soft);
}

@media (max-width: 600px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .client-logo-img--zoom {
    transform: scale(1.125);
  }
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--surface);
  color: var(--accent-light);
  border: 1px solid var(--accent);
  padding: 0.75rem 1.5rem;
  font-family: "Syne", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  z-index: 1000;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

/* ── GLOBAL FOCUS VISIBLE ── */
:focus-visible {
  outline: 2px solid var(--accent-mid);
  outline-offset: 3px;
}
.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible {
  outline: none;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
  .hero-logo-display img {
    animation: none;
    opacity: 0.3;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .hero-logo-display {
    display: block;
    width: 150px;
    height: 150px;
    top: 45%;
    left: auto;
    right: 10%;
    transform: translateY(-50%);
  }
}

@media (max-width: 667px) and (orientation: landscape) {
  .hero-logo-display {
    width: 120px;
    height: 120px;
    top: 50%;
    left: auto;
    right: 3%;
    transform: translateY(-50%);
  }
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .client-item {
    padding: 1.2rem 1rem;
  }
  .client-logo-img {
    max-width: 90px !important;
    max-height: 30px !important;
    transform: none !important;
  }
  .client-logo-img--zoom {
    transform: none !important;
  }
}

@media (min-width: 1024px) and (max-width: 1180px) and (orientation: landscape) {
  .hero-logo-display {
    transform: translate(5%, -54%);
  }
  .hero-label {
    font-size: 0.465rem;
  }
  .hero h1 {
    font-size: clamp(2.625rem, 6.75vw, 6rem);
  }
}
