:root {
  --bg: #fbf7f2;
  --surface: #ffffff;
  --text: #2f2a25;
  --muted: #6f665d;
  --accent: #8b5e3c;
  --accent-soft: #ead8c7;
  --border: #eadfd4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: inherit;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

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

.nav a:hover,
.nav a.active {
  color: var(--accent);
}

.hero-image {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 320px;
  max-height: 620px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.45)
  );

  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px;
  width: 100%;
}

.hero-content h1 {
  color: white;
  max-width: 700px;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0;
}

.hero-content .kicker {
  color: rgba(255,255,255,0.9);
}

.hero-card {
  background: linear-gradient(135deg, #ffffff 0%, #f4e6d8 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 18px 50px rgba(62, 44, 31, 0.08);
}

.kicker {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.2;
}

h3 {
  margin-top: 32px;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--muted);
  max-width: 760px;
}

main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 72px;
}

.section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 34px;
  margin: 22px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card {
  background: #fffaf5;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
}

.info-card strong {
  display: block;
  color: var(--accent);
  margin-bottom: 6px;
}

ul {
  padding-left: 1.2rem;
}

li {
  margin: 6px 0;
}

.week-list {
  display: grid;
  gap: 12px;
}

.week-link {
  display: block;
  background: #fffaf5;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
  text-decoration: none;
}

.week-link:hover {
  border-color: var(--accent);
}

.quote {
  border-left: 5px solid var(--accent);
  background: #fffaf5;
  padding: 18px 22px;
  border-radius: 14px;
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 650;
}

.placeholder {
  border: 1px dashed #c9aa8e;
  background: #fffaf5;
  padding: 20px;
  border-radius: 18px;
  color: var(--muted);
}

.site-footer {
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 24px 48px;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 760px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    gap: 10px 14px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-card,
  .section {
    padding: 26px;
    border-radius: 22px;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
