:root{

 --stone:#efe8dc;
--cream:#fffaf2;
--paper:#fffdf8;
--charcoal:#292724;
--muted:#6f685f;
--wine:#7b1e2b;
--wine2:#9e3443;
--olive:#59633c;
--gold:#b98b43;
--line:#ded1be;
--shadow:0 24px 60px rgba(45,34,22,.16);
--radius:24px;
--max:1180px;

}

*{
box-sizing:border-box}
html{
scroll-behavior:smooth}
body{
margin:0;
font-family:Inter,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
background:var(--stone);
color:var(--charcoal);
line-height:1.55}
a{
color:inherit}
img{
max-width:100%;
display:block}
.wrap{
width:min(var(--max),calc(100% - 34px));
margin:auto}
.topbar{
position:sticky;
top:0;
z-index:20;
background:rgba(255,250,242,.92);
backdrop-filter:blur(16px);
border-bottom:1px solid var(--line)}
.nav{
height:76px;
display:flex;
align-items:center;
justify-content:space-between;
gap:20px}
.brand{
display:flex;
align-items:center;
gap:14px;
text-decoration:none}
.brand img{
width:170px;
height:auto}
.brand small{
display:block;
color:var(--muted);
font-size:12px;
letter-spacing:.02em}
.menu{
display:flex;
gap:18px;
align-items:center;
font-size:14px}
.menu a{
text-decoration:none;
color:#433d35}
.menu a:hover{
color:var(--wine)}
.lang{
display:flex;
border:1px solid var(--line);
border-radius:999px;
overflow:hidden;
background:#fff}
.lang a{
padding:7px 10px;
text-decoration:none;
font-weight:700;
font-size:12px}
.lang a.active{
background:var(--wine);
color:#fff}
.mobile-toggle{
display:none;
background:transparent;
border:0;
font-size:26px}
.hero{
position:relative;
min-height:74vh;
display:grid;
place-items:center;
overflow:hidden;
background:#1f1d1b}
.hero:before{
content:"";
position:absolute;
inset:0;
background:linear-gradient(90deg,rgba(29,24,20,.78),rgba(29,24,20,.38),rgba(29,24,20,.12)),var(--hero) center/cover no-repeat;
transform:scale(1.02)}
.hero .wrap{
position:relative;
z-index:2}
.hero-card{
max-width:760px;
color:#fff;
padding:38px 0}
.kicker{
display:inline-flex;
align-items:center;
gap:9px;
padding:8px 13px;
border:1px solid rgba(255,255,255,.35);
border-radius:999px;
background:rgba(255,255,255,.13);
font-weight:700;
font-size:13px;
letter-spacing:.02em}
.hero h1{
font-family:Georgia,serif;
font-size:clamp(44px,7vw,86px);
line-height:.95;
margin:22px 0 18px;
text-wrap:balance}
.hero p{
font-size:clamp(18px,2vw,24px);
max-width:700px}
.btns{
display:flex;
flex-wrap:wrap;
gap:12px;
margin-top:26px}
.btn{
display:inline-flex;
align-items:center;
gap:9px;
padding:13px 17px;
border-radius:999px;
background:var(--wine);
color:#fff;
text-decoration:none;
font-weight:800;
border:1px solid transparent}
.btn.secondary{
background:rgba(255,255,255,.14);
border-color:rgba(255,255,255,.42)}
.btn.light{
background:#fff;
color:var(--wine);
border-color:var(--line)}
.notice{
background:var(--charcoal);
color:#fff;
padding:12px 0;
font-size:14px}
.notice b{
color:#f0d39d}
.section{
padding:76px 0}
.section.tight{
padding:46px 0}
.eyebrow{
color:var(--wine);
font-weight:900;
letter-spacing:.08em;
text-transform:uppercase;
font-size:13px}
.section h2{
font-family:Georgia,serif;
font-size:clamp(32px,4.5vw,56px);
line-height:1.02;
margin:10px 0 18px}
.lead{
font-size:19px;
color:#4a453e;
max-width:820px}
.grid{
display:grid;
gap:22px}
.grid.cols-3{
grid-template-columns:repeat(3,1fr)}
.grid.cols-4{
grid-template-columns:repeat(4,1fr)}
.card{
background:var(--paper);
border:1px solid var(--line);
border-radius:var(--radius);
box-shadow:0 10px 35px rgba(45,34,22,.06);
overflow:hidden}
.card.pad{
padding:25px}
.card h3{
font-size:22px;
margin:0 0 10px}
.card p{
color:var(--muted);
margin:0}
.card .img{
height:210px;
background:center/cover no-repeat}
.feature{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:34px;
align-items:center}
.feature-img{
height:500px;
border-radius:var(--radius);
background:center/cover no-repeat;
box-shadow:var(--shadow)}
.pillars a{
text-decoration:none}
.pillars .card:hover{
transform:translateY(-3px);
transition:.2s;
box-shadow:var(--shadow)}
.split-band{
background:var(--charcoal);
color:#fff}
.split-band .lead,.split-band p{
color:#e7dfd3}
.doc-list{
display:grid;
gap:12px}
.doc-row{
display:grid;
grid-template-columns:52px 1fr auto auto;
gap:14px;
align-items:center;
background:#fff;
border:1px solid var(--line);
padding:13px;
border-radius:16px}
.num{
width:44px;
height:44px;
border-radius:50%;
display:grid;
place-items:center;
background:var(--stone);
font-weight:900;
color:var(--wine)}
.tag{
font-size:12px;
font-weight:900;
color:var(--olive);
text-transform:uppercase}
.muted{
color:var(--muted)}
.gallery{
display:grid;
grid-template-columns:2fr 1fr 1fr;
grid-auto-rows:220px;
gap:14px}
.gallery div{
border-radius:18px;
background:center/cover no-repeat;
min-height:160px}
.gallery div:first-child{
grid-row:span 2}
.form{
display:grid;
gap:14px}
.form input,.form select,.form textarea{
width:100%;
padding:14px 15px;
border:1px solid var(--line);
border-radius:14px;
background:#fff;
font:inherit}
.form textarea{
min-height:120px}
.footer{
background:#1f1d1b;
color:#ddd;
padding:44px 0}
.footer a{
color:#fff}
.page-hero{
background:var(--charcoal);
color:#fff;
padding:64px 0}
.page-hero h1{
font-family:Georgia,serif;
font-size:clamp(38px,5vw,64px);
margin:0 0 14px}
.breadcrumb{
font-size:14px;
color:#d6c8b6}
.calendar-wrap{
display:grid;
grid-template-columns:1.3fr .7fr;
gap:24px}
.calendar{
background:#fff;
border:1px solid var(--line);
border-radius:var(--radius);
padding:20px}
.cal-head{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:15px}
.cal-grid{
display:grid;
grid-template-columns:repeat(7,1fr);
gap:8px}
.day,.dow{
min-height:80px;
border:1px solid var(--line);
border-radius:12px;
padding:8px;
background:#fffdf8}
.dow{
min-height:auto;
background:var(--stone);
font-weight:900;
text-align:center}
.day.has{
border-color:var(--wine);
box-shadow:inset 0 0 0 2px rgba(123,30,43,.12);
cursor:pointer}
.dot{
width:8px;
height:8px;
background:var(--wine);
border-radius:50%;
display:inline-block}
.news-card,.event-card{
padding:18px;
border-bottom:1px solid var(--line)}
.news-card:last-child,.event-card:last-child{
border-bottom:0}
.empty{
padding:24px;
background:#fff;
border:1px dashed var(--line);
border-radius:18px;
color:var(--muted)}
.filters{
display:flex;
flex-wrap:wrap;
gap:10px;
margin:20px 0}
.filters input,.filters select{
padding:12px 13px;
border-radius:999px;
border:1px solid var(--line)}
@media(max-width:900px){
.mobile-toggle{
display:block}
.menu{
display:none;
position:absolute;
top:76px;
left:0;
right:0;
background:#fffaf2;
border-bottom:1px solid var(--line);
padding:18px;
flex-direction:column;
align-items:flex-start}
.menu.open{
display:flex}
.brand img{
width:142px}
.feature,.calendar-wrap{
grid-template-columns:1fr}
.grid.cols-3,.grid.cols-4{
grid-template-columns:1fr}
.doc-row{
grid-template-columns:44px 1fr;
}
.doc-row .btn{
grid-column:2}
.gallery{
grid-template-columns:1fr;
grid-auto-rows:230px}
.gallery div:first-child{
grid-row:auto}
.hero{
min-height:72vh}
.nav{
height:70px}
.menu{
top:70px}
}

/* v4 refinements */
.brand{
gap:12px;
min-width:245px}
.brand img{
display:none}
.brand small{
font-size:11px;
text-transform:uppercase;
letter-spacing:.08em}
.brand-wordmark{
line-height:.9;
display:flex;
flex-direction:column;
gap:3px}
.brand-main{
font-family:Georgia,serif;
font-size:28px;
font-weight:700;
letter-spacing:-.04em;
color:var(--charcoal);
white-space:nowrap}
.brand-main .year{
color:var(--wine);
font-weight:700;
margin-left:4px}
.brand-sub{
font-size:12px;
letter-spacing:.42em;
text-transform:uppercase;
color:var(--olive);
font-weight:800;
white-space:nowrap}
.nav{
height:84px}
.menu{
gap:13px}
.menu a{
white-space:nowrap}
.page-hero .lead{
max-width:none;
white-space:nowrap;
font-size:clamp(17px,1.7vw,21px)}
.hero-title{
display:flex;
flex-direction:column;
gap:3px}
.hero-title .line1{
white-space:nowrap}
.hero-title .year{
color:#f1d09b}
.card-link{
text-decoration:none;
display:block;
height:100%}
.card-link .card,.card.card-link{
height:100%;
transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease}
.card-link:hover .card,.card.card-link:hover{
transform:translateY(-4px);
box-shadow:var(--shadow);
border-color:#c9a05b}
.card-actions{
display:flex;
flex-wrap:wrap;
gap:10px;
margin-top:18px}
.mini{
font-size:13px;
color:var(--muted);
margin-top:12px}
.project-card h3{
min-height:55px}
.project-card p{
min-height:92px}
.status-note{
background:#fff8eb;
border:1px solid #ead6b2;
border-radius:16px;
padding:14px;
margin:18px 0;
color:#5b4a2d}
.site-map-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:18px}
.site-map-grid .card ul{
margin:12px 0 0;
padding-left:18px}
.site-map-grid .card li{
margin:7px 0}
.helper{
background:#fff;
border-left:4px solid var(--olive);
padding:16px;
border-radius:12px;
color:#4f4a43}
.form-intro{
display:grid;
gap:12px}
.form .notice-field{
position:absolute;
left:-9999px}
.calendar-toolbar{
display:flex;
gap:10px;
flex-wrap:wrap;
margin-bottom:16px}
.calendar-toolbar input,.calendar-toolbar select{
padding:12px;
border:1px solid var(--line);
border-radius:999px}
.day.today{
outline:2px solid var(--gold)}
.day .count{
font-size:11px;
margin-top:4px;
color:var(--wine);
font-weight:900}
.source-policy{
font-size:14px;
color:var(--muted);
margin-top:12px}
.media-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:14px}
.media-grid div{
height:220px;
border-radius:18px;
background:center/cover no-repeat}
.media-grid div.wide{
grid-column:span 2}
.media-note{
font-size:14px;
color:var(--muted);
margin-top:16px}
.doc-row .btn[disabled]{
opacity:.5;
cursor:not-allowed}
.public-label{
display:inline-flex;
background:#efe2cc;
color:#604c29;
border-radius:999px;
padding:4px 9px;
font-size:12px;
font-weight:900;
margin-left:8px}

@media(max-width:1180px){
.page-hero .lead{
white-space:normal}
.menu{
gap:10px;
font-size:13px}
.brand{
min-width:210px}
.brand-main{
font-size:24px}
.brand-sub{
font-size:11px;
letter-spacing:.32em}
}

@media(max-width:900px){
.nav{
height:74px}
.menu{
top:74px}
.brand{
min-width:0}
.brand-main{
font-size:22px}
.brand-sub{
font-size:10px;
letter-spacing:.25em}
.site-map-grid,.media-grid{
grid-template-columns:1fr}
.media-grid div.wide{
grid-column:auto}
.project-card h3,.project-card p{
min-height:0}
.page-hero .lead{
white-space:normal}
.hero-title .line1{
white-space:normal}
}

/* v5 correction: restore logo, exact wordmark, uniform projects */
.topbar{
overflow:visible}
.nav{
height:92px}
.brand{
min-width:330px;
gap:12px;
align-items:center;
overflow:visible}
.brand img.brand-logo{
display:block;
width:118px;
max-height:82px;
object-fit:contain;
padding:3px 0}
.brand-text{
display:flex;
flex-direction:column;
gap:1px;
line-height:1}
.brand-main{
font-family:Georgia,serif;
font-size:24px;
font-weight:800;
letter-spacing:-.03em;
color:var(--charcoal);
white-space:nowrap}
.brand-main .year{
color:var(--wine);
margin-left:4px}
.brand-sub{
font-size:12px;
letter-spacing:.34em;
text-transform:uppercase;
color:var(--olive);
font-weight:900;
white-space:nowrap}
.brand small{
display:block;
font-size:10px;
letter-spacing:.06em;
text-transform:uppercase;
color:var(--muted);
white-space:nowrap}
.hero-logo{
width:min(420px,90%);
height:auto;
margin:0 0 18px 0;
background:rgba(255,255,255,.82);
border-radius:22px;
padding:10px;
box-shadow:0 16px 50px rgba(0,0,0,.18)}
.hero-title .line1{
white-space:nowrap}
.hero-title{
line-height:.95}
.menu{
gap:12px}
.menu a{
white-space:nowrap}
.page-hero h1,.section h2{
white-space:nowrap;
font-size:clamp(34px,4.4vw,56px)}
.page-hero .lead,.lead.one-line{
white-space:nowrap;
max-width:none;
font-size:clamp(15px,1.42vw,19px)}
.lead.small-lead{
font-size:18px;
white-space:normal}
.project-grid{
align-items:stretch}
.project-card.uniform{
min-height:255px;
display:flex;
flex-direction:column;
justify-content:space-between}
.project-card.uniform h3{
min-height:0;
white-space:nowrap;
font-size:23px}
.project-card.uniform p{
min-height:82px}
.card-actions{
margin-top:auto}
.track-list{
display:grid;
gap:18px}
.track-detail{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:22px;
align-items:center;
background:var(--paper);
border:1px solid var(--line);
border-radius:var(--radius);
padding:24px;
box-shadow:0 10px 35px rgba(45,34,22,.06);
scroll-margin-top:110px}
.track-detail h2{
margin:6px 0 0}
.track-box{
background:#fff;
border:1px solid var(--line);
border-radius:18px;
padding:18px}
.track-box p{
color:var(--muted)}
.helper{
font-size:16px}
.media-note,.source-policy{
font-size:14px}
.doc-row{
scroll-margin-top:110px}

@media(max-width:1220px){
.brand{
min-width:285px}
.brand img.brand-logo{
width:100px}
.brand-main{
font-size:22px}
.brand-sub{
font-size:11px;
letter-spacing:.28em}
.menu{
gap:9px;
font-size:13px}
.page-hero .lead{
white-space:normal}
.page-hero h1,.section h2{
white-space:normal}
}

@media(max-width:900px){
.nav{
height:78px}
.menu{
top:78px}
.brand{
min-width:0}
.brand img.brand-logo{
width:78px;
max-height:62px}
.brand-main{
font-size:20px}
.brand-sub{
font-size:10px;
letter-spacing:.2em}
.brand small{
display:none}
.hero-logo{
width:min(330px,94%)}
.page-hero h1,.section h2,.project-card.uniform h3{
white-space:normal}
.track-detail{
grid-template-columns:1fr}
.project-card.uniform{
min-height:0}
.project-card.uniform p{
min-height:0}
}

/* v6 corrections: header logo only, no duplicated text, no oversized homepage logo */
.topbar{
overflow:visible;
}

.nav{
height:86px;
gap:18px;
}

.brand.logo-only{
min-width:auto;
width:auto;
gap:0;
display:flex;
align-items:center;
overflow:visible;
}

.brand.logo-only .brand-logo{
display:block;
width:150px;
max-height:76px;
object-fit:contain;
padding:4px 0;
}

.brand.logo-only .brand-text,.brand.logo-only .brand-main,.brand.logo-only .brand-sub,.brand.logo-only small{
display:none!important;
}

.hero-logo{
display:none!important;
}

.hero-title{
display:flex;
flex-direction:column;
gap:6px;
line-height:.92;
}

.hero-title .line1{
white-space:nowrap;
display:block;
}

.hero-title .year{
color:#f1d09b;
}

.hero-card>p{
white-space:nowrap;
max-width:none;
font-size:clamp(17px,1.75vw,23px);
}

.menu{
gap:12px;
}

.menu a{
white-space:nowrap;
}

.page-hero h1{
white-space:nowrap;
font-size:clamp(34px,4.2vw,60px);
}

.page-hero .lead{
white-space:nowrap!important;
max-width:none!important;
font-size:clamp(15px,1.35vw,19px)!important;
}

.section h2{
white-space:nowrap;
font-size:clamp(30px,3.7vw,52px);
}

.project-card.uniform{
height:265px;
min-height:265px;
display:flex;
flex-direction:column;
justify-content:space-between;
}

.project-card.uniform h3{
white-space:nowrap;
font-size:21px;
line-height:1.12;
min-height:auto;
}

.project-card.uniform p{
min-height:92px;
}

@media(max-width:1120px){

  .brand.logo-only .brand-logo{
width:132px;
max-height:70px;
}

  .menu{
gap:8px;
font-size:12.5px;
}

  .page-hero h1{
font-size:clamp(30px,3.5vw,46px);
}

  .page-hero .lead{
font-size:clamp(13px,1.2vw,16px)!important;
}

  .section h2{
font-size:clamp(28px,3.2vw,44px);
}

}

@media(max-width:900px){

  .nav{
height:76px;
}

  .menu{
top:76px;
font-size:14px;
}

  .brand.logo-only .brand-logo{
width:110px;
max-height:66px;
}

  .page-hero h1,.page-hero .lead,.section h2,.hero-card>p{
white-space:normal!important;
}

  .project-card.uniform{
height:auto;
min-height:0;
}

  .project-card.uniform h3{
white-space:normal;
}

}

/* v7 rebuild: exact branding, no desktop wrapping, deeper project pages */
.topbar{
overflow:visible}
.nav{
height:88px}
.brand.logo-only{
display:flex;
align-items:center;
min-width:0;
width:172px;
flex:0 0 172px}
.brand.logo-only .brand-logo{
display:block;
width:164px;
max-height:80px;
object-fit:contain;
object-position:center;
padding:6px 0}
.menu{
gap:10px;
flex-wrap:nowrap}
.menu a{
white-space:nowrap;
font-size:13.5px}
.hero{
min-height:70vh}
.hero-card{
max-width:1120px}
.home-title{
font-family:Georgia,serif;
font-weight:800;
color:#fff;
line-height:.86;
margin:18px 0 18px;
letter-spacing:-.055em}
.home-title span{
display:block;
white-space:nowrap}
.home-title .top{
font-size:clamp(54px,7.2vw,112px)}
.home-title .bottom{
font-size:clamp(48px,6.1vw,96px)}
.home-title .year{
color:#f1d09b}
.hero-card>p,.hero-subtitle{
white-space:nowrap!important;
max-width:none!important;
font-size:clamp(16px,1.65vw,22px);
line-height:1.3}
.page-hero{
padding:56px 0}
.one-line-title{
white-space:nowrap!important;
font-size:clamp(30px,4.15vw,64px)!important;
line-height:.98!important;
letter-spacing:-.035em}
.one-line-subtitle{
white-space:nowrap!important;
max-width:none!important;
font-size:clamp(14px,1.25vw,18px)!important}
.section h2.one-line-title,.one-line-heading{
white-space:nowrap!important;
font-size:clamp(28px,3.4vw,48px)!important}
.project-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
align-items:stretch}
.project-card.uniform{
height:300px;
min-height:300px;
padding:23px;
display:flex;
flex-direction:column;
justify-content:space-between}
.project-card.uniform h3{
white-space:nowrap;
font-size:20px;
line-height:1.12;
margin-bottom:10px}
.project-card.uniform p{
min-height:82px;
font-size:15px}
.project-meta{
display:flex;
gap:8px;
flex-wrap:wrap;
margin:12px 0}
.chip{
display:inline-flex;
border:1px solid var(--line);
background:#fffaf3;
border-radius:999px;
padding:6px 9px;
font-size:12px;
font-weight:900;
color:#5f553e}
.track-hero{
display:grid;
grid-template-columns:1.05fr .95fr;
gap:28px;
align-items:center}
.project-diagram{
background:#fff;
border:1px solid var(--line);
border-radius:22px;
padding:18px;
box-shadow:0 12px 32px rgba(45,34,22,.08)}
.diagram-row{
display:grid;
grid-template-columns:1fr auto 1fr auto 1fr;
gap:10px;
align-items:center}
.diagram-box{
background:#fffaf2;
border:1px solid var(--line);
border-radius:16px;
padding:14px;
text-align:center;
font-weight:900;
min-height:76px;
display:grid;
place-items:center}
.diagram-arrow{
font-size:24px;
color:var(--gold);
font-weight:900}
.budget-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:16px}
.budget-card{
background:#fff;
border:1px solid var(--line);
border-radius:18px;
padding:18px}
.budget-card strong{
display:block;
font-size:26px;
color:var(--wine);
line-height:1.1}
.timeline-strip{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:14px}
.timeline-step{
background:#fff;
border:1px solid var(--line);
border-radius:18px;
padding:18px;
cursor:pointer}
.timeline-step.active,.timeline-step:hover{
border-color:var(--wine);
box-shadow:0 12px 30px rgba(123,30,43,.12)}
.timeline-detail{
background:#fff;
border:1px solid var(--line);
border-radius:22px;
padding:22px;
margin-top:18px}
.table-lite{
width:100%;
border-collapse:collapse;
background:#fff;
border-radius:18px;
overflow:hidden;
border:1px solid var(--line)}
.table-lite th,.table-lite td{
padding:14px;
border-bottom:1px solid var(--line);
text-align:left;
vertical-align:top}
.table-lite th{
background:#f4eadb;
color:#433d35}
.table-lite tr:last-child td{
border-bottom:0}
.doc-box{
background:#fff8eb;
border:1px solid #ead6b2;
border-radius:18px;
padding:16px;
margin-top:18px}
.mini-nav{
display:flex;
gap:10px;
flex-wrap:wrap;
margin-top:22px}
.mini-nav a{
font-weight:900;
text-decoration:none;
border:1px solid var(--line);
border-radius:999px;
padding:10px 13px;
background:#fff}
.footer b{
display:block;
margin-bottom:8px}
.footer p{
color:#d8d0c5}
.section-summary{
max-width:980px}
.no-top-logo .hero-logo{
display:none!important}
.media-link-hidden{
display:none!important}

@media(max-width:1180px){
.brand.logo-only{
width:145px;
flex-basis:145px}
.brand.logo-only .brand-logo{
width:138px}
.menu{
gap:7px}
.menu a{
font-size:12.3px}
.one-line-subtitle{
font-size:13px!important}
.project-card.uniform h3{
font-size:18px}
.project-card.uniform p{
font-size:14px}
.home-title .top{
font-size:clamp(50px,6.7vw,86px)}
.home-title .bottom{
font-size:clamp(45px,5.7vw,74px)}
}

@media(max-width:900px){
.mobile-toggle{
display:block}
.nav{
height:76px}
.brand.logo-only{
width:118px;
flex-basis:118px}
.brand.logo-only .brand-logo{
width:112px;
max-height:68px}
.menu{
top:76px}
.hero-card>p,.hero-subtitle,.one-line-title,.one-line-subtitle,.section h2.one-line-title,.one-line-heading{
white-space:normal!important}
.home-title .top{
font-size:clamp(52px,15vw,86px)}
.home-title .bottom{
font-size:clamp(42px,11vw,66px)}
.project-grid,.budget-grid,.timeline-strip{
grid-template-columns:1fr}
.track-hero,.diagram-row{
grid-template-columns:1fr}
.diagram-arrow{
transform:rotate(90deg);
text-align:center}
.project-card.uniform{
height:auto;
min-height:0}
.project-card.uniform h3{
white-space:normal}
.calendar-wrap,.feature{
grid-template-columns:1fr}
.page-hero{
padding:44px 0}
}

/* ===== V8 HARD FIX: exact one-line headings + professional timeline sections ===== */
@media (min-width:901px){

  .topbar .brand.logo-only{
width:176px !important;
 flex:0 0 176px !important;
 min-width:176px !important;
 overflow:visible !important;
}

  .topbar .brand.logo-only .brand-logo{
width:166px !important;
 max-height:82px !important;
 object-fit:contain !important;
 object-position:center !important;
 padding:7px 0 !important;
}

  .hero-card{
max-width:1280px !important;
 width:100% !important;
}

  .home-title{
display:block !important;
 width:100% !important;
 line-height:.88 !important;
 letter-spacing:-.045em !important;
 margin:16px 0 18px !important;
 white-space:normal !important;
 text-wrap:normal !important;
}

  .home-title .top{
display:block !important;
 white-space:nowrap !important;
 font-size:clamp(72px,6.8vw,112px) !important;
 line-height:.88 !important;
 width:max-content !important;
 max-width:none !important;
}

  .home-title .bottom{
display:block !important;
 white-space:nowrap !important;
 font-size:clamp(58px,5.15vw,86px) !important;
 line-height:.92 !important;
 width:max-content !important;
 max-width:none !important;
 margin-top:8px !important;
}

  .home-title .year{
display:inline !important;
 white-space:nowrap !important;
 margin-left:.08em !important;
 color:#f1d09b !important;
}

  .hero-subtitle,.hero-card > p.hero-subtitle{
display:block !important;
 white-space:nowrap !important;
 max-width:none !important;
 width:max-content !important;
 font-size:clamp(17px,1.42vw,22px) !important;
 line-height:1.22 !important;
}

  .page-hero h1.one-line-title,.page-hero h1,.one-line-title{
white-space:nowrap !important;
 overflow:visible !important;
 text-wrap:normal !important;
 font-size:clamp(31px,3.05vw,52px) !important;
 line-height:1.02 !important;
 letter-spacing:-.025em !important;
 max-width:none !important;
 width:max-content !important;
}

  .page-hero .lead.one-line-subtitle,.one-line-subtitle{
white-space:nowrap !important;
 overflow:visible !important;
 max-width:none !important;
 width:max-content !important;
 font-size:clamp(14px,1.18vw,18px) !important;
 line-height:1.25 !important;
}

  .section h2.one-line-heading,.one-line-heading{
white-space:nowrap !important;
 font-size:clamp(27px,3.0vw,45px) !important;
 line-height:1.08 !important;
 max-width:none !important;
 width:max-content !important;
}

  .menu{
flex-wrap:nowrap !important;
 gap:9px !important;
}

  .menu a{
white-space:nowrap !important;
 font-size:13px !important;
}

}

@media (max-width:900px){

  .home-title .top,.home-title .bottom{
display:block !important;
}

  .home-title .year{
display:inline !important;
}

}

.pro-grid{
display:grid;
grid-template-columns:repeat(3,minmax(0,1fr));
gap:22px;
align-items:stretch}
.pro-card{
height:332px;
display:flex;
flex-direction:column;
justify-content:space-between;
padding:22px;
text-decoration:none}
.pro-card h3{
font-size:20px;
line-height:1.12;
margin:0 0 10px}
.pro-card p{
font-size:15px;
line-height:1.38;
margin:0;
color:var(--muted)}
.pro-card .mini{
display:flex;
flex-wrap:wrap;
gap:7px;
margin-top:14px}
.pro-card .mini span{
border:1px solid var(--line);
border-radius:999px;
padding:5px 8px;
background:#fffaf2;
font-size:11px;
font-weight:900;
color:#5c523f}
.pro-card:hover{
transform:translateY(-3px);
transition:.18s;
box-shadow:var(--shadow)}

.timeline-pro{
display:grid;
gap:22px}
.phase-block{
display:grid;
grid-template-columns:190px 1fr;
gap:22px;
background:#fff;
border:1px solid var(--line);
border-radius:24px;
padding:22px;
box-shadow:0 10px 35px rgba(45,34,22,.06)}
.phase-date{
background:var(--charcoal);
color:#fff;
border-radius:18px;
padding:18px;
display:flex;
flex-direction:column;
justify-content:center}
.phase-date b{
font-family:Georgia,serif;
font-size:26px;
line-height:1}
.phase-date span{
font-size:13px;
color:#f0d39d;
font-weight:900;
margin-top:8px;
text-transform:uppercase;
letter-spacing:.06em}
.phase-content h2{
margin:0 0 10px;
font-size:30px}
.phase-grid{
display:grid;
grid-template-columns:1.1fr .9fr .9fr;
gap:14px;
margin-top:14px}
.phase-card{
background:#fffaf3;
border:1px solid var(--line);
border-radius:16px;
padding:14px}
.phase-card b{
display:block;
color:var(--wine);
margin-bottom:6px}
.phase-card ul{
margin:0;
padding-left:18px}
.phase-card li{
margin:4px 0}
.money-row{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:14px;
margin-top:22px}
.money-tile{
background:#fff;
border:1px solid var(--line);
border-radius:18px;
padding:16px}
.money-tile strong{
display:block;
font-size:25px;
color:var(--wine);
line-height:1.05}
.track-page-layout{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:26px;
align-items:start}
.action-table{
width:100%;
border-collapse:collapse;
background:#fff;
border:1px solid var(--line);
border-radius:18px;
overflow:hidden}
.action-table th,.action-table td{
padding:13px;
border-bottom:1px solid var(--line);
text-align:left;
vertical-align:top}
.action-table th{
background:#f3e7d5;
color:#40372d}
.action-table tr:last-child td{
border-bottom:0}
.info-diagram{
background:#fff;
border:1px solid var(--line);
border-radius:24px;
padding:20px;
box-shadow:0 10px 35px rgba(45,34,22,.06)}
.stack-bars{
display:grid;
gap:11px}
.stack-bar{
display:grid;
grid-template-columns:120px 1fr;
gap:10px;
align-items:center}
.bar-track{
height:17px;
background:#eee2d1;
border-radius:999px;
overflow:hidden}
.bar-fill{
height:100%;
background:linear-gradient(90deg,var(--wine),var(--gold));
border-radius:999px}
.milestone-list{
display:grid;
gap:10px}
.milestone-list li{
background:#fffaf3;
border:1px solid var(--line);
border-radius:14px;
padding:12px;
margin:0;
list-style:none}
.milestone-list b{
color:var(--wine)}

@media(max-width:1000px){
.pro-grid,.phase-grid,.money-row,.track-page-layout{
grid-template-columns:1fr}
.pro-card{
height:auto}
.phase-block{
grid-template-columns:1fr}
.page-hero h1.one-line-title,.page-hero h1,.one-line-title,.page-hero .lead.one-line-subtitle,.one-line-subtitle,.hero-subtitle,.hero-card > p.hero-subtitle,.section h2.one-line-heading,.one-line-heading{
white-space:normal !important;
width:auto !important}
.home-title .top,.home-title .bottom{
width:auto !important}
.stack-bar{
grid-template-columns:1fr}
}

/* ===== V9 targeted fixes requested by Rob Jones: exact header/title wrapping, project cards, timeline, project briefs ===== */
.topbar .brand.logo-only{
font-size:0 !important;
 line-height:0 !important;
 text-indent:0 !important;
 color:transparent !important;
 min-width:0 !important;
}

.topbar .brand.logo-only::before,.topbar .brand.logo-only::after{
content:none !important;
 display:none !important;
}

.topbar .brand.logo-only .brand-logo{
display:block !important;
}

@media (min-width:1001px){

  .wrap{
width:min(1320px,calc(100% - 44px));
}

  .nav{
gap:14px;
}

  .topbar .brand.logo-only{
width:154px !important;
 flex:0 0 154px !important;
 min-width:154px !important;
}

  .topbar .brand.logo-only .brand-logo{
width:148px !important;
 max-height:80px !important;
}

  .menu{
gap:8px !important;
 flex-wrap:nowrap !important;
}

  .menu a{
font-size:12.6px !important;
 white-space:nowrap !important;
}

  .home-title{
display:flex !important;
 flex-direction:column !important;
 align-items:flex-start !important;
 gap:8px !important;
 white-space:normal !important;
}

  .home-title .top,.home-title .bottom{
display:block !important;
 white-space:nowrap !important;
 width:auto !important;
 max-width:none !important;
}

  .home-title .top{
font-size:clamp(70px,6.1vw,106px) !important;
}

  .home-title .bottom{
font-size:clamp(58px,4.95vw,84px) !important;
}

  .hero-subtitle{
white-space:nowrap !important;
 width:auto !important;
 max-width:none !important;
 font-size:clamp(16px,1.18vw,20px) !important;
}

  .page-hero h1.one-line-title,.one-line-title{
white-space:nowrap !important;
 width:auto !important;
 max-width:none !important;
 font-size:clamp(30px,2.65vw,48px) !important;
}

  .page-hero .lead.one-line-subtitle,.one-line-subtitle{
white-space:nowrap !important;
 width:auto !important;
 max-width:none !important;
 font-size:clamp(14px,1.05vw,17px) !important;
}

  .one-line-heading{
white-space:nowrap !important;
 width:auto !important;
 max-width:none !important;
 font-size:clamp(25px,2.2vw,40px) !important;
}

  .pro-grid{
grid-template-columns:repeat(3,minmax(0,1fr)) !important;
}

  .pro-card{
height:286px !important;
 min-height:286px !important;
}

}

@media (min-width:901px) and (max-width:1180px){

  .menu a{
font-size:11.5px !important;
}

  .menu{
gap:6px !important;
}

  .topbar .brand.logo-only{
width:130px !important;
 flex-basis:130px !important;
 min-width:130px !important;
}

  .topbar .brand.logo-only .brand-logo{
width:124px !important;
}

}

.pro-grid{
display:grid;
grid-template-columns:repeat(3,minmax(0,1fr));
gap:22px;
align-items:stretch;
}

.pro-card{
display:flex;
flex-direction:column;
justify-content:space-between;
text-decoration:none;
overflow:hidden;
}

.pro-card h3{
font-size:20px;
line-height:1.12;
margin:0 0 10px;
}

.pro-card p{
font-size:15px;
line-height:1.38;
}

.phase-block{
align-items:stretch;
}

.phase-date b{
white-space:nowrap;
}

.phase-content h2{
line-height:1.08;
}

.action-table th{
width:180px;
}

.action-table td,.action-table th{
line-height:1.45;
}

.milestone-list{
padding-left:0;
}

.milestone-list li{
list-style:none;
}

@media(max-width:1000px){
.wrap{
width:min(var(--max),calc(100% - 34px));
}
.pro-grid{
grid-template-columns:1fr !important}
.pro-card{
height:auto !important;
min-height:0 !important}
.action-table th{
width:auto}
.home-title{
display:block !important}
.hero-subtitle,.page-hero h1.one-line-title,.one-line-title,.page-hero .lead.one-line-subtitle,.one-line-subtitle,.one-line-heading{
white-space:normal !important;
width:auto !important}
.track-page-layout,.phase-grid,.money-row{
grid-template-columns:1fr !important}
}

/* ===== V10 emergency text-wrap fix: public timeline removed;
 desktop headings/subheads locked ===== */
@media (min-width: 760px){

  .wrap{
width:min(1480px, calc(100% - 36px)) !important;
 max-width:1480px !important;
}

  .hero-card{
max-width:1480px !important;
 width:100% !important;
}

  .home-title{
display:block !important;
 margin:16px 0 16px !important;
 line-height:.88 !important;
 white-space:normal !important;
 text-wrap:normal !important;
 overflow:visible !important;
 max-width:none !important;
}

  .home-title .top{
display:block !important;
 white-space:nowrap !important;
 width:max-content !important;
 max-width:none !important;
 font-size:clamp(48px,6.0vw,104px) !important;
 line-height:.88 !important;
 letter-spacing:-.04em !important;
}

  .home-title .bottom{
display:block !important;
 white-space:nowrap !important;
 width:max-content !important;
 max-width:none !important;
 font-size:clamp(42px,4.75vw,82px) !important;
 line-height:.92 !important;
 letter-spacing:-.035em !important;
 margin-top:8px !important;
}

  .home-title .year{
display:inline !important;
 white-space:nowrap !important;
}

  .hero-subtitle,.hero-card > p.hero-subtitle{
display:block !important;
 white-space:nowrap !important;
 text-wrap:normal !important;
 overflow:visible !important;
 max-width:none !important;
 width:max-content !important;
 font-size:clamp(13px,1.08vw,19px) !important;
 line-height:1.18 !important;
 letter-spacing:-.01em !important;
}

  .page-hero h1,.page-hero h1.one-line-title,.one-line-title{
white-space:nowrap !important;
 text-wrap:normal !important;
 overflow:visible !important;
 max-width:none !important;
 width:max-content !important;
 font-size:clamp(25px,2.45vw,45px) !important;
 line-height:1.02 !important;
 letter-spacing:-.035em !important;
}

  .page-hero .lead,.page-hero .lead.one-line-subtitle,.one-line-subtitle{
white-space:nowrap !important;
 text-wrap:normal !important;
 overflow:visible !important;
 max-width:none !important;
 width:max-content !important;
 font-size:clamp(12px,0.98vw,16px) !important;
 line-height:1.22 !important;
 letter-spacing:-.012em !important;
}

  .section h2,.section h2.one-line-heading,.one-line-heading{
white-space:nowrap !important;
 text-wrap:normal !important;
 overflow:visible !important;
 max-width:none !important;
 width:max-content !important;
 font-size:clamp(24px,2.25vw,40px) !important;
 line-height:1.04 !important;
 letter-spacing:-.025em !important;
}

  .lead.section-summary,.section-summary{
white-space:nowrap !important;
 text-wrap:normal !important;
 overflow:visible !important;
 max-width:none !important;
 width:max-content !important;
 font-size:clamp(13px,1.02vw,17px) !important;
 line-height:1.24 !important;
}

  h3.no-wrap-hard,.project-card h3,.pro-card h3,.card h3{
white-space:nowrap !important;
 text-wrap:normal !important;
 overflow:visible !important;
 font-size:clamp(17px,1.35vw,21px) !important;
 line-height:1.08 !important;
 letter-spacing:-.018em !important;
}

  .nav{
gap:12px !important;
}

  .menu{
flex-wrap:nowrap !important;
 gap:8px !important;
}

  .menu a{
white-space:nowrap !important;
 font-size:12.2px !important;
}

  .topbar .brand.logo-only{
width:140px !important;
 flex:0 0 140px !important;
 min-width:140px !important;
}

  .topbar .brand.logo-only .brand-logo{
width:136px !important;
 max-height:78px !important;
}

}

@media (min-width:760px) and (max-width:1050px){

  .wrap{
width:min(1560px, calc(100% - 24px)) !important;
}

  .hero-subtitle{
font-size:13px !important;
}

  .page-hero h1,.one-line-title{
font-size:24px !important;
}

  .page-hero .lead,.one-line-subtitle,.lead.section-summary{
font-size:12px !important;
}

  .section h2,.one-line-heading{
font-size:23px !important;
}

  h3.no-wrap-hard,.project-card h3,.pro-card h3,.card h3{
font-size:16px !important;
}

  .menu{
gap:5px !important;
}

  .menu a{
font-size:10.7px !important;
}

  .topbar .brand.logo-only{
width:112px !important;
 flex-basis:112px !important;
 min-width:112px !important;
}

  .topbar .brand.logo-only .brand-logo{
width:108px !important;
}

}

@media (max-width:759px){

  .home-title .top,.home-title .bottom{
display:block !important;
}

}

/* ===== V11 professional reset: restore boxes, fix exact home title, simplify plan/get involved ===== */
@media (min-width: 900px){

  .wrap{
width:min(1240px, calc(100% - 48px)) !important;
 max-width:1240px !important;
}

  .topbar .brand.logo-only{
width:142px !important;
 flex:0 0 142px !important;
 min-width:142px !important;
 font-size:0 !important;
 color:transparent !important;
 text-decoration:none !important;
}

  .topbar .brand.logo-only .brand-logo{
display:block !important;
 width:138px !important;
 max-height:78px !important;
 object-fit:contain !important;
}

  .menu{
gap:12px !important;
 flex-wrap:nowrap !important;
}

  .menu a{
font-size:13px !important;
 white-space:nowrap !important;
}

  .hero-card{
width:100% !important;
 max-width:1120px !important;
}

  .home-title.home-title-fixed{
display:flex !important;
 flex-direction:column !important;
 align-items:flex-start !important;
 gap:10px !important;
 margin:22px 0 18px !important;
 font-family:Georgia,serif !important;
 line-height:.88 !important;
 white-space:normal !important;
 text-wrap:normal !important;
 width:100% !important;
 max-width:none !important;
}

  .home-title-fixed .home-line{
display:block !important;
 white-space:nowrap !important;
 width:max-content !important;
 max-width:none !important;
 line-height:.88 !important;
 letter-spacing:-.045em !important;
}

  .home-title-fixed .home-line-1{
font-size:clamp(58px,7vw,104px) !important;
}

  .home-title-fixed .home-line-2{
font-size:clamp(52px,5.6vw,86px) !important;
}

  .hero-subtitle.one-line-subtitle{
display:block !important;
 white-space:nowrap !important;
 width:max-content !important;
 max-width:none !important;
 font-size:clamp(16px,1.35vw,20px) !important;
 line-height:1.2 !important;
}

  .page-hero h1.one-line-title,.one-line-title{
white-space:nowrap !important;
 width:max-content !important;
 max-width:none !important;
 font-size:clamp(36px,3.7vw,58px) !important;
 line-height:1.02 !important;
 letter-spacing:-.035em !important;
}

  .page-hero .lead.one-line-subtitle,.one-line-subtitle{
white-space:nowrap !important;
 width:max-content !important;
 max-width:none !important;
 font-size:clamp(16px,1.4vw,19px) !important;
 line-height:1.24 !important;
}

  .one-line-heading{
white-space:nowrap !important;
 width:max-content !important;
 max-width:none !important;
 font-size:clamp(30px,3vw,46px) !important;
 line-height:1.03 !important;
}

  .project-card h3,.plan-grid h3,.clean-card-grid h3,.involve-layout h3{
white-space:nowrap !important;
 overflow:visible !important;
}

}

.hero h1.home-title-fixed{
text-wrap:normal !important;
}

.project-intro,.clean-intro{
margin-bottom:24px;
 max-width:980px;
}

.project-card-grid{
display:grid;
 grid-template-columns:repeat(3,minmax(0,1fr));
 gap:22px;
 align-items:stretch;
}

.project-card{
display:flex;
 flex-direction:column;
 justify-content:space-between;
 min-height:220px;
 padding:24px;
 text-decoration:none;
 border-radius:24px;
 background:var(--paper);
 border:1px solid var(--line);
 box-shadow:0 14px 36px rgba(45,34,22,.08);
 transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.project-card:hover{
transform:translateY(-4px);
 box-shadow:var(--shadow);
 border-color:#caa45f;
}

.project-card h3{
margin:0 0 12px;
 font-size:21px;
 line-height:1.1;
 color:var(--charcoal);
}

.project-card p{
margin:0;
 color:var(--muted);
 font-size:15px;
 line-height:1.42;
}

.project-meta{
display:flex;
 justify-content:space-between;
 gap:12px;
 margin-top:22px;
 padding-top:14px;
 border-top:1px solid var(--line);
 font-size:12px;
 font-weight:900;
 text-transform:uppercase;
 letter-spacing:.04em;
 color:var(--olive);
}

.plan-board{
display:grid;
 grid-template-columns:1.45fr .75fr;
 gap:24px;
 align-items:stretch;
 margin-bottom:24px;
}

.plan-lead-card{
background:linear-gradient(135deg,#fffdf8,#f8eddb) !important;
}

.plan-summary-card{
display:flex;
 flex-direction:column;
 justify-content:center;
}

.clean-card-grid{
display:grid;
 grid-template-columns:repeat(3,minmax(0,1fr));
 gap:18px;
 align-items:stretch;
}

.clean-card-grid .card{
height:100%;
}

.clean-card-grid .card h3{
margin:0 0 8px;
 font-size:20px;
 line-height:1.1;
}

.clean-card-grid .card p{
font-size:15px;
 line-height:1.42;
}

.next-strip{
margin-top:24px;
 background:#1f1d1b;
 color:#fff;
 border-radius:18px;
 padding:18px 20px;
 font-size:16px;
}

.next-strip b{
color:#f0d39d;
}

.involve-layout{
display:grid;
 grid-template-columns:1.2fr .8fr;
 gap:26px;
 align-items:start;
}

.involve-copy .clean-card-grid{
margin-top:20px;
}

.clean-card-grid.three{
grid-template-columns:repeat(3,minmax(0,1fr));
}

.clean-form{
box-shadow:var(--shadow);
}

.clean-form textarea{
min-height:150px;
}

@media(max-width:899px){

  .home-title-fixed .home-line{
display:block !important;
}

  .project-card-grid,.plan-board,.clean-card-grid,.clean-card-grid.three,.involve-layout{
grid-template-columns:1fr !important;
}

  .project-card{
min-height:0;
}

  .page-hero h1.one-line-title,.one-line-title,.page-hero .lead.one-line-subtitle,.one-line-subtitle,.one-line-heading,.hero-subtitle.one-line-subtitle{
white-space:normal !important;
 width:auto !important;
 max-width:100% !important;
}

}

/* FINAL HOMEPAGE HERO FIX - exact two-line desktop title and one-line subtitle */
@media (min-width:901px){

  .hero-card{
max-width:1360px !important;
 overflow:visible !important;
}

  .hard-home-title{
display:block !important;
 white-space:normal !important;
 max-width:none !important;
 overflow:visible !important;
}

  .hard-home-title .home-line-1{
display:block !important;
 white-space:nowrap !important;
 width:max-content !important;
 max-width:none !important;
}

  .hard-home-title .home-line-2{
display:block !important;
 white-space:nowrap !important;
 width:max-content !important;
 max-width:none !important;
}

  .hero-subtitle.one-line-subtitle{
display:block !important;
 white-space:nowrap !important;
 width:max-content !important;
 max-width:none !important;
 overflow:visible !important;
}

}

@media (max-width:900px){

  .hard-home-title .home-line-1,.hard-home-title .home-line-2{
display:block !important;
 white-space:normal !important;
 width:auto !important;
}

  .hero-subtitle.one-line-subtitle{
white-space:normal !important;
 width:auto !important;
 max-width:100% !important;
}

}

/* ===== V13 precise hero/title correction ===== */
@media (min-width: 901px){

  .hero-card{
max-width:1440px !important;
 width:100% !important;
 padding-top:44px !important;
}

  .hero-card .kicker{
display:none !important;
}

  .balanced-home-title{
display:block !important;
 white-space:normal !important;
 width:max-content !important;
 max-width:none !important;
 overflow:visible !important;
 margin-top:0 !important;
}

  .balanced-home-title .home-line{
display:block !important;
 white-space:nowrap !important;
 width:max-content !important;
 max-width:none !important;
 overflow:visible !important;
}

  .balanced-home-title .home-line-1{
font-size:clamp(54px,6.1vw,92px) !important;
 line-height:.88 !important;
 letter-spacing:-.045em !important;
}

  .balanced-home-title .home-year{
font-size:.78em !important;
 letter-spacing:-.035em !important;
}

  .balanced-home-title .home-line-2{
font-size:clamp(64px,7.2vw,108px) !important;
 line-height:.88 !important;
 letter-spacing:-.05em !important;
 margin-top:8px !important;
}

  .hero-subtitle.one-line-subtitle{
display:block !important;
 white-space:nowrap !important;
 width:max-content !important;
 max-width:none !important;
 overflow:visible !important;
 font-size:clamp(15px,1.22vw,20px) !important;
 line-height:1.18 !important;
 letter-spacing:-.012em !important;
}

  .notice{
font-size:14px !important;
}

  .notice b{
display:none !important;
}

  .page-hero h1.plan-title-fixed{
white-space:nowrap !important;
 width:max-content !important;
 max-width:none !important;
 overflow:visible !important;
 font-size:clamp(36px,3.3vw,54px) !important;
 line-height:1.02 !important;
 letter-spacing:-.035em !important;
}

}

@media (max-width:900px){

  .balanced-home-title .home-line-1,.balanced-home-title .home-line-2{
white-space:nowrap !important;
 width:max-content !important;
 max-width:100% !important;
}

  .balanced-home-title .home-line-1{
font-size:clamp(40px,12vw,64px) !important;
}

  .balanced-home-title .home-line-2{
font-size:clamp(46px,13vw,72px) !important;
}

  .hero-subtitle.one-line-subtitle{
white-space:normal !important;
 width:auto !important;
 max-width:100% !important;
}

}

/* v14 targeted simplification: removed tracks + one-line desktop titles */
@media (min-width: 900px){

  .projects-title-single{
font-size:clamp(44px,4.4vw,76px)!important;
line-height:1.02!important;
letter-spacing:-.045em!important;
white-space:nowrap!important;
width:max-content!important;
max-width:none!important;
margin:0 0 14px!important;
}

  .projects-subtitle-single,.track-subtitle-single{
white-space:nowrap!important;
width:max-content!important;
max-width:none!important;
font-size:clamp(20px,1.55vw,30px)!important;
line-height:1.18!important;
}

  .track-title-single{
font-size:clamp(44px,4.2vw,72px)!important;
line-height:1.03!important;
letter-spacing:-.035em!important;
white-space:nowrap!important;
width:max-content!important;
max-width:none!important;
}

}

.compact-project-hero{
padding:70px 0 42px!important;
}

.simplified-tracks{
grid-template-columns:repeat(3,minmax(0,1fr))!important;
gap:22px!important;
align-items:stretch!important;
}

.simple-track-card{
min-height:210px!important;
display:flex!important;
flex-direction:column!important;
justify-content:space-between!important;
text-decoration:none!important;
padding:0!important;
overflow:hidden!important;
border-radius:24px!important;
}

.simple-track-card .project-card-body{
padding:26px 26px 16px!important;
}

.simple-track-card h3{
font-size:clamp(24px,1.6vw,32px)!important;
line-height:1.05!important;
letter-spacing:-.025em!important;
margin:0 0 14px!important;
white-space:normal!important;
}

.simple-track-card p{
font-size:17px!important;
line-height:1.42!important;
margin:0!important;
color:var(--muted)!important;
}

.simple-track-card .project-meta{
padding:16px 26px!important;
border-top:1px solid rgba(255,255,255,.13)!important;
display:flex!important;
justify-content:flex-start!important;
}

.simple-track-card .project-meta span{
font-size:13px!important;
letter-spacing:.06em!important;
text-transform:uppercase!important;
}

.track-simple-layout{
display:grid;
grid-template-columns:minmax(0,1.65fr) minmax(280px,.75fr);
gap:24px;
align-items:start;
}

.track-brief-card h2,.track-facts h2{
font-size:32px!important;
line-height:1.05!important;
margin-top:0!important;
}

.track-brief-card h3{
font-size:22px!important;
margin:28px 0 8px!important;
}

.track-brief-card p,.track-brief-card li,.track-facts p{
font-size:18px!important;
line-height:1.5!important;
}

.track-brief-card ul{
padding-left:22px!important;
margin-bottom:0!important;
}

.card-actions.stacked{
display:flex;
flex-direction:column;
gap:10px;
margin-top:22px;
}

.card-actions.stacked .btn{
text-align:center;
}

@media (max-width: 899px){

  .simplified-tracks{
grid-template-columns:1fr!important;
}

  .track-simple-layout{
grid-template-columns:1fr;
}

  .projects-title-single,.track-title-single{
font-size:clamp(40px,12vw,64px)!important;
line-height:1.02!important;
}

}

/* v14 final render corrections */
@media (min-width:901px){

  .balanced-home-title .home-line-1{
font-size:clamp(68px,7.35vw,110px)!important;
 white-space:nowrap!important;
 width:max-content!important;
 max-width:none!important;
}

  .balanced-home-title .home-line-2{
font-size:clamp(66px,6.65vw,101px)!important;
 white-space:nowrap!important;
 width:max-content!important;
 max-width:none!important;
}

  .balanced-home-title .home-word,.balanced-home-title .home-year{
display:inline!important;
 white-space:nowrap!important;
}

  .balanced-home-title .home-year{
font-size:.78em!important;
}

  .page-hero .lead,.projects-subtitle-single,.track-subtitle-single{
color:rgba(247,241,231,.86)!important;
}

  .plan-lead-card h2{
white-space:normal!important;
 width:auto!important;
 max-width:100%!important;
 overflow:visible!important;
 font-size:clamp(32px,2.2vw,42px)!important;
}

}

/* v15 targeted cleanup */
.doc-actions{
display:flex;
gap:10px;
align-items:center;
justify-content:flex-end;
flex-wrap:nowrap;
}

.doc-btn{
min-width:96px;
justify-content:center;
text-align:center;
display:inline-flex;
gap:8px;
align-items:center;
white-space:nowrap;
}

.doc-btn .flag{
font-size:1.15em;
line-height:1;
}

@media (max-width:760px){
.doc-actions{
justify-content:flex-start}
.doc-btn{
min-width:88px}
}

/* v16 targeted cleanup */
.footer{
display:none!important;
}

.doc-row{
display:grid;
grid-template-columns:54px minmax(0,1fr) auto;
gap:18px;
align-items:center;
}

.doc-actions{
display:flex;
gap:10px;
align-items:center;
justify-content:flex-end;
min-width:260px;
}

.doc-btn{
width:124px;
min-width:124px;
display:inline-flex!important;
align-items:center;
justify-content:center;
gap:8px;
text-align:center;
white-space:nowrap;
}

.doc-btn .flag{
font-size:1.15em;
line-height:1;
}

.public-label,.status-note{
display:none!important;
}

.single-line-plan-summary{
white-space:nowrap!important;
max-width:none!important;
width:max-content!important;
}

.plan-lead-card .card-actions,.card-actions:empty,.btns:empty{
display:none!important;
}

@media (min-width: 900px){

  .plan-lead-card .lead.single-line-plan-summary{
font-size:clamp(17px,1.45vw,24px)!important;
}

  .page-hero .one-line-subtitle,.page-hero .lead{
white-space:nowrap!important;
width:max-content;
max-width:none;
}

}

@media (max-width: 760px){

  .doc-row{
grid-template-columns:1fr;
}

  .doc-actions{
min-width:0;
justify-content:flex-start;
}

  .doc-btn{
width:118px;
min-width:118px;
}

}

/* v17 launch cleanup */
@media (min-width: 901px){

  .home-statement{
font-size:clamp(28px,2.55vw,42px)!important;
line-height:1.12!important;
white-space:nowrap!important;
width:max-content!important;
max-width:none!important;
letter-spacing:-.035em!important;
}

  .pillars.grid.cols-4{
grid-template-columns:repeat(3,minmax(0,1fr))!important;
}

  .pillars .card{
min-height:170px!important;
display:flex!important;
flex-direction:column!important;
justify-content:center!important;
}

  .pillars .card h3{
font-size:clamp(28px,2.2vw,40px)!important;
line-height:1.05!important;
}

  .pillars .card p{
font-size:clamp(18px,1.55vw,26px)!important;
line-height:1.35!important;
}

  .split-band h2{
font-size:clamp(34px,3.1vw,52px)!important;
white-space:nowrap!important;
width:max-content!important;
max-width:none!important;
}

  .split-band .lead{
font-size:clamp(16px,1.35vw,22px)!important;
white-space:nowrap!important;
width:max-content!important;
max-width:none!important;
}

  .single-plan-board{
display:block!important;
}

  .single-plan-board .plan-lead-card{
width:100%!important;
}

  .fit-core-text{
font-size:clamp(16px,1.25vw,20px)!important;
line-height:1.25!important;
white-space:nowrap!important;
width:max-content!important;
max-width:none!important;
}

}

.plan-summary-card{
display:none!important;
}

.event-card h3,.news-card h3{
line-height:1.15;
margin:7px 0 8px;
}

.day{
position:relative;
}

.day.has{
background:#fff8ee;
}

.doc-actions .doc-btn{
width:132px!important;
min-width:132px!important;
height:48px!important;
}

@media (max-width:900px){
.home-statement,.split-band h2,.split-band .lead,.fit-core-text{
white-space:normal!important;
width:auto!important;
max-width:100%!important;
}
}

/* v18 homepage text correction */
.small-home-statement{
font-size:clamp(24px,2.6vw,38px)!important;
line-height:1.08!important;
letter-spacing:-.035em!important;
}

@media (min-width:900px){
.small-home-statement{
white-space:nowrap!important;
max-width:none!important;
}
.feature .lead:empty{
display:none!important;
}
}

/* v19 targeted adjustments */
.small-home-statement{
font-weight:800 !important;
}

.why-2035{
max-width:1180px;
}

.why-2035 p{
font-size:clamp(16px,1.05vw,19px);
line-height:1.55;
max-width:1120px;
}

.plan-lead-card .fit-core-text{
font-weight:700;
}

.doc-actions{
display:flex;
gap:10px;
align-items:center;
}

.doc-btn{
min-width:112px;
justify-content:center;
}

@media (min-width:900px){
.small-home-statement{
white-space:nowrap !important;
}
.plan-lead-card .fit-core-text{
white-space:nowrap !important;
}
.why-2035 h2{
white-space:nowrap !important;
}
}

@media (max-width:899px){
.small-home-statement,.plan-lead-card .fit-core-text,.why-2035 h2{
white-space:normal !important;
width:auto !important;
}
}

/* v20 targeted readability fixes */
@media (min-width: 901px){

  .home-statement.small-home-statement,
  h2.home-statement.small-home-statement{

    display:block !important;

    width:100% !important;

    max-width:100% !important;

    white-space:nowrap !important;

    overflow:visible !important;

    font-size:clamp(15px,1.25vw,20px) !important;

    line-height:1.16 !important;

    letter-spacing:-.018em !important;

  }

  .doc-row{

    display:grid !important;

    grid-template-columns:minmax(0,1fr) auto !important;

    gap:18px !important;

    align-items:center !important;

    min-height:78px !important;

  }

  .doc-main{
min-width:0 !important;
}

  .doc-main b, .doc-title-one-line{

    display:block !important;

    white-space:nowrap !important;

    overflow:hidden !important;

    text-overflow:ellipsis !important;

    font-size:clamp(15px,1.1vw,18px) !important;

    line-height:1.2 !important;

  }

  .doc-main .muted{
display:none !important;
}

  .doc-actions{
min-width:276px !important;
justify-content:flex-end !important;
}

  .doc-actions .doc-btn{
width:132px !important;
min-width:132px !important;
height:48px !important;
}

}

@media (max-width: 900px){

  .home-statement.small-home-statement{
font-size:clamp(22px,6vw,34px) !important;
white-space:normal !important;
}

  .doc-row{
grid-template-columns:1fr !important;
}

  .doc-main .muted{
display:none !important;
}

}

/* v21 event calendar fit fixes */
html, body{
max-width:100%;
overflow-x:hidden;
}

.calendar-wrap{
grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr)!important;
align-items:start;
}

.calendar,.calendar-wrap>aside,.cal-grid,.event-card,.news-card{
min-width:0!important;
max-width:100%!important;
overflow:hidden!important;
}

.cal-head h2{
font-size:clamp(24px,2.2vw,34px)!important;
line-height:1.05!important;
white-space:nowrap!important;
}

.cal-head .btn{
width:44px!important;
height:44px!important;
min-width:44px!important;
padding:0!important;
justify-content:center!important;
}

.cal-grid{
gap:7px!important;
}

.day,.dow{
min-width:0!important;
}

.day{
min-height:72px!important;
padding:8px 7px!important;
}

.day b{
font-size:15px!important;
line-height:1!important;
}

.day .count{
font-size:10.5px!important;
line-height:1.05!important;
margin-top:8px!important;
white-space:nowrap!important;
letter-spacing:-.02em!important;
}

.calendar-wrap>aside.card{
display:block!important;
}

.calendar-wrap>aside .card.pad{
padding:18px!important;
}

.calendar-wrap>aside .card.pad h3{
white-space:normal!important;
overflow:visible!important;
font-size:clamp(20px,1.55vw,26px)!important;
line-height:1.08!important;
}

.event-card{
padding:16px 18px!important;
}

.event-card h3,.calendar-wrap .event-card h3,.card .event-card h3{
white-space:normal!important;
overflow-wrap:anywhere!important;
word-break:normal!important;
overflow:visible!important;
font-size:clamp(17px,1.25vw,22px)!important;
line-height:1.14!important;
letter-spacing:-.018em!important;
margin:7px 0 7px!important;
max-width:100%!important;
}

.event-card p,.event-card .muted,.event-card a{
overflow-wrap:anywhere!important;
word-break:normal!important;
max-width:100%!important;
}

.event-card p{
font-size:15px!important;
line-height:1.35!important;
margin:0 0 6px!important;
}

.event-card .muted{
font-size:14px!important;
line-height:1.35!important;
}

.event-card .tag{
font-size:10px!important;
line-height:1!important;
}

@media(max-width:1050px){
.calendar-wrap{
grid-template-columns:1fr!important}
.calendar-wrap>aside.card{
max-height:none!important}
.day{
min-height:64px!important}
.day .count{
font-size:10px!important}
}

/* v22 stronger calendar event text fit */
.calendar-wrap{
grid-template-columns:minmax(0,1.45fr) minmax(300px,.75fr)!important;
max-width:100%!important;
overflow:hidden!important;
}

.calendar-wrap>aside.card{
min-width:0!important;
max-width:100%!important;
overflow:hidden!important;
}

.calendar-wrap>aside.card .event-card{
min-width:0!important;
max-width:100%!important;
overflow:hidden!important;
padding:14px 16px!important;
}

.calendar-wrap>aside.card .event-card *{
min-width:0!important;
max-width:100%!important;
box-sizing:border-box!important;
}

.calendar-wrap>aside.card .event-card h3{
display:-webkit-box!important;
-webkit-line-clamp:3!important;
-webkit-box-orient:vertical!important;
white-space:normal!important;
overflow:hidden!important;
text-overflow:ellipsis!important;
overflow-wrap:anywhere!important;
word-break:break-word!important;
hyphens:auto!important;
font-size:clamp(15px,1.05vw,18px)!important;
line-height:1.12!important;
letter-spacing:-.02em!important;
margin:5px 0 6px!important;
}

.calendar-wrap>aside.card .event-card p,.calendar-wrap>aside.card .event-card .muted,.calendar-wrap>aside.card .event-card a{
white-space:normal!important;
overflow-wrap:anywhere!important;
word-break:break-word!important;
hyphens:auto!important;
font-size:13.5px!important;
line-height:1.28!important;
}

.calendar-wrap>aside.card .event-card .tag{
display:block!important;
font-size:9.5px!important;
line-height:1.05!important;
margin-bottom:4px!important;
letter-spacing:.06em!important;
}

@media(max-width:1180px){
.calendar-wrap{
grid-template-columns:1fr!important}
.calendar-wrap>aside.card .event-card h3{
-webkit-line-clamp:4!important;
font-size:17px!important}
}

/* v23 final header logo + calendar panel hard fit */
.topbar{
min-height:96px!important;
}

.topbar .nav{
height:96px!important;
min-height:96px!important;
align-items:center!important;
overflow:visible!important;
}

.topbar .brand.logo-only{
width:210px!important;
flex:0 0 210px!important;
min-width:210px!important;
height:96px!important;
display:flex!important;
align-items:center!important;
justify-content:flex-start!important;
overflow:visible!important;
}

.topbar .brand.logo-only .brand-logo{
width:198px!important;
max-width:198px!important;
max-height:92px!important;
height:auto!important;
object-fit:contain!important;
object-position:center!important;
padding:2px 0!important;
}

.topbar .menu{
align-items:center!important;
}

@media(max-width:1180px){

  .topbar .brand.logo-only{
width:174px!important;
flex-basis:174px!important;
min-width:174px!important;
}

  .topbar .brand.logo-only .brand-logo{
width:166px!important;
max-width:166px!important;
max-height:88px!important;
}

  .topbar .menu{
gap:7px!important;
font-size:12.5px!important;
}

}

@media(max-width:900px){

  .topbar,.topbar .nav{
height:78px!important;
min-height:78px!important;
}

  .topbar .brand.logo-only{
width:132px!important;
flex-basis:132px!important;
min-width:132px!important;
height:78px!important;
}

  .topbar .brand.logo-only .brand-logo{
width:126px!important;
max-width:126px!important;
max-height:74px!important;
}

  .menu{
top:78px!important;
}

}

/* Keep every event panel item inside the right column, including very long festival names. */
.calendar-wrap{
grid-template-columns:minmax(0,1.38fr) minmax(280px,.82fr)!important;
gap:22px!important;
overflow:visible!important;
}

.calendar-wrap > aside.card{
min-width:0!important;
max-width:100%!important;
overflow:hidden!important;
}

.calendar-wrap > aside.card #event-list{
min-width:0!important;
max-width:100%!important;
overflow:hidden!important;
}

.calendar-wrap > aside.card .event-card{
display:block!important;
width:100%!important;
min-width:0!important;
max-width:100%!important;
overflow:hidden!important;
padding:13px 16px!important;
}

.calendar-wrap > aside.card .event-card h3{

  display:block!important;

  width:100%!important;

  max-width:100%!important;

  min-width:0!important;

  white-space:normal!important;

  overflow:visible!important;

  text-overflow:clip!important;

  overflow-wrap:break-word!important;

  word-break:normal!important;

  hyphens:auto!important;

  font-size:14px!important;

  line-height:1.16!important;

  letter-spacing:-.012em!important;

  margin:4px 0 6px!important;

  font-weight:900!important;

}

.calendar-wrap > aside.card .event-card p,
.calendar-wrap > aside.card .event-card .muted,
.calendar-wrap > aside.card .event-card a{

  display:block!important;

  width:100%!important;

  max-width:100%!important;

  min-width:0!important;

  white-space:normal!important;

  overflow-wrap:break-word!important;

  word-break:normal!important;

  hyphens:auto!important;

  font-size:12.6px!important;

  line-height:1.28!important;

}

.calendar-wrap > aside.card .event-card .tag{
font-size:9px!important;
line-height:1.05!important;
letter-spacing:.055em!important;
}

@media(max-width:1180px){

  .calendar-wrap{
grid-template-columns:1fr!important;
}

  .calendar-wrap > aside.card .event-card h3{
font-size:15px!important;
line-height:1.18!important;
}

}

/* v24/v25 final fit corrections: larger cropped header logo + no overflow text */
.topbar{
min-height:104px!important;
}

.topbar .nav{
height:104px!important;
min-height:104px!important;
align-items:center!important;
overflow:visible!important;
}

.topbar .brand.logo-only{
width:250px!important;
flex:0 0 250px!important;
min-width:250px!important;
height:104px!important;
display:flex!important;
align-items:center!important;
justify-content:flex-start!important;
overflow:visible!important;
}

.topbar .brand.logo-only .brand-logo{
width:238px!important;
max-width:238px!important;
max-height:96px!important;
height:auto!important;
object-fit:contain!important;
object-position:center!important;
padding:0!important;
margin:0!important;
}

@media(max-width:1180px){

  .topbar .brand.logo-only{
width:220px!important;
flex-basis:220px!important;
min-width:220px!important;
}

  .topbar .brand.logo-only .brand-logo{
width:210px!important;
max-width:210px!important;
max-height:94px!important;
}

  .topbar .menu{
gap:6px!important;
font-size:12px!important;
}

}

@media(max-width:900px){

  .topbar,.topbar .nav{
height:82px!important;
min-height:82px!important;
}

  .topbar .brand.logo-only{
width:168px!important;
flex-basis:168px!important;
min-width:168px!important;
height:82px!important;
}

  .topbar .brand.logo-only .brand-logo{
width:158px!important;
max-width:158px!important;
max-height:78px!important;
}

  .menu{
top:82px!important;
}

}

.plan-core-fit-final{
white-space:nowrap!important;
display:block!important;
width:100%!important;
max-width:100%!important;
overflow:visible!important;
font-size:clamp(11px,0.86vw,14px)!important;
line-height:1.16!important;
letter-spacing:-.035em!important;
}

/* Calendar side panel: force long festival names to stay inside the card */
.calendar-wrap{
grid-template-columns:minmax(0,1.45fr) minmax(0,.75fr)!important;
gap:22px!important;
max-width:100%!important;
overflow:hidden!important;
}

.calendar-wrap > aside.card{
min-width:0!important;
max-width:100%!important;
overflow:hidden!important;
}

.calendar-wrap > aside.card #event-list{
min-width:0!important;
max-width:100%!important;
overflow:hidden!important;
}

.calendar-wrap > aside.card .event-card{
width:100%!important;
max-width:100%!important;
min-width:0!important;
overflow:hidden!important;
padding:12px 14px!important;
box-sizing:border-box!important;
}

.calendar-wrap > aside.card .event-card *{
box-sizing:border-box!important;
min-width:0!important;
max-width:100%!important;
}

.calendar-wrap > aside.card .event-card h3{
display:block!important;
width:100%!important;
max-width:100%!important;
white-space:normal!important;
overflow:hidden!important;
text-overflow:clip!important;
overflow-wrap:anywhere!important;
word-break:break-word!important;
hyphens:auto!important;
font-size:13px!important;
line-height:1.12!important;
letter-spacing:-.025em!important;
margin:4px 0 6px!important;
font-weight:900!important;
}

.calendar-wrap > aside.card .event-card p,.calendar-wrap > aside.card .event-card .muted,.calendar-wrap > aside.card .event-card a{
display:block!important;
width:100%!important;
max-width:100%!important;
white-space:normal!important;
overflow-wrap:anywhere!important;
word-break:break-word!important;
hyphens:auto!important;
font-size:12.4px!important;
line-height:1.25!important;
}

@media(max-width:1180px){
.calendar-wrap{
grid-template-columns:1fr!important}
.calendar-wrap > aside.card .event-card h3{
font-size:14px!important;
}
}

/* v25 hard final fixes - logo size, plan text, calendar event overflow */
html, body {
 max-width:100%;
 overflow-x:hidden !important;
 }

.topbar{
min-height:142px!important;
height:142px!important;
overflow:visible!important;
}

.topbar .nav{
height:142px!important;
min-height:142px!important;
align-items:center!important;
overflow:visible!important;
}

.topbar .brand.logo-only{
width:330px!important;
flex:0 0 330px!important;
min-width:330px!important;
height:142px!important;
display:flex!important;
align-items:center!important;
justify-content:flex-start!important;
overflow:visible!important;
}

.topbar .brand.logo-only .brand-logo{
display:block!important;
width:310px!important;
max-width:310px!important;
max-height:132px!important;
height:auto!important;
object-fit:contain!important;
object-position:center!important;
padding:0!important;
margin:0!important;
}

.topbar .menu{
margin-left:auto!important;
gap:8px!important;
flex-wrap:nowrap!important;
}

.topbar .menu a{
font-size:13px!important;
white-space:nowrap!important;
}

@media(max-width:1280px){

  .topbar .brand.logo-only{
width:285px!important;
flex-basis:285px!important;
min-width:285px!important;
}

  .topbar .brand.logo-only .brand-logo{
width:270px!important;
max-width:270px!important;
max-height:128px!important;
}

  .topbar .menu{
gap:6px!important;
}

  .topbar .menu a{
font-size:12px!important;
}

}

@media(max-width:900px){

  .topbar,.topbar .nav{
height:92px!important;
min-height:92px!important;
}

  .topbar .brand.logo-only{
width:190px!important;
flex-basis:190px!important;
min-width:190px!important;
height:92px!important;
}

  .topbar .brand.logo-only .brand-logo{
width:180px!important;
max-width:180px!important;
max-height:88px!important;
}

  .menu{
top:92px!important;
}

}

.plan-core-fit-final,.fit-core-text.single-line-plan-summary{
white-space:normal!important;
overflow:visible!important;
text-overflow:clip!important;
width:100%!important;
max-width:100%!important;
font-size:clamp(13px,1.05vw,16px)!important;
line-height:1.25!important;
letter-spacing:-.015em!important;
overflow-wrap:break-word!important;
word-break:normal!important;
}

.plan-lead-card{
min-width:0!important;
overflow:hidden!important;
}

.calendar-wrap{
grid-template-columns:minmax(0,1.42fr) minmax(300px,.72fr)!important;
gap:22px!important;
width:100%!important;
max-width:100%!important;
overflow:hidden!important;
}

.calendar-wrap > aside.card{
min-width:0!important;
max-width:100%!important;
overflow:hidden!important;
}

.calendar-wrap > aside.card #event-list{
min-width:0!important;
max-width:100%!important;
overflow:hidden!important;
}

.calendar-wrap > aside.card .event-card{
display:block!important;
width:100%!important;
min-width:0!important;
max-width:100%!important;
overflow:hidden!important;
padding:12px 14px!important;
box-sizing:border-box!important;
}

.calendar-wrap > aside.card .event-card *{
box-sizing:border-box!important;
min-width:0!important;
max-width:100%!important;
}

.calendar-wrap > aside.card .event-card h3,.event-card-title-fit{
display:block!important;
width:100%!important;
max-width:100%!important;
min-width:0!important;
white-space:normal!important;
overflow:hidden!important;
text-overflow:clip!important;
overflow-wrap:anywhere!important;
word-break:break-word!important;
hyphens:auto!important;
font-size:12px!important;
line-height:1.12!important;
letter-spacing:-.02em!important;
margin:4px 0 6px!important;
font-weight:900!important;
}

.calendar-wrap > aside.card .event-card p,.calendar-wrap > aside.card .event-card .muted,.calendar-wrap > aside.card .event-card a{
display:block!important;
width:100%!important;
max-width:100%!important;
min-width:0!important;
white-space:normal!important;
overflow:hidden!important;
overflow-wrap:anywhere!important;
word-break:break-word!important;
hyphens:auto!important;
font-size:12px!important;
line-height:1.24!important;
}

@media(max-width:1180px){
.calendar-wrap{
grid-template-columns:1fr!important}
.calendar-wrap > aside.card .event-card h3,.event-card-title-fit{
font-size:13px!important;
}
}

/* ===== V26 VERIFIED MOBILE/DESKTOP FIXES =====
   These rules are intentionally last so old emergency overrides cannot win. */
html, body {
 max-width:100%;
 overflow-x:hidden !important;
 }

.topbar{
overflow:visible !important;
}

.nav{
height:132px !important;
 min-height:132px !important;
 align-items:center !important;
}

.topbar .brand.logo-only{

  flex:0 0 380px !important;

  width:380px !important;

  min-width:380px !important;

  max-width:380px !important;

  height:132px !important;

  display:flex !important;

  align-items:center !important;

  justify-content:flex-start !important;

  overflow:visible !important;

}

.topbar .brand.logo-only .brand-logo,
.brand.logo-only img.brand-logo{

  display:block !important;

  width:360px !important;

  max-width:360px !important;

  height:auto !important;

  max-height:128px !important;

  object-fit:contain !important;

  object-position:left center !important;

  padding:0 !important;

  margin:0 !important;

}

.menu{
min-width:0 !important;
 flex-shrink:1 !important;
}

/* Plan core text must fit inside its card and never create horizontal scrolling */
.plan-lead-card{
min-width:0 !important;
 overflow:hidden !important;
}

.plan-core-heading{

  display:block !important;

  white-space:normal !important;

  max-width:100% !important;

  width:100% !important;

  overflow-wrap:normal !important;

  font-family:Georgia,serif !important;

  font-size:clamp(23px,2.25vw,36px) !important;

  line-height:1.06 !important;

  letter-spacing:-.035em !important;

  margin:8px 0 8px !important;

}

.plan-core-fit-final{

  display:block !important;

  white-space:normal !important;

  max-width:100% !important;

  width:100% !important;

  overflow:visible !important;

  overflow-wrap:break-word !important;

  word-break:normal !important;

  hyphens:auto !important;

  font-size:clamp(12px,.92vw,14px) !important;

  line-height:1.24 !important;

  letter-spacing:-.012em !important;

  margin:8px 0 0 !important;

  color:var(--muted) !important;

}

/* Calendar/event panel: no long event title is allowed to escape the box */
.calendar-wrap{
max-width:100% !important;
 min-width:0 !important;
 overflow:hidden !important;
 grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr) !important;
}

.calendar-wrap > *, .calendar, #event-list, .event-card{
min-width:0 !important;
 max-width:100% !important;
 overflow:hidden !important;
}

#event-list{
display:block !important;
}

.event-card{
box-sizing:border-box !important;
 padding:14px 16px !important;
}

.event-card *, .news-card *{

  max-width:100% !important;

  min-width:0 !important;

  white-space:normal !important;

  overflow-wrap:anywhere !important;

  word-break:break-word !important;

  hyphens:auto !important;

}

.event-card h3, .event-card-title-fit{

  display:block !important;

  font-size:clamp(13px,1vw,15px) !important;

  line-height:1.18 !important;

  margin:5px 0 7px !important;

  overflow:visible !important;

  text-overflow:clip !important;

}

.event-card p, .event-card .muted, .event-card a{

  font-size:13px !important;

  line-height:1.28 !important;

}

.cal-grid{
min-width:0 !important;
 max-width:100% !important;
}

.day .count{
font-size:10px !important;
 line-height:1.1 !important;
}

@media (max-width: 1050px){

  .nav{
height:116px !important;
 min-height:116px !important;
 gap:12px !important;
}

  .topbar .brand.logo-only{
flex-basis:300px !important;
 width:300px !important;
 min-width:300px !important;
 max-width:300px !important;
 height:116px !important;
}

  .topbar .brand.logo-only .brand-logo,.brand.logo-only img.brand-logo{
width:285px !important;
 max-width:285px !important;
 max-height:112px !important;
}

  .menu{
gap:7px !important;
 font-size:12px !important;
}

  .menu a{
font-size:11.5px !important;
}

  .lang a{
padding:6px 8px !important;
}

}

@media (max-width: 900px){

  .wrap{
width:calc(100% - 24px) !important;
 max-width:100% !important;
}

  .nav{
height:98px !important;
 min-height:98px !important;
}

  .topbar .brand.logo-only{
flex:0 0 220px !important;
 width:220px !important;
 min-width:220px !important;
 max-width:220px !important;
 height:98px !important;
}

  .topbar .brand.logo-only .brand-logo,.brand.logo-only img.brand-logo{
width:210px !important;
 max-width:210px !important;
 max-height:94px !important;
}

  .mobile-toggle{
display:block !important;
 margin-left:auto !important;
}

  .menu{
top:98px !important;
 max-width:100vw !important;
 overflow-wrap:anywhere !important;
}

  .home-title-fixed .home-line-1,.home-title-fixed .home-line-2,.hard-home-title .home-line-1,.hard-home-title .home-line-2{

    white-space:nowrap !important;

    max-width:100% !important;

    width:auto !important;

  }

  .home-title-fixed .home-line-1{
font-size:clamp(42px,12.5vw,58px) !important;
}

  .home-title-fixed .home-line-2{
font-size:clamp(44px,13vw,62px) !important;
}

  .hero-subtitle.one-line-subtitle{
white-space:normal !important;
 width:auto !important;
 max-width:100% !important;
}

  .small-home-statement,.home-statement{
white-space:normal !important;
 width:auto !important;
 max-width:100% !important;
 font-size:clamp(18px,5.5vw,26px) !important;
 line-height:1.15 !important;
}

  .calendar-wrap{
display:grid !important;
 grid-template-columns:1fr !important;
 gap:16px !important;
 overflow:visible !important;
}

  .calendar{
padding:12px !important;
}

  .cal-grid{
gap:6px !important;
}

  .day,.dow{
min-height:58px !important;
 padding:6px !important;
 border-radius:9px !important;
}

  .event-card h3,.event-card-title-fit{
font-size:14px !important;
 line-height:1.18 !important;
}

  .event-card p,.event-card .muted,.event-card a{
font-size:12.5px !important;
}

  .plan-board{
grid-template-columns:1fr !important;
}

  .plan-core-heading{
font-size:clamp(24px,7vw,34px) !important;
}

  .plan-core-fit-final{
font-size:14px !important;
 line-height:1.28 !important;
}

  .doc-row{
grid-template-columns:1fr !important;
 align-items:start !important;
}

  .doc-actions{
justify-content:flex-start !important;
 width:100% !important;
}

}

@media (max-width: 420px){

  .topbar .brand.logo-only{
flex-basis:185px !important;
 width:185px !important;
 min-width:185px !important;
 max-width:185px !important;
}

  .topbar .brand.logo-only .brand-logo,.brand.logo-only img.brand-logo{
width:180px !important;
 max-width:180px !important;
}

  .hero-card{
padding:26px 0 !important;
}

  .home-title-fixed .home-line-1{
font-size:clamp(36px,11vw,46px) !important;
}

  .home-title-fixed .home-line-2{
font-size:clamp(38px,12vw,50px) !important;
}

}

/* v27 mobile/desktop overflow hardening + food/wine directory */
html,body{
max-width:100%;
overflow-x:hidden}
.wrap{
max-width:var(--max)}

.brand.logo-only{
flex:0 0 auto}
.brand-logo,.brand img{
width:260px!important;
max-width:260px!important;
max-height:92px!important;
object-fit:contain!important}
.nav{
height:104px}
.menu{
flex-wrap:wrap;
justify-content:flex-end;
row-gap:8px}
.menu a{
white-space:nowrap}

.hero-card,.page-hero .wrap,.card,.doc-row,.calendar-shell,.event-panel,.event-card,.notice-card,.directory-card{
min-width:0;
max-width:100%}

h1,h2,h3,p,.lead,.hero p,.event-card h3,.event-card p,.doc-title-one-line{
overflow-wrap:break-word;
word-break:normal;
hyphens:auto;
max-width:100%}

.calendar-shell{
display:grid;
grid-template-columns:minmax(0,1.45fr) minmax(300px,.85fr);
gap:24px}
.event-panel,.event-list,.event-card{
overflow:hidden}
.event-card h3{
font-size:clamp(15px,1.2vw,19px)!important;
line-height:1.18!important;
white-space:normal!important;
overflow-wrap:anywhere!important;
word-break:break-word!important;
display:block!important;
max-width:100%!important}
.event-card .muted,.event-card a,.event-card p{
white-space:normal!important;
overflow-wrap:anywhere!important;
word-break:break-word!important;
max-width:100%!important}
.cal-day small{
font-size:12px;
white-space:nowrap}
.doc-row{
grid-template-columns:minmax(0,1fr) auto!important}
.doc-main{
min-width:0}
.doc-title-one-line{
display:block;
white-space:normal!important;
overflow:visible!important;
text-overflow:clip!important}
.doc-actions{
display:flex;
gap:10px;
flex-wrap:nowrap}
.doc-btn{
min-width:112px;
justify-content:center}
.notice-card{
background:#fffdf8;
border:1px solid var(--line);
border-radius:22px;
padding:20px;
margin:0 0 28px}
.directory-group{
margin:34px 0}
.directory-group h2{
font-size:clamp(26px,4vw,42px)}
.directory-grid{
display:grid;
grid-template-columns:repeat(3,minmax(0,1fr));
gap:18px}
.directory-card{
background:#fffdf8;
border:1px solid var(--line);
border-radius:22px;
padding:20px;
box-shadow:0 10px 30px rgba(45,34,22,.06)}
.directory-card h3{
font-size:20px;
line-height:1.15;
margin:6px 0 8px}
.directory-card p{
color:var(--muted);
margin:0 0 8px}
.dir-kind{
font-size:12px;
text-transform:uppercase;
letter-spacing:.08em;
font-weight:900;
color:var(--olive)}
.dir-actions{
display:flex;
gap:8px;
flex-wrap:wrap;
margin-top:12px}
.btn.small{
padding:9px 13px;
font-size:13px}

@media(max-width:900px){
.nav{
height:auto;
min-height:92px;
padding:12px 0;
align-items:center}
.brand-logo,.brand img{
width:225px!important;
max-width:56vw!important;
max-height:86px!important}
.mobile-toggle{
display:block}
.menu{
display:none;
position:absolute;
left:12px;
right:12px;
top:calc(100% + 1px);
background:#fffdf8;
border:1px solid var(--line);
border-radius:18px;
padding:14px;
box-shadow:var(--shadow);
z-index:50}
.menu.open{
display:flex;
flex-direction:column;
align-items:stretch}
.menu a{
white-space:normal}
.grid.cols-3,.grid.cols-4,.directory-grid{
grid-template-columns:1fr}
.calendar-shell{
grid-template-columns:1fr}
.event-panel{
width:100%;
max-width:100%}
.hero-card{
padding:24px 0}
.hero h1{
font-size:clamp(38px,14vw,64px)!important;
line-height:1!important}
.lead,.hero p{
font-size:clamp(15px,4.4vw,19px)!important;
white-space:normal!important}
.page-hero h1{
font-size:clamp(34px,10vw,52px)!important;
white-space:normal!important}
.page-hero .lead{
white-space:normal!important}
.doc-row{
grid-template-columns:1fr!important;
gap:12px;
padding:18px}
.doc-actions{
justify-content:flex-start;
flex-wrap:wrap}
.doc-btn{
min-width:116px}
.calendar-grid{
gap:7px}
.cal-day{
min-height:66px;
padding:7px}
.cal-day small{
font-size:11px}
.event-card{
padding:15px}
.event-card h3{
font-size:16px!important}
.section{
padding:42px 0}
.wrap{
width:min(var(--max),calc(100% - 24px))}
}

@media(max-width:480px){
.brand-logo,.brand img{
width:190px!important;
max-width:58vw!important}
.nav{
min-height:84px}
.btns{
gap:8px}
.btn{
padding:10px 13px}
.doc-actions{
gap:8px}
.doc-btn{
min-width:104px}
.directory-card{
padding:16px}
.calendar-shell{
gap:14px}
.cal-day{
min-height:58px}
.event-card h3{
font-size:15px!important}
.event-card p,.event-card .muted{
font-size:14px!important}
}

/* v28 final mobile + live directory overrides */
html,body{
max-width:100%!important;
overflow-x:hidden!important;
}

*{
min-width:0;
}

.topbar,.nav,.hero,.page-hero,main,section,.wrap{
max-width:100vw!important;
}

.home-mobile-safe-title{

  font-family:Georgia,serif!important;

  color:#fff!important;

  font-weight:800!important;

  font-size:clamp(42px,7vw,94px)!important;

  line-height:.96!important;

  letter-spacing:-.055em!important;

  margin:0 0 18px!important;

  max-width:100%!important;

  white-space:normal!important;

  overflow-wrap:normal!important;

  word-break:normal!important;

  text-wrap:balance;

}

.mobile-safe-subtitle{

  color:#fff!important;

  font-size:clamp(18px,2.1vw,25px)!important;

  line-height:1.22!important;

  margin:0!important;

  max-width:900px!important;

  white-space:normal!important;

  overflow-wrap:break-word!important;

}

.page-hero h1.mobile-safe-page-title{

  white-space:normal!important;

  width:auto!important;

  max-width:100%!important;

  overflow:visible!important;

  overflow-wrap:normal!important;

  word-break:normal!important;

  text-wrap:balance!important;

  font-size:clamp(34px,4.6vw,62px)!important;

  line-height:1.02!important;

}

.page-hero .mobile-safe-page-subtitle,
.page-hero .lead.mobile-safe-page-subtitle{

  white-space:normal!important;

  width:auto!important;

  max-width:100%!important;

  overflow:visible!important;

  overflow-wrap:break-word!important;

  font-size:clamp(16px,2vw,22px)!important;

  line-height:1.25!important;

}

.directory-card,.notice-card,.card,.doc-row,.event-card,.news-card{
overflow:hidden!important;
}

.directory-card h3,.directory-card p,.directory-card b,.directory-card a,
.card h3,.card p,.lead,p,h1,h2,h3{

  max-width:100%!important;

  overflow-wrap:break-word!important;

  word-break:normal!important;

  hyphens:auto!important;

}

.places-live .directory-card{
border-color:#d8c29e;
background:#fff;
}

.status-chip{
display:inline-flex;
align-items:center;
border-radius:999px;
padding:4px 8px;
font-size:11px;
font-weight:900;
background:#eef4e8;
color:#405b31;
margin:4px 0 8px;
}

.status-chip.closed{
background:#f6e2e2;
color:#7d1e2b;
}

.place-meta{
font-size:13px;
color:var(--muted);
line-height:1.35;
}

@media(max-width:900px){

  .hero{
min-height:60vh!important;
place-items:end start!important;
padding:24px 0 34px!important;
}

  .hero-card{
max-width:100%!important;
width:100%!important;
padding:18px 0!important;
}

  .home-mobile-safe-title{

    font-size:clamp(34px,10vw,48px)!important;

    line-height:1.02!important;

    letter-spacing:-.045em!important;

    text-wrap:balance!important;

  }

  .mobile-safe-subtitle{

    font-size:clamp(15px,4.2vw,18px)!important;

    line-height:1.28!important;

    max-width:100%!important;

  }

  .page-hero{
padding:38px 0!important;
}

  .page-hero h1.mobile-safe-page-title{

    font-size:clamp(30px,8.4vw,40px)!important;

    line-height:1.05!important;

    letter-spacing:-.035em!important;

    text-wrap:balance!important;

  }

  .page-hero .mobile-safe-page-subtitle,
  .page-hero .lead.mobile-safe-page-subtitle{

    font-size:clamp(15px,4.1vw,18px)!important;

    line-height:1.32!important;

  }

  .small-home-statement,.home-statement{
font-size:clamp(18px,5.1vw,24px)!important;
line-height:1.18!important;
}

  .grid.cols-4{
grid-template-columns:1fr!important;
}

  .directory-grid,.places-live{
grid-template-columns:1fr!important;
gap:14px!important;
}

  .directory-card h3{
font-size:19px!important;
line-height:1.15!important;
}

  .directory-card p,.directory-card a{
font-size:14px!important;
line-height:1.32!important;
}

  .btn.small{
font-size:12px!important;
padding:8px 10px!important;
}

  .calendar-wrap,.calendar-shell{
grid-template-columns:1fr!important;
max-width:100%!important;
overflow:visible!important;
}

  .calendar-wrap>aside.card,.event-panel{
width:100%!important;
max-width:100%!important;
overflow:hidden!important;
}

  .event-card h3,.event-card-title-fit{
font-size:14px!important;
line-height:1.2!important;
display:block!important;
white-space:normal!important;
overflow-wrap:anywhere!important;
word-break:break-word!important;
}

  .event-card p,.event-card .muted,.event-card a{
font-size:12.5px!important;
line-height:1.28!important;
white-space:normal!important;
overflow-wrap:anywhere!important;
word-break:break-word!important;
}

  .topbar .brand.logo-only,.brand.logo-only{
flex:0 0 min(62vw,250px)!important;
width:min(62vw,250px)!important;
min-width:0!important;
max-width:min(62vw,250px)!important;
}

  .topbar .brand.logo-only .brand-logo,.brand.logo-only img.brand-logo{
width:min(62vw,245px)!important;
max-width:min(62vw,245px)!important;
}

}

@media(max-width:420px){

  .home-mobile-safe-title{
font-size:clamp(30px,9.2vw,39px)!important;
}

  .mobile-safe-subtitle{
font-size:15px!important;
}

  .page-hero h1.mobile-safe-page-title{
font-size:clamp(27px,7.8vw,34px)!important;
}

  .page-hero .mobile-safe-page-subtitle{
font-size:14.5px!important;
}

}

/* ===== v29 final mobile and directory corrections ===== */
html, body {
 max-width:100% !important;
 overflow-x:hidden !important;
 }

*, *::before, *::after {
 box-sizing:border-box;
 min-width:0;
 }

@media (max-width: 900px){

  .topbar{
position:relative !important;
 width:100% !important;
 overflow:visible !important;
}

  .wrap{
width:calc(100% - 24px) !important;
 max-width:100% !important;
 margin-left:auto !important;
 margin-right:auto !important;
}

  .hero-card{
max-width:100% !important;
 width:100% !important;
 padding-left:0 !important;
 padding-right:0 !important;
 overflow:hidden !important;
}

  .home-mobile-safe-title,
  .hero h1,
  .hero-card h1{

    display:block !important;

    font-size:clamp(34px, 10.2vw, 52px) !important;

    line-height:1.02 !important;

    letter-spacing:-.04em !important;

    white-space:normal !important;

    overflow-wrap:break-word !important;

    word-break:normal !important;

    max-width:100% !important;

    width:100% !important;

    margin-bottom:14px !important;

  }

  .mobile-safe-subtitle,
  .hero-subtitle,
  .hero p{

    display:block !important;

    font-size:clamp(15px, 4.2vw, 18px) !important;

    line-height:1.22 !important;

    white-space:normal !important;

    overflow-wrap:break-word !important;

    word-break:normal !important;

    max-width:100% !important;

    width:100% !important;

  }

  .page-hero .breadcrumb{
font-size:12px !important;
 white-space:normal !important;
 overflow-wrap:break-word !important;
 max-width:100% !important;
}

  .page-hero h1,
  .page-hero h1.mobile-safe-page-title,
  .page-hero h1.one-line-title,
  .plan-title-fixed,
  .mobile-safe-page-title{

    display:block !important;

    font-size:clamp(30px, 8.8vw, 42px) !important;

    line-height:1.06 !important;

    letter-spacing:-.035em !important;

    white-space:normal !important;

    overflow-wrap:break-word !important;

    word-break:normal !important;

    max-width:100% !important;

    width:100% !important;

  }

  .page-hero .lead,
  .page-hero .lead.one-line-subtitle,
  .mobile-safe-page-subtitle,
  .one-line-subtitle,
  .no-wrap-hard{

    white-space:normal !important;

    width:100% !important;

    max-width:100% !important;

    overflow-wrap:break-word !important;

    word-break:normal !important;

    overflow:visible !important;

  }

  .home-statement,
  .small-home-statement{

    white-space:normal !important;

    font-size:clamp(17px, 5vw, 22px) !important;

    line-height:1.18 !important;

    max-width:100% !important;

    width:100% !important;

    overflow-wrap:break-word !important;

  }

  .calendar-wrap,
  .calendar-shell{
grid-template-columns:1fr !important;
 width:100% !important;
 max-width:100% !important;
 overflow:hidden !important;
}

  .event-card,
  .event-card *,
  .news-card,
  .news-card *,
  .directory-card,
  .directory-card *,
  .card,
  .card *{

    max-width:100% !important;

    white-space:normal !important;

    overflow-wrap:anywhere !important;

    word-break:normal !important;

  }

  .event-card h3,
  .event-card-title-fit{

    font-size:14px !important;

    line-height:1.18 !important;

    display:block !important;

  }

  .directory-grid{
grid-template-columns:1fr !important;
}

  .directory-card h3{
font-size:19px !important;
 line-height:1.14 !important;
}

}

@media (max-width: 430px){

  .home-mobile-safe-title,.hero h1,.hero-card h1{
font-size:clamp(31px, 9.6vw, 42px) !important;
}

  .page-hero h1,.page-hero h1.mobile-safe-page-title,.mobile-safe-page-title{
font-size:clamp(27px, 8vw, 36px) !important;
}

  .mobile-safe-subtitle,.hero p{
font-size:15px !important;
}

}

/* ===== v30 upload-safe final responsive/video fixes ===== */
.video-section{
padding-top:18px!important;
}

.video-card h2{
margin:0 0 16px!important;
}

.video-embed{
width:100%;
max-width:960px;
margin:18px auto 0;
aspect-ratio:16/9;
border-radius:18px;
overflow:hidden;
box-shadow:0 18px 45px rgba(0,0,0,.18);
background:#000;
}

.video-embed iframe{
width:100%;
height:100%;
display:block;
border:0;
}

@media(max-width:900px){

  .home-statement,.small-home-statement{
white-space:normal!important;
overflow-wrap:break-word!important;
word-break:normal!important;
font-size:clamp(16px,4.5vw,20px)!important;
line-height:1.2!important;
letter-spacing:-.01em!important;
}

  .hero-card,.page-hero,.card,.pad,.doc-row,.directory-card,.news-card,.event-card{
max-width:100%!important;
min-width:0!important;
overflow:hidden!important;
}

  .hero-card *,.page-hero *,.card *,.doc-row *,.directory-card *,.news-card *,.event-card *{
max-width:100%!important;
min-width:0!important;
overflow-wrap:anywhere!important;
word-break:normal!important;
}

  .page-hero h1,.page-hero .lead{
white-space:normal!important;
overflow:visible!important;
text-overflow:clip!important;
}

  .event-card h3,.event-card-title-fit{
white-space:normal!important;
overflow-wrap:anywhere!important;
word-break:break-word!important;
font-size:13px!important;
line-height:1.16!important;
}

  .video-card{
padding:18px!important;
}

  .video-card h2{
font-size:clamp(22px,6vw,30px)!important;
line-height:1.08!important;
white-space:normal!important;
}

}

/* v34 homepage/video/feed refinements */
.home-video-block{margin:24px auto 30px;max-width:980px;width:100%;}
.home-video-block .video-card{padding:22px;}
.home-video-block h2{font-size:clamp(22px,2.4vw,34px);line-height:1.15;margin:4px 0 16px;white-space:normal!important;overflow-wrap:normal;word-break:normal;}
.live-place-card .status-chip{display:inline-flex;align-items:center;width:max-content;max-width:100%;white-space:normal;overflow-wrap:anywhere;}
.live-place-card .place-meta{white-space:normal;overflow-wrap:anywhere;word-break:normal;}
@media (max-width:760px){
  .home-video-block{margin:18px auto 24px;}
  .home-video-block .video-card{padding:14px;}
  .home-video-block h2{font-size:clamp(19px,6vw,25px);}
  .video-embed{border-radius:12px;margin:12px auto;}
}

/* v35 refinements: cleaner embedded video preview, transparent header logo, exact place-status behavior */
.video-card{padding:0!important;overflow:hidden;background:transparent!important;border:0!important;box-shadow:none!important}
.home-video-block{margin:18px auto 28px;max-width:980px}
.video-embed{margin:0 auto!important;background:#000;border-radius:20px;overflow:hidden;box-shadow:0 18px 44px rgba(0,0,0,.20)}
.video-embed iframe{border:0;width:100%;height:100%;display:block;background:#000}
.site-header .brand{height:98px;display:flex;align-items:center}
.site-header .brand-logo{height:92px!important;max-height:92px!important;width:auto!important;object-fit:contain;background:transparent!important;box-shadow:none!important;border:0!important}
.place-hours{font-size:.9rem;color:var(--muted);line-height:1.35;margin:6px 0 0;overflow-wrap:anywhere}
@media(max-width:760px){
  .site-header .brand{height:78px}
  .site-header .brand-logo{height:74px!important;max-height:74px!important}
  .home-video-block{margin:14px auto 22px}
  .video-embed{border-radius:15px}
}

/* v36 polished spacing, header, mobile fit, fast calendar/news fallback */
html,body{max-width:100%;overflow-x:hidden!important;}
.topbar{height:96px!important;background:#fffaf2!important;border-bottom:1px solid #ded2c0!important;display:flex!important;align-items:center!important;}
.nav{height:96px!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:16px!important;}
.brand.logo-only{display:flex!important;align-items:center!important;min-width:0!important;width:auto!important;max-width:46vw!important;background:transparent!important;}
.brand.logo-only .brand-logo,.brand-logo{display:block!important;width:min(360px,46vw)!important;height:90px!important;max-height:90px!important;object-fit:contain!important;background:transparent!important;border:0!important;box-shadow:none!important;padding:0!important;margin:0!important;}
.menu{align-items:center!important;}
.page-hero{padding:48px 0!important;min-height:0!important;}
.page-hero .wrap{max-width:1160px!important;}
.page-hero h1{font-size:clamp(38px,4.8vw,60px)!important;line-height:.96!important;margin:0 0 12px!important;white-space:normal!important;overflow-wrap:normal!important;word-break:normal!important;max-width:100%!important;}
.page-hero .lead{color:#e8dfd2!important;opacity:1!important;font-size:clamp(17px,2.1vw,24px)!important;line-height:1.28!important;white-space:normal!important;max-width:100%!important;}
.section{padding:42px 0!important;}
main .section:first-child{padding-top:34px!important;}
.home-video-block{margin:0 auto 22px!important;}
.video-card{padding:0!important;background:transparent!important;border:0!important;box-shadow:none!important;}
.video-embed{margin:0 auto 22px!important;}
.pillars{margin-top:20px!important;margin-bottom:0!important;}
.name-explain{padding-top:28px!important;padding-bottom:32px!important;}
.split-band{padding-top:32px!important;padding-bottom:38px!important;}
.card.pad{padding:26px!important;}
.grid{gap:20px!important;}
.calendar-toolbar{margin-bottom:20px!important;}
.calendar-wrap{display:grid!important;grid-template-columns:minmax(0,1.15fr) minmax(280px,.85fr)!important;gap:20px!important;align-items:start!important;max-width:100%!important;overflow:visible!important;}
.calendar,.calendar-wrap>aside.card{min-width:0!important;max-width:100%!important;overflow:hidden!important;}
.cal-head{display:grid!important;grid-template-columns:auto 1fr auto!important;gap:12px!important;align-items:center!important;}
.cal-head h2,#cal-title{min-width:0!important;text-align:center!important;white-space:normal!important;overflow-wrap:break-word!important;line-height:1.05!important;}
.cal-grid{display:grid!important;grid-template-columns:repeat(7,minmax(0,1fr))!important;gap:8px!important;max-width:100%!important;}
.day,.dow{min-width:0!important;box-sizing:border-box!important;}
.count{font-size:12px!important;line-height:1.1!important;white-space:normal!important;overflow-wrap:break-word!important;}
#event-list{max-width:100%!important;overflow:hidden!important;}
.event-card,.news-card,.directory-card{min-width:0!important;max-width:100%!important;overflow:hidden!important;box-sizing:border-box!important;}
.event-card *,.news-card *,.directory-card *{max-width:100%!important;white-space:normal!important;overflow-wrap:anywhere!important;word-break:normal!important;box-sizing:border-box!important;}
.event-card h3,.event-card-title-fit{font-size:15px!important;line-height:1.18!important;overflow-wrap:anywhere!important;word-break:break-word!important;hyphens:auto!important;}
.site-map-grid{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:22px!important;}
.clean-form{max-width:820px!important;}
.clean-form input,.clean-form select,.clean-form textarea{box-sizing:border-box!important;max-width:100%!important;}
.form-status{font-weight:700;color:#6b6d3d;margin-top:8px;}
@media(max-width:900px){
  .topbar{height:98px!important;}
  .nav{height:98px!important;padding:0 18px!important;}
  .brand.logo-only{max-width:72vw!important;}
  .brand.logo-only .brand-logo,.brand-logo{width:min(310px,68vw)!important;height:92px!important;max-height:92px!important;}
  .mobile-toggle{font-size:32px!important;line-height:1!important;padding:8px 10px!important;display:block!important;}
  .menu{top:98px!important;max-height:calc(100vh - 98px)!important;overflow:auto!important;z-index:1000!important;}
  .hero{min-height:58vh!important;}
  .hero-card{max-width:100%!important;padding:28px 20px!important;}
  .home-mobile-safe-title{font-size:clamp(36px,11vw,54px)!important;line-height:.98!important;white-space:normal!important;overflow-wrap:normal!important;word-break:normal!important;}
  .mobile-safe-subtitle,.hero-subtitle{font-size:clamp(17px,5vw,24px)!important;line-height:1.23!important;white-space:normal!important;max-width:100%!important;}
  .page-hero{padding:34px 0!important;}
  .page-hero h1{font-size:clamp(34px,10vw,48px)!important;line-height:.98!important;}
  .page-hero .lead{font-size:clamp(16px,4.8vw,22px)!important;line-height:1.25!important;}
  .section{padding:30px 0!important;}
  main .section:first-child{padding-top:24px!important;}
  .home-video-block{margin-bottom:16px!important;}
  .pillars{margin-top:14px!important;}
  .name-explain{padding-top:22px!important;padding-bottom:24px!important;}
  .split-band{padding-top:24px!important;padding-bottom:28px!important;}
  .card.pad{padding:22px!important;}
  .calendar-wrap{grid-template-columns:1fr!important;gap:18px!important;}
  .calendar{padding:14px!important;}
  .cal-grid{gap:6px!important;}
  .day,.dow{padding:7px!important;border-radius:10px!important;}
  .day{min-height:60px!important;}
  .dow{font-size:13px!important;}
  .count{font-size:11px!important;}
  .calendar-toolbar{grid-template-columns:1fr!important;gap:10px!important;}
  .calendar-toolbar input,.calendar-toolbar select{width:100%!important;min-width:0!important;}
  .site-map-grid{grid-template-columns:1fr!important;gap:18px!important;}
}


/* v37 polish: transparent logo, media cleanup, restored compact spacing */
.topbar,.nav{background:#fffaf2!important;}
.brand.logo-only,.brand.logo-only .brand-logo,.brand-logo{background:transparent!important;mix-blend-mode:normal!important;}
.brand.logo-only .brand-logo{image-rendering:auto!important;}
.media-grid{margin-top:0!important;}
.media-note,.helper:empty{display:none!important;}
@media(max-width:900px){
  .media-grid{gap:10px!important;}
  .media-grid>div{min-height:185px!important;}
}

/* v38 final: private contact form, transparent logo, standardized sitemap/header, mobile hero title */
.topbar,
.nav {
  background: #fffaf2 !important;
  min-height: 96px !important;
}
.brand.logo-only {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}
.brand.logo-only .brand-logo,
.brand-logo {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
  object-fit: contain !important;
}
.page-hero {
  min-height: 245px !important;
  display: flex !important;
  align-items: center !important;
  padding: 46px 0 !important;
}
.page-hero .wrap {
  width: 100% !important;
}
.page-hero h1 {
  font-size: clamp(40px, 5vw, 64px) !important;
  line-height: 1 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}
.page-hero .lead {
  font-size: clamp(17px, 2vw, 24px) !important;
  line-height: 1.28 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}
.site-map-grid .card ul {
  margin: 12px 0 0 !important;
}
.site-map-grid .card li {
  margin: 8px 0 !important;
}
.clean-form select {
  display: none !important;
}
.clean-form textarea {
  min-height: 160px !important;
}
.clean-form button[disabled] {
  opacity: .65 !important;
  cursor: wait !important;
}
@media (min-width: 901px) {
  .split-mobile-title span { display: inline !important; }
}
@media (max-width: 900px) {
  .topbar,
  .nav {
    min-height: 98px !important;
  }
  .brand.logo-only {
    max-width: 76vw !important;
  }
  .brand.logo-only .brand-logo,
  .brand-logo {
    width: min(390px, 76vw) !important;
    height: 94px !important;
    max-height: 94px !important;
  }
  .split-mobile-title {
    font-size: clamp(42px, 13vw, 62px) !important;
    line-height: .92 !important;
    white-space: normal !important;
    text-align: left !important;
    hyphens: none !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }
  .split-mobile-title span {
    display: block !important;
    white-space: nowrap !important;
    hyphens: none !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }
  .page-hero {
    min-height: 220px !important;
    padding: 34px 0 !important;
  }
  .page-hero h1 {
    font-size: clamp(34px, 10vw, 50px) !important;
    line-height: 1 !important;
  }
  .page-hero .lead {
    font-size: clamp(16px, 4.7vw, 22px) !important;
    line-height: 1.25 !important;
  }
}
@media (max-width: 430px) {
  .split-mobile-title {
    font-size: clamp(36px, 12.4vw, 52px) !important;
  }
  .brand.logo-only .brand-logo,
  .brand-logo {
    width: min(360px, 74vw) !important;
    height: 92px !important;
  }
}

/* v39 final: restore stable header/nav fit, cache-busted transparent logo, faster places rendering */
.topbar{
  height:86px!important;
  min-height:86px!important;
  background:#fffaf2!important;
  border-bottom:1px solid #ded2c0!important;
  overflow:visible!important;
}
.nav{
  height:86px!important;
  min-height:86px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:14px!important;
  overflow:visible!important;
}
.brand.logo-only{
  flex:0 0 auto!important;
  width:auto!important;
  max-width:260px!important;
  height:86px!important;
  display:flex!important;
  align-items:center!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  overflow:visible!important;
}
.brand.logo-only .brand-logo,
.brand-logo{
  width:250px!important;
  max-width:250px!important;
  height:78px!important;
  max-height:78px!important;
  object-fit:contain!important;
  display:block!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  padding:0!important;
  margin:0!important;
}
.menu{
  display:flex!important;
  align-items:center!important;
  justify-content:flex-end!important;
  gap:14px!important;
  flex-wrap:nowrap!important;
  min-width:0!important;
  font-size:14px!important;
}
.menu a{white-space:nowrap!important;}
.lang{flex:0 0 auto!important;}
.clean-form .form-status:empty{display:none!important;}
@media(max-width:980px){
  .topbar,.nav{height:96px!important;min-height:96px!important;}
  .brand.logo-only{height:96px!important;max-width:72vw!important;}
  .brand.logo-only .brand-logo,.brand-logo{width:min(360px,72vw)!important;max-width:72vw!important;height:90px!important;max-height:90px!important;}
  .menu{top:96px!important;}
}
@media(max-width:430px){
  .brand.logo-only{max-width:74vw!important;}
  .brand.logo-only .brand-logo,.brand-logo{width:min(350px,74vw)!important;max-width:74vw!important;height:88px!important;max-height:88px!important;}
}


/* v40 final: remove breadcrumbs, full-width non-overlapping header, standardized page title bars */
.breadcrumb{display:none!important;}
.topbar{
  position:relative!important;
  top:auto!important;
  width:100%!important;
  left:0!important;
  right:0!important;
  z-index:50!important;
  height:104px!important;
  min-height:104px!important;
  background:#fffaf2!important;
  border-bottom:1px solid #ded2c0!important;
  box-shadow:none!important;
  overflow:visible!important;
  display:block!important;
}
.topbar .wrap.nav,
.wrap.nav,
.nav{
  width:100%!important;
  max-width:none!important;
  min-height:104px!important;
  height:104px!important;
  margin:0!important;
  padding:0 54px!important;
  background:#fffaf2!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:18px!important;
  overflow:visible!important;
}
.brand.logo-only{
  height:104px!important;
  width:auto!important;
  max-width:300px!important;
  flex:0 0 300px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:flex-start!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  overflow:visible!important;
}
.brand.logo-only .brand-logo,
.brand-logo{
  width:285px!important;
  max-width:285px!important;
  height:98px!important;
  max-height:98px!important;
  object-fit:contain!important;
  object-position:left center!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  padding:0!important;
  margin:0!important;
}
.menu{
  flex:1 1 auto!important;
  display:flex!important;
  align-items:center!important;
  justify-content:flex-end!important;
  gap:14px!important;
  flex-wrap:nowrap!important;
  min-width:0!important;
  max-width:calc(100vw - 380px)!important;
  overflow:visible!important;
  font-size:14px!important;
}
.menu a{white-space:nowrap!important;}
.lang{flex:0 0 auto!important;}
main{display:block!important; margin-top:0!important; padding-top:0!important; clear:both!important;}
.page-hero{
  margin-top:0!important;
  min-height:220px!important;
  padding:42px 0!important;
  display:flex!important;
  align-items:center!important;
  background:#292724!important;
  overflow:hidden!important;
}
.page-hero .wrap{
  width:min(var(--max),calc(100% - 48px))!important;
  max-width:1180px!important;
  margin-left:auto!important;
  margin-right:auto!important;
  padding:0!important;
}
.page-hero h1{margin-top:0!important;}
.page-hero .lead{margin-bottom:0!important;}
.en-sitemap .page-hero .lead,
.it-sitemap .page-hero .lead{display:none!important;}
@media(max-width:1100px){
  .topbar .wrap.nav,.wrap.nav,.nav{padding:0 28px!important;gap:12px!important;}
  .brand.logo-only{flex-basis:260px!important;max-width:260px!important;}
  .brand.logo-only .brand-logo,.brand-logo{width:250px!important;max-width:250px!important;height:92px!important;max-height:92px!important;}
  .menu{gap:10px!important;font-size:13px!important;max-width:calc(100vw - 320px)!important;}
}
@media(max-width:900px){
  .topbar{height:98px!important;min-height:98px!important;position:relative!important;}
  .topbar .wrap.nav,.wrap.nav,.nav{height:98px!important;min-height:98px!important;padding:0 18px!important;}
  .brand.logo-only{height:98px!important;flex:0 0 auto!important;max-width:72vw!important;}
  .brand.logo-only .brand-logo,.brand-logo{width:min(340px,72vw)!important;max-width:72vw!important;height:92px!important;max-height:92px!important;}
  .menu{max-width:none!important;}
  .page-hero{min-height:190px!important;padding:34px 0!important;}
  .page-hero .wrap{width:calc(100% - 36px)!important;}
}
@media(max-width:430px){
  .topbar{height:96px!important;min-height:96px!important;}
  .topbar .wrap.nav,.wrap.nav,.nav{height:96px!important;min-height:96px!important;padding:0 12px!important;}
  .brand.logo-only .brand-logo,.brand-logo{width:min(330px,74vw)!important;max-width:74vw!important;height:90px!important;max-height:90px!important;}
  .page-hero{min-height:176px!important;padding:30px 0!important;}
}


/* v41 final: desktop logo containment, mobile menu close, Italian sitemap heading */
@media (min-width: 901px){
  .topbar{
    height:132px!important;
    min-height:132px!important;
    overflow:hidden!important;
    display:block!important;
    background:#fffaf2!important;
  }
  .topbar .wrap.nav,
  .wrap.nav,
  .nav{
    height:132px!important;
    min-height:132px!important;
    padding:0 54px!important;
    align-items:center!important;
    overflow:hidden!important;
    background:#fffaf2!important;
  }
  .brand.logo-only{
    height:132px!important;
    flex:0 0 330px!important;
    max-width:330px!important;
    overflow:hidden!important;
    align-items:center!important;
  }
  .brand.logo-only .brand-logo,
  .brand-logo{
    width:320px!important;
    max-width:320px!important;
    height:124px!important;
    max-height:124px!important;
    object-fit:contain!important;
    object-position:left center!important;
    background:transparent!important;
    border:0!important;
    box-shadow:none!important;
    display:block!important;
  }
  .menu{
    max-width:calc(100vw - 430px)!important;
    gap:12px!important;
    font-size:13px!important;
  }
  .menu a{font-size:13px!important;white-space:nowrap!important;}
}

@media (max-width: 900px){
  .topbar{
    height:96px!important;
    min-height:96px!important;
    overflow:visible!important;
  }
  .topbar .wrap.nav,
  .wrap.nav,
  .nav{
    height:96px!important;
    min-height:96px!important;
    overflow:visible!important;
    position:relative!important;
  }
  .mobile-toggle{
    display:block!important;
    position:relative!important;
    z-index:1002!important;
    cursor:pointer!important;
  }
  .menu{
    display:none!important;
    position:absolute!important;
    left:12px!important;
    right:12px!important;
    top:96px!important;
    max-width:calc(100vw - 24px)!important;
    width:auto!important;
    max-height:calc(100vh - 110px)!important;
    overflow:auto!important;
    background:#fffdf8!important;
    border:1px solid var(--line)!important;
    border-radius:18px!important;
    padding:14px!important;
    box-shadow:var(--shadow)!important;
    z-index:1001!important;
    flex-direction:column!important;
    align-items:stretch!important;
    justify-content:flex-start!important;
    gap:8px!important;
  }
  .menu.open{
    display:flex!important;
  }
  .menu a,
  .menu .lang a{
    display:block!important;
    white-space:normal!important;
    font-size:16px!important;
    padding:8px 10px!important;
  }
}

.it-sitemap .site-map-grid .card h3,
html[lang="it"] .site-map-grid .card h3{
  overflow-wrap:normal!important;
  word-break:normal!important;
  hyphens:none!important;
}
@media(max-width:430px){
  html[lang="it"] .site-map-grid .card h3{font-size:clamp(24px,7vw,32px)!important;}
}


/* ===== V42 FINAL PAGE HEADER + SITEMAP STANDARDIZATION =====
   Keeps brown headline bars visually consistent across all interior pages. */
.page-hero{
  background:var(--charcoal) !important;
  color:#fff !important;
  padding:78px 0 82px !important;
  min-height:252px !important;
  display:flex !important;
  align-items:center !important;
}
.page-hero .wrap{
  width:min(var(--max),calc(100% - 34px)) !important;
  margin:0 auto !important;
}
.page-hero h1,
.page-hero h1.one-line-title,
.page-hero h1.mobile-safe-page-title,
.page-hero h1.plan-title-fixed{
  font-family:Georgia,serif !important;
  font-size:clamp(48px,4.25vw,64px) !important;
  line-height:1.02 !important;
  letter-spacing:-.035em !important;
  font-weight:700 !important;
  margin:0 0 16px 0 !important;
  padding:0 !important;
  max-width:100% !important;
  white-space:normal !important;
  overflow:visible !important;
  text-overflow:clip !important;
  position:static !important;
}
.page-hero .lead,
.page-hero .lead.one-line-subtitle,
.page-hero .mobile-safe-page-subtitle,
.page-hero p{
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif !important;
  font-size:clamp(18px,1.55vw,23px) !important;
  line-height:1.34 !important;
  font-weight:500 !important;
  color:#d8d0c4 !important;
  margin:0 !important;
  padding:0 !important;
  max-width:980px !important;
  white-space:normal !important;
  overflow-wrap:normal !important;
  word-break:normal !important;
  hyphens:none !important;
  position:static !important;
}
/* Top nav stays full width and the page hero begins naturally below it. */
.topbar{
  width:100% !important;
  left:auto !important;
  right:auto !important;
  overflow:visible !important;
}
.topbar .nav,
.nav{
  width:min(var(--max),calc(100% - 34px)) !important;
  margin:0 auto !important;
}
main{
  display:block !important;
  margin-top:0 !important;
}
/* Sitemap category label must not break into awkward two-line/hyphenated text. */
.sitemap-grid h3,
body:has(.sitemap-grid) .card h3{
  white-space:nowrap !important;
  font-size:clamp(23px,2.1vw,34px) !important;
  line-height:1.1 !important;
  overflow-wrap:normal !important;
  word-break:normal !important;
  hyphens:none !important;
}

@media (max-width:900px){
  .page-hero{
    padding:46px 0 50px !important;
    min-height:180px !important;
  }
  .page-hero .wrap{
    width:calc(100% - 34px) !important;
  }
  .page-hero h1,
  .page-hero h1.one-line-title,
  .page-hero h1.mobile-safe-page-title,
  .page-hero h1.plan-title-fixed{
    font-size:clamp(40px,11.6vw,56px) !important;
    line-height:1.02 !important;
    margin-bottom:14px !important;
    letter-spacing:-.04em !important;
    white-space:normal !important;
    max-width:100% !important;
  }
  .page-hero .lead,
  .page-hero .lead.one-line-subtitle,
  .page-hero .mobile-safe-page-subtitle,
  .page-hero p{
    font-size:clamp(16px,4.5vw,20px) !important;
    line-height:1.35 !important;
    max-width:100% !important;
  }
  .sitemap-grid h3,
  body:has(.sitemap-grid) .card h3{
    font-size:clamp(21px,6vw,28px) !important;
    white-space:nowrap !important;
  }
}

@media (max-width:420px){
  .sitemap-grid h3,
  body:has(.sitemap-grid) .card h3{
    font-size:22px !important;
    letter-spacing:-.02em !important;
  }
}


/* v45 privacy/GDPR minimal compliance */
.privacy-footer{
  padding:18px 20px 24px;
  text-align:center;
  font-size:13px;
  background:#f4ede2;
  color:#5b4534;
}
.privacy-footer a{color:#6e1423;font-weight:700;text-decoration:none;}
.privacy-footer a:hover{text-decoration:underline;}
.privacy-consent{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:13px;
  line-height:1.35;
  color:#5b4534;
  margin:2px 0 10px;
}
.privacy-consent input{width:auto!important;margin-top:3px;flex:0 0 auto;}
.privacy-consent a{color:#6e1423;font-weight:700;}
.privacy-page .card p,.privacy-page .card li{font-size:15px;line-height:1.58;}
.privacy-page .card h2{margin-top:4px;}
.privacy-page .privacy-list{padding-left:18px;}
@media(max-width:720px){
  .privacy-footer{font-size:12px;padding:14px 16px 20px;}
  .privacy-consent{font-size:12px;}
  .privacy-page .card p,.privacy-page .card li{font-size:14px;}
}
