/* ── Tokens ─────────────────────────────────────── */
:root {
  --bg:       #FAF8F5;
  --text:     #2A2825;
  --muted:    #7A7269;
  --camel:    #C4A882;
  --border:   #E2DDD7;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Jost', system-ui, sans-serif;
}

/* ── Cursor ─────────────────────────────────────── */
* { cursor: none; }
.cursor {
  position: fixed;
  top: -20px; left: -20px;
  width: 40px; height: 40px;
  border: 1px solid var(--text);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  will-change: transform;
}
.cursor.expanded {
  width: 64px; height: 64px;
  border-color: var(--camel);
}
.cursor-dot {
  position: fixed;
  top: -3px; left: -3px;
  width: 6px; height: 6px;
  background: var(--text);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
}

/* ── Scroll fade-in ──────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── Nav ────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  mix-blend-mode: normal;
}
.wordmark {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--muted); }

/* ── Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
}
.hero-img img {
  object-position: center 30%;
}
.hero-caption {
  position: absolute;
  bottom: 48px;
  right: 48px;
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: #FAF8F5;
  letter-spacing: 0.02em;
}

/* ── Intro ──────────────────────────────────────── */
.intro {
  padding: 120px 48px;
  max-width: 900px;
}
.intro h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.intro h1 em {
  font-style: italic;
  color: var(--muted);
}
.intro p {
  font-size: 15px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
}

/* ── Services ───────────────────────────────────── */
.services {
  border-top: 1px solid var(--border);
  padding: 80px 48px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.service-num {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--camel);
  margin-bottom: 20px;
}
.service h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 14px;
}
.service p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* ── Image Pair ─────────────────────────────────── */
.image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  height: 70vh;
}
.pair-left, .pair-right {
  overflow: hidden;
}
.pair-left img, .pair-right img {
  transition: transform 0.6s ease;
}
.pair-left:hover img, .pair-right:hover img {
  transform: scale(1.03);
}

/* ── Footer ─────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-left .wordmark {
  display: block;
  margin-bottom: 10px;
}
.cities {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.footer-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-right a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-right a:hover { color: var(--text); }
.social {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}
.social a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Mobile ─────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  .nav-links { gap: 20px; }
  .intro { padding: 80px 24px; }
  .services { padding: 60px 24px; }
  .services-grid { grid-template-columns: 1fr; gap: 40px; }
  .image-pair { grid-template-columns: 1fr; height: auto; }
  .pair-left, .pair-right { height: 50vw; }
  footer { padding: 40px 24px; flex-direction: column; gap: 24px; align-items: flex-start; }
  .footer-right { text-align: left; }
  .social { justify-content: flex-start; }
  .hero-caption { right: 24px; bottom: 24px; }
}
