/* ─── Font faces ────────────────────────────────────────────────────────── */

@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../vendor/fonts/bebas-neue-400.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../vendor/fonts/dm-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../vendor/fonts/dm-sans-500.woff2') format('woff2');
}

/* ─── Design tokens ─────────────────────────────────────────────────────── */

:root {
  --bg-base:      #0a0a0a;
  --bg-surface:   #0e0e10;
  --gold:         #a8884a;
  --gold-dim:     #876633;
  --text-primary: #f2f2f0;
  --text-muted:   #9a9a96;
  --text-dim:     #5c5c58;

  --head: 'Bebas Neue', sans-serif;
  --body: 'DM Sans', system-ui, sans-serif;

  --header-h: 76px;
}

/* ─── Base reset ─────────────────────────────────────────────────────────── */

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img, svg { display: block; max-width: 100%; }

/* ─── Page fade-in ───────────────────────────────────────────────────────── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

main { animation: fadeUp 0.45s ease both; }

/* htmx page transitions */
.htmx-request main { opacity: 0; }

/* Honor prefers-reduced-motion (design spec §08 Motion) */
@media (prefers-reduced-motion: reduce) {
  main { animation: none; }
}

/* ─── Site header ────────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 10, 10, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 44px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-header__wordmark {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--head);
  font-size: 1.375rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-primary);
  flex-shrink: 0;
}

.site-header__wordmark span { color: var(--gold); }

.site-header__mark {
  height: 38px;
  width: auto;
  flex-shrink: 0;
}

/* ─── Site nav ───────────────────────────────────────────────────────────── */

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

.nav-link {
  font-family: var(--head);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
  transition: color 0.15s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link.active {
  color: var(--gold);
  box-shadow: 0 1.5px 0 0 var(--gold);
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--head);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.625rem 1.25rem;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-dim);
  border-color: var(--gold-dim);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--gold);
  border-radius: 0;
}

.btn--ghost:hover {
  background: rgba(201, 168, 76, 0.08);
}

.btn--text {
  background: transparent;
  color: var(--gold);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}

.btn--text:hover {
  color: var(--text-primary);
}

/* ─── Mobile nav toggle & panel ──────────────────────────────────────────── */

[x-cloak] { display: none !important; }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  padding: 0.25rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
}

@media (max-width: 900px) {
  .site-nav { display: none; }

  .site-header__actions { margin-left: auto; }

  .nav-toggle { display: flex; }

  .mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0.25rem;
  }
}

@media (max-width: 560px) {
  .site-header__inner { padding: 0 20px; gap: 1rem; }

  .site-header__actions { gap: 0.625rem; }

  .site-header__actions .btn {
    font-size: 0.625rem;
    padding: 0.5rem 0.75rem;
    white-space: normal;
    text-align: center;
    max-width: 6.5rem;
    line-height: 1.3;
  }
}

/* ─── Eyebrow ────────────────────────────────────────────────────────────── */

.eyebrow {
  display: inline-block;
  font-family: var(--head);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow--with-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.eyebrow__divider {
  flex: 1;
  border: none;
  border-top: 1px solid var(--gold);
  opacity: 0.4;
}

/* ─── Section wrapper ────────────────────────────────────────────────────── */

.section {
  padding: 5rem 2rem;
  max-width: 1180px;
  margin: 0 auto;
}

.section--dark { background: var(--bg-surface); max-width: none; padding: 5rem 0; }
.section--dark > .section { padding-top: 0; padding-bottom: 0; }

/* ─── Site footer ────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  padding: 3rem 2rem;
}

.site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem 2.5rem;
}

.site-footer__brand {
  font-family: var(--head);
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.site-footer__brand span { color: var(--gold); }

.site-footer__tagline {
  margin: 1rem 0 0;
  max-width: 20rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.875rem;
}

.site-footer__heading {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.125rem;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer__links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.15s;
}

.site-footer__links a:hover { color: var(--text-primary); }

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.site-footer__contact a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.15s;
}

.site-footer__contact a:hover { color: var(--gold); }

.site-footer__bottom {
  max-width: 1180px;
  margin: 3rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer__copyright {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

@media (max-width: 560px) {
  .site-footer__inner { grid-template-columns: 1fr; }
}

/* ─── Phosphor icon sizing ───────────────────────────────────────────────── */

[class^="ph-"], [class*=" ph-"] {
  font-size: 1.25em;
  line-height: 1;
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    var(--bg-base);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(201, 168, 76, 0.03) 0px,
    rgba(201, 168, 76, 0.03) 1px,
    transparent 1px,
    transparent 12px
  );
  pointer-events: none;
}

.hero--with-image {
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero--with-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.65);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.hero__content {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero__headline {
  font-family: var(--head);
  font-size: clamp(4rem, 10vw, 8rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--text-primary);
}

.hero__headline span { color: var(--gold); }

.hero__subhead {
  font-family: var(--head);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__tagline {
  font-size: 1.0625rem;
  color: var(--text-muted);
  font-style: italic;
  letter-spacing: 0.02em;
}

@media (max-width: 560px) {
  .hero { min-height: auto; }
  .hero__inner { padding: 4rem 1.5rem; }
  .hero__headline { font-size: clamp(2.75rem, 14vw, 8rem); }
}

/* ─── Service grid ───────────────────────────────────────────────────────── */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--bg-base);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s;
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
}

.service-card__icon {
  color: var(--gold);
  font-size: 2rem;
}

.service-card__icon [class^="ph-"],
.service-card__icon [class*=" ph-"] {
  font-size: 2rem;
}

.service-card__title {
  font-family: var(--head);
  font-size: 1.375rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.service-card__description {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

/* ─── Callout band (Skills & Drills) ────────────────────────────────────── */

.callout-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

@media (max-width: 900px) {
  .callout-band { grid-template-columns: 1fr; }
}

.callout-band__copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.callout-band__copy h2 {
  font-family: var(--head);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text-primary);
}

.callout-band__copy p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 44ch;
}

.callout-band__specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 6px;
  overflow: hidden;
}

/* ─── Spec row ───────────────────────────────────────────────────────────── */

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.spec-row:last-child { border-bottom: none; }

.spec-row__label {
  font-family: var(--head);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.spec-row__value {
  font-size: 0.9375rem;
  color: var(--text-primary);
  text-align: right;
}

/* ─── Philosophy section ─────────────────────────────────────────────────── */

.section--philosophy {
  text-align: center;
}

.philosophy {
  padding: 4rem 0;
}

.philosophy__statement {
  font-family: var(--head);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.philosophy__statement span { color: var(--gold); }

/* ─── Page hero (interior pages) ────────────────────────────────────────── */

.page-hero {
  padding: 5rem 2rem 4rem;
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.05) 0%, transparent 60%),
    var(--bg-base);
  border-bottom: 1px solid rgba(201, 168, 76, 0.10);
}

.page-hero--tall {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  border-bottom: none;
  background: linear-gradient(to bottom, #0c0c0d, var(--bg-base));
  overflow: hidden;
}

.page-hero--with-image {
  background-image: var(--page-hero-image);
  background-size: cover;
  background-position: center;
}

.page-hero--with-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.35), #0a0a0a 92%);
}

.page-hero__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-hero--tall .page-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  padding: 0 2rem 4rem;
}

.page-hero__headline {
  font-family: var(--head);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--text-primary);
  margin-top: 0.5rem;
}

.page-hero--tall .page-hero__headline {
  font-size: clamp(3.25rem, 7vw, 5.75rem);
  letter-spacing: 0.05em;
  margin-top: 0.875rem;
}

.page-hero__subtext {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 48ch;
  line-height: 1.65;
}

.page-hero--tall .page-hero__subtext {
  font-size: 1.0625rem;
  max-width: 38ch;
  line-height: 1.7;
  margin-top: 1.125rem;
}

@media (max-width: 560px) {
  .page-hero__headline { font-size: clamp(2.25rem, 11vw, 5rem); }
  .page-hero--tall .page-hero__headline { font-size: clamp(2.75rem, 12vw, 5.75rem); }
}

/* ─── Form fields ────────────────────────────────────────────────────────── */

.field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.field__label {
  font-family: var(--head);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: #161617;
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--text-primary);
  font-family: var(--body);
  font-size: 0.9375rem;
  padding: 0.9375rem 1rem;
  outline: none;
  border-radius: 2px;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
}

@media (max-width: 560px) {
  /* 16px minimum prevents iOS Safari's zoom-on-focus for form fields */
  .field input,
  .field textarea,
  .field select {
    font-size: 1rem;
  }
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-dim);
  opacity: 1;
}

.field--error .field__label { color: #e05c5c; }
.field--error input,
.field--error textarea,
.field--error select { border-color: #e05c5c; }

.field__errors {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.field__errors li {
  font-size: 0.8125rem;
  color: #e05c5c;
}

/* ─── Contact page layout ────────────────────────────────────────────────── */

.contact-page {
  max-width: 37.5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-page__intro {
  text-align: center;
}

.contact-page__headline {
  margin-top: 1rem;
  font-family: var(--head);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text-primary);
}

.routing-note {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 4px;
}

.routing-note p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.routing-note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.125rem;
}

@media (max-width: 560px) {
  .contact-form__grid { grid-template-columns: 1fr; }
}

.contact-success {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
}

.contact-success__copy {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── Testimonials ────────────────────────────────────────────────────────── */

.testimonials {
  position: relative;
  overflow: hidden;
  background: url('../images/testimonials-bg.webp');
  background-size: cover;
  background-position: center;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 16, 0.2);
}

.testimonials__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 2rem;
}

.testimonial-card__quote {
  font-size: 1.0625rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-card__attribution {
  font-family: var(--head);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ─── Featured class (Skills & Drills) ──────────────────────────────────── */

.featured-class {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem;
  align-items: start;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .featured-class { grid-template-columns: 1fr; }
}

.featured-class__copy {
  display: flex;
  flex-direction: column;
}

.featured-class__copy h2 {
  font-family: var(--head);
  font-size: clamp(2.25rem, 5vw, 3.125rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text-primary);
  margin-top: 1rem;
}

.featured-class__copy p {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.featured-class__copy .btn {
  margin-top: 2.125rem;
  align-self: flex-start;
}

.featured-class__specs {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.625rem;
}

.featured-class__specs .spec-row {
  display: block;
  padding: 1.375rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.featured-class__specs .spec-row:last-child { border-bottom: none; }

.featured-class__specs .spec-row__label {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.featured-class__specs .spec-row__value {
  display: block;
  font-size: 0.96875rem;
  color: var(--text-primary);
  text-align: left;
  line-height: 1.5;
}

/* ─── Offering grid ──────────────────────────────────────────────────────── */

.section__heading {
  font-family: var(--head);
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 3.125rem;
}

.offering-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.375rem;
}

@media (max-width: 900px) {
  .offering-grid { grid-template-columns: 1fr; }
}

.offering-card {
  background: #0a0a0b;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.375rem 2.125rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offering-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.offering-card__header [class^="ph-"],
.offering-card__header [class*=" ph-"] {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.offering-card__badge {
  font-family: var(--head);
  font-size: 0.65625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.25rem 0.5rem;
  white-space: nowrap;
}

.offering-card__title {
  margin: 0;
  font-family: var(--head);
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.1;
}

.offering-card__desc {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.offering-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.offering-card__chip {
  font-family: var(--head);
  font-size: 0.65625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.25rem 0.625rem;
}

.offering-card .btn {
  align-self: flex-start;
  margin-top: 0.375rem;
  font-size: 0.75rem;
}

.offering-grid__note {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.offering-grid__note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── About page ──────────────────────────────────────────── */

.about-bio {
  padding: 7.5rem 2rem 6.875rem;
  background: var(--bg-base);
}

.about-bio__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.about-bio__intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.75rem;
  align-items: start;
}

.about-bio__photo {
  position: relative;
  aspect-ratio: 2 / 3;
  background: #0c0c0d;
  overflow: hidden;
}

.about-bio__photo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-bio__lead .eyebrow {
  display: block;
  margin-bottom: 0.875rem;
}

.about-bio__headline {
  margin: 0;
  font-family: var(--head);
  font-size: clamp(2.375rem, 4.6vw, 3.625rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--text-primary);
}

.about-bio__role {
  margin: 1.125rem 0 1.75rem;
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.about-bio__lead p,
.about-bio__more p {
  margin: 0 0 1.125rem;
  color: var(--text-secondary);
  line-height: 1.85;
  font-size: 1.03125rem;
}

.about-bio__lead p:last-child,
.about-bio__more p:last-child {
  margin-bottom: 0;
}

.about-bio__more {
  max-width: 46rem;
  margin-top: 3rem;
}

/* Credentials grid */

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3.375rem;
}

.credential-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.credential-group__label {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8125rem;
  color: var(--gold);
}

.credential-group__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.credential-group__item {
  font-size: 0.96875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .about-bio__intro {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .about-bio__photo {
    max-width: 26rem;
    aspect-ratio: 4 / 5;
  }

  .about-bio__more {
    max-width: none;
    margin-top: 2.25rem;
  }

  .credentials-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Executive Protection page ─────────────────────────────────────────── */

.page-hero--ep {
  background:
    radial-gradient(120% 80% at 70% 30%, rgba(201, 168, 76, 0.06), transparent 55%),
    linear-gradient(to bottom, #0c0c0d, var(--bg-base));
}

.page-hero--ep.page-hero--with-image {
  background-image: var(--page-hero-image);
  background-size: cover;
  background-position: center;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .serve-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
}

.serve-cell {
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.125rem 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.serve-cell__icon {
  font-size: 1.5rem;
  color: var(--gold);
}

.serve-cell__label {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.71875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.serve-grid__note {
  margin: 3.375rem auto 0;
  max-width: 600px;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.75;
}

.ep-approach {
  padding: 8.125rem 2rem;
  background: var(--bg-base);
  text-align: center;
}

.ep-approach__inner {
  max-width: 800px;
  margin: 0 auto;
}

.ep-approach__quote {
  margin: 1.5rem 0 0;
  font-family: var(--head);
  font-size: clamp(2.125rem, 4.5vw, 3.375rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--text-primary);
}

.ep-approach__copy {
  margin: 1.75rem auto 0;
  max-width: 560px;
  color: var(--text-secondary);
  line-height: 1.85;
  font-size: 1.125rem;
}

.ep-inquiry {
  max-width: 760px;
  margin: 0 auto;
}

.ep-inquiry .section__heading {
  text-align: center;
  margin-bottom: 1rem;
}

.ep-inquiry__intro {
  text-align: center;
  max-width: 480px;
  margin: 0 auto 2.75rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.ep-inquiry__trust {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-dim, #6f6f68);
}

/* ─── Security Consulting page ──────────────────────────────────────────── */

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

@media (max-width: 560px) {
  .serve-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

.process-step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .process-step-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .process-step-grid { grid-template-columns: 1fr; }
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-step__number {
  font-family: var(--head);
  font-size: 2.5rem;
  color: rgba(201, 168, 76, 0.45);
  line-height: 1;
}

.process-step__rule {
  width: 2rem;
  height: 1.5px;
  background: var(--gold);
}

.process-step__title {
  margin: 0;
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.process-step__desc {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 0.90625rem;
}

.consult-inquiry {
  max-width: 760px;
  margin: 0 auto;
}

.consult-inquiry .section__heading {
  text-align: center;
  margin-bottom: 2.75rem;
}

/* ─── Identity page ─────────────────────────────────────────────────────── */

.identity {
  padding: 7.5rem 0 0;
  background: var(--bg-base);
  text-align: center;
}

.identity__head {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  padding: 0 2rem;
}

.identity__head .eyebrow {
  display: block;
  margin-bottom: 1rem;
}

.identity__headline {
  margin: 0;
  font-family: var(--head);
  font-size: clamp(2.5rem, 6.5vw, 4.5rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 0.98;
  color: var(--text-primary);
}

.identity__intro,
.identity__body {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 2rem;
}

.identity__body {
  margin-top: 3.25rem;
}

.identity__intro p,
.identity__body p {
  margin: 0 auto 1.375rem;
  color: var(--text-secondary);
  line-height: 1.9;
  font-size: 1.0625rem;
}

.identity__intro p:last-child,
.identity__body p:last-child {
  margin-bottom: 0;
}

/* Short, standalone declarative lines get a pulled-out emphasis. */
.identity__line {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.45;
  margin-bottom: 0.625rem;
}

.identity__line + .identity__line {
  margin-top: 0;
}

.identity__hero {
  max-width: 420px;
  margin: 3.5rem auto;
  padding: 0 2rem;
}

.identity__hero img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(168, 136, 74, 0.25);
}

.identity-gallery {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3.5rem 2rem 7.5rem;
}

.identity-gallery__heading {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.75rem, 4.5vw, 2.875rem);
  line-height: 1;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 2.75rem;
}

/* Masonry via CSS columns — preserves each photo's native aspect ratio. */
.identity-gallery__grid {
  column-count: 3;
  column-gap: 1rem;
}

.identity-gallery__item {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  break-inside: avoid;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
  .identity-gallery__grid { column-count: 2; }
}

@media (max-width: 560px) {
  .identity-gallery__grid { column-count: 1; }
}
