:root {
  --bg: #f4eee3;
  --text: rgba(49, 26, 4, 0.92);
  --accent: #b89a5a;
  --accent-dark: #7d6535;
  --accent-text: #8b7035; /* darker gold for WCAG AA compliance on small text */
  --font-serif: "FjordOne-Regular", "Georgia", "Times New Roman", serif;
}

@font-face {
  font-family: "TheSeasons";
  src: url("../fonts/Fontspring-DEMO-theseasons-reg.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html, body { max-width: 100%; overflow-x: hidden; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-serif);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg);
  font-size: 1rem;
  text-wrap: pretty;
}

a { color: inherit; text-decoration: none; }

p { color: var(--text); }

/* All section titles */
h2 {
  font-family: "Cormorant SC", "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(3rem, 4vw, 4.2rem);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  color: rgba(49, 26, 4, 0.92);
  line-height: 1.1;
  text-align: center;
  text-wrap: balance;
}


ul { list-style: none; margin-top: 0.5rem; font-size: 0.95rem; }
ul li { margin-bottom: 0.35rem; padding-left: 0.8rem; position: relative; }
ul li::before { content: "—"; position: absolute; left: 0; color: var(--accent); font-size: 0.8em; }

.accent { color: var(--accent-dark); font-weight: 600; }

