:root {
  --navy-950: #12161D;
  --navy-800: #1E2530;
  --navy-700: #2A3240;
  --coral: #FF6A45;
  --coral-dim: #C94E2E;
  --paper: #F3EFE7;
  --ink: #14181F;
  --slate: #8B93A1;
  --slate-light: #B9C0CC;
  --rule: rgba(255,255,255,0.12);
  --rule-dark: rgba(20,24,31,0.14);

  --font-display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --font-body: 'IBM Plex Sans', -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'Consolas', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--navy-950);
  color: #fff;
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 500;
}
.eyebrow--dark { color: var(--coral-dim); }

/* ---------- Header ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18,22,29,0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.nav__brand-wrap { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.nav__mark { height: 44px; width: auto; flex-shrink: 0; }
.nav__brand {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.27rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav__brand span { color: var(--coral); }
.nav__brand-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.92rem;
}
.nav__links a { text-decoration: none; color: var(--slate-light); }
.nav__links a:hover { color: #fff; }
.nav__dropdown { position: relative; }
.nav__dropdown-trigger { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.nav__dropdown-trigger .caret { width: 8px; height: 8px; flex-shrink: 0; transition: transform 0.15s ease; }
.nav__dropdown:hover .nav__dropdown-trigger .caret,
.nav__dropdown:focus-within .nav__dropdown-trigger .caret { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -18px;
  min-width: 260px;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: var(--navy-800);
  border: 1px solid var(--rule);
  border-radius: 4px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown-menu li a {
  display: block;
  padding: 9px 12px;
  border-radius: 3px;
  font-size: 0.88rem;
  color: var(--slate-light);
}
.nav__dropdown-menu li a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.nav__dropdown-menu li.is-soon {
  padding: 9px 12px;
  font-size: 0.88rem;
  color: var(--slate);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.nav__dropdown-menu li.is-soon .tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 2px 5px;
}

/* ---------- Mobile nav (hamburger) ---------- */
.nav__call-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--coral);
  border-radius: 3px;
  color: #14100C;
  flex-shrink: 0;
}
.nav__call-btn svg { width: 18px; height: 18px; }
@media (max-width: 899px) { .nav__call-btn { display: inline-flex; } }

.nav__burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
}
.nav__burger svg { width: 18px; height: 18px; }
.nav__burger .icon-close { display: none; }
.nav.is-open .nav__burger .icon-menu { display: none; }
.nav.is-open .nav__burger .icon-close { display: block; }
@media (min-width: 900px) { .nav__burger { display: none; } }

.nav__links-mobile-phone { display: none; }
.nav__links-mobile-book { display: none; }

@media (max-width: 899px) {
  .nav__cta { display: none !important; }
  .nav__links-mobile-book {
    display: block;
    margin: 6px 24px 10px;
    padding: 12px 16px;
    text-align: center;
    background: var(--coral);
    color: #14100C;
    font-weight: 600;
    border-radius: 3px;
    text-decoration: none;
  }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-950);
    border-bottom: 1px solid var(--rule);
    padding: 8px 0 14px;
    box-shadow: 0 16px 32px rgba(0,0,0,0.4);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav.is-open .nav__links { display: flex; }
  .nav__links > li { width: 100%; }
  .nav__links > li > a { display: block; padding: 14px 24px; }
  .nav__dropdown-trigger { display: flex; justify-content: space-between; padding: 14px 24px; }
  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    background: rgba(255,255,255,0.03);
    border: none;
    border-radius: 0;
    margin: 0 12px 6px;
    padding: 4px 0;
    min-width: 0;
  }
  .nav__dropdown.is-expanded .nav__dropdown-menu { display: block; }
  .nav__dropdown.is-expanded .nav__dropdown-trigger .caret { transform: rotate(180deg); }
  .nav__links-mobile-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--coral);
    font-weight: 600;
    padding: 14px 24px;
    text-decoration: none;
    border-top: 1px solid var(--rule);
    margin-top: 6px;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 11px 20px;
  border-radius: 3px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--solid { background: var(--coral); color: #14100C; }
.btn--solid:hover { background: #ff7d5c; }
.btn--outline { border-color: var(--rule); color: #fff; }
.btn--outline:hover { border-color: #fff; }
.btn--outline-dark { border-color: var(--rule-dark); color: var(--ink); }
.btn--outline-dark:hover { border-color: var(--ink); }
.nav__cta { padding: 9px 14px; font-size: 0.84rem; }
@media (min-width: 720px) { .nav__cta { padding: 11px 20px; font-size: 0.92rem; } }
.nav__right { display: flex; align-items: center; gap: 20px; }
.nav__links { display: none; }
.nav__phone {
  display: none;
  align-items: center;
  gap: 7px;
  color: var(--coral);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  white-space: nowrap;
}
.nav__phone:hover { color: #ff7d5c; }
@media (min-width: 900px) { .nav__links, .nav__phone { display: flex; } }

/* ---------- Hero ---------- */
.hero {
  padding: 100px 0 64px;
  position: relative;
  overflow: hidden;
}

/* Slider background: absolutely positioned behind the content, which
   stays normal-flow and determines the section's real height — so
   slides never need to be cropped to fit, the content just sits on top. */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide__ph {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(155deg, rgba(255,106,69,0.16) 0%, transparent 45%),
    var(--slide-tint, var(--navy-800));
  border: 1px dashed rgba(255,255,255,0.14);
}
.hero-slide__ph::after {
  content: 'Photo placeholder';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  white-space: nowrap;
}
.hero-slide__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--img-pos, 50% 50%);
}
.hero-slide__tag {
  position: absolute;
  right: 28px;
  bottom: 28px;
  max-width: 320px;
  text-align: right;
  z-index: 1;
}
.hero-slide__tag .eyebrow { display: block; }
.hero-slide__tag span {
  display: block;
  font-size: 0.86rem;
  color: var(--slate-light);
  margin-top: 4px;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(100deg, var(--navy-950) 0%, rgba(18,22,29,0.88) 32%, rgba(18,22,29,0.35) 62%, rgba(18,22,29,0.55) 100%);
  pointer-events: none;
}
.hero-dots {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  margin: 26px 0 0;
}
.hero-dots button {
  width: 22px;
  height: 3px;
  padding: 0;
  border: none;
  background: var(--rule);
  cursor: pointer;
}
.hero-dots button.is-active { background: var(--coral); }
.hero-dots button:hover { background: var(--slate-light); }

.hero > .wrap { position: relative; z-index: 1; }
.hero__inner { max-width: 760px; }
.hero__pitch {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.32;
  color: #fff;
  max-width: 600px;
  margin: 0 0 14px;
}
.hero__pitch strong { color: var(--coral); }
.hero__signature {
  font-size: 0.9rem;
  color: var(--slate-light);
  max-width: 600px;
  margin: 0 0 44px;
}
.hero__signature strong {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  margin-right: 8px;
}
h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 2.3rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 18px 0 22px;
  text-transform: uppercase;
}
h1 em {
  font-style: normal;
  color: var(--coral);
}
.hero__sub {
  font-size: 1.15rem;
  color: var(--slate-light);
  max-width: 560px;
  margin: 0 0 34px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }

.ledger {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.ledger__item {
  padding: 20px 0;
  border-left: 1px solid var(--rule);
}
.ledger__item:first-child { border-left: none; }
.ledger__num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--coral);
}
.ledger__label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 4px;
}

/* ---------- Section shell ---------- */
section { padding: 96px 0; }
.section-head { max-width: 620px; margin-bottom: 56px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.02;
  margin: 14px 0 16px;
}
.section-head p { color: var(--slate-light); font-size: 1.05rem; margin: 0; }
.section-head--dark p { color: #4A5361; }

/* ---------- Lineage (signature element) ---------- */
.lineage { position: relative; padding-left: 4px; }
.lineage__node {
  position: relative;
  padding: 0 0 40px 32px;
  border-left: 2px solid var(--rule);
}
.lineage__node:last-child { border-left-color: transparent; padding-bottom: 0; }
.lineage__node::before {
  content: '';
  position: absolute;
  left: -6px; top: 4px;
  width: 10px; height: 10px;
  background: var(--coral);
  transform: rotate(45deg);
}
.lineage__name {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}
.lineage__desc { color: var(--slate-light); font-size: 0.98rem; max-width: 560px; }

/* ---------- Client caliber (paper contrast band) ---------- */
.band-paper {
  background: var(--paper);
  color: var(--ink);
}
.band-paper .eyebrow { color: var(--coral-dim); }
.docket {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--rule-dark);
  border: 1px solid var(--rule-dark);
}
.docket__row {
  background: var(--paper);
  padding: 26px 24px;
}
.docket__row span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral-dim);
  margin-bottom: 8px;
}
.docket__row p { margin: 0; font-size: 1.02rem; font-weight: 500; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.service {
  background: var(--navy-950);
  padding: 30px 26px;
}
.service h3 {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0 0 10px;
}
.service p { color: var(--slate); font-size: 0.94rem; margin: 0; }
.services-note {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  color: var(--slate);
}
.services-note strong { color: var(--coral); }

/* ---------- Testimonials ---------- */
.testimonial { max-width: 720px; margin: 0; }
.testimonial blockquote {
  margin: 0 0 20px;
  padding: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.32;
  color: #fff;
}
.testimonial blockquote::before {
  content: '\201C';
  color: var(--coral);
  margin-right: 2px;
}
.testimonial figcaption {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

/* ---------- Bio teaser ---------- */
.bio {
  display: grid;
  gap: 40px;
  align-items: start;
}
@media (min-width: 800px) { .bio { grid-template-columns: 1fr 1fr; } }
.bio p { font-size: 1.05rem; margin: 0 0 16px; }
.bio__pending {
  font-size: 0.92rem;
  color: #6B7484;
  border-left: 2px solid var(--coral-dim);
  padding-left: 14px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 800px) { .contact-grid { grid-template-columns: 1fr 1.3fr; } }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-details__row a,
.contact-details__row p {
  margin: 6px 0 0;
  font-size: 1.05rem;
  color: #fff;
  text-decoration: none;
}
.contact-details__row a:hover { color: var(--coral); }
.contact-details__row p { color: var(--slate-light); line-height: 1.5; }
.contact-map {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--rule);
  overflow: hidden;
}
@media (min-width: 800px) { .contact-map { aspect-ratio: auto; min-height: 320px; } }

/* ---------- Booking form ---------- */
.booking-grid {
  display: grid;
  gap: 56px;
}
@media (min-width: 900px) { .booking-grid { grid-template-columns: 1.1fr 0.9fr; } }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: var(--navy-800);
  border: 1px solid var(--rule);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 3px;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid var(--coral);
  outline-offset: 1px;
  border-color: transparent;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.86rem; color: var(--slate); margin-top: -6px; margin-bottom: 24px; }
.form-status {
  padding: 14px 16px;
  border-radius: 3px;
  font-size: 0.94rem;
  margin-bottom: 24px;
}
.form-status--success { background: rgba(255,106,69,0.12); border: 1px solid var(--coral-dim); color: #fff; }
.form-status--error { background: rgba(220,80,80,0.12); border: 1px solid #C94E4E; color: #fff; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.booking-aside { display: flex; flex-direction: column; gap: 32px; }
.booking-aside .contact-details__row a,
.booking-aside .contact-details__row p { font-size: 1rem; }

/* ---------- Final CTA ---------- */
.cta-band {
  background: var(--coral);
  color: var(--ink);
  text-align: center;
  padding: 80px 0;
}
.cta-band h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0 0 22px;
  font-weight: 800;
}
.cta-band .btn--solid { background: var(--ink); color: #fff; }
.cta-band .btn--solid:hover { background: #262b34; }

/* ---------- Footer ---------- */
footer.site {
  padding: 48px 0;
  border-top: 1px solid var(--rule);
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.88rem;
  color: var(--slate);
}
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: #fff; }

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
