@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');

:root {
  --cream:     #F5F0E8;
  --parchment: #E8E2D6;
  --ink:       #1A1A18;
  --ash:       #6B6860;
  --ash-light: #9A9690;
  --fairway:   #3D3A35;
  --rule:      rgba(26,26,24,0.1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Cormorant Garamond', Georgia, serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Spot texture overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(26,26,24,0.035) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(26,26,24,0.02) 1px, transparent 1px);
  background-size: 120px 120px, 60px 60px;
  background-position: 0 0, 30px 30px;
  pointer-events: none;
  z-index: 0;
}

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 64px;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--rule);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: .22em;
  color: var(--ink);
  text-decoration: none;
  padding-right: .22em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

.nav-ig {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ash-light);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-ig:hover { color: var(--ink); }

/* ── Hamburger ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 0.5px;
  background: var(--ink);
  transition: all 0.3s;
}

/* ── Mobile nav ── */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--ash); }

/* ── Page wrapper ── */
main { padding-top: 64px; position: relative; z-index: 1; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Section spacing ── */
.section { padding: 6rem 3rem; }
.section-narrow { max-width: 720px; margin: 0 auto; }
.section-wide { max-width: 1100px; margin: 0 auto; }

/* ── Typography ── */
.eyebrow {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ash-light);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.eyebrow::after {
  content: '';
  flex: 1;
  max-width: 40px;
  height: 0.5px;
  background: var(--ash-light);
}

h1 {
  font-weight: 300;
  font-size: clamp(36px, 6vw, 72px);
  letter-spacing: .02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

h2 {
  font-weight: 300;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: .02em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

h3 {
  font-weight: 400;
  font-size: clamp(18px, 2.5vw, 24px);
  letter-spacing: .04em;
  line-height: 1.3;
  margin-bottom: .75rem;
}

p {
  font-size: 17px;
  font-weight: 300;
  color: var(--ash);
  line-height: 1.85;
  margin-bottom: 1rem;
}

p strong { color: var(--ink); font-weight: 400; }

/* ── Rule ── */
.rule { width: 100%; height: 0.5px; background: var(--rule); margin: 4rem 0; }
.rule-short { width: 40px; height: 0.5px; background: var(--ash-light); margin: 2rem 0; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border: 0.5px solid var(--ink);
  padding: 12px 28px;
  transition: background 0.2s, color 0.2s;
}
.btn:hover { background: var(--ink); color: var(--cream); }

.btn-ghost {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  border: 0.5px solid var(--rule);
  padding: 12px 28px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

/* ── Image blocks ── */
.img-block {
  width: 100%;
  overflow: hidden;
  background: var(--parchment);
}
.img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(8%) contrast(0.95);
  transition: transform 0.6s ease;
}
.img-block:hover img { transform: scale(1.02); }

/* ── Footer ── */
footer {
  border-top: 0.5px solid var(--rule);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.footer-wordmark {
  font-weight: 300;
  font-size: 20px;
  letter-spacing: .22em;
  color: var(--ink);
  padding-right: .22em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.footer-links a {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ash-light);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--ink); }

.footer-right {
  text-align: right;
  font-size: 11px;
  color: var(--ash-light);
  letter-spacing: .06em;
  font-style: italic;
  line-height: 1.8;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-links, .nav-ig { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 4rem 1.5rem; }
  footer {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }
  .footer-links { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .footer-right { text-align: center; }
}
