:root {
  --linen: #f3ecdf;
  --linen-light: #fbf8f2;
  --cream: #fffdf8;
  --charcoal: #34352f;
  --muted: #6f7169;
  --olive: #606953;
  --olive-deep: #3f4939;
  --gold: #a9844f;
  --gold-soft: #d9bc87;
  --line: rgba(73, 66, 54, .16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --shadow: 0 24px 70px rgba(55, 43, 31, .14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--charcoal); background: var(--linen-light); font-family: var(--sans); line-height: 1.65; opacity: 0; animation: pageIn .55s ease forwards; }
@keyframes pageIn { to { opacity: 1; } }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
.wrap { width: min(1180px, calc(100% - 44px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; padding: 10px 14px; background: var(--charcoal); color: white; transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--line); background: rgba(251,248,242,.91); backdrop-filter: blur(14px); transition: box-shadow .25s ease, background .25s ease; }
.site-header.scrolled { box-shadow: 0 10px 30px rgba(58,43,29,.08); background: rgba(251,248,242,.97); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font: 600 27px/1 var(--serif); }
.brand-image { width: 48px; height: 48px; object-fit: cover; border: 1px solid var(--gold-soft); border-radius: 50%; }
.site-nav { display: flex; gap: 28px; }
.site-nav a { position: relative; text-decoration: none; color: #56584f; font-size: 13px; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--gold); transition: right .25s; }
.site-nav a:hover::after { right: 0; }
.menu-button { display: none; width: 44px; height: 44px; border: 0; background: transparent; }
.menu-button span:not(.sr-only) { display: block; width: 24px; height: 1px; margin: 5px auto; background: var(--charcoal); }

.hero { position: relative; min-height: calc(100vh - 78px); display: flex; align-items: center; overflow: hidden; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(35,36,27,.10), rgba(244,236,223,.02) 38%, rgba(244,236,223,.45) 66%, rgba(244,236,223,.97)); }
.hero-inner { position: relative; z-index: 1; display: flex; justify-content: flex-end; padding-block: 70px; }
.hero-copy { width: min(580px, 52%); padding: 48px; border: 1px solid rgba(169,132,79,.35); background: rgba(251,248,242,.84); box-shadow: 0 30px 90px rgba(57,43,28,.17); backdrop-filter: blur(8px); }
.eyebrow { margin: 0 0 16px; color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
h1,h2,h3,p { margin-top: 0; }
h1,h2,h3 { font-family: var(--serif); font-weight: 600; letter-spacing: -.025em; }
.hero h1 { margin-bottom: 8px; font-size: clamp(62px, 7.6vw, 116px); line-height: .82; }
.hero-signature { margin-bottom: 4px; color: var(--olive-deep); font: italic 500 clamp(28px, 3.2vw, 46px)/1 var(--serif); }
.hero-promise { margin-bottom: 30px; color: var(--muted); font-size: 15px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { position: relative; overflow: hidden; display: inline-flex; justify-content: center; align-items: center; min-height: 48px; padding: 12px 19px; border: 1px solid var(--olive-deep); text-decoration: none; font-size: 13px; transition: transform .2s, box-shadow .2s, background .2s; }
.button-primary { color: white; background: var(--olive-deep); }
.button-secondary { background: rgba(255,255,255,.45); }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(52,53,47,.12); }
.scroll-cue { position: absolute; left: 50%; bottom: 22px; z-index: 2; width: 28px; height: 46px; border: 1px solid rgba(255,255,255,.65); border-radius: 999px; transform: translateX(-50%); }
.scroll-cue span { position: absolute; left: 50%; top: 9px; width: 3px; height: 7px; border-radius: 999px; background: white; transform: translateX(-50%); animation: scroll 1.7s infinite; }
@keyframes scroll { 0% { opacity: 0; transform: translate(-50%,0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,16px); } }

.threshold { padding: 105px 0; text-align: center; background: var(--cream); border-bottom: 1px solid var(--line); }
.threshold .wrap { max-width: 920px; }
.threshold-mark { display: block; margin-bottom: 22px; color: var(--gold); }
.threshold p { margin: 0; color: var(--olive-deep); font: 500 clamp(38px,5.4vw,68px)/1.03 var(--serif); }
.section { padding: 118px 0; }
.section h2, .notice-copy h2 { margin-bottom: 22px; font-size: clamp(48px,6vw,76px); line-height: .96; }
.lead { font-size: 20px; line-height: 1.55; }
.about-grid,.frame-grid,.newsletter-grid,.connect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 86px; align-items: center; }
.about-copy p:not(.eyebrow),.frame-copy p:not(.eyebrow),.newsletter-copy p:not(.eyebrow),.connect-copy p:not(.eyebrow) { color: var(--muted); }
.signature-line { color: var(--olive-deep)!important; font: italic 500 28px/1.2 var(--serif); }
.about-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 46% 46% 12px 12px; box-shadow: var(--shadow); }
.about-image figcaption { margin-top: 12px; color: var(--muted); font: italic 500 18px var(--serif); }

.visual-pause { position: relative; min-height: 70vh; display: grid; place-items: center; overflow: hidden; }
.visual-pause > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.visual-pause::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(28,35,27,.64),rgba(28,35,27,.12),rgba(28,35,27,.36)); }
.visual-pause-copy { position: relative; z-index: 1; width: min(900px,calc(100% - 40px)); text-align: center; }
.visual-pause-copy p { margin: 0; color: white; text-shadow: 0 3px 24px rgba(0,0,0,.35); font: italic 500 clamp(44px,7vw,86px)/.98 var(--serif); }

.frame-section { background: var(--linen); }
.frame-visual { position: relative; }
.frame-visual img { width: 100%; aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow); }
.image-note { position: absolute; right: -18px; bottom: 34px; padding: 12px 18px; background: var(--cream); box-shadow: 0 14px 32px rgba(44,36,28,.13); font: italic 500 18px var(--serif); }
.frame-steps { border-top: 1px solid var(--line); }
.frame-steps div { display: grid; grid-template-columns: 56px 1fr; gap: 10px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.frame-steps span { color: var(--gold); font-size: 11px; letter-spacing: .12em; }
.frame-steps p { margin: 0; color: var(--charcoal)!important; }
.frame-close { margin-top: 24px; font-style: italic; }

.watch-section { background: var(--cream); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 46px; }
.section-heading h2 { margin-bottom: 10px; }
.section-heading p { margin-bottom: 0; color: var(--muted); }
.text-link { flex: 0 0 auto; padding-bottom: 5px; border-bottom: 1px solid var(--gold); text-decoration: none; font-size: 13px; }
.video-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 22px; }
.video-card { position: relative; min-height: 420px; overflow: hidden; color: white; text-decoration: none; box-shadow: 0 18px 44px rgba(48,37,27,.12); transition: transform .28s, box-shadow .28s; }
.video-card-featured { grid-row: span 2; min-height: 862px; }
.video-card:nth-child(4) { grid-column: 2 / 4; }
.video-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.video-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 35%,rgba(22,26,21,.84)); }
.video-card:hover { transform: translateY(-5px); box-shadow: 0 28px 65px rgba(48,37,27,.20); }
.video-card:hover img { transform: scale(1.035); }
.play { position: absolute; z-index: 2; left: 24px; top: 24px; display: grid; place-items: center; width: 56px; height: 56px; padding-left: 3px; border: 1px solid rgba(255,255,255,.75); border-radius: 50%; background: rgba(37,45,35,.38); backdrop-filter: blur(8px); }
.video-caption { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; }
.video-caption small { color: #e4c995; letter-spacing: .16em; text-transform: uppercase; }
.video-caption h3 { margin: 6px 0 3px; font-size: clamp(27px,3vw,42px); line-height: 1; }
.video-caption p { margin: 0; font-size: 12px; opacity: .82; }

.seasons { background: var(--linen-light); }
.season-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.season-card { position: relative; min-height: 510px; padding: 0; overflow: hidden; border: 0; color: white; text-align: left; cursor: zoom-in; background: #ddd; }
.season-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.season-card::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 50%,rgba(27,32,26,.82)); }
.season-card:hover img { transform: scale(1.035); }
.season-card span { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 20px; font: 500 24px/1.1 var(--serif); }
.season-card small { display: block; margin-bottom: 7px; color: #e5cd9e; font: 600 10px/1 var(--sans); letter-spacing: .15em; text-transform: uppercase; }

.notice-section { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 680px; background: var(--olive-deep); color: white; }
.notice-image img { width: 100%; height: 100%; object-fit: cover; }
.notice-copy { align-self: center; padding: 70px clamp(38px,7vw,110px); }
.notice-copy .eyebrow { color: var(--gold-soft); }
.notice-copy p:last-child { color: #d8dfd3; font: italic 500 28px var(--serif); }

.newsletter { color: white; background: #303a2d; }
.newsletter-copy p:not(.eyebrow) { color: #d7ded2; }
.newsletter-card { padding: 50px; border: 1px solid rgba(217,188,135,.48); background: rgba(255,255,255,.05); backdrop-filter: blur(8px); }
.newsletter-kicker { color: #d9bc87; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.newsletter-card h3 { margin-bottom: 8px; font-size: 48px; line-height: 1; }
.coming-badge { display: inline-block; margin-top: 14px; padding: 8px 13px; border: 1px solid rgba(217,188,135,.48); border-radius: 999px; color: #ecd6ac; font-size: 12px; }
.connect { background: linear-gradient(180deg,var(--linen-light),#eadfce); }
.connect-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 18px 18px 50% 50% / 18px 18px 25% 25%; box-shadow: var(--shadow); }
.connect-profile { width: 86px; height: 86px; margin-bottom: 24px; object-fit: cover; border: 2px solid var(--gold-soft); border-radius: 50%; }
.social-links { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 26px; }
.social-links a { padding: 11px 17px; border: 1px solid var(--gold-soft); border-radius: 999px; text-decoration: none; font-size: 13px; background: rgba(255,253,248,.55); transition: transform .2s, background .2s; }
.social-links a:hover { transform: translateY(-2px); background: var(--cream); }
.site-footer { padding: 34px 0; border-top: 1px solid var(--line); background: #dfcfb8; }
.footer-wrap { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.footer-brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.footer-brand span { display: grid; }
.footer-brand strong { font: 600 23px/1 var(--serif); }
.footer-brand small,.footer-wrap>p { color: var(--muted); font-size: 12px; }

.lightbox { width: min(940px,92vw); padding: 0; border: 0; background: transparent; overflow: visible; }
.lightbox::backdrop { background: rgba(23,25,21,.88); backdrop-filter: blur(4px); }
.lightbox img { max-height: 86vh; margin: auto; box-shadow: 0 30px 90px rgba(0,0,0,.45); }
.lightbox-close { position: absolute; right: -4px; top: -50px; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; color: white; background: transparent; cursor: pointer; font-size: 28px; line-height: 1; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .72s ease, transform .72s ease; }
.reveal.visible { opacity: 1; transform: none; }
:focus-visible { outline: 3px solid rgba(169,132,79,.48); outline-offset: 4px; }

@media (max-width: 980px) {
  .hero-copy { width: min(650px,70%); }
  .about-grid,.frame-grid,.newsletter-grid,.connect-grid { gap: 54px; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .video-card-featured { grid-row: auto; min-height: 600px; grid-column: 1 / 3; }
  .video-card:nth-child(4) { grid-column: auto; }
  .season-grid { grid-template-columns: repeat(2,1fr); }
  .notice-section { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .site-nav { display: none; position: absolute; top: 78px; left: 0; right: 0; flex-direction: column; gap: 0; padding: 12px 22px 20px; border-bottom: 1px solid var(--line); background: rgba(251,248,242,.99); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 0; }
  .menu-button { display: block; }
  .about-grid,.frame-grid,.newsletter-grid,.connect-grid { grid-template-columns: 1fr; }
  .notice-section { grid-template-columns: 1fr; }
  .notice-image { min-height: 520px; }
}
@media (max-width: 620px) {
  .wrap { width: min(100% - 28px,1180px); }
  .nav-wrap { min-height: 68px; }
  .site-nav { top: 68px; }
  .brand { font-size: 22px; }
  .brand-image { width: 40px; height: 40px; }
  .hero { min-height: calc(100vh - 68px); align-items: end; }
  .hero-image { object-position: 35% center; }
  .hero-wash { background: linear-gradient(180deg,rgba(244,236,223,.03) 0%,rgba(244,236,223,.16) 34%,rgba(244,236,223,.95) 70%,rgba(244,236,223,.99)); }
  .hero-inner { justify-content: center; padding-block: 290px 54px; }
  .hero-copy { width: 100%; padding: 27px 21px; }
  .hero h1 { font-size: clamp(58px,19vw,84px); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .scroll-cue { display: none; }
  .threshold { padding: 78px 0; }
  .section { padding: 80px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 34px; }
  .section h2,.notice-copy h2 { font-size: clamp(44px,14vw,61px); }
  .visual-pause { min-height: 58vh; }
  .image-note { right: -4px; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card,.video-card-featured,.video-card:nth-child(4) { grid-column: auto; min-height: 520px; }
  .season-grid { grid-template-columns: 1fr; }
  .season-card { min-height: 540px; }
  .notice-image { min-height: 470px; }
  .notice-copy { padding: 68px 24px; }
  .newsletter-card { padding: 35px 27px; }
  .footer-wrap { align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .01ms!important; animation-iteration-count: 1!important; transition-duration: .01ms!important; }
  .reveal { opacity: 1; transform: none; }
}
