/* ─────────────────────────────────────────────
   Florence Hamilton — Global Styles
   ───────────────────────────────────────────── */

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

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

:root {
  --bg:        #F7F4EE;
  --ink:       #1C1C1A;
  --sepia:     #8B7355;
  --muted:     #6B6660;
  --rule:      #D4CEC4;
  --max-prose: 680px;
  --max-wide:  1100px;
}

html {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Layout Shell ──────────────────────────────── */
.site-wrap {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Navigation ────────────────────────────────── */
nav {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 36px 0 32px;
  border-bottom: 1px solid var(--rule);
}

.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

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

/* ── Page Header ───────────────────────────────── */
.page-header {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--rule);
}

.page-header .eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sepia);
  margin-bottom: 20px;
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ── Footer ────────────────────────────────────── */
footer {
  border-top: 1px solid var(--rule);
  padding: 40px 0;
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

footer a { color: var(--sepia); transition: color 0.2s; }
footer a:hover { color: var(--ink); }

/* ── Utility ───────────────────────────────────── */
.rule { border: none; border-top: 1px solid var(--rule); }

@media (max-width: 640px) {
  .site-wrap { padding: 0 24px; }
  nav { padding: 28px 0 24px; }
  .nav-links { gap: 24px; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
}
