:root {
  --espresso: #2c170f;
  --coffee: #6f442c;
  --caramel: #a9714c;
  --cream: #fff4df;
  --paper: rgba(255, 246, 226, 0.72);
  --line: rgba(169, 113, 76, 0.65);
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  color: var(--espresso);
  background: #eadcc2;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
}

.hero {
  position: relative;
  width: min(1180px, 100%);
  min-height: min(920px, calc(100vh - 36px));
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 28px 90px rgba(59, 34, 16, 0.22);
  isolation: isolate;
  background: #eadcc2;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  transform: scale(1.03);
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 246, 226, 0.90) 0%, rgba(255, 246, 226, 0.68) 42%, rgba(255, 246, 226, 0.18) 72%, rgba(255, 246, 226, 0.05) 100%),
    linear-gradient(180deg, rgba(255, 250, 239, 0.24), rgba(93, 58, 25, 0.10));
}

.hero::after {
  content: "";
  position: absolute;
  inset: clamp(16px, 2vw, 28px);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 28px;
  pointer-events: none;
  z-index: -1;
}

.content-card {
  width: min(690px, calc(100% - 36px));
  margin: clamp(24px, 5vw, 54px) auto clamp(24px, 5vw, 54px) clamp(18px, 5vw, 76px);
  padding: clamp(26px, 5vw, 58px) clamp(18px, 4vw, 52px);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 30px;
  background: var(--paper);
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.65), 0 18px 60px rgba(93, 58, 25, 0.16);
  backdrop-filter: blur(3px);
}

.logo {
  width: min(460px, 88%);
  max-height: 132px;
  object-fit: contain;
  margin: 0 auto clamp(24px, 4vw, 46px);
  filter: drop-shadow(0 10px 18px rgba(44, 23, 15, 0.12));
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--caramel);
  font-size: clamp(0.72rem, 1.2vw, 0.9rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.36em;
  margin-bottom: clamp(42px, 8vw, 82px);
}

.eyebrow span,
.divider span {
  display: block;
  width: 50px;
  height: 1px;
  background: var(--line);
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.94;
  font-weight: 600;
  letter-spacing: -0.06em;
}

h1 em {
  color: var(--caramel);
  font-weight: 500;
}

.subtitle {
  margin: 18px 0 34px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-style: italic;
  color: var(--coffee);
}

.intro {
  margin: 0 auto;
  max-width: 690px;
  color: #6b422e;
  font-size: clamp(0.98rem, 1.75vw, 1.22rem);
  line-height: 1.7;
}

.divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: clamp(30px, 5vw, 52px) 0 30px;
}

.divider i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--caramel);
}

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

.info-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--caramel);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.info-grid p,
.info-grid a {
  margin: 0;
  color: var(--espresso);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.18rem, 2.2vw, 1.55rem);
  font-style: italic;
  font-weight: 600;
  text-decoration: none;
}

.video-badge {
  position: absolute;
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(24px, 4vw, 58px);
  color: rgba(255,255,255,0.86);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  font-style: italic;
  text-shadow: 0 3px 22px rgba(0,0,0,0.45);
}

@media (max-width: 900px) {
  .video-overlay {
    background: linear-gradient(180deg, rgba(255, 246, 226, 0.48), rgba(255, 246, 226, 0.76));
  }
  .content-card {
    width: calc(100% - 36px);
    margin: clamp(18px, 5vw, 42px) auto;
  }
  .video-badge { display: none; }
}

@media (max-width: 760px) {
  .page-shell { padding: 0; }
  .hero { min-height: 100vh; border-radius: 0; }
  .content-card { width: calc(100% - 26px); margin: 13px auto; }
  .eyebrow { gap: 12px; letter-spacing: 0.22em; margin-bottom: 64px; }
  .eyebrow span { width: 28px; }
  .info-grid { grid-template-columns: 1fr; gap: 24px; }
  .intro br { display: none; }
}
