/* ============================================================
   ACHILLES PEPTIDES — Premium Design System
   Ultra-premium men's wellness. Black. Bronze. Architectural.
   ============================================================ */

/* ----------------------------------------------------------
   DESIGN TOKENS
   ---------------------------------------------------------- */
:root {
  /* ----------------------------------------------------------
     SEMANTIC design tokens — the CMS overrides THESE at runtime
     (theme-bootstrap.js writes them inline on <html>). The literals
     below are only the default, unthemed Achilles palette.
     ---------------------------------------------------------- */
  --bg:           #000000;
  --bg-alt:       #080808;
  --bg-nav:       rgba(0, 0, 0, 0.96);
  --bg-card:      #080808;
  --ink:          #ffffff;
  --ink-2:        #aaaaaa;
  --ink-sub:      #aaaaaa;
  --muted:        #888888;
  --border:       #2a2a2a;
  --border-strong: #333333;
  --rule:         var(--border);
  --accent:       #b87333;
  --accent-deep:  #8a5a25;
  --accent-soft:  rgba(184, 115, 51, 0.15);
  --warm-tint:    rgba(184, 115, 51, 0.08);
  --accent-tint:  rgba(184, 115, 51, 0.05);
  --cta-bg:       var(--accent);
  --cta-text:     #000000;
  --cta-text-muted: rgba(0, 0, 0, 0.65);
  --cta-border:   rgba(0, 0, 0, 0.20);
  --btn-primary-bg:    var(--accent);
  --btn-primary-text:  #000000;
  --btn-primary-hover: #d4924a;

  /* ----------------------------------------------------------
     LEGACY raw-palette aliases → semantic tokens. Older rules and
     inline styles reference the raw palette directly (var(--bronze),
     var(--gray), var(--black)…); routing them through the semantic
     tokens means they ALSO follow CMS colour swaps. Previously these
     were fixed literals — that is why the black bg, body text, and
     orange detailing did not change when the CMS theme changed.
     ---------------------------------------------------------- */
  --black:        var(--bg);
  --near-black:   var(--bg-alt);
  --surface:      var(--bg-alt);
  --surface-2:    var(--bg-alt);
  --surface-3:    var(--border);
  --border-light: var(--border-strong);
  --bronze:       var(--accent);
  --bronze-light: var(--btn-primary-hover);
  --bronze-pale:  var(--accent-deep);
  --white:        var(--ink);
  --off-white:    var(--ink);
  --gray:         var(--muted);
  --gray-light:   var(--ink-2);

  /* Typography scale */
  --text-xxs:     0.625rem;
  --text-xs:      0.75rem;
  --text-sm:      0.875rem;
  --text-base:    1rem;
  --text-lg:      1.125rem;
  --text-xl:      1.25rem;
  --text-2xl:     1.5rem;
  --text-3xl:     1.875rem;
  --text-4xl:     2.25rem;
  --text-5xl:     3rem;
  --text-hero:    clamp(3rem, 8vw, 7rem);
  --text-display: clamp(2rem, 5vw, 4rem);

  /* Spacing */
  --section-gap:    120px;
  --section-gap-sm: 72px;
  --card-pad:       40px;

  /* Motion */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 200ms;
  --duration-base: 360ms;
  --duration-slow: 600ms;

  /* Nav */
  --nav-h: 72px;
}

/* ----------------------------------------------------------
   RESET & BASE
   ---------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--off-white);
  font-family: system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ----------------------------------------------------------
   TYPOGRAPHY
   ---------------------------------------------------------- */
.display,
.hero-headline {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--white);
}

.display-md {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--text-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
}

.headline {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--text-3xl);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}

.headline-sm {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1.25;
  color: var(--white);
}

.label {
  font-size: var(--text-xxs);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray);
}

.label-bronze {
  font-size: var(--text-xxs);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bronze);
}

.body-text {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--gray-light);
}

.body-lg {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--gray-light);
}

.number-accent {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--bronze);
}

/* ----------------------------------------------------------
   LAYOUT
   ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 40px;
}

.container-wide {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 40px;
}

.container-narrow {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  padding-inline: 40px;
}

section {
  padding-block: var(--section-gap);
}

section.dense {
  padding-block: var(--section-gap-sm);
}

.rule-bronze {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bronze) 20%, var(--bronze) 80%, transparent);
  opacity: 0.4;
  border: none;
}

.rule-simple {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--border);
  border: none;
}

.rule-short {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--bronze);
  border: none;
  margin-block: 24px;
}

/* ----------------------------------------------------------
   NAVIGATION
   ---------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background-color var(--duration-base) var(--ease-out),
              border-bottom-color var(--duration-base) var(--ease-out);
  background-color: transparent;
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background-color: var(--bg-nav, rgba(0,0,0,0.96));
  border-bottom-color: var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-mark {
  display: block;
  flex-shrink: 0;
  height: 30px;
  width: auto;
}
.footer-logo {
  display: block;
  height: 68px;
  width: auto;
  margin-bottom: 18px;
}

.nav-brand-main {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--text-xl);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--bronze);
}

.nav-brand-suffix {
  font-size: var(--text-xs);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: var(--text-xs);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-light);
  transition: color var(--duration-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a.active {
  color: var(--bronze);
}

.nav-cta {
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform var(--duration-base) var(--ease-out),
              opacity var(--duration-fast);
}

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

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.98);
  border-bottom: 1px solid var(--border);
  padding: 32px 40px;
  z-index: 899;
  backdrop-filter: blur(12px);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
}

.nav-mobile.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.nav-mobile-links a {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-light);
  transition: color var(--duration-fast);
}

.nav-mobile-links a:hover {
  color: var(--white);
}

/* ----------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: var(--text-xs);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 0;
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-bronze {
  color: var(--btn-primary-hover, var(--bronze-light));
  border: 1px solid var(--btn-primary-bg, var(--bronze));
  background: transparent;
}

.btn-bronze::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--btn-primary-bg, var(--bronze));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-out);
  z-index: -1;
}

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

.btn-bronze:hover::before {
  transform: scaleX(1);
}

.btn-white {
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--white);
}

.btn-white:hover {
  background: var(--off-white);
  border-color: var(--off-white);
}

.btn-ghost {
  color: var(--gray-light);
  border: 1px solid var(--border-light);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--white);
  border-color: var(--gray);
}

.btn-sm {
  padding: 10px 24px;
  font-size: var(--text-xxs);
}

.btn-lg {
  padding: 18px 48px;
  font-size: var(--text-sm);
}

/* ----------------------------------------------------------
   PREMIUM CARDS
   ---------------------------------------------------------- */
.card {
  background: var(--near-black);
  border: 1px solid var(--border);
  border-top: 2px solid var(--bronze);
  padding: var(--card-pad);
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out),
              border-top-color var(--duration-base) var(--ease-out);
  position: relative;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  border-top-color: var(--bronze-light);
}

.card-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.card-accent {
  width: 32px;
  height: 1px;
  background: var(--bronze);
  margin-bottom: 16px;
}

.card-body {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--gray-light);
}

/* Service card */
.service-card {
  background: var(--near-black);
  border: 1px solid var(--border);
  border-top: 2px solid var(--bronze);
  padding: var(--card-pad);
  position: relative;
  overflow: hidden;
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.7);
}

.service-card-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.service-card-desc {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--gray-light);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out),
              opacity var(--duration-base) var(--ease-out);
  opacity: 0;
}

.service-card:hover .service-card-desc,
.service-card.expanded .service-card-desc {
  max-height: 200px;
  opacity: 1;
}

/* ----------------------------------------------------------
   PROCESS STEPS
   ---------------------------------------------------------- */
.process-list {
  position: relative;
  display: flex;
  flex-direction: column;
}

.process-list::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 40px;
  bottom: 40px;
  width: 1px;
  background: linear-gradient(to bottom, var(--bronze) 0%, var(--border) 100%);
  opacity: 0.3;
}

.process-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 32px;
  align-items: flex-start;
  padding-block: 32px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.process-step:last-child {
  border-bottom: none;
}

.process-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--bronze);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--text-sm);
  color: var(--bronze);
  flex-shrink: 0;
  background: var(--black);
  position: relative;
  z-index: 1;
}

.process-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}

.process-desc {
  font-size: var(--text-sm);
  color: var(--gray-light);
  line-height: 1.7;
}

/* ----------------------------------------------------------
   FAQ ACCORDION
   ---------------------------------------------------------- */
.faq-group {
  margin-bottom: 48px;
}

.faq-group-label {
  font-size: var(--text-xxs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bronze);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
  text-align: left;
  cursor: pointer;
  color: var(--off-white);
  font-size: var(--text-base);
  font-family: inherit;
  transition: color var(--duration-fast);
}

.faq-question:hover,
.faq-question.open {
  color: var(--white);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  color: var(--bronze);
}

.faq-chevron::before,
.faq-chevron::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 1px;
  background: currentColor;
  transition: transform var(--duration-base) var(--ease-out);
}

.faq-chevron::before {
  transform: translateY(-50%) rotate(-45deg) translateX(2px);
}
.faq-chevron::after {
  transform: translateY(-50%) rotate(45deg) translateX(-2px);
}

.faq-question.open .faq-chevron::before {
  transform: translateY(-50%) rotate(45deg) translateX(2px);
}
.faq-question.open .faq-chevron::after {
  transform: translateY(-50%) rotate(-45deg) translateX(-2px);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out);
}

.faq-answer.open {
  max-height: 800px;
}

.faq-answer-inner {
  padding-bottom: 24px;
  font-size: var(--text-sm);
  line-height: 1.8;
  color: var(--gray-light);
}

/* ----------------------------------------------------------
   FORMS
   ---------------------------------------------------------- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.form-label {
  font-size: var(--text-xxs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--off-white);
  padding: 14px 18px;
  font-size: var(--text-sm);
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--duration-fast),
              background var(--duration-fast),
              box-shadow var(--duration-fast);
  outline: none;
  border-radius: 0;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--bronze);
  background: var(--surface-2);
  box-shadow: 0 0 0 2px rgba(184,115,51,0.12);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23b87333' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-select option {
  background: var(--surface-2);
  color: var(--off-white);
}

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

.form-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid var(--border-light);
  background: var(--surface);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  margin-top: 2px;
  position: relative;
  transition: border-color var(--duration-fast),
              background var(--duration-fast);
}

.form-checkbox:checked {
  background: var(--bronze);
  border-color: var(--bronze);
}

.form-checkbox:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 4px;
  height: 8px;
  border-right: 1.5px solid var(--black);
  border-bottom: 1.5px solid var(--black);
  transform: rotate(45deg);
}

.form-checkbox-label {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--gray-light);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #c0392b;
}

.form-error-msg {
  font-size: var(--text-xs);
  color: #e74c3c;
  margin-top: 4px;
  display: none;
}

.form-error-msg.visible {
  display: block;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--bronze);
  background: var(--near-black);
}

.form-success.visible {
  display: block;
}

.form-success-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--text-2xl);
  color: var(--white);
  margin-bottom: 12px;
}

.form-success-body {
  font-size: var(--text-sm);
  color: var(--gray-light);
}

/* ----------------------------------------------------------
   HERO SECTION
   ---------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg);
  position: relative;
  padding-block: 120px;
  overflow: hidden;
}

/* Video banner */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-video-overlay {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(0,0,0,0.95);
}
.hero.has-video .hero-video-bg { display: block; }
.hero.has-video .hero-video-overlay { display: block; background: rgba(0,0,0,0.55); }
.hero.has-video::before { z-index: 2; }

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 20%, rgba(184,115,51,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(184,115,51,0.02) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin-inline: auto;
  padding-inline: 40px;
}

.hero-label {
  margin-bottom: 48px;
}

.hero-headline {
  margin-bottom: 48px;
}

.hero-headline .word {
  display: block;
}

.hero-subhead {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 48px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-rule {
  margin-top: 80px;
}

/* ----------------------------------------------------------
   BENEFIT ICON GRID
   ---------------------------------------------------------- */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
}

.icon-cell {
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 20px;
  transition: background var(--duration-base);
}

.icon-cell:hover {
  background: var(--near-black);
}

.icon-cell-icon {
  width: 40px;
  height: 40px;
  color: var(--bronze);
  flex-shrink: 0;
}

.icon-cell-label {
  font-size: var(--text-xxs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-light);
  text-align: center;
  line-height: 1.4;
}

/* ----------------------------------------------------------
   SERVICES GRID (asymmetric 2+3)
   ---------------------------------------------------------- */
.services-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 1px;
}

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

/* ----------------------------------------------------------
   TRUST STRIP
   ---------------------------------------------------------- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.trust-item {
  background: var(--near-black);
  padding: 40px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.trust-icon {
  width: 32px;
  height: 32px;
  color: var(--bronze);
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--text-lg);
  color: var(--white);
  margin-bottom: 6px;
}

.trust-desc {
  font-size: var(--text-sm);
  color: var(--gray-light);
  line-height: 1.6;
}

/* ----------------------------------------------------------
   TESTIMONIALS
   ---------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--near-black);
  border: 1px solid var(--border);
  padding: 36px 32px;
}

.testimonial-quote-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 80px;
  line-height: 0.5;
  color: var(--bronze);
  opacity: 0.4;
  margin-bottom: 20px;
  display: block;
}

.testimonial-body {
  font-size: var(--text-sm);
  line-height: 1.75;
  color: var(--gray-light);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-attribution {
  font-size: var(--text-xxs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
}

/* ----------------------------------------------------------
   SECTION HEADERS
   ---------------------------------------------------------- */
.section-header {
  margin-bottom: 64px;
}

.section-header-centered {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 64px;
}

.section-label {
  display: block;
  font-size: var(--text-xxs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bronze);
  margin-bottom: 20px;
}

/* ----------------------------------------------------------
   GOALS GRID
   ---------------------------------------------------------- */
.goals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ----------------------------------------------------------
   DISCLAIMER
   ---------------------------------------------------------- */
.disclaimer {
  background: var(--near-black);
  border: 1px solid var(--border);
  border-left: 2px solid var(--bronze-pale);
  padding: 28px 32px;
  font-size: var(--text-xs);
  line-height: 1.8;
  color: var(--gray);
}

.disclaimer strong {
  color: var(--gray-light);
  font-weight: 500;
}

/* ----------------------------------------------------------
   STATS
   ---------------------------------------------------------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.stat-item {
  background: var(--near-black);
  padding: 40px 32px;
  text-align: center;
}

.stat-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--text-4xl);
  color: var(--bronze);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: var(--text-xxs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
}

/* ----------------------------------------------------------
   ABOUT — PILLARS / VALUES
   ---------------------------------------------------------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.pillar-item {
  background: var(--near-black);
  padding: 48px 36px;
}

.pillar-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--text-4xl);
  color: var(--border-light);
  display: block;
  margin-bottom: 24px;
  line-height: 1;
}

.pillar-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--text-xl);
  color: var(--white);
  margin-bottom: 12px;
}

.pillar-desc {
  font-size: var(--text-sm);
  color: var(--gray-light);
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ----------------------------------------------------------
   CONTACT
   ---------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: flex-start;
}

.next-steps {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
}

.next-step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding-block: 24px;
  border-bottom: 1px solid var(--border);
}

.next-step:last-child {
  border-bottom: none;
}

.next-step-num {
  width: 32px;
  height: 32px;
  border: 1px solid var(--bronze-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--text-xs);
  color: var(--bronze);
  flex-shrink: 0;
}

.next-step-title {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 4px;
}

.next-step-desc {
  font-size: var(--text-sm);
  color: var(--gray-light);
  line-height: 1.6;
}

.contact-info {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.contact-info-label {
  font-size: var(--text-xxs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bronze);
}

.contact-info-value {
  font-size: var(--text-sm);
  color: var(--gray-light);
}

/* ----------------------------------------------------------
   FINAL CTA SECTION
   ---------------------------------------------------------- */
.section-cta {
  text-align: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(184,115,51,0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* ----------------------------------------------------------
   FOOTER
   ---------------------------------------------------------- */
.site-footer {
  background: var(--near-black);
  border-top: 1px solid var(--border);
  padding-block: 64px 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--text-xl);
  color: var(--bronze);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.footer-brand-suffix {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
}

.footer-brand-desc {
  font-size: var(--text-sm);
  color: var(--gray);
  line-height: 1.7;
  margin-top: 16px;
}

.footer-col-title {
  font-size: var(--text-xxs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--gray-light);
  transition: color var(--duration-fast);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.footer-copy {
  font-size: var(--text-xs);
  color: var(--gray);
}

.footer-legal {
  font-size: var(--text-xs);
  color: var(--gray);
  max-width: 480px;
  line-height: 1.6;
  text-align: right;
}

/* ----------------------------------------------------------
   PAGE HERO (interior pages)
   ---------------------------------------------------------- */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 64px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(184,115,51,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

/* ----------------------------------------------------------
   SERVICES ACCORDION
   ---------------------------------------------------------- */
.service-accordion-item {
  border-bottom: 1px solid var(--border);
}

.service-accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 36px;
  text-align: left;
  cursor: pointer;
  transition: opacity var(--duration-fast);
}

.service-accordion-trigger:hover {
  opacity: 0.85;
}

.service-accordion-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--white);
}

.service-accordion-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--text-sm);
  color: var(--bronze);
  flex-shrink: 0;
}

.service-accordion-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  color: var(--bronze);
  transition: transform var(--duration-base) var(--ease-out);
}

.service-accordion-icon::before,
.service-accordion-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform var(--duration-base) var(--ease-out),
              opacity var(--duration-base) var(--ease-out);
}
.service-accordion-icon::before {
  width: 14px;
  height: 1px;
}
.service-accordion-icon::after {
  width: 1px;
  height: 14px;
}

.service-accordion-trigger.open .service-accordion-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out);
}

.service-accordion-body.open {
  max-height: 1000px;
}

.service-accordion-inner {
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.service-accordion-desc {
  font-size: var(--text-base);
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-detail-list li {
  font-size: var(--text-sm);
  color: var(--gray-light);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.service-detail-list li::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--bronze);
  flex-shrink: 0;
  margin-top: 10px;
}

/* ----------------------------------------------------------
   SCROLL ANIMATIONS
   ---------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }

/* ----------------------------------------------------------
   UTILITIES
   ---------------------------------------------------------- */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.text-bronze  { color: var(--bronze); }
.text-white   { color: var(--white); }
.text-gray    { color: var(--gray); }
.text-gray-lg { color: var(--gray-light); }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mt-80 { margin-top: 80px; }

.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

.pt-nav { padding-top: var(--nav-h); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border-width: 0;
}

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 1100px) {
  .icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-aside {
    order: -1;
  }
}

@media (max-width: 900px) {
  :root {
    --section-gap:    80px;
    --section-gap-sm: 56px;
    --card-pad:       28px;
  }

  .container,
  .container-wide,
  .container-narrow {
    padding-inline: 24px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-inner {
    padding-inline: 24px;
  }

  .services-grid-2,
  .services-grid-3 {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

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

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-legal {
    text-align: left;
    max-width: 100%;
  }

  .service-accordion-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .process-list::before {
    left: 19px;
  }
}

@media (max-width: 600px) {
  :root {
    --section-gap:    64px;
    --section-gap-sm: 48px;
  }

  .container,
  .container-wide,
  .container-narrow {
    padding-inline: 20px;
  }

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

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

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .btn-lg {
    padding: 16px 32px;
    width: 100%;
    justify-content: center;
  }

  .service-accordion-trigger {
    padding-block: 24px;
  }

  .hero-content {
    padding-inline: 20px;
  }

  .nav-mobile {
    padding: 24px 20px;
  }
}

/* ----------------------------------------------------------
   REVIEWS — auto-scrolling marquee (home page)
   ---------------------------------------------------------- */
.reviews-marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  padding-block: 28px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviews-scroll 48s linear infinite;
}
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
.review-chip {
  flex: 0 0 auto;
  width: 340px;
  padding: 22px 26px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.review-stars { color: var(--accent); letter-spacing: 3px; font-size: var(--text-sm); }
.review-text {
  color: var(--ink-2);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin: 10px 0 10px;
}
.review-name {
  color: var(--muted);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; flex-wrap: wrap; justify-content: center; }
}
