:root {
  --bg: #050b14;
  --bg-deep: #02070d;
  --panel: #071321;
  --panel-2: #091827;
  --text: #f5f7fb;
  --muted: #bdc4ce;
  --subtle: #7f8a98;
  --line: rgba(173, 191, 213, .25);
  --orange: #ff7a00;
  --orange-bright: #ffad00;
  --green: #79c315;
  --blue: #0eb5ff;
  --purple: #c45aff;
  --max: 1440px;
  --radius: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: radial-gradient(circle at 70% -20%, #0f2338 0, transparent 38%), linear-gradient(180deg, #050b14 0%, #020811 100%);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.container { width: min(var(--max), calc(100% - 64px)); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 8, 16, .96);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.header-row { min-height: 72px; display: flex; align-items: center; gap: 26px; }
.brand { display: flex; flex-direction: column; justify-content: center; flex: 0 0 auto; }
.brand-mark {
  position: relative;
  display: inline-block;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.85rem;
  line-height: .95;
  font-style: italic;
  letter-spacing: -.035em;
  color: #f3f5f7;
}
.brand-mark > span { color: var(--orange); }
.brand-mark i,
.brand-mark::after,
.brand-mark::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 8px;
  margin-left: 4px;
  background: var(--orange);
  transform: skewX(32deg);
  vertical-align: .28em;
}
.brand-mark::before { width: 11px; margin-left: 8px; }
.brand-mark::after { width: 14px; margin-left: 3px; }
.brand-mark i { width: 16px; margin-left: 3px; }
.brand-sub { margin-top: 4px; color: #c4cad2; font-size: .67rem; letter-spacing: .055em; text-transform: uppercase; }
.nav { display: flex; gap: 6px; margin-left: auto; align-items: stretch; height: 72px; }
.nav a {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 12px;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  color: #f3f3f3;
}
.nav a:hover { color: var(--orange-bright); }
.nav a[aria-current="page"] { color: var(--orange-bright); }
.nav a[aria-current="page"]::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 10px; height: 2px; background: var(--orange); }
.language-button { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #f1f4f8; border: 1px solid #3a4654; border-radius: 20px; padding: 8px 13px; cursor: default; font-size: .82rem; }
.menu-toggle { display: none; width: 44px; height: 44px; margin-left: auto; border: 1px solid #394655; border-radius: 8px; background: #071321; padding: 10px; }
.menu-toggle span { display: block; height: 2px; background: white; margin: 5px 0; }

/* Home hero */
.home-hero { position: relative; overflow: hidden; min-height: 440px; border-bottom: 1px solid rgba(255,255,255,.08); }
.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero-carter-jago.jpg');
  background-size: cover;
  background-position: 72% center;
  filter: saturate(.88) contrast(1.04) brightness(.86);
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(3,9,16,.98) 0%, rgba(3,9,16,.92) 29%, rgba(3,9,16,.50) 48%, rgba(3,9,16,.05) 72%, rgba(3,9,16,.22) 100%);
}
.hero-layout { position: relative; z-index: 2; min-height: 440px; display: flex; align-items: center; }
.hero-message { width: min(480px, 46%); padding: 38px 0 34px; }
.hero-message h1 {
  margin: 0 0 5px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.4rem, 5.4vw, 5.9rem);
  letter-spacing: .005em;
  line-height: .94;
  color: white;
  text-shadow: 0 4px 18px rgba(0,0,0,.3);
}
.hero-tagline {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-style: italic;
  font-size: clamp(2rem, 3.15vw, 3.3rem);
  line-height: 1.06;
  text-transform: uppercase;
  color: var(--orange);
}
.hero-rule { width: 64px; height: 4px; background: var(--orange); margin: 20px 0; }
.hero-description { margin: 0 0 22px; color: #f3f5f7; font-size: 1.12rem; line-height: 1.45; }
.cta { display: inline-flex; align-items: center; gap: 12px; min-height: 48px; padding: 0 22px; border-radius: 6px; text-transform: uppercase; font-weight: 900; letter-spacing: .01em; transition: transform .15s ease, filter .15s ease; }
.cta:hover { transform: translateY(-1px); filter: brightness(1.06); }
.cta-primary { color: #0e0b03; background: linear-gradient(180deg, #ffb000, #ff8b00); box-shadow: 0 10px 28px rgba(255,137,0,.18); }
.cta-primary > :last-child { margin-left: auto; }
.cta-icon { font-size: 1.25rem; }

/* Feature cards */
.home-tools { padding: 12px 0 0; background: #030a12; }
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.feature-card {
  --accent: var(--orange);
  min-height: 178px;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  padding: 20px 18px;
  border: 1px solid #344253;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(8,23,37,.98), rgba(3,12,21,.98));
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.feature-card:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--accent) 65%, #344253); background: linear-gradient(135deg, rgba(11,29,46,.99), rgba(3,12,21,.99)); }
.feature-orange { --accent: var(--orange); }
.feature-green { --accent: var(--green); }
.feature-blue { --accent: var(--blue); }
.feature-purple { --accent: var(--purple); }
.feature-icon { color: var(--accent); font-size: 3.2rem; line-height: 1; display: grid; place-items: start center; padding-top: 5px; text-shadow: 0 0 22px color-mix(in srgb, var(--accent) 35%, transparent); }
.feature-copy { display: flex; flex-direction: column; min-width: 0; }
.feature-card h2 { margin: 0 0 7px; font-size: 1.15rem; line-height: 1.08; text-transform: uppercase; letter-spacing: .005em; }
.feature-card p { margin: 0 0 10px; color: #d3d8df; font-size: .86rem; line-height: 1.45; }
.feature-link { margin-top: auto; color: var(--accent); font-size: .82rem; font-weight: 900; text-transform: uppercase; }

/* Secondary panels */
.home-secondary { padding: 14px 0 0; background: #030a12; }
.secondary-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 14px; }
.panel { min-height: 155px; border: 1px solid #344253; border-radius: var(--radius); background: linear-gradient(135deg, #071521, #03101a); overflow: hidden; }
.biff-quote { display: grid; grid-template-columns: 170px 44px 1fr; align-items: center; }
.biff-quote img { width: 170px; height: 155px; object-fit: cover; object-position: 50% 20%; filter: contrast(1.04) saturate(.82); }
.quote-mark { color: var(--orange-bright); align-self: start; padding-top: 20px; font-family: Georgia, serif; font-size: 4.8rem; line-height: .8; }
.biff-quote blockquote { margin: 0; padding: 18px 22px 18px 0; }
.biff-quote p { margin: 0 0 10px; font-family: Georgia, "Times New Roman", serif; font-style: italic; font-size: 1.16rem; line-height: 1.45; }
.biff-quote cite { color: var(--orange); font-weight: 800; text-transform: uppercase; font-style: normal; font-size: .85rem; letter-spacing: .08em; }
.mission { display: grid; grid-template-columns: 78px 1fr; gap: 14px; align-items: center; padding: 20px; }
.mission-icon { width: 68px; height: 68px; display: grid; place-items: center; border-radius: 50%; border: 2px solid var(--orange); color: var(--orange); font-family: Georgia, serif; font-style: italic; font-weight: 900; font-size: 2rem; }
.mission h2, .data-panel h2 { margin: 0 0 8px; text-transform: uppercase; font-size: 1.05rem; }
.mission p, .data-panel p { margin: 0; color: #d2d7de; font-size: .82rem; line-height: 1.45; }
.mission-points { display: flex; flex-wrap: wrap; gap: 10px 16px; margin-top: 12px; font-size: .74rem; }
.mission-points span { color: #f1f2f4; }
.mission-points span::first-letter { color: var(--orange); }
.mission em { display: block; margin-top: 9px; color: var(--orange-bright); font-family: Georgia, serif; }
.data-panel { display: grid; grid-template-columns: 65px 1fr; gap: 12px; align-items: center; padding: 18px; border-color: #385035; }
.data-panel:hover { border-color: var(--green); }
.data-icon { width: 58px; height: 58px; display: grid; place-items: center; border: 2px solid var(--green); border-radius: 50%; color: var(--green); font-size: 2rem; }
.data-panel h2 { color: var(--green); }
.data-panel span { display: inline-block; margin-top: 12px; color: var(--green); text-transform: uppercase; font-size: .8rem; font-weight: 900; }

/* Interior pages */
.page-hero { padding: 76px 0 42px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 75% 0%, rgba(14,181,255,.10), transparent 34%); }
.breadcrumb { color: var(--muted); font-size: .85rem; margin-bottom: 15px; }
.page-title { margin: 0; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(2.8rem, 5vw, 4.8rem); letter-spacing: .01em; text-transform: uppercase; }
.page-intro { color: var(--muted); font-size: 1.02rem; line-height: 1.65; max-width: 760px; }
.section { padding: 58px 0; }
.section-compact { padding: 42px 0; }
.card { border: 1px solid #344253; border-radius: var(--radius); background: linear-gradient(135deg, #071521, #03101a); }
.content-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; }
.content-card { padding: 28px; }
.content-card h2, .content-card h3 { margin-top: 0; }
.content-card p, .content-card li { color: var(--muted); line-height: 1.7; }
.eyebrow { color: var(--orange-bright); font-size: .77rem; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 8px; }
.notice { padding: 16px 18px; border-radius: 8px; border: 1px solid rgba(255,122,0,.28); background: rgba(255,122,0,.07); color: #f4d8b9; line-height: 1.55; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 18px; border-radius: 6px; font-weight: 900; }
.button-primary { background: linear-gradient(180deg, #ffb000, #ff8b00); color: #100a00; }
.button-secondary { border: 1px solid #3f586d; background: #071625; }
.button-disabled { pointer-events: none; opacity: .5; }
.resource-list { display: grid; gap: 12px; }
.resource-item { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 22px; padding: 20px; border: 1px solid #344253; border-radius: 9px; background: #071521; }
.resource-item h3 { margin: 0 0 6px; }
.resource-item p { margin: 0; color: var(--muted); line-height: 1.55; }

/* Footer */
.site-footer { background: #02070d; border-top: 1px solid rgba(255,255,255,.07); }
.home-footer { padding: 22px 0 16px; margin-top: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.05fr .8fr .8fr .8fr; gap: 34px; }
.footer-brand-block { padding-right: 24px; border-right: 1px solid rgba(255,255,255,.10); }
.footer-brand .brand-mark { font-size: 1.7rem; }
.footer-sub { display: block; }
.social-row { display: flex; gap: 14px; margin-top: 20px; color: #8995a4; font-size: 1.25rem; }
.footer-column { display: flex; flex-direction: column; gap: 6px; color: #aab3bf; font-size: .78rem; }
.footer-column h3 { margin: 0 0 7px; color: #f0f3f7; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.footer-column a:hover { color: var(--orange-bright); }
.legal-line { display: flex; justify-content: space-between; gap: 20px; margin-top: 18px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.07); color: #788492; font-size: .69rem; }
.site-footer:not(.home-footer) { padding: 26px 0 34px; }
.footer-row { display: flex; justify-content: space-between; gap: 24px; color: #8f9baa; font-size: .82rem; }
.footer-links { display: flex; gap: 16px; }

/* Responsive */
@media (max-width: 1180px) {
  .container { width: min(var(--max), calc(100% - 40px)); }
  .nav a { padding: 0 7px; font-size: .75rem; }
  .brand-sub { display: none; }
  .feature-card { grid-template-columns: 70px 1fr; }
  .secondary-grid { grid-template-columns: 1.2fr 1fr; }
  .data-panel { grid-column: 1 / -1; }
}

@media (max-width: 920px) {
  .header-row { min-height: 64px; }
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 20px;
    right: 20px;
    height: auto;
    margin: 0;
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    background: #05101c;
    border: 1px solid #364657;
    border-radius: 10px;
    box-shadow: 0 24px 55px rgba(0,0,0,.45);
  }
  .nav.is-open { display: flex; }
  .nav a { min-height: 44px; padding: 0 14px; }
  .nav a[aria-current="page"]::after { left: 14px; right: auto; width: 34px; bottom: 4px; }
  .language-button { margin-left: 0; }
  .home-hero { min-height: 560px; }
  .hero-backdrop { background-position: 63% center; }
  .home-hero::before { background: linear-gradient(180deg, rgba(3,9,16,.20) 0%, rgba(3,9,16,.52) 47%, rgba(3,9,16,.96) 78%, rgba(3,9,16,1) 100%); }
  .hero-layout { min-height: 560px; align-items: end; }
  .hero-message { width: 100%; max-width: 580px; padding: 230px 0 36px; }
  .hero-message h1 { font-size: clamp(3.3rem, 11vw, 5.5rem); }
  .hero-tagline { font-size: clamp(1.9rem, 7vw, 3rem); }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .secondary-grid { grid-template-columns: 1fr; }
  .data-panel { grid-column: auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand-block { border-right: 0; }
  .content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 24px, var(--max)); }
  .site-header { position: sticky; }
  .brand-mark { font-size: 1.5rem; }
  .language-button { padding: 8px 10px; }
  .language-button span { display: none; }
  .home-hero { min-height: 610px; }
  .hero-backdrop { background-position: 66% 12%; background-size: auto 66%; background-repeat: no-repeat; background-color: #030a12; }
  .home-hero::before { background: linear-gradient(180deg, rgba(3,9,16,.08) 0%, rgba(3,9,16,.20) 36%, rgba(3,9,16,.92) 66%, #030a12 82%); }
  .hero-layout { min-height: 610px; }
  .hero-message { padding: 300px 0 28px; text-align: left; }
  .hero-message h1 { font-size: clamp(3rem, 18vw, 4.7rem); }
  .hero-description br { display: none; }
  .cta { width: 100%; justify-content: center; }
  .feature-grid { grid-template-columns: 1fr; gap: 10px; }
  .feature-card { min-height: 148px; grid-template-columns: 72px 1fr; padding: 18px 16px; }
  .feature-card h2 br { display: none; }
  .biff-quote { grid-template-columns: 105px 30px 1fr; }
  .biff-quote img { width: 105px; height: 145px; }
  .quote-mark { font-size: 3.6rem; }
  .biff-quote blockquote { padding-right: 14px; }
  .biff-quote p { font-size: .95rem; }
  .mission { grid-template-columns: 54px 1fr; padding: 16px; }
  .mission-icon { width: 50px; height: 50px; font-size: 1.45rem; }
  .mission-points { flex-direction: column; gap: 4px; }
  .data-panel { grid-template-columns: 50px 1fr; }
  .data-icon { width: 46px; height: 46px; font-size: 1.55rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 18px; }
  .footer-brand-block { grid-column: 1 / -1; }
  .legal-line { flex-direction: column; }
  .resource-item { grid-template-columns: 1fr; }
  .resource-item .button { width: 100%; }
}


/* Rebuilt desktop-first homepage hero */
.redesigned-hero {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 34%, rgba(35,92,145,.22), transparent 30%),
    linear-gradient(90deg, #030912 0%, #06101a 42%, #07131e 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.redesigned-hero .hero-layout { position: relative; z-index: 3; min-height: 540px; display: flex; align-items: center; }
.hero-message { width: 39%; max-width: 520px; padding: 48px 0 54px; }
.hero-message h1 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(4rem, 6.1vw, 6.5rem);
  line-height: .88;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.hero-tagline {
  margin: 20px 0 0;
  color: var(--orange);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.15rem, 3.55vw, 3.7rem);
  line-height: .98;
  font-style: italic;
  text-transform: uppercase;
}
.hero-rule { display:block; width:68px; height:3px; margin:25px 0 22px; background:var(--orange); }
.hero-description { margin:0 0 24px; color:#f2f4f7; font-size:1.13rem; line-height:1.55; }
.cta { display:inline-flex; gap:12px; align-items:center; padding:14px 22px; border-radius:6px; background:linear-gradient(180deg,#ffb20b,#ff8b00); color:#100a00; font-weight:900; text-transform:uppercase; box-shadow:0 10px 30px rgba(255,122,0,.18); }
.cta:hover { filter:brightness(1.05); transform:translateY(-1px); }
.hero-art { position:absolute; z-index:1; top:0; right:0; width:69%; height:100%; overflow:hidden; }
.hero-art img {
  position:absolute;
  max-width:none;
  width:max(1120px, 78vw);
  height:auto;
  top:-64px;
  left:-390px;
  filter:saturate(.96) contrast(1.02);
}
.hero-vignette { position:absolute; z-index:2; inset:0; pointer-events:none; background:linear-gradient(90deg,#030912 0%,rgba(3,9,18,.96) 26%,rgba(3,9,18,.68) 40%,rgba(3,9,18,.15) 56%,rgba(3,9,18,0) 72%); }

/* Smaller illustrated Biff quote */
.compact-biff { min-height:138px; grid-template-columns:112px 38px 1fr; }
.biff-art-portrait {
  width:112px;
  height:138px;
  align-self:stretch;
  background-image:url('../assets/images/biff-art-source.png');
  background-repeat:no-repeat;
  background-size:512px auto;
  background-position:-16px -463px;
  border-right:1px solid rgba(255,255,255,.07);
}
.compact-biff .quote-mark { padding-top:18px; font-size:4.1rem; }
.compact-biff blockquote { padding:17px 18px 16px 0; }
.compact-biff p { font-size:1.03rem; }

/* Calendar */
.calendar-section { padding-top:34px; }
.calendar-shell { overflow:hidden; padding:10px; background:#050c15; }
.calendar-frame { display:block; width:100%; height:760px; border:0; background:#fff; border-radius:8px; }
.calendar-note { color:var(--muted); font-size:.84rem; line-height:1.55; margin:12px 3px 0; }
.small-note { font-size:.86rem; color:var(--subtle) !important; }

@media (min-width: 1600px) {
  .redesigned-hero, .redesigned-hero .hero-layout { min-height: 575px; }
  .hero-art img { width: 1380px; left: -410px; top: -76px; }
}

@media (max-width: 1180px) {
  .redesigned-hero, .redesigned-hero .hero-layout { min-height: 510px; }
  .hero-message { width:44%; }
  .hero-art { width:68%; }
  .hero-art img { width:1120px; left:-430px; top:-52px; }
}

@media (max-width: 920px) {
  .redesigned-hero { min-height: 670px; }
  .redesigned-hero .hero-layout { min-height:670px; align-items:flex-end; }
  .hero-art { width:100%; height:420px; top:0; }
  .hero-art img { width:980px; left:calc(50% - 610px); top:-35px; }
  .hero-vignette { background:linear-gradient(180deg,rgba(3,9,18,.06) 0%,rgba(3,9,18,.18) 38%,rgba(3,9,18,.92) 63%,#030912 78%); }
  .hero-message { width:100%; max-width:600px; padding:385px 0 34px; }
  .hero-message h1 { font-size:clamp(3.5rem,11vw,5.4rem); }
  .hero-tagline { font-size:clamp(2rem,7vw,3rem); }
  .compact-biff { grid-template-columns:98px 34px 1fr; }
  .biff-art-portrait { width:98px; height:132px; background-size:490px auto; background-position:-14px -441px; }
  .calendar-frame { height:650px; }
}

@media (max-width: 600px) {
  .redesigned-hero { min-height:620px; }
  .redesigned-hero .hero-layout { min-height:620px; }
  .hero-art { height:340px; }
  .hero-art img { width:810px; left:calc(50% - 510px); top:-28px; }
  .hero-message { padding:315px 0 27px; }
  .hero-message h1 { font-size:clamp(3.2rem,16vw,4.5rem); }
  .hero-tagline { font-size:clamp(2rem,10vw,2.8rem); }
  .hero-description br { display:none; }
  .compact-biff { grid-template-columns:82px 26px 1fr; min-height:122px; }
  .biff-art-portrait { width:82px; height:122px; background-size:455px auto; background-position:-12px -409px; }
  .compact-biff .quote-mark { font-size:3rem; padding-top:15px; }
  .compact-biff blockquote { padding:14px 10px 13px 0; }
  .compact-biff p { font-size:.86rem; line-height:1.38; }
  .compact-biff cite { font-size:.72rem; }
  .calendar-shell { padding:5px; }
  .calendar-frame { height:560px; }
}

/* v5 hero: clean artwork only; no navigation or UI baked into the image */
.redesigned-hero { min-height: 470px; }
.redesigned-hero .hero-layout { min-height: 470px; }
.redesigned-hero .hero-message { padding-top: 34px; padding-bottom: 40px; }
.redesigned-hero .hero-art {
  width: 68%;
  height: 100%;
  top: 0;
  right: 0;
}
.redesigned-hero .hero-art img {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(.98) contrast(1.02);
}
.redesigned-hero .hero-vignette {
  background: linear-gradient(90deg,#030912 0%,rgba(3,9,18,.96) 28%,rgba(3,9,18,.72) 39%,rgba(3,9,18,.18) 55%,rgba(3,9,18,0) 73%);
}
.calendar-actions { display:flex; justify-content:flex-end; margin-top:16px; }
.calendar-open-button { display:inline-flex; align-items:center; justify-content:center; }
@media (max-width: 920px) {
  .redesigned-hero { min-height: 560px; }
  .redesigned-hero .hero-layout { min-height: 560px; }
  .redesigned-hero .hero-art { width: 100%; height: 56%; }
  .redesigned-hero .hero-art img { object-position: 48% center; }
  .redesigned-hero .hero-vignette { background:linear-gradient(180deg,rgba(3,9,18,.06) 0%,rgba(3,9,18,.20) 34%,rgba(3,9,18,.88) 58%,#030912 76%); }
}
@media (max-width: 600px) {
  .calendar-actions { justify-content:stretch; }
  .calendar-open-button { width:100%; min-height:48px; }
  .calendar-frame { min-height: 420px; }
}


/* v7 mobile cleanup: no overlapping hero text, no language selector */
.language-button { display: none !important; }

@media (max-width: 920px) {
  .redesigned-hero {
    min-height: 0;
    overflow: hidden;
    background: #030912;
  }
  .redesigned-hero .hero-art {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(300px, 55vw, 430px);
    overflow: hidden;
  }
  .redesigned-hero .hero-art img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
  }
  .redesigned-hero .hero-vignette {
    display: none;
  }
  .redesigned-hero .hero-layout {
    min-height: 0;
    display: block;
  }
  .redesigned-hero .hero-message {
    width: 100%;
    max-width: none;
    padding: 28px 0 34px;
    background: #030912;
  }
  .redesigned-hero .hero-message h1 {
    font-size: clamp(3rem, 10vw, 4.4rem);
  }
  .redesigned-hero .hero-tagline {
    font-size: clamp(1.9rem, 7vw, 2.8rem);
  }
}

@media (max-width: 600px) {
  .header-row { min-height: 60px; }
  .menu-toggle { margin-left: auto; }
  .nav { top: 60px; left: 12px; right: 12px; }
  .redesigned-hero .hero-art {
    height: 270px;
  }
  .redesigned-hero .hero-art img {
    object-position: 62% center;
  }
  .redesigned-hero .hero-message {
    padding: 24px 0 28px;
  }
  .redesigned-hero .hero-message h1 {
    font-size: clamp(2.75rem, 15vw, 4rem);
    line-height: .92;
  }
  .redesigned-hero .hero-tagline {
    margin-top: 14px;
    font-size: clamp(1.7rem, 9vw, 2.45rem);
    line-height: 1;
  }
  .redesigned-hero .hero-rule { margin: 18px 0; }
  .redesigned-hero .hero-description {
    font-size: 1rem;
    margin-bottom: 18px;
  }
  .redesigned-hero .cta {
    width: 100%;
    justify-content: center;
  }
}
