/* base.css */
:root {
  /* Colors */
  --teal: #4A868C;
  --sage: #8AA89A;
  --cream: #F9F5F0;
  --charcoal: #333333;
  --light-gray: #f0f0f0;
  --white: #ffffff;

  /* Typography */
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Lato', sans-serif;
  --font-size-h1: clamp(2rem, 5vw, 2.8rem);
  --font-size-h2: clamp(1.75rem, 4vw, 2.2rem);
  --font-size-body: 1.0625rem;
  --line-height-body: 1.65;
  --line-height-heading: 1.2;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3.5rem;
  --space-xl: 5rem;

  /* Radius & Shadows */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 30px;
  --shadow-light: 0 4px 12px rgba(0,0,0,0.04);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.1);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--charcoal);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: var(--line-height-heading);
  margin-bottom: var(--space-sm);
}

p, ul, ol {
  margin-bottom: var(--space-sm);
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.85;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(90%, 1200px);
  margin-inline: auto;
}

/* Focus accessibility */
:focus {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}