:root {
  /* Colors */
  --clr-bg:          #F5F3EE;
  --clr-bg-dark:     #0E0E0C;
  --clr-bg-accent:   #EDEAE3;
  --clr-text:        #0E0E0C;
  --clr-text-muted:  #7A7770;
  --clr-text-light:  #F5F3EE;
  --clr-accent:      #C8A96E;
  --clr-accent-dark: #A8863E;
  --clr-border:      rgba(14, 14, 12, 0.10);
  --clr-border-light:rgba(245, 243, 238, 0.15);

  /* Navbar glass */
  --navbar-bg:       rgba(245, 243, 238, 0.55);
  --navbar-border:   rgba(200, 169, 110, 0.25);
  --navbar-blur:     18px;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --section-padding: clamp(5rem, 10vw, 9rem);
  --container-width: 1160px;
  --container-narrow: 760px;
  --gap: clamp(1.5rem, 3vw, 2.5rem);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.45s;
}

/* ── Global ── */
body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.65;
  font-weight: 300;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

em {
  font-style: italic;
  color: var(--clr-accent);
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: all var(--duration) var(--ease-out);
  cursor: pointer;
}

.btn--primary {
  background: var(--clr-text);
  color: var(--clr-bg);
}
.btn--primary:hover {
  background: var(--clr-accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200, 169, 110, 0.3);
}

.btn--ghost {
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
}
.btn--ghost:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }

/* ── Label ── */
.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 1.25rem;
}
.label--light { color: rgba(245, 243, 238, 0.5); }

/* ── Section ── */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section--dark {
  background: var(--clr-bg-dark);
  color: var(--clr-text-light);
}
.section--dark h2, .section--dark h3 { color: var(--clr-text-light); }
.section--dark p { color: rgba(245, 243, 238, 0.6); }

.section--accent { background: var(--clr-bg-accent); }

.section__header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section__header h2 { margin-top: 0.5rem; }
