
:root {
  --wine: #711b32;
  --wine-dark: #310912;
  --wine-soft: #a8586b;
  --cream: #f4f0e8;
  --paper: #e9e1d5;
  --white: #fffdf8;
  --ink: #261b1d;
  --muted: #706467;
  --line: rgba(38, 27, 29, .17);
  --light-line: rgba(255, 253, 248, .25);
  --serif: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--sans); }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
.site-shell { min-width: 320px; overflow: hidden; }

.progress { position: fixed; top: 0; right: 0; left: 0; z-index: 50; height: 3px; background: #c58c99; transform-origin: left; animation: page-progress auto linear; animation-timeline: scroll(); }
.site-header { position: absolute; top: 0; right: 0; left: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between; width: min(1460px, calc(100% - 64px)); height: 112px; margin: auto; border-bottom: 1px solid var(--light-line); color: var(--white); }
.brand { display: inline-flex; align-items: center; min-width: 290px; }
.brand-mark { font-family: var(--serif); font-size: 36px; letter-spacing: -.07em; line-height: 1; }
.brand-divider { width: 1px; height: 44px; margin: 0 20px; background: currentColor; opacity: .34; }
.brand-name { font-size: 14px; font-weight: 720; letter-spacing: .095em; }
.site-header nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 42px); }
.site-header nav a { position: relative; padding: 15px 0; font-size: 13px; }
.site-header nav a::after { position: absolute; right: 0; bottom: 9px; left: 0; height: 1px; background: currentColor; content: ""; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.site-header nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-header nav a.active::after { transform: scaleX(1); }
.site-header--solid { position: relative; width: 100%; height: 96px; margin: 0; padding: 0 max(32px, calc((100vw - 1460px)/2)); background: var(--wine-dark); }
.menu-button { display: none; width: 48px; height: 44px; border: 1px solid var(--light-line); background: transparent; }
.menu-button span { display: block; width: 20px; height: 1px; margin: 5px auto; background: currentColor; }

.hero { position: relative; min-height: min(920px, 100svh); background: var(--wine-dark); color: var(--white); isolation: isolate; }
.hero::before { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(42,5,16,.99) 0%, rgba(58,9,22,.96) 42%, rgba(58,9,22,.3) 72%, rgba(58,9,22,.08) 100%); content: ""; }
.hero-image-wrap { position: absolute; inset: 0 0 0 38%; z-index: -2; overflow: hidden; }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; filter: saturate(.72) contrast(1.03); animation: hero-settle 1.2s cubic-bezier(.22,.75,.25,1) both; }
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; width: min(1460px, calc(100% - 64px)); min-height: min(920px, 100svh); margin: auto; padding: 164px 0 112px; }
.kicker { margin: 0 0 34px; color: #d4b9bd; font-size: 11px; font-weight: 650; letter-spacing: .16em; text-transform: uppercase; animation: rise-in .65s .05s ease-out both; }
h1 { max-width: 900px; margin: 0; font-family: var(--serif); font-size: clamp(78px, 10vw, 156px); font-weight: 500; letter-spacing: -.07em; line-height: .84; animation: rise-in .7s .11s ease-out both; }
.hero-lead { max-width: 720px; margin: 46px 0 0; font-family: var(--serif); font-size: clamp(20px, 1.8vw, 27px); line-height: 1.44; animation: rise-in .7s .18s ease-out both; }
.hero-actions { display: flex; align-items: center; gap: 38px; margin-top: 42px; animation: rise-in .7s .24s ease-out both; }
.button { display: inline-flex; align-items: center; justify-content: space-between; min-width: 260px; min-height: 68px; padding: 0 27px; border: 1px solid var(--white); font-size: 13px; font-weight: 650; transition: transform .2s, background .2s, color .2s; }
.button span { font-size: 20px; font-weight: 400; }
.button-primary { background: var(--white); color: var(--wine-dark); }
.button-primary:hover { background: var(--paper); transform: translateY(-2px); }
.text-link { border-bottom: 1px solid rgba(255,255,255,.4); padding: 10px 0; font-size: 13px; }
.text-link span { margin-left: 18px; transition: margin .2s; }
.text-link:hover span { margin-left: 25px; }
.hero-foot { position: absolute; right: max(32px, calc((100vw - 1460px)/2)); bottom: 31px; left: max(32px, calc((100vw - 1460px)/2)); display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--light-line); color: #d4b9bd; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }

.marquee { overflow: hidden; background: var(--wine); color: var(--white); }
.marquee div { display: flex; align-items: center; justify-content: center; min-width: max-content; min-height: 86px; font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.marquee i { margin: 0 34px; color: #d5a1ab; font-style: normal; }

.page-hero { padding: 104px max(32px, calc((100vw - 1460px)/2)) 116px; background: var(--wine-dark); color: var(--white); }
.page-hero-label { display: flex; align-items: center; gap: 18px; margin: 0 0 52px; color: #d8a5ae; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.page-hero-label span { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid currentColor; border-radius: 50%; }
.page-hero h1 { max-width: 1180px; font-size: clamp(64px, 8.2vw, 126px); line-height: .9; animation: rise-in .55s ease-out both; }
.page-hero-lead { max-width: 840px; margin: 44px 0 0; color: #e2ccd1; font-family: var(--serif); font-size: clamp(20px, 2vw, 29px); line-height: 1.45; }

.section { padding: 124px max(32px, calc((100vw - 1460px)/2)); }
.section-heading > p { display: flex; align-items: center; gap: 18px; margin: 0 0 45px; color: var(--wine); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.section-heading > p span { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid currentColor; border-radius: 50%; }
.section-heading h2 { max-width: 1080px; margin: 0; font-family: var(--serif); font-size: clamp(52px, 6.7vw, 100px); font-weight: 500; letter-spacing: -.055em; line-height: .96; }
.section-heading.is-light > p { color: #d8a5ae; }
.section-heading.is-light h2 { color: var(--white); }
.section-lead { max-width: 720px; margin: 34px 0 0; color: var(--muted); font-size: 17px; line-height: 1.72; }
.light-lead { color: #dbc5ca; }
.statement { margin: 0; font-family: var(--serif); font-size: clamp(27px, 3vw, 45px); letter-spacing: -.025em; line-height: 1.28; }

.about { background: var(--cream); }
.home-intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 9vw, 150px); align-items: end; }
.home-intro .statement { font-size: clamp(25px, 2.6vw, 39px); }
.home-pages { display: grid; grid-template-columns: repeat(2, 1fr); background: var(--white); border-top: 1px solid var(--line); }
.home-pages > a { position: relative; min-height: 330px; padding: 44px max(32px, calc((100vw - 1460px)/2)); border-bottom: 1px solid var(--line); transition: background .25s, color .25s; }
.home-pages > a:nth-child(odd) { padding-right: 60px; border-right: 1px solid var(--line); }
.home-pages > a:nth-child(even) { padding-left: 60px; }
.home-pages > a:hover { background: var(--wine); color: var(--white); }
.home-pages > a > span { color: var(--wine); font-size: 10px; font-weight: 750; }
.home-pages > a:hover > span { color: #d8a5ae; }
.home-pages h2 { max-width: 590px; margin: 58px 0 0; font-family: var(--serif); font-size: clamp(35px, 3.4vw, 54px); font-weight: 500; letter-spacing: -.04em; line-height: 1.02; }
.home-pages p { max-width: 480px; margin: 20px 0 48px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.home-pages > a:hover p { color: #ead7da; }
.home-pages b { position: absolute; bottom: 38px; font-size: 11px; font-weight: 650; }
.home-contact-band { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 62px max(32px, calc((100vw - 1460px)/2)); background: var(--paper); }
.home-contact-band p { margin: 0; font-family: var(--serif); font-size: clamp(24px, 2.4vw, 38px); }
.home-contact-band a { display: flex; gap: 50px; min-width: 330px; padding: 20px 0; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 650; }
.home-contact-band a span { margin-left: auto; }
.about-intro { display: grid; grid-template-columns: .96fr 1.04fr; gap: clamp(62px, 8vw, 130px); align-items: center; margin-top: 82px; }
.about-intro--page { margin-top: 0; }
.editorial-photo { position: relative; margin: 0; overflow: hidden; background: #d8d0c4; }
.editorial-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.editorial-photo:hover img { transform: scale(1.018); }
.entrance-photo { height: min(580px, 54vw); max-height: 580px; }
.editorial-photo figcaption { position: absolute; right: 0; bottom: 0; padding: 12px 18px; background: rgba(38,27,29,.88); color: var(--white); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
.pair-grid { display: grid; border-top: 1px solid var(--line); }
.about-grid { grid-template-columns: repeat(2, 1fr); margin-top: 90px; }
.pair-grid article { position: relative; min-height: 270px; padding: 30px 34px 38px 0; border-bottom: 1px solid var(--line); }
.pair-grid article:nth-child(even) { padding-left: 34px; border-left: 1px solid var(--line); }
.pair-grid article > span { color: var(--wine); font-size: 10px; font-weight: 700; }
.pair-grid h3 { margin: 52px 0 0; font-family: var(--serif); font-size: 29px; font-weight: 500; }
.pair-grid p { max-width: 570px; margin: 16px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.framework { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(70px, 9vw, 145px); background: var(--wine-dark); color: var(--white); }
.framework-list { border-top: 1px solid var(--light-line); }
.framework-list article { display: grid; grid-template-columns: 54px 1fr; gap: 24px; padding: 31px 0; border-bottom: 1px solid var(--light-line); }
.framework-list article > span { color: #d5a1ab; font-size: 10px; font-weight: 700; }
.framework-list h3 { margin: 0; font-family: var(--serif); font-size: 29px; font-weight: 500; }
.framework-list p { max-width: 760px; margin: 13px 0 0; color: #dbc5ca; font-size: 14px; line-height: 1.72; }
.statute-link { display: grid; grid-template-columns: 54px 1fr 30px; gap: 24px; align-items: center; min-height: 98px; border-bottom: 1px solid var(--light-line); color: var(--white); }
.statute-link span { color: #d5a1ab; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.statute-link b { font-family: var(--serif); font-size: 25px; font-weight: 500; }
.statute-link i { font-size: 20px; font-style: normal; transition: transform .2s; }
.statute-link:hover i { transform: translate(3px, -3px); }
.legal-strip { grid-column: 1 / -1; display: grid; grid-template-columns: 150px 1fr 100px 140px; gap: 25px; align-items: baseline; margin-top: 25px; padding: 30px 0; border-top: 1px solid var(--light-line); border-bottom: 1px solid var(--light-line); }
.legal-strip span { color: #d5a1ab; font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.legal-strip p { margin: 0; font-family: var(--serif); font-size: 18px; line-height: 1.45; }

.facilities { background: var(--white); }
.section-split-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: end; }
.section-split-heading .section-lead { margin-bottom: 6px; }
.premises-index { display: flex; flex-wrap: wrap; gap: 12px 28px; margin: 82px 0 28px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--wine); font-size: 10px; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.premises-index span:not(:last-child)::after { margin-left: 28px; color: #bcaeb0; content: "/"; }
.facility-zones { border-top: 1px solid var(--line); }
.facility-zone { padding: 62px 0 78px; border-bottom: 1px solid var(--line); }
.facility-zone-head { display: grid; grid-template-columns: 210px minmax(0, 1fr) 190px; gap: clamp(38px, 5vw, 86px); align-items: start; margin-bottom: 42px; }
.facility-zone-index { display: flex; align-items: center; gap: 16px; color: var(--wine); }
.facility-zone-index > span { display: grid; flex: 0 0 auto; width: 38px; height: 38px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 10px; font-weight: 750; }
.facility-zone-index p { margin: 0; font-size: 9px; font-weight: 750; letter-spacing: .12em; line-height: 1.5; text-transform: uppercase; }
.facility-zone-copy h3 { max-width: 720px; margin: -7px 0 0; font-family: var(--serif); font-size: clamp(35px, 4vw, 60px); font-weight: 500; letter-spacing: -.045em; line-height: 1.02; }
.facility-zone-copy h2 { max-width: 720px; margin: -7px 0 0; font-family: var(--serif); font-size: clamp(35px, 4vw, 60px); font-weight: 500; letter-spacing: -.045em; line-height: 1.02; }
.facility-zone-copy p { max-width: 830px; margin: 20px 0 0; color: var(--muted); font-size: 14px; line-height: 1.72; }
.facility-zone-head > strong { justify-self: end; border: 1px solid var(--line); padding: 13px 16px; color: var(--wine); font-size: 9px; font-weight: 750; letter-spacing: .11em; text-align: center; text-transform: uppercase; }
.zone-gallery { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-flow: dense; grid-auto-rows: 260px; gap: 12px; }
.zone-gallery figure { position: relative; grid-column: span 3; margin: 0; overflow: hidden; background: var(--paper); }
.zone-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.zone-gallery figure:hover img { transform: scale(1.018); }
.zone-gallery figcaption { position: absolute; right: 0; bottom: 0; left: 0; display: flex; align-items: baseline; gap: 12px; min-height: 58px; padding: 24px 17px 14px; background: linear-gradient(0deg, rgba(32,18,21,.9), rgba(32,18,21,0)); color: var(--white); font-size: 10px; line-height: 1.45; }
.zone-gallery figcaption span { color: #d8a5ae; font-weight: 750; }
.zone-gallery-1 figure { grid-column: span 12; height: 470px; }
.zone-gallery-2 figure { grid-column: span 6; }
.zone-gallery-3 figure { grid-column: span 3; }
.zone-gallery-3 figure:nth-child(2) { grid-column: span 6; }
.zone-gallery-5 .zone-photo-primary, .zone-gallery-7 .zone-photo-primary { grid-column: span 6; grid-row: span 2; }
.zone-gallery-7 figure:nth-child(n + 6) { grid-column: span 6; }
.zone-gallery-3 figure:first-child img { object-position: center; }
.facilities-page .premises-index { margin-top: 0; }
.facilities-page .zone-gallery { grid-auto-rows: 340px; }
.facilities-page .zone-gallery figure { background: #ddd3c6; }
.facilities-page .zone-gallery img { object-fit: contain; background: #ddd3c6; }
.facilities-page .zone-gallery-1 { grid-auto-rows: 520px; }
.facilities-page .zone-gallery-1 figure { height: 100%; }
.facilities-page .zone-gallery-3 figure:nth-child(2) { grid-column: span 6; }
.facilities-page .zone-gallery-5 .zone-photo-primary,
.facilities-page .zone-gallery-7 .zone-photo-primary { grid-row: span 1; }
.premises-note { max-width: 880px; margin: 34px 0 90px; color: var(--muted); font-size: 11px; line-height: 1.65; }
.facility-grid { grid-template-columns: repeat(3, 1fr); }
.facility-grid article { min-height: 285px; padding: 30px 32px 36px 0; }
.facility-grid article:nth-child(even) { padding-left: 0; border-left: 0; }
.facility-grid article:not(:nth-child(3n + 1)) { padding-left: 32px; border-left: 1px solid var(--line); }

.rules { background: var(--paper); }
.rules-page { min-height: 620px; }
.policy-list--standalone { max-width: 1180px; margin: 0 auto; }
.rules-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(70px, 10vw, 160px); align-items: end; }
.rules-statement { font-size: clamp(24px, 2.4vw, 36px); }
.policy-list { margin-top: 88px; border-top: 1px solid var(--line); }
.policy-list details { border-bottom: 1px solid var(--line); }
.policy-list summary { display: grid; grid-template-columns: 60px 1fr 30px; gap: 24px; align-items: center; min-height: 106px; cursor: pointer; list-style: none; font-family: var(--serif); font-size: clamp(22px, 2vw, 30px); }
.policy-list summary::-webkit-details-marker { display: none; }
.policy-list summary span { color: var(--wine); font-family: var(--sans); font-size: 10px; font-weight: 700; }
.policy-list summary b { font-family: var(--sans); font-weight: 400; transition: transform .2s; }
.policy-list details[open] summary b { transform: rotate(45deg); }
.policy-list details p { max-width: 980px; margin: -2px 0 34px 84px; color: var(--muted); font-size: 15px; line-height: 1.78; }

.faq { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(70px, 10vw, 160px); background: var(--wine); color: var(--white); }
.faq-page { display: block; }
.faq-page .faq-list { max-width: 1180px; margin: 0 auto; }
.faq-list { border-top: 1px solid var(--light-line); }
.faq details { border-bottom: 1px solid var(--light-line); }
.faq summary { display: grid; grid-template-columns: 44px 1fr 25px; gap: 20px; align-items: center; min-height: 105px; cursor: pointer; list-style: none; font-family: var(--serif); font-size: clamp(20px, 1.9vw, 28px); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { color: #d8a5ae; font-family: var(--sans); font-size: 10px; }
.faq summary b { font-family: var(--sans); font-weight: 400; transition: transform .2s; }
.faq details[open] summary b { transform: rotate(45deg); }
.faq details p { max-width: 760px; margin: -5px 0 32px 64px; color: #ead7da; font-size: 14px; line-height: 1.72; }

.contact { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(64px, 8vw, 120px); background: var(--cream); }
.contact-page .contact-content { align-self: start; }
.contact-visual { min-width: 0; }
.contact-visual .editorial-photo { position: sticky; top: 32px; height: min(700px, 72vh); }
.contact-content .section-lead { margin-bottom: 52px; }
.contact-list { border-top: 1px solid var(--line); }
.contact-row { display: grid; grid-template-columns: .35fr 1fr; gap: 25px; min-height: 102px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.contact-row > span { color: var(--wine); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-row p { margin: 0; font-family: var(--serif); font-size: 21px; line-height: 1.42; overflow-wrap: anywhere; }
.contact-row a { transition: color .2s; }
.contact-row a:hover { color: var(--wine); }
.contact-note { max-width: 650px; margin: 26px 0 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

footer { display: grid; grid-template-columns: 1fr auto auto auto; gap: 40px; align-items: center; min-height: 184px; padding: 48px max(32px, calc((100vw - 1460px)/2)); background: #270711; color: #d4b9bd; }
.footer-brand { color: var(--white); }
footer p { margin: 0; font-size: 11px; line-height: 1.6; }
footer > a:not(.brand) { border-bottom: 1px solid rgba(255,255,255,.25); padding: 8px 0; color: var(--white); font-size: 12px; }
.back-top { border-bottom: 1px solid rgba(255,255,255,.25); padding: 8px 0; color: var(--white); font-size: 12px; }

:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
@keyframes rise-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes hero-settle { from { opacity: .45; transform: scale(1.035); } to { opacity: 1; transform: scale(1); } }
@keyframes page-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }

@media (max-width: 1080px) {
  .site-header, .hero-copy { width: calc(100% - 40px); }
  .site-header nav { gap: 18px; }
  .about-intro, .framework, .section-split-heading, .rules-intro, .faq, .contact { grid-template-columns: 1fr; }
  .home-intro { grid-template-columns: 1fr; }
  .about-intro, .framework, .section-split-heading, .rules-intro, .faq, .contact { gap: 58px; }
  .entrance-photo { height: 560px; }
  .legal-strip { grid-template-columns: 120px 1fr; }
  .legal-strip span:nth-of-type(2) { grid-column: 1; }
  .facility-grid { grid-template-columns: repeat(2, 1fr); }
  .facility-zone-head { grid-template-columns: 170px minmax(0, 1fr); }
  .facility-zone-head > strong { grid-column: 2; justify-self: start; }
  .zone-gallery { grid-auto-rows: 230px; }
  .facility-grid article, .facility-grid article:not(:nth-child(3n + 1)) { padding-left: 0; border-left: 0; }
  .facility-grid article:nth-child(even) { padding-left: 32px; border-left: 1px solid var(--line); }
  .contact-visual .editorial-photo { position: relative; top: 0; height: 620px; }
}

@media (max-width: 780px) {
  .site-header { height: 88px; }
  .brand-mark { font-size: 29px; }
  .brand-divider { height: 34px; margin: 0 14px; }
  .brand-name { font-size: 12px; }
  .menu-button { display: block; }
  .site-header nav { position: absolute; top: 74px; right: 0; left: 0; display: none; padding: 16px 20px; border: 1px solid var(--light-line); background: var(--wine-dark); }
  .site-header nav.open { display: grid; }
  .site-header nav a { padding: 13px 0; border-bottom: 1px solid var(--light-line); }
  .site-header--solid { height: 88px; padding: 0 20px; }
  .site-header--solid nav { right: 20px; left: 20px; }
  .hero { min-height: 800px; }
  .hero::before { background: linear-gradient(90deg, rgba(42,5,16,.97), rgba(52,8,20,.72)); }
  .hero-image-wrap { left: 0; opacity: .55; }
  h1 { font-size: clamp(68px, 15vw, 112px); }
  .hero-copy { min-height: 800px; padding-top: 130px; }
  .about-grid, .facility-grid { grid-template-columns: 1fr; }
  .home-pages { grid-template-columns: 1fr; }
  .home-pages > a, .home-pages > a:nth-child(odd), .home-pages > a:nth-child(even) { min-height: 300px; padding: 38px 28px; border-right: 0; }
  .home-pages b { bottom: 34px; }
  .home-contact-band { align-items: flex-start; flex-direction: column; }
  .pair-grid article, .pair-grid article:nth-child(even), .facility-grid article:nth-child(even) { min-height: 0; padding: 30px 0; border-left: 0; }
  .pair-grid h3 { margin-top: 30px; }
  .facility-zone-head { grid-template-columns: 1fr; gap: 24px; }
  .facility-zone-head > strong { grid-column: 1; justify-self: start; }
  .zone-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 260px; }
  .zone-gallery figure, .zone-gallery-2 figure, .zone-gallery-3 figure, .zone-gallery-3 figure:nth-child(2), .zone-gallery-5 .zone-photo-primary, .zone-gallery-7 .zone-photo-primary, .zone-gallery-7 figure:nth-child(n + 6) { grid-column: span 1; grid-row: span 1; height: auto; }
  .zone-gallery .zone-photo-primary { grid-column: span 2; }
  .zone-gallery-1 figure { grid-column: span 2; }
  footer { grid-template-columns: 1fr 1fr; }
  footer p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 600px) {
  .site-header { width: calc(100% - 28px); }
  .brand { min-width: 0; }
  .hero-copy { width: calc(100% - 32px); padding-bottom: 125px; }
  h1 { font-size: clamp(58px, 18vw, 86px); line-height: .87; }
  .hero-lead { margin-top: 32px; font-size: 19px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; width: 100%; }
  .button { width: 100%; }
  .hero-foot { right: 16px; bottom: 24px; left: 16px; display: grid; gap: 7px; }
  .marquee div { justify-content: flex-start; padding: 0 22px; }
  .marquee i { margin: 0 20px; }
  .section { padding: 82px 20px; }
  .page-hero { padding: 72px 20px 82px; }
  .page-hero h1 { font-size: clamp(52px, 14vw, 76px); }
  .page-hero-lead { margin-top: 32px; font-size: 19px; }
  .section-heading > p { margin-bottom: 32px; }
  .section-heading h2 { font-size: 47px; }
  .about-intro { margin-top: 52px; }
  .statement { font-size: 28px; }
  .entrance-photo { height: 440px; }
  .about-grid { margin-top: 56px; }
  .framework-list article { grid-template-columns: 38px 1fr; }
  .legal-strip { grid-template-columns: 1fr; gap: 10px; }
  .legal-strip span:nth-of-type(2) { grid-column: auto; margin-top: 14px; }
  .premises-index { display: grid; gap: 10px; margin-top: 56px; }
  .premises-index span:not(:last-child)::after { display: none; }
  .facility-zone { padding: 48px 0 58px; }
  .facility-zone-copy h3 { font-size: 39px; }
  .zone-gallery { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .zone-gallery figure, .zone-gallery .zone-photo-primary, .zone-gallery-1 figure { grid-column: 1; }
  .facilities-page .zone-gallery { grid-auto-rows: 340px; }
  .facilities-page .zone-gallery-1 { grid-auto-rows: 340px; }
  .facilities-page .zone-gallery figure,
  .facilities-page .zone-gallery-1 figure,
  .facilities-page .zone-gallery-2 figure,
  .facilities-page .zone-gallery-3 figure,
  .facilities-page .zone-gallery-3 figure:nth-child(2),
  .facilities-page .zone-gallery-5 figure,
  .facilities-page .zone-gallery-7 figure { grid-column: 1; height: auto; }
  .home-contact-band { padding: 52px 20px; }
  .home-contact-band a { width: 100%; min-width: 0; }
  .premises-note { margin-bottom: 60px; }
  .rules-statement { font-size: 25px; }
  .policy-list { margin-top: 55px; }
  .policy-list summary { grid-template-columns: 34px 1fr 20px; gap: 10px; min-height: 94px; font-size: 21px; }
  .policy-list details p { margin: 0 0 28px 44px; }
  .faq summary { grid-template-columns: 30px 1fr 20px; gap: 10px; min-height: 94px; font-size: 21px; }
  .faq details p { margin: 0 0 26px 40px; }
  .contact-visual .editorial-photo { height: 420px; }
  .contact-row { grid-template-columns: 1fr; gap: 9px; }
  .contact-row p { font-size: 19px; }
  footer { grid-template-columns: 1fr; gap: 24px; }
  footer p { grid-column: 1; grid-row: auto; }
  .back-top { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
