:root {
  --ink: #16221f;
  --ink-soft: #3c4b47;
  --paper: #faf7f0;
  --paper-warm: #f2ecdd;
  --gold: #b68a3c;
  --gold-light: #d9b877;
  --river-deep: #0d2b2e;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0;
}

a { color: inherit; }

.kicker {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.9rem;
}
.kicker--light { color: var(--gold-light); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  color: var(--paper);
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
  transform: scale(1.03);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,26,26,0.55) 0%, rgba(13,26,26,0.35) 32%, rgba(13,26,26,0.65) 78%, rgba(9,18,18,0.92) 100%);
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem clamp(1.25rem, 5vw, 3.5rem);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}
.nav__mark {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.nav a {
  text-decoration: none;
  color: rgba(250,247,240,0.85);
  margin-left: clamp(1rem, 2.5vw, 2.2rem);
  transition: color 0.2s ease;
}
.nav a:hover { color: var(--gold-light); }
@media (max-width: 640px) {
  .nav a:not(:last-child) { display: none; }
}

.hero__content {
  position: relative;
  z-index: 2;
  margin: auto 0 0;
  padding: 0 clamp(1.25rem, 6vw, 4.5rem) clamp(3.5rem, 9vw, 6rem);
  max-width: 780px;
}
.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 1.1rem;
}
.hero h1 {
  font-size: clamp(3.4rem, 10vw, 6.4rem);
  line-height: 0.95;
  margin-bottom: 1.3rem;
}
.hero__subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 400;
  max-width: 34ch;
  color: rgba(250,247,240,0.92);
  margin: 0 0 2.2rem;
}
.cta {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border: 1px solid rgba(250,247,240,0.55);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--river-deep);
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(4.5rem, 10vw, 8rem) clamp(1.25rem, 6vw, 4.5rem);
}

.section--prose {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}
.section--prose h2 {
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  margin-bottom: 1.4rem;
}
.section--prose p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin: 0 0 1.2rem;
}

.section--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding-top: clamp(2rem, 6vw, 3rem);
  padding-bottom: clamp(2rem, 6vw, 3rem);
}
.section--reverse { direction: rtl; }
.section--reverse > * { direction: ltr; }

.split__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}
.split__text h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  margin-bottom: 1.1rem;
}
.split__text p {
  font-size: 1.03rem;
  color: var(--ink-soft);
  margin: 0 0 1.1rem;
}

@media (max-width: 760px) {
  .section--split { grid-template-columns: 1fr; }
  .split__img { aspect-ratio: 16 / 10; }
}

.section--dark {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--paper);
}
.section__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,26,26,0.88), rgba(13,26,26,0.82));
}
.section__inner {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.section__inner h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin-bottom: 1.2rem;
}
.section__inner p {
  font-size: 1.08rem;
  color: rgba(250,247,240,0.88);
}
@media (max-width: 640px) {
  .section--dark { background-attachment: scroll; }
}

.section--contact {
  background: var(--paper-warm);
  border-top: 1px solid rgba(22,34,31,0.08);
}
.section--contact a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer {
  padding: 2.2rem clamp(1.25rem, 6vw, 4.5rem);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: var(--paper-warm);
  border-top: 1px solid rgba(22,34,31,0.08);
}
