* {
  box-sizing: border-box;
}

:root {
  --background: #f7f1eb;
  --surface: #fffdf9;
  --text: #2f2925;
  --muted: #6e625b;
  --accent: #9a5f50;
  --accent-dark: #74463b;
  --border: #e5d8ce;
  --shadow: 0 18px 45px rgba(73, 50, 41, 0.12);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--background);
}

a {
  color: inherit;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(247, 241, 235, 0.76), rgba(247, 241, 235, 0.94)),
    radial-gradient(circle at top left, #d9b8aa, transparent 42%),
    radial-gradient(circle at bottom right, #c9d4c2, transparent 42%);
}

.hero-card {
  width: min(720px, 100%);
  padding: 64px 40px;
  text-align: center;
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1;
}

.intro,
.page-heading p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.intro {
  max-width: 560px;
  margin: 24px auto 32px;
}

.button {
  display: inline-block;
  padding: 14px 24px;
  color: white;
  background: var(--accent);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.link-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  max-width: 360px;
  margin: 32px auto 0;
  padding: 0;
  list-style: none;
}

.link-list li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.link-list .button {
  text-align: center;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px clamp(20px, 5vw, 72px);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-link {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: none;
}

.page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 80px;
}

.page-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.page-heading h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.video-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(73, 50, 41, 0.08);
}

.video-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card h2 {
  margin: 0;
  padding: 18px 20px 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-card {
    max-width: 760px;
  }
}

@media (max-width: 600px) {
  .hero-card {
    padding: 48px 24px;
  }

  .site-header {
    padding: 16px 20px;
  }

  .page {
    padding-top: 44px;
  }
}
