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

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

:root {
  --black: #0a0a0a;
  --white: #f7f6f2;
  --pure: #ffffff;
  --off: #f0efe9;
  --mid: #e2e1da;
  --gray: #7a7a72;
  --border: rgba(0,0,0,0.1);
  --serif: 'Cormorant Garamond', serif;
  --sans: 'DM Sans', sans-serif;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--black); background: var(--white); overflow-x: hidden; font-weight: 300; line-height: 1.7; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  background: rgba(247,246,242,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }
.nav-logo { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--black); text-decoration: none; letter-spacing: -0.01em; }
.nav-logo span { color: var(--gray); font-weight: 300; }
.nav-links { display: flex; align-items: center; list-style: none; gap: 0; }
.nav-links a {
  display: block; padding: 0 1rem; height: var(--nav-h); line-height: var(--nav-h);
  font-size: 0.78rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--black); text-decoration: none; transition: color 0.2s; position: relative;
}
.nav-links a.active, .nav-links a:hover { color: var(--gray); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 0; left: 1rem; right: 1rem;
  height: 2px; background: var(--black);
}
.nav-btn {
  padding: 0.55rem 1.5rem; background: var(--black); color: var(--white) !important;
  font-size: 0.75rem !important; text-transform: uppercase; letter-spacing: 0.12em;
  height: auto !important; line-height: normal !important;
  transition: background 0.2s;
}
.nav-btn:hover { background: #333 !important; color: var(--white) !important; }
.nav-btn.active::after { display: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--black); transition: all 0.3s; }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding-top: var(--nav-h);
  min-height: 52vh;
  position: relative;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.page-header-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
}
.page-header-content { position: relative; z-index: 2; padding: 4rem 6% 4rem; }
.page-header-tag {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5); margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.page-header-tag::before { content: ''; width: 1.8rem; height: 1px; background: rgba(255,255,255,0.35); }
.page-header-title { font-family: var(--serif); font-size: clamp(2.4rem,5vw,4.5rem); font-weight: 300; color: #fff; line-height: 1.1; }
.page-header-title em { font-style: italic; }
.page-header-sub { font-size: 1rem; color: rgba(255,255,255,0.6); margin-top: 1rem; max-width: 500px; font-weight: 300; }

/* ── SECTION COMMONS ── */
.section { padding: 6rem 6%; }
.section.dark { background: var(--black); color: #fff; }
.section.off { background: var(--off); }
.section.mid { background: var(--mid); }
.eyebrow {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gray);
  margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.7rem;
}
.eyebrow::before { content: ''; width: 1.8rem; height: 1px; background: var(--gray); }
.eyebrow.light { color: rgba(255,255,255,0.4); }
.eyebrow.light::before { background: rgba(255,255,255,0.2); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.sec-title { font-family: var(--serif); font-size: clamp(2rem,3.5vw,3.4rem); font-weight: 300; line-height: 1.15; margin-bottom: 1rem; }
.sec-title em { font-style: italic; }
.sec-title.light { color: #fff; }
.sec-title.center { text-align: center; }
.divider { width: 3rem; height: 2px; background: var(--black); margin: 1.5rem 0 3rem; }
.divider.light { background: rgba(255,255,255,0.2); }
.divider.center { margin: 1.5rem auto 3rem; }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: 0.85rem 2.2rem; font-size: 0.78rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.12em; text-decoration: none; transition: all 0.25s; cursor: pointer; border: none; font-family: var(--sans); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #2a2a2a; }
.btn-outline { border: 1px solid var(--black); color: var(--black); background: transparent; }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline-light { border: 1px solid rgba(255,255,255,0.4); color: rgba(255,255,255,0.85); background: transparent; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-white { background: #fff; color: var(--black); border: 2px solid #fff; }
.btn-white:hover { background: transparent; color: #fff; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ── FOOTER ── */
footer {
  background: #080808; color: rgba(255,255,255,0.38);
  padding: 4.5rem 6% 2rem;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 2rem; }
.f-logo { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: #fff; margin-bottom: 0.8rem; }
.f-desc { font-size: 0.84rem; color: rgba(255,255,255,0.32); line-height: 1.8; max-width: 280px; }
.f-col h4 { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(255,255,255,0.5); margin-bottom: 1.2rem; }
.f-col ul { list-style: none; }
.f-col ul li { margin-bottom: 0.6rem; }
.f-col ul li a { color: rgba(255,255,255,0.32); text-decoration: none; font-size: 0.84rem; font-weight: 300; transition: color 0.2s; }
.f-col ul li a:hover { color: rgba(255,255,255,0.72); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.78rem; }

/* ── RESPONSIVE NAV ── */
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 0.5rem 0; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { height: auto; line-height: 1; padding: 0.9rem 6%; border-bottom: 1px solid var(--border); }
  .nav-links a.active::after { display: none; }
  .nav-btn { margin: 0.5rem 6%; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 4rem 5%; }
}
