:root {
  --indigo:      #1a1430;
  --indigo-mid:  #2d2048;
  --indigo-light:#3d2e6a;
  --gold:        #c9a84c;
  --gold-muted:  #a0883a;
  --cream:       #f5f0e8;
  --cream-dark:  #e8e0d0;
  --text:        #f0eadf;
  --text-dim:    #a89e90;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--indigo);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
}
.nav__inner { max-width: 1200px; margin: 0 auto; }
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.nav__logo-accent { color: var(--gold); }
.nav__links { margin-left: auto; }
.nav__link {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  padding: 0.25rem 0;
}
.nav__link:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 0 2rem 6rem;
}
.hero__image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.55) sepia(0.3);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,20,48,0.1) 0%,
    rgba(26,20,48,0.0) 40%,
    rgba(26,20,48,0.7) 80%,
    rgba(26,20,48,0.95) 100%
  );
}
.hero__content {
  position: relative;
  max-width: 700px;
}
.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 400;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 520px;
  line-height: 1.6;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 7rem 2rem;
  background: var(--indigo-mid);
  position: relative;
  overflow: hidden;
}
.manifesto__inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: center;
}
.manifesto__smoke-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  filter: brightness(0.7) sepia(0.4);
  opacity: 0.8;
}
.manifesto__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.manifesto__body {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ── SERVICES ── */
.services { padding: 7rem 2rem; }
.services__inner { max-width: 1100px; margin: 0 auto; }
.services__heading {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.service-card:hover { border-color: rgba(201,168,76,0.4); }
.service-card__img-wrap { height: 200px; overflow: hidden; }
.service-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.6) sepia(0.3);
  transition: transform 0.5s ease;
}
.service-card:hover .service-card__img { transform: scale(1.04); }
.service-card__icon {
  padding: 1.5rem 1.5rem 0;
  display: flex;
  align-items: center;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  padding: 0.8rem 1.5rem 0;
  letter-spacing: 0.01em;
}
.service-card__desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
  padding: 0.6rem 1.5rem 1.5rem;
}

/* ── JOURNEY ── */
.journey {
  padding: 7rem 2rem;
  background: var(--indigo-mid);
}
.journey__inner { max-width: 800px; margin: 0 auto; }
.journey__label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.journey__steps { display: flex; flex-direction: column; gap: 0; }
.journey__step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.journey__step:last-child { border-bottom: 1px solid rgba(201,168,76,0.12); }
.journey__num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
  padding-top: 0.2rem;
}
.journey__text h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.journey__text p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ── CLOSING ── */
.closing {
  padding: 9rem 2rem;
  text-align: center;
}
.closing__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--cream);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.3;
}

/* ── FOOTER ── */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.footer__brand-accent { color: var(--gold); }
.footer__legal {
  font-size: 0.75rem;
  color: rgba(168,158,144,0.5);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 1rem;
}
.footer__copy {
  font-size: 0.72rem;
  color: rgba(168,158,144,0.35);
  letter-spacing: 0.05em;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding-bottom: 4rem; }
  .hero__headline { font-size: 2.4rem; }

  .manifesto__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .manifesto__smoke { max-width: 260px; margin: 0 auto; }
  .manifesto__quote { font-size: 1.3rem; }

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

  .journey__step { grid-template-columns: 48px 1fr; }

  .closing { padding: 6rem 2rem; }
}

@media (max-width: 480px) {
  .nav { padding: 1rem 1.25rem; }
  .hero { padding: 0 1.25rem 3.5rem; }
  .hero__sub { font-size: 0.95rem; }
  .manifesto, .services, .journey { padding: 5rem 1.25rem; }
  .closing { padding: 5rem 1.25rem; }
}