* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: #1f1f1f;
  background: linear-gradient(to bottom, #f7f1e4 0%, #ffffff 40%, #f5efe3 100%);
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1100px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e6e0d7;
}
.header-inner, .footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 16px 0;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 12px;
  color: #766d62;
}
.eyebrow.warm { color: #9c6218; font-weight: 700; }
.eyebrow.warm-sub { color: #9c6218; margin-top: 8px; opacity: .9; }
.eyebrow.note { color: #ffd287; }
.site-title { font-size: 20px; font-weight: 700; margin-top: 4px; }

.hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0 72px;
}
.hero h1 { font-size: clamp(40px, 6vw, 68px); line-height: 1.06; margin: 12px 0 0; }
.lead { font-size: 22px; line-height: 1.7; color: #4d4a46; margin-top: 24px; }
.hero-cover img { border-radius: 28px; box-shadow: 0 30px 60px rgba(0,0,0,.25); }

.rating-row, .button-row {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 28px;
}
.rating-pill, .meta-pill { border-radius: 999px; padding: 11px 16px; font-size: 16px; }
.rating-pill { background: #fdecc8; color: #8a560f; font-weight: 700; }
.rating-pill span { color: #65615a; font-weight: 400; }
.meta-pill { background: #ffffff; border: 1px solid #e2d9cc; color: #4b4742; }

.button {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 15px 24px; font-size: 17px; font-weight: 700;
  transition: .2s ease;
}
.button.small { padding: 11px 18px; font-size: 15px; }
.button.primary {
  background: linear-gradient(135deg, #f5c542, #d4a017);
  color: #000;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.button.primary:hover {
  transform: scale(1.05);
}
}
.button.primary:hover { background: #333333; }
.button.secondary { background: #ffffff; border: 1px solid #d8d1c7; color: #2f2f2f; }
.button.secondary:hover { background: #faf8f5; }

.note-box {
  background: #3a160e; color: #ffffff; border-radius: 30px;
  padding: 36px 32px; box-shadow: 0 20px 40px rgba(41, 18, 12, .22);
}
.note-box p { font-size: 30px; line-height: 1.45; margin: 14px 0 0; }
.note-box .note-small { font-size: 20px; color: #f5e7d5; }

.section { padding: 64px 0; }
.section h2 { font-size: 42px; margin: 0 0 18px; }
.section p { font-size: 22px; line-height: 1.8; color: #4d4a46; margin: 0 0 14px; }

.media-section { padding: 16px 0 28px; }
.media-section img {
  border-radius: 30px; box-shadow: 0 16px 34px rgba(0,0,0,.12);
}
.caption {
  text-align: center; font-style: italic; font-size: 24px; color: #5d554b; margin: 16px 0 0;
}

.video-shell {
  border-radius: 30px; overflow: hidden; box-shadow: 0 18px 40px rgba(0,0,0,.14); background: #000;
}
.video-shell video { width: 100%; }

.cta-box {
  border: 1px solid #e3ddd3; background: #fff; border-radius: 30px;
  padding: 32px; box-shadow: 0 10px 24px rgba(0,0,0,.05);
}
.cta-box h2 { margin-top: 0; }

.site-footer {
  border-top: 1px solid #e6e0d7; background: rgba(255,255,255,.85); margin-top: 32px;
}
.site-footer .footer-inner { color: #665f57; font-size: 14px; }

.placeholder {
  min-height: 320px;
  background: linear-gradient(135deg, #f4eee4, #efe4d4);
  border: 2px dashed #c7b79f;
  border-radius: 30px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: #7a6d5b; font-size: 22px; padding: 20px;
}

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; gap: 28px; padding-top: 36px; }
  .hero h1 { font-size: 44px; }
  .lead, .section p { font-size: 19px; }
  .note-box p { font-size: 26px; }
  .note-box .note-small { font-size: 18px; }
  .section h2 { font-size: 32px; }
  .caption { font-size: 20px; }
  .header-inner, .footer-inner { flex-direction: column; align-items: flex-start; }
}
section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

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