:root {
/* Brand tokens (semantic) */
--color-bg: #fbf7f0;
--color-surface: #ffffff;
--color-surface-muted: #f3eee4;
--color-ink: #111827;
--color-muted: #6b7280;
--color-accent: #b68a2c;
--color-accent-soft: rgba(182, 138, 44, 0.08);
--color-border-soft: rgba(15, 23, 42, 0.06);
--color-border-strong: rgba(15, 23, 42, 0.14);

--font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
--font-serif: "Cormorant Garamond", "Times New Roman", serif;

--radius-lg: 1.75rem;
--radius-md: 1.1rem;
--radius-full: 999px;

--shadow-soft: 0 22px 60px rgba(15, 23, 42, 0.09);
--shadow-subtle: 0 10px 30px rgba(15, 23, 42, 0.04);

--transition-fast: 150ms ease-out;
--transition-med: 220ms ease-out;

/* Backward-compatible aliases (do not use in new CSS) */
--bg: var(--color-bg);
--bg-alt: var(--color-surface);
--bg-muted: var(--color-surface-muted);
--ink: var(--color-ink);
--muted: var(--color-muted);
--accent: var(--color-accent);
--accent-soft: var(--color-accent-soft);
--border-soft: var(--color-border-soft);
--border-strong: var(--color-border-strong);


}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 4rem;
}

.grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .grid-2 {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    align-items: flex-start;
  }

/* TYPOGRAPHY */

.hero-heading {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2.5rem, 3.4vw, 3.3rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.15;
}
.hero-highlight {
  color: var(--accent);
}
.section-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.section-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.section-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 32rem;
}
.tiny-text {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

/* SECTIONS */
section {
  margin-bottom: 3.25rem;
}
.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.7rem;
}
}