/* ========================================
   BASE — Reset, Variables, Typography, Body
   ======================================== */

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

:root {
  /* Colour palette */
  --sage: #8B9E6B;
  --sage-dark: #6B7D50;
  --sage-light: #A8B88E;
  --lilac: #B4A7D6;
  --lilac-light: #D4CBE8;
  --lilac-dark: #9589B8;
  --cream: #F5F0E8;
  --cream-dark: #EDE6D8;
  --warm-white: #FDFBF7;

  /* Text */
  --text-primary: #2C2C2C;
  --text-secondary: #5A5A5A;
  --text-light: #7A7A7A;

  /* Borders & Shadows */
  --border-light: rgba(139, 158, 107, 0.15);
  --shadow-sm: 0 2px 8px rgba(44, 44, 44, 0.06);
  --shadow-md: 0 4px 20px rgba(44, 44, 44, 0.08);
  --shadow-lg: 0 8px 40px rgba(44, 44, 44, 0.10);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  /* Misc */
  --transition: 0.3s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.7;
  background-color: var(--cream);
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 50px,
      rgba(139, 158, 107, 0.015) 50px,
      rgba(139, 158, 107, 0.015) 51px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 50px,
      rgba(139, 158, 107, 0.015) 50px,
      rgba(139, 158, 107, 0.015) 51px
    );
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--lilac-dark); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.3; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }

/* Section labels / titles — shared across all pages */
.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  text-align: center;
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 48px;
}
