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

:root {
  --terracotta: #C1603A;
  --terracotta-light: #E8A98A;
  --terracotta-pale: #F5EAE3;
  --sand: #E8DCC8;
  --sand-dark: #C9B99A;
  --sand-pale: #FAF6EF;
  --green: #4A6741;
  --green-light: #7A9B71;
  --green-pale: #EBF0E8;
  --charcoal: #2C2820;
  --charcoal-mid: #5C5248;
  --charcoal-light: #8C8278;
  --cream: #FBF7F1;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 4rem;
  background: rgba(251,247,241,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(193,96,58,0.12);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--terracotta);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-logo span { color: var(--charcoal-mid); font-weight: 300; }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }

.nav-links a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--terracotta); }
.nav-links a.active { color: var(--terracotta); }

.nav-cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
}

.nav-cta:hover { background: var(--charcoal) !important; color: var(--white) !important; }

/* BUTTONS */
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: var(--charcoal); }

.btn-ghost {
  color: var(--charcoal-mid);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--terracotta); }
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover::after { transform: translateX(4px); }

/* SECTION SHARED */
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
}

.section-title em { font-style: italic; color: var(--terracotta); }

/* FOOTER */
footer {
  background: #1E1B16;
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--sand-dark);
  text-decoration: none;
}

.footer-copy { font-size: 0.75rem; color: var(--charcoal-light); font-weight: 300; }

.footer-links { display: flex; gap: 1.5rem; list-style: none; }

.footer-links a {
  font-size: 0.75rem;
  color: var(--charcoal-light);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--sand); }
