:root {
  --bg: #f6f2ea;
  --ink: #1a1713;
  --muted: #5a5146;
  --card: #ffffff;
  --line: rgba(26, 23, 19, 0.12);
  --accent: #c76d3d;
  --accent-soft: rgba(199, 109, 61, 0.12);
}

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

body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  background: radial-gradient(circle at 20% 0%, #f7ebdb 0%, #f6f2ea 40%, #f1ece3 100%);
  color: var(--ink);
  line-height: 1.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background: rgba(248, 243, 235, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.logo {
  text-decoration: none;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}

.hero,
.section,
.footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 6vw;
}

.hero {
  position: relative;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 10px;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 22ch;
}

.lead {
  margin-top: 14px;
  max-width: 62ch;
  color: var(--muted);
}

.hero-points {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-points span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 0.9rem;
}

.cta-row {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.btn.primary {
  background: var(--ink);
  color: #fff;
}

.btn.ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading p {
  color: var(--muted);
  margin-top: 8px;
}

.video-grid,
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.video-card,
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
}

.video-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.video-embed {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-embed iframe,
.video-embed video {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  display: block;
}

.card p {
  color: var(--muted);
  margin-top: 8px;
}

.split {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.chips {
  display: grid;
  gap: 10px;
}

.chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
  background: var(--accent-soft);
}

.callout {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
}

.callout a {
  color: var(--ink);
}

.email-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 700;
}

.contact-note {
  margin-top: 10px;
  color: var(--muted);
}

.footer {
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 760px) {
  .site-header {
    flex-direction: column;
    gap: 10px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}
