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

:root {
  --cream: #f5f0e8;
  --cream-dark: #ede6d6;
  --green: #4a5c3f;
  --green-light: #6b7f5e;
  --green-dark: #2e3a27;
  --brown: #8b7355;
  --text: #2c2c2c;
  --text-light: #6b6459;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: var(--cream);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--green-dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }

p {
  line-height: 1.75;
  color: var(--text);
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 1440px) {
  .container { max-width: 1280px; }
}

@media (min-width: 1600px) {
  .container { max-width: 1400px; }
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background-color: var(--cream-dark);
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--green-light);
  margin: 1.5rem 0;
}

.label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-light);
}

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 1px solid var(--green);
  color: var(--green-dark);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: var(--green);
  color: var(--cream);
}

.btn--filled {
  background: var(--green);
  color: var(--cream);
}

.btn--filled:hover {
  background: var(--green-dark);
}

.last-visited {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
}
