/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:    #f5f2ed;
  --ink:      #1a1814;
  --muted:    #7a746c;
  --accent:   #c8a97e;
  --border:   rgba(26, 24, 20, 0.12);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --max-w:    1160px;
  --section-pad: 120px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; width: 100%; }

/* ── Utility ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid var(--ink);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}
.btn:hover { background: var(--ink); color: var(--cream); }
.btn-light {
  border-color: var(--cream);
  color: var(--cream);
}
.btn-light:hover { background: var(--cream); color: var(--ink); }

/* ── Header / Nav ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.site-header.scrolled {
  background: rgba(245, 242, 237, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 40px;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

/* ── Hero ── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(200, 169, 126, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200, 169, 126, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.hero-name em {
  font-style: italic;
  color: var(--muted);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--muted));
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}

/* ── Section transitions ── */
.work, .about, .contact {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.work.visible, .about.visible, .contact.visible {
  opacity: 1;
  transform: none;
}

/* ── Work ── */
.work {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

.section-header {
  margin-bottom: 64px;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
}

.coming-soon-block {
  text-align: center;
  padding: 100px 40px;
  border: 1px solid var(--border);
}
.coming-soon-icon {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 32px;
  animation: spin 12s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.coming-soon-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 16px;
}
.coming-soon-sub {
  color: var(--muted);
  font-size: 15px;
  max-width: 400px;
  margin: 0 auto;
}
.coming-soon-sub a {
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}
.coming-soon-sub a:hover { border-color: var(--ink); }

/* ── About ── */
.about {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
  background: var(--ink);
  color: var(--cream);
}
.about .label { color: var(--accent); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-placeholder {
  aspect-ratio: 3/4;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image-placeholder span {
  font-family: var(--font-serif);
  font-size: 120px;
  font-weight: 300;
  color: rgba(255,255,255,0.08);
  line-height: 1;
}
.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.1;
}
.about-text p {
  color: rgba(245, 242, 237, 0.65);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ── Contact ── */
.contact {
  padding: var(--section-pad) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}
.contact .label { color: var(--accent); }
.contact h2 {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1;
}
.contact p {
  color: rgba(245, 242, 237, 0.5);
  font-size: 15px;
  margin-bottom: 40px;
}

/* ── Footer ── */
.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 40px;
  text-align: center;
  font-size: 12px;
  color: rgba(245, 242, 237, 0.25);
  letter-spacing: 0.05em;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  :root { --section-pad: 80px; }

  .site-header { padding: 20px 24px; }
  .hero { padding: 0 24px; }
  .container { padding: 0 24px; }

  .nav-links { display: none; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-image-placeholder { aspect-ratio: 4/3; }
}

/* ── Nav scroll effect ── */
