:root {
  --graphite: #16181c;
  --graphite-2: #1f2228;
  --steel: #3a3f47;
  --ink: #14161a;
  --paper: #f5f6f7;
  --paper-2: #eceef0;
  --line: #d9dce0;
  /* ponytail: logo is stark black/white — accent is now ink, not orange */
  --accent: #14161a;
  --accent-dark: #000;
  --steel-light: #cfd3d8;
  --text: #22262c;
  --muted: #8b929b;
  --radius: 2px;
  --wrap: 1180px;
  --head: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --body: "Inter", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--head); line-height: 1.1; letter-spacing: -0.02em; }
h1, h2 { text-transform: uppercase; letter-spacing: 0.01em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.8rem 1.6rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  transition: background .18s ease, color .18s ease, transform .18s ease;
  font-family: var(--head);
  letter-spacing: 0.03em;
}
.btn:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.9rem; }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.1rem; }
.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.4);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ---------- Top banner ---------- */
.topbar {
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 0.55rem 1rem;
  font-family: var(--head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  flex-wrap: wrap;
}
.topbar-sep { color: rgba(255,255,255,.35); }
.topbar a { text-decoration: underline; text-underline-offset: 3px; transition: opacity .15s; }
.topbar a:hover { opacity: 0.75; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(22,24,28,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand { display: flex; align-items: center; gap: 0.65rem; }
.brand-badge { width: 40px; height: 40px; border-radius: 50%; }
.brand-name {
  font-family: var(--head);
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: 0.02em;
}
.brand-sub { color: var(--steel-light); font-weight: 600; margin-left: 0.3rem; }
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a { color: #d7dbe0; font-weight: 500; font-size: 0.98rem; transition: color .15s; }
.nav a:hover { color: #fff; }
.nav a.btn { color: var(--ink); }
.nav a.btn:hover { color: #fff; }

.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-burger span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(120% 120% at 80% 0%, #24272e 0%, var(--graphite) 55%);
  color: #fff;
  padding-block: clamp(4rem, 8vw, 7.5rem);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  max-width: var(--wrap);
  margin: 0 auto;
}
.eyebrow {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
}
.hero .eyebrow { color: var(--steel-light); }
.hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 700; margin-bottom: 1.3rem; }
.hero .lede { font-size: 1.15rem; color: #c3c8cf; max-width: 34ch; margin-bottom: 1.5rem; }
.hero-points {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.2rem;
  margin-bottom: 2rem;
  max-width: 38ch;
}
.hero-points li {
  position: relative;
  padding-left: 1.6rem;
  color: #d7dbe0;
  font-size: 0.98rem;
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 0.7rem; height: 0.4rem;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-media img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.08);
}

/* ---------- Stats strip ---------- */
.stats {
  background: var(--graphite-2);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 1.8rem 1rem;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,.06);
}
.stat:first-child { border-left: none; }
.stat-num {
  display: block;
  font-family: var(--head);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  color: #fff;
  letter-spacing: 0.01em;
}
.stat-label { display: block; color: var(--steel-light); font-size: 0.85rem; margin-top: 0.35rem; }

/* ---------- Process steps ---------- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: none;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem; height: 2.4rem;
  background: var(--ink);
  color: #fff;
  font-family: var(--head);
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.12rem; margin-bottom: 0.45rem; }
.step p { color: #5c636c; font-size: 0.95rem; }
.process-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 1.05rem;
  color: #4c535c;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.4rem; right: -0.8rem;
  width: 0; height: 0;
  border-left: 0.6rem solid var(--steel-light);
  border-top: 0.4rem solid transparent;
  border-bottom: 0.4rem solid transparent;
  transform: translateY(-50%);
}

/* ---------- Sections ---------- */
.section { max-width: var(--wrap); margin: 0 auto; padding: clamp(3.5rem, 7vw, 6rem) clamp(1rem, 4vw, 2.5rem); }
.section-alt { background: var(--paper-2); max-width: none; }
.section-alt > * { max-width: var(--wrap); margin-left: auto; margin-right: auto; }
.section-head { margin-bottom: 2.5rem; max-width: 60ch; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 0.5rem; }
.section-lede { color: #5c636c; font-size: 1.05rem; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 1.25rem; }
.cards { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--accent);
  transform: scaleY(0); transform-origin: top;
  transition: transform .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px rgba(0,0,0,.35); border-color: #c7ccd2; }
.card:hover::before { transform: scaleY(1); }
.card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.card p { color: #5c636c; font-size: 0.97rem; }

/* ---------- Equipment ---------- */
.equip { grid-template-columns: 1fr 1fr; align-items: center; gap: 2.5rem; }
.equip-list ul { list-style: none; }
.equip-list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  color: #5c636c;
}
.equip-list li span { font-family: var(--head); font-weight: 600; color: var(--ink); margin-right: 0.4rem; }
.equip-photo img { border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }

/* ---------- About ---------- */
.about { grid-template-columns: 1fr 1fr; align-items: center; gap: 3rem; }
.about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1.2rem; }
.about-text p { color: #4c535c; margin-bottom: 1.1rem; }
.about-text .btn { margin-top: 0.6rem; }
.about-photo img { border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }

/* ---------- Contact ---------- */
.contact { text-align: center; }
.contact .section-head { margin-left: auto; margin-right: auto; }
.contact-actions { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.contact-meta { font-size: 1.05rem; }
.contact-meta a { color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.muted { color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--graphite);
  color: #aeb4bc;
  text-align: center;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.footer-logo { width: 150px; filter: brightness(0) invert(1); opacity: 0.9; margin-bottom: 0.6rem; }
.site-footer .muted { color: #6d747d; font-size: 0.9rem; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media img { aspect-ratio: 16 / 10; max-height: 340px; }
  .equip, .about { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }

  .nav {
    position: fixed;
    inset: 56px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--graphite-2);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    transform: translateY(-140%);
    transition: transform .25s ease;
  }
  #nav-toggle:checked ~ .site-header .nav { transform: translateY(0); }
  .nav a { padding: 0.9rem clamp(1rem, 4vw, 2.5rem); border-top: 1px solid rgba(255,255,255,.06); }
  .nav a.btn { margin: 0.6rem clamp(1rem, 4vw, 2.5rem); text-align: center; }
  .nav-burger { display: flex; }
}

@media (max-width: 520px) {
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-points { grid-template-columns: 1fr; max-width: none; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { text-align: center; }
}
