/* HYPESET — shared styles */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;1,600&display=swap');

:root {
  --ink: #0d0d0d;
  --ink-2: #161616;
  --ink-3: #1f1f1f;
  --line: #2c2c2c;
  --white: #ffffff;
  --paper: #f4f2f1;
  --gray: #6b6b6b;
  --gray-light: #9a9896;
  --red: #e31b23;
  --red-dim: #b3141a;
  --red-glow: rgba(227, 27, 35, 0.35);

  --font-display: 'Bebas Neue', 'Anton', Impact, sans-serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-hero: clamp(3.4rem, 11vw, 9rem);
  --fs-h1: clamp(2.4rem, 6.5vw, 4.75rem);
  --fs-h2: clamp(1.75rem, 4.5vw, 3rem);
  --fs-h3: clamp(1.3rem, 2.6vw, 1.75rem);
  --fs-lede: clamp(1.1rem, 1.6vw, 1.375rem);
  --fs-body: 1rem;
  --fs-label: 0.8rem;

  --container: 1240px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

p { margin: 0; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.label--red { color: var(--red); }

/* ---------- Logo ---------- */

.logo {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.01em;
  transform: skewX(-6deg);
}

.logo__hype { color: var(--white); }
.logo__set { color: var(--red); }

.monogram {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
}

.monogram__h { color: var(--white); }
.monogram__slash { color: var(--red); margin: 0 0.05em; transform: skewX(-12deg) scaleY(1.15); display: inline-block; }
.monogram__s { color: var(--red); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.75rem);
}

.nav a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  padding-block: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--red);
  border-color: var(--red);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1.9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1), background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--red);
  color: var(--white);
}
.btn--primary:hover { background: var(--red-dim); }

.btn--ghost {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn--ghost:hover { border-color: var(--red); color: var(--red); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.hero__media {
  position: absolute;
  inset: 0;
  background: var(--ink-2);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: grayscale(35%) contrast(1.1);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,13,13,0.2) 0%, rgba(13,13,13,0.55) 55%, rgba(13,13,13,0.96) 100%),
    linear-gradient(90deg, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0.15) 55%);
}

.hero__content {
  position: relative;
  width: 100%;
  padding-block: clamp(3rem, 8vw, 6rem);
}

.hero__eyebrow {
  margin-bottom: 1.25rem;
}

.hero__title {
  font-size: var(--fs-hero);
  color: var(--white);
}

.hero__title .accent { color: var(--red); }

.hero__sub {
  margin-top: 1.25rem;
  font-family: var(--font-body);
  font-size: var(--fs-lede);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--paper);
  max-width: 32ch;
}

.hero__actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- Sections ---------- */

section { position: relative; }

.section {
  padding-block: clamp(4rem, 9vw, 7.5rem);
}

.section--alt { background: var(--ink-2); }

.section__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section__head h2 { font-size: var(--fs-h1); }

.section__head p {
  font-size: var(--fs-lede);
  color: var(--gray-light);
  line-height: 1.6;
}

/* ---------- Tone / statement block ---------- */

.statement {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.statement h2 {
  font-size: var(--fs-hero);
}

.statement h2 span { display: block; }
.statement h2 .accent { color: var(--red); }
.statement h2 .dim { color: var(--gray); }

.statement__body p {
  font-size: var(--fs-lede);
  line-height: 1.65;
  color: var(--paper);
  max-width: 42ch;
}

/* ---------- Photo trio ---------- */

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

.trio__item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink-2);
}

.trio__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.08);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.trio__item:hover img { transform: scale(1.05); }

.trio__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0.05) 40%, rgba(13,13,13,0.92) 100%);
}

.trio__caption {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
}

.trio__caption .label { display: block; margin-bottom: 0.4rem; }

.trio__caption h3 {
  font-size: var(--fs-h3);
  color: var(--white);
}

/* ---------- Services grid ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.service-card {
  border-top: 1px solid var(--line);
  padding: 2rem 1.75rem 2.25rem;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: -1px;
  height: 2px;
  width: 0;
  background: var(--red);
  transition: width 0.3s ease;
}

.service-card:hover::after { width: 100%; }

.service-card__index {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--red);
  letter-spacing: 0.05em;
}

.service-card h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin-top: 0.9rem;
}

.service-card p {
  margin-top: 0.9rem;
  color: var(--gray-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--red);
  padding-block: clamp(3rem, 7vw, 5rem);
}

.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.cta-band h2 {
  font-size: var(--fs-h1);
  color: var(--white);
  max-width: 16ch;
}

.cta-band .btn--ghost { border-color: var(--white); color: var(--white); }
.cta-band .btn--ghost:hover { background: var(--white); color: var(--red); border-color: var(--white); }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: clamp(2.5rem, 6vw, 4rem);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-grid h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 1rem;
}

.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-links a { color: var(--paper); font-size: 0.95rem; }
.footer-links a:hover { color: var(--red); }

.footer-tagline {
  margin-top: 1rem;
  color: var(--gray-light);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray);
}

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

.page-hero {
  padding-block: clamp(4rem, 10vw, 7rem) clamp(2.5rem, 6vw, 4rem);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 { font-size: var(--fs-hero); }
.page-hero h1 .accent { color: var(--red); }

.page-hero p {
  margin-top: 1.25rem;
  font-size: var(--fs-lede);
  color: var(--gray-light);
  max-width: 48ch;
}

/* ---------- Path fork ---------- */

.path-fork {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
}

.path-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  background: var(--ink);
  padding: clamp(2rem, 4vw, 2.75rem);
  border-top: 3px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.path-card:hover {
  border-color: var(--red);
  background: var(--ink-2);
}

.path-card h3 { font-size: var(--fs-h3); }

.path-card p {
  color: var(--gray-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

.path-card__cta {
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

/* ---------- Photo band ---------- */

.photo-band {
  position: relative;
  height: clamp(280px, 42vw, 480px);
  overflow: hidden;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
}

.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(15%) contrast(1.08);
}

.photo-band__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.1) 45%, rgba(13,13,13,0.55) 100%);
}

.photo-band__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem var(--gutter) 2rem;
}

.photo-band__caption .label { display: block; margin-bottom: 0.4rem; }

.photo-band__caption h3 {
  font-size: var(--fs-h3);
  color: var(--white);
  max-width: 30ch;
}

/* ---------- Package cards ---------- */

.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
}

.package-card {
  background: var(--ink);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.package-card--featured { background: var(--ink-2); }

.package-card__name { font-size: var(--fs-h3); }

.package-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  color: var(--paper);
  font-size: 0.92rem;
}

.package-card__list li {
  padding-left: 1.2rem;
  position: relative;
}

.package-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 2px;
  background: var(--red);
}

/* ---------- Process steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.step__num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
}

.step h3 { font-size: 1.35rem; margin-top: 0.5rem; }
.step p { margin-top: 0.6rem; color: var(--gray-light); line-height: 1.6; font-size: 0.95rem; }

/* ---------- Forms ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-info__block { margin-bottom: 2.25rem; }
.contact-info__block h3 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.contact-info__block p, .contact-info__block a { color: var(--gray-light); line-height: 1.7; }
.contact-info__block a:hover { color: var(--red); }

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

.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field--full { grid-column: 1 / -1; }

.form-field label {
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--ink-2);
  border: 1px solid var(--line);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s ease;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
}

.form-note {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  color: var(--gray);
}

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status {
  grid-column: 1 / -1;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  font-size: 0.9rem;
  display: none;
}

.form-status--visible { display: block; }
.form-status--success { border-color: var(--red); color: var(--white); }

/* ---------- Utility ---------- */

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .nav { position: fixed; inset: 0 0 0 30%; top: 64px; background: var(--ink); flex-direction: column; align-items: flex-start; padding: 2rem var(--gutter); gap: 1.75rem; border-left: 1px solid var(--line); transform: translateX(100%); transition: transform 0.28s cubic-bezier(0.22,1,0.36,1); }
  .nav--open { transform: translateX(0); }
  .nav-toggle { display: inline-flex; }
  .nav a { font-size: 1.1rem; }

  .section__head,
  .statement,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

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