/* CML brand — navy / gold / cream · Cormorant Garamond + DM Sans */
:root {
  --navy: #0b1c2c;
  --navy-mid: #132a40;
  --gold: #c4a35a;
  --gold-soft: #d4bc7a;
  --cream: #f5f0e6;
  --cream-muted: #e8e0d0;
  --ink: #0b1c2c;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 72rem;
  --nav-h: 4.5rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--cream);
  background: var(--navy);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold-soft); }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}
.nav {
  display: flex;
  gap: clamp(1.5rem, 6vw, 3.5rem);
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 42rem;
  margin-inline: auto;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
}
.nav a { opacity: 0.92; }
.nav a:hover { opacity: 1; color: var(--gold); }

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.55) contrast(1.08) saturate(0.9); /* empty copper-lamp kitchen — darker for centered type */
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.72) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.hero__rule {
  width: 3rem;
  height: 1px;
  margin: 1.15rem auto 0;
  border: 0;
  background: var(--gold);
}
.hero__roles {
  margin: 0.85rem 0 0;
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.hero__creds {
  margin-top: 1rem;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 1.8vw, 0.85rem);
  color: var(--cream-muted);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(48rem, 100%);
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  letter-spacing: 0.12em;
  line-height: 1.05;
  text-transform: uppercase;
  text-align: center;
  color: var(--cream);
}
.hero__place {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}
.hero__ctas {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1.4rem;
  border: 1px solid var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.btn--solid {
  background: var(--gold);
  color: var(--navy);
}
.btn--solid:hover { background: var(--gold-soft); color: var(--navy); }
.btn--ghost { background: transparent; color: var(--cream); }
.btn--ghost:hover { background: rgba(196,163,90,0.15); color: var(--gold-soft); }

.band {
  background: var(--cream);
  color: var(--ink);
  padding: 4.5rem 1.5rem;
}
.band__inner { max-width: var(--max); margin: 0 auto; }
.band h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 0.04em;
}
.band p { max-width: 40rem; margin: 0; color: var(--navy-mid); }
.site-footer {
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
  background: var(--navy);
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

/* Inner pages */
.page-hero {
  padding: calc(var(--nav-h) + 3rem) 1.5rem 3rem;
  text-align: center;
  background: var(--navy);
}
.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.page-hero p {
  margin: 0.75rem auto 0;
  max-width: 36rem;
  color: var(--cream-muted);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
}
.header-solid .site-header { position: relative; background: var(--navy); }

.prose { max-width: 40rem; }
.prose p { margin: 0 0 1.1rem; color: var(--navy-mid); }
.prose p:last-child { margin-bottom: 0; }

.grid-projects {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  margin-top: 2rem;
}
.card {
  background: #fff;
  border: 1px solid var(--cream-muted);
  padding: 1.35rem 1.25rem;
}
.card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  color: var(--navy);
}
.card .meta {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.card p { margin: 0; font-size: 0.95rem; color: var(--navy-mid); }

.quote {
  margin: 0 0 1.75rem;
  padding-left: 1.25rem;
  border-left: 2px solid var(--gold);
}
.quote p { margin: 0 0 0.5rem; font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--navy); }
.quote cite { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-style: normal; color: var(--navy-mid); }

.gallery {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  margin-top: 2rem;
}
.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.press-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.press-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--cream-muted);
  font-size: 0.95rem;
  color: var(--navy-mid);
}
.press-list strong { color: var(--navy); }
.section-label {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.band--navy { background: var(--navy); color: var(--cream); }
.band--navy .section-label { color: var(--gold); }
.band--navy .quote p { color: var(--cream); }
.band--navy .quote cite { color: var(--cream-muted); }


/* —— About (Maison Lumière–style split) —— */
.page-about {
  background: var(--cream);
  color: var(--ink);
}
.site-header--light {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: auto;
  min-height: var(--nav-h);
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  background: var(--cream);
  color: var(--navy);
}
.site-header--light .nav a { color: var(--navy); opacity: 0.8; }
.site-header--light .nav a:hover,
.site-header--light .nav a[aria-current="page"] { color: var(--gold); opacity: 1; }
.brand-mark {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--navy);
}
.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem clamp(1.25rem, 4vw, 3rem) 4rem;
}
.about-split__photo { margin: 0; }
.about-split__img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.about-split__img--bw {
  filter: grayscale(1) contrast(1.05);
}
.about-split__copy .section-label {
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.about-split__copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--navy);
}
.about-split__rule {
  width: 3.25rem;
  height: 1px;
  margin: 1rem 0 1.35rem;
  border: 0;
  background: var(--gold);
}
.about-split__copy .prose p { color: var(--navy-mid); }
.site-footer--light {
  background: var(--cream);
  color: var(--navy);
  opacity: 1;
  border-top: 1px solid var(--cream-muted);
}
.page-about .band { background: var(--cream); }
.page-about .band--navy { background: var(--navy); }

@media (max-width: 820px) {
  .about-split {
    grid-template-columns: 1fr;
    padding-top: 0.5rem;
  }
  .about-split__photo { max-width: 22rem; }
  .site-header--light {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Book page — cover + Amazon CTA */
.book-page__layout {
  display: grid;
  grid-template-columns: minmax(10rem, 16rem) 1fr;
  gap: 2.5rem 3rem;
  align-items: start;
}
.book-page__cover {
  margin: 0;
}
.book-page__cover img {
  display: block;
  width: 100%;
  max-width: 16rem;
  height: auto;
  box-shadow: 0 12px 32px rgba(11, 28, 44, 0.22);
  border: 1px solid rgba(11, 28, 44, 0.08);
}
.book-page__eyebrow {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--navy-mid);
  margin: 0 0 0.75rem;
}
.book-page h1 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  letter-spacing: 0.02em;
  color: var(--navy);
}
.book-page__lede {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  color: var(--navy-mid);
}
.book-page__cta {
  margin: 0 0 1.75rem;
}
.book-page__cta .btn--solid {
  color: var(--navy);
  text-decoration: none;
}
.book-page__toolkit {
  margin: 0;
  font-size: 0.85rem;
  color: var(--navy-mid);
  opacity: 0.85;
  max-width: 36rem;
}
@media (max-width: 640px) {
  .book-page__layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .book-page__cover {
    display: flex;
    justify-content: center;
  }
  .book-page__cover img {
    max-width: 14rem;
  }
}
