@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy-950: #fffaf1;
  --navy-900: #fff3d8;
  --navy-800: #f2dfad;
  --teal-600: #1d9e75;
  --teal-700: #0f6e56;
  --teal-100: #e1f5ee;
  --teal-soft: #e6f4ef;
  --teal-xsoft: #f2faf7;
  --mist: #ffffff;
  --stone: #5f5748;
  --muted: #7d725d;
  --gold: #d6aa58;
  --coral: #e07a5f;
  --ink: #201b13;
  --line: rgba(82,62,25,0.16);
  --teal-line: rgba(29,158,117,0.18);
  --shadow: 0 24px 70px rgba(82,62,25,0.18);
  --teal-shadow: 0 24px 70px rgba(29,158,117,0.12);
  --paper: #ffffff;
  --cream: #fffaf1;
  --gold-soft: #fff3d8;
  --heading: #17130d;
  --radius: 6px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
}

body.menu-open { overflow: hidden; }

a { color: inherit; }

.eyebrow {
  margin: 0 0 14px;
  color: #a77925;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 0;
  line-height: 1.12;
}

h1 {
  max-width: 850px;
  font-size: clamp(1.6rem, 3.6vw, 2.9rem);
  color: var(--heading);
}

h1 em,
h2 em {
  color: #a77925;
  font-style: italic;
}

.hero-copy p,
.page-hero p,
.section-head p {
  color: var(--stone);
  font-size: 15px;
  max-width: 680px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
