:root {
  --bg: #F2F1EC;
  --surface: #E8E6DE;
  --surface-2: #DDD9CD;
  --line: #CFCABD;
  --ink: #121210;
  --ink-2: #2F2F2C;
  --ink-3: #6E6B63;
  --ink-4: #A09B8E;
  --accent: #4A4741;
  --accent-2: #7B7668;
  --silver: #A8A499;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { background: var(--bg); scroll-behavior: smooth; }
body {
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -.005em;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity .6s cubic-bezier(.2, 1, .3, 1);
}
body.loaded { opacity: 1; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--ink); color: var(--bg); }

/* ─── NAV ─── */
nav.top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px clamp(24px, 5vw, 64px);
  background: rgba(242, 241, 236, .88);
  backdrop-filter: saturate(140%) blur(20px);
  -webkit-backdrop-filter: saturate(140%) blur(20px);
  transition: padding .4s ease;
}
nav.top.scrolled { padding: 18px clamp(24px, 5vw, 64px); border-bottom: 1px solid var(--line); }
nav.top .mark {
  font-size: 15px; font-weight: 500; letter-spacing: -.01em;
}
nav.top .mark .last { font-weight: 300; color: var(--ink-3); }
nav.top .links { display: flex; gap: 44px; align-items: center; }
nav.top .links a {
  font-size: 13px; font-weight: 400; color: var(--ink-3);
  transition: color .3s ease; letter-spacing: -.005em;
}
nav.top .links a:hover,
nav.top .links a.active { color: var(--ink); }
@media (max-width: 720px) {
  nav.top { padding: 22px 22px; }
  nav.top.scrolled { padding: 16px 22px; }
  nav.top .links { gap: 22px; }
  nav.top .links a { font-size: 12px; }
}
@media (max-width: 420px) {
  nav.top .links { gap: 16px; }
  nav.top .links a { font-size: 11px; }
}

/* ─── PAGE HEAD (subpages) ─── */
.page-head {
  padding: clamp(140px, 16vw, 200px) clamp(24px, 5vw, 64px) clamp(60px, 8vw, 100px);
  max-width: 1240px;
  border-bottom: 1px solid var(--line);
}
.page-head .eyebrow {
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 24px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 12px;
}
.page-head .eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--ink-3);
}
.page-head h1 {
  font-size: clamp(3rem, 8vw, 7rem); font-weight: 200;
  line-height: .96; letter-spacing: -.045em;
}
.page-head h1 .em { color: var(--ink-3); font-weight: 200; display: block; }
.page-head .sub {
  margin-top: 28px; max-width: 58ch;
  font-size: 17px; line-height: 1.65; color: var(--ink-2); font-weight: 300;
}

/* ─── FOOTER ─── */
footer {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 64px) 36px;
  border-top: 1px solid var(--line);
  margin-top: clamp(80px, 10vw, 140px);
}
footer .ft-top {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 48px; align-items: end; margin-bottom: 80px;
}
@media (max-width: 820px) { footer .ft-top { grid-template-columns: 1fr; gap: 32px; } }
footer .ft-top h3 {
  font-size: clamp(2rem, 4.5vw, 3.8rem); font-weight: 200;
  line-height: 1.05; letter-spacing: -.035em; max-width: 20ch;
}
footer .ft-top a.cta {
  justify-self: end;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 40px;
  border: 1px solid var(--ink); color: var(--ink);
  font-size: 13px; font-weight: 500;
  transition: all .4s cubic-bezier(.2, 1, .3, 1);
}
@media (max-width: 820px) { footer .ft-top a.cta { justify-self: start; } }
footer .ft-top a.cta:hover {
  background: var(--ink); color: var(--bg); gap: 20px;
}
footer .ft-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px; padding-top: 48px; border-top: 1px solid var(--line);
}
@media (max-width: 768px) {
  footer .ft-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
footer .ft-grid .brand .name {
  font-size: 18px; font-weight: 500; margin-bottom: 10px;
}
footer .ft-grid .brand .desc {
  font-size: 13px; color: var(--ink-3); line-height: 1.7; max-width: 280px;
}
footer .ft-col h4 {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 14px; font-weight: 500;
}
footer .ft-col a {
  display: block; font-size: 14px; color: var(--ink-2);
  margin-bottom: 9px; transition: color .3s ease;
}
footer .ft-col a:hover { color: var(--ink); }
footer .base {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 36px; margin-top: 48px; border-top: 1px solid var(--line);
  font-size: 12px; color: var(--ink-3);
}
footer .base a { color: var(--ink-3); transition: color .3s ease; }
footer .base a:hover { color: var(--ink); }

/* ─── PLACEHOLDER BLOCKS (no photos) ─── */
.ph {
  position: relative;
  background: var(--surface);
  overflow: hidden;
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(145deg, rgba(255,255,255,.15) 0%, transparent 30%),
    linear-gradient(325deg, rgba(18,18,16,.06) 0%, transparent 40%);
}
.ph::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink-4); font-weight: 500;
  opacity: .7;
}

/* ─── REVEAL ─── */
.rv {
  opacity: 0; transform: translateY(24px);
  transition: opacity 1s cubic-bezier(.2, 1, .3, 1), transform 1s cubic-bezier(.2, 1, .3, 1);
}
.rv.vis { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; }
.rv-d2 { transition-delay: .16s; }
.rv-d3 { transition-delay: .24s; }
.rv-d4 { transition-delay: .32s; }

/* ─── A11Y ─── */
.skip {
  position: absolute; left: -9999px; top: 4px; z-index: 200;
  background: var(--ink); color: var(--bg); padding: 8px 16px; font-size: 14px;
}
.skip:focus { left: 16px; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .rv { opacity: 1; transform: none; }
  body { opacity: 1; }
}
