@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/cormorant-500.ttf") format("truetype");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../assets/fonts/plex-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../assets/fonts/plex-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --navy: #0b1623;
  --navy-mid: #132033;
  --ink: #141a22;
  --charcoal: #1a2028;
  --paper: #f4f2ed;
  --white: #fbfaf7;
  --mute: #5e6772;
  --mute-2: #8a9199;
  --line: #d6d2c9;
  --line-dark: rgba(255, 255, 255, 0.12);
  --metal: #b7a585;
  --metal-soft: #c9b99a;
  --max: 1120px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
}

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

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

html, body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-font-smoothing: antialiased;
  font-family: "IBM Plex Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  font-size: 17px;
}

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

a { color: inherit; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: #fff;
  padding: 0.5rem 0.75rem;
}

/* ——— Nav ——— */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem var(--pad);
  color: #f4f1ea;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  text-decoration: none;
  color: #f4f1ea;
}

.wordmark {
  font-family: "Cormorant Garamond", "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1;
}

.brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--metal-soft);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.82);
}

.nav-links a:hover { color: #fff; }

.nav-phone {
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--metal-soft);
  font-weight: 500;
}

.nav-phone:hover { color: #fff; }

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: #f4f1ea;
  background:
    linear-gradient(180deg, rgba(11, 22, 35, 0.28) 0%, rgba(11, 22, 35, 0.18) 38%, rgba(11, 22, 35, 0.72) 100%),
    linear-gradient(90deg, rgba(11, 22, 35, 0.55) 0%, rgba(11, 22, 35, 0.12) 70%),
    url("../assets/hero.jpg") center 42% / cover no-repeat;
}

.hero-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) 6.25rem;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--metal);
  font-weight: 500;
  margin: 0 0 1.1rem;
}

.hero h1 {
  font-family: "IBM Plex Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(2.35rem, 5.4vw, 4.15rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 1.15rem;
  max-width: 14ch;
}

.hero-line {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.45;
  max-width: 32rem;
  color: rgba(244, 241, 234, 0.88);
  margin: 0 0 2rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-light {
  background: #f4f1ea;
  color: var(--navy);
}

.btn-light:hover { background: #fff; }

.btn-ghost {
  background: transparent;
  color: #f4f1ea;
  border-color: rgba(244, 241, 234, 0.4);
}

.btn-ghost:hover { border-color: var(--metal); color: #fff; }

.btn-navy {
  background: var(--navy);
  color: #f4f1ea;
}

.btn-navy:hover { background: #162536; }

/* ——— Sections ——— */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section {
  padding: 6.25rem 0;
}

.section-tight { padding: 4.5rem 0; }

.label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--metal);
  font-weight: 500;
  margin: 0 0 1rem;
}

h2 {
  font-family: "IBM Plex Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 1.25rem;
}

p { margin: 0 0 1.1rem; }

p:last-child { margin-bottom: 0; }

.lede {
  font-size: 1.12rem;
  line-height: 1.55;
  max-width: 38rem;
}

.mute { color: var(--mute); }

/* ——— Book / credentials ——— */
.book {
  background: var(--navy);
  color: #e8e4db;
}

.book-grid {
  display: block;
  max-width: 40rem;
}

.book p { color: rgba(232, 228, 219, 0.88); }

.book .label { color: var(--metal); }

.rule {
  width: 2.5rem;
  height: 1px;
  background: var(--metal);
  border: 0;
  margin: 0 0 1.4rem;
}

/* ——— Thesis + photo ——— */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.photo-frame {
  margin: 0;
}

.photo-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 40%;
}

.photo-frame figcaption {
  margin-top: 0.7rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute-2);
}

/* ——— Buy box ——— */
.buy {
  background: var(--paper);
}

.spec {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0 0;
}

.spec tr {
  border-bottom: 1px solid var(--line);
}

.spec th,
.spec td {
  text-align: left;
  vertical-align: top;
  padding: 1.15rem 1.25rem 1.15rem 0;
  font-weight: 400;
}

.spec th {
  width: 11.5rem;
  color: var(--mute);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 1.3rem;
}

.spec td {
  font-size: 1.05rem;
  color: var(--ink);
}

.no-buy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.25rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.no-buy h3 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 0.65rem;
  color: var(--ink);
}

.no-buy p {
  color: var(--mute);
  font-size: 0.98rem;
  margin: 0;
}

/* ——— Process ——— */
.process-head {
  max-width: 36rem;
  margin-bottom: 3rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.step-n {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--metal);
  font-weight: 500;
  margin-bottom: 0.7rem;
}

.steps h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 0.55rem;
  letter-spacing: -0.01em;
}

.steps p {
  color: var(--mute);
  font-size: 0.95rem;
  margin: 0;
}

.escrow {
  margin-top: 3.25rem;
  padding: 1.6rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 11.5rem 1fr;
  gap: 1.25rem;
  align-items: start;
}

.escrow strong {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
}

.escrow p {
  margin: 0;
  color: var(--mute);
}

/* ——— Band photo ——— */
.band {
  height: 42vh;
  min-height: 280px;
  background:
    linear-gradient(180deg, rgba(11, 22, 35, 0.18), rgba(11, 22, 35, 0.28)),
    url("../assets/corner.jpg") center 70% / cover no-repeat;
}

/* ——— Contact ——— */
.contact {
  background: var(--navy);
  color: #e8e4db;
}

.contact h2 {
  color: #f4f1ea;
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 16ch;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: end;
}

.phone {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  letter-spacing: -0.02em;
  text-decoration: none;
  color: #f4f1ea;
  margin: 1.5rem 0 0.85rem;
  font-weight: 400;
}

.phone:hover { color: var(--metal-soft); }

.contact a.mail {
  color: #e8e4db;
  text-decoration: none;
  border-bottom: 1px solid rgba(183, 165, 133, 0.45);
}

.contact a.mail:hover { color: #fff; border-bottom-color: var(--metal); }

.contact-aside p { color: rgba(232, 228, 219, 0.78); }

.contact-cta { margin-top: 1.5rem; }

/* ——— Footer ——— */
.footer {
  background: #080e16;
  color: rgba(232, 228, 219, 0.62);
  padding: 2rem 0;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer .wordmark {
  font-size: 1.05rem;
  color: #e8e4db;
}

.footer a {
  color: rgba(232, 228, 219, 0.78);
  text-decoration: none;
}

.footer a:hover { color: #fff; }

.footer-meta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ——— Mobile ——— */
@media (max-width: 860px) {
  .nav {
    flex-wrap: wrap;
    padding: 1rem var(--pad) 0.85rem;
    gap: 0.65rem 1rem;
  }

  .nav-links {
    gap: 1rem;
    order: 3;
    width: 100%;
    padding-bottom: 0.4rem;
  }

  .hero { min-height: 88vh; }

  .hero-inner { padding-bottom: 3.5rem; }

  .hero h1 { max-width: 12ch; }

  .book-grid,
  .split,
  .contact-grid,
  .no-buy,
  .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .photo-frame img { height: 260px; }

  .spec th {
    display: block;
    width: auto;
    padding: 1.1rem 0 0.2rem;
  }

  .spec td {
    display: block;
    padding: 0 0 1.1rem;
  }

  .escrow {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .section { padding: 4.25rem 0; }

  .band { height: 32vh; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }

  .brand-sub { display: none; }

  .nav-phone { display: none; }

  .hero h1 { font-size: 2.2rem; }
}
