
:root{
  --bg:#f7f3ee;
  --paper:#fffdf9;
  --paper-2:#f3ece4;
  --text:#191514;
  --muted:#645c57;
  --muted-2:#867d77;
  --line:#e8dfd6;
  --line-strong:#d6cabf;
  --accent:#af8d70;
  --accent-dark:#8a6548;
  --dark:#161211;
  --dark-soft:#1f1917;
  --white:#ffffff;
  --radius-sm:16px;
  --radius:24px;
  --radius-lg:34px;
  --shadow:0 18px 50px rgba(24,17,13,.08);
  --shadow-lg:0 30px 80px rgba(24,17,13,.12);
  --container:1200px;
  --serif:"Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--text);
  background:var(--bg);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
p{margin:0 0 1rem}
h1,h2,h3,h4{
  font-family:var(--serif);
  line-height:1.05;
  margin:0 0 .65rem;
  letter-spacing:.01em;
}
h1{font-size:clamp(2.9rem,6vw,5.6rem)}
h2{font-size:clamp(2rem,4vw,3.3rem)}
h3{font-size:clamp(1.5rem,2vw,2rem)}
h4{font-size:1.1rem}
small{color:var(--muted-2)}
.container{
  width:min(var(--container), calc(100% - 2rem));
  margin-inline:auto;
}
.section{padding:clamp(4rem,8vw,6.5rem) 0}
.section--tight{padding:clamp(3rem,6vw,4.5rem) 0}
.section--dark{
  background:var(--dark);
  color:#f8f4ef;
}
.section--paper{
  background:var(--paper);
}
.section-head{
  max-width:720px;
  margin-bottom:2.1rem;
}
.kicker, .eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  font-size:.78rem;
  letter-spacing:.26em;
  text-transform:uppercase;
  color:var(--accent-dark);
  font-weight:700;
  margin-bottom:1rem;
}
.kicker::before,.eyebrow::before{
  content:"";
  width:1.7rem;
  height:1px;
  background:currentColor;
  opacity:.65;
}
.lead{
  font-size:clamp(1.05rem,1.7vw,1.22rem);
  color:var(--muted);
}
.top-strip{
  background:var(--dark);
  color:#efe6de;
  font-size:.88rem;
}
.top-strip__inner{
  min-height:2.8rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}
.top-strip__actions{
  display:flex;
  align-items:center;
  gap:.75rem;
  white-space:nowrap;
}
.top-strip a{color:#fff}
.dot{
  width:4px;height:4px;border-radius:999px;background:rgba(255,255,255,.65)
}
.site-header{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(247,243,238,.9);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(214,202,191,.6);
}
.nav-shell{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  min-height:5.5rem;
}
.brand img{
  width:min(235px, 54vw);
  height:auto;
}
.site-nav{
  display:flex;
  align-items:center;
  gap:1.4rem;
}
.site-nav a{
  font-size:.97rem;
  color:var(--muted);
  font-weight:500;
}
.site-nav a:hover,
.site-nav a[aria-current="page"]{
  color:var(--text);
}
.menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border-radius:999px;
  border:1px solid var(--line-strong);
  background:var(--paper);
  padding:0;
  cursor:pointer;
}
.menu-toggle span{
  display:block;
  width:18px;
  height:2px;
  background:var(--text);
  margin:4px auto;
  transition:transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.menu-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.menu-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.6rem;
  border-radius:999px;
  padding:1rem 1.35rem;
  font-weight:700;
  border:1px solid transparent;
  transition:transform .16s ease, background-color .16s ease, border-color .16s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:var(--dark);
  color:#fff;
  border-color:var(--dark);
}
.btn-primary:hover{background:#27201d}
.btn-secondary{
  background:transparent;
  color:var(--text);
  border-color:var(--line-strong);
}
.btn-secondary:hover{
  background:var(--paper);
}
.btn-light{
  background:#fff;
  color:var(--dark);
}
.btn-sm{padding:.82rem 1.15rem}
.btn-row{display:flex;flex-wrap:wrap;gap:.9rem}
.hero{
  padding:clamp(2.4rem,5vw,4.4rem) 0 clamp(4rem,8vw,6rem);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:clamp(1.5rem,2vw,2rem);
  align-items:center;
}
.hero-copy{
  padding-right:1.5rem;
}
.hero-copy .lead{
  max-width:44rem;
}
.hero-copy .btn-row{
  margin:1.5rem 0 1.8rem;
}
.stat-row{
  display:flex;
  flex-wrap:wrap;
  gap:.8rem;
  margin-top:1.8rem;
}
.stat-pill{
  padding:.85rem 1rem;
  border-radius:999px;
  background:var(--paper);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  font-size:.96rem;
}
.stat-pill strong{
  color:var(--text);
  margin-right:.35rem;
}
.hero-card{
  position:relative;
  min-height:640px;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  background:var(--dark-soft);
}
.hero-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(16,12,11,.06), rgba(16,12,11,.18) 48%, rgba(16,12,11,.7));
}
.hero-note{
  position:absolute;
  left:1.3rem;
  right:1.3rem;
  bottom:1.3rem;
  z-index:1;
  background:rgba(255,252,247,.9);
  border:1px solid rgba(255,255,255,.55);
  border-radius:20px;
  padding:1.15rem 1.15rem 1.1rem;
  box-shadow:var(--shadow);
}
.hero-note h3{
  font-size:1.3rem;
  font-family:var(--sans);
  margin-bottom:.35rem;
}
.hero-note p{
  margin:0;
  color:#4f4844;
}
.grid-2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.5rem}
.grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.35rem}
.grid-4{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1.1rem}
.card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.card-pad{padding:1.6rem}
.value-card{
  padding:1.8rem;
}
.value-card .card-number{
  font-size:.85rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--accent-dark);
  font-weight:700;
  margin-bottom:.85rem;
}
.split-card{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:clamp(1.5rem,2vw,2rem);
  align-items:center;
  padding:1.4rem;
}
.split-card.reverse{grid-template-columns:1.1fr .9fr}
.frame{
  border-radius:calc(var(--radius) + 4px);
  overflow:hidden;
  min-height:100%;
}
.frame img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.check-list{
  display:grid;
  gap:.7rem;
  margin:1.1rem 0 0;
  padding:0;
  list-style:none;
}
.check-list li{
  padding-left:1.6rem;
  position:relative;
  color:var(--muted);
}
.check-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.65rem;
  width:.62rem;height:.62rem;border-radius:999px;background:var(--accent);
}
.timeline{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1rem;
}
.step-card{
  padding:1.4rem;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:22px;
}
.step-no{
  width:2.5rem;height:2.5rem;border-radius:999px;
  display:grid;place-items:center;
  background:var(--paper-2);
  border:1px solid var(--line-strong);
  margin-bottom:1rem;
  font-family:var(--serif);
  font-size:1.35rem;
}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1.25rem;
}
.feature-card{
  display:flex;
  flex-direction:column;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
  min-height:100%;
}
.feature-card__media{
  aspect-ratio:1 / 1.12;
  overflow:hidden;
}
.feature-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s ease;
}
.feature-card:hover .feature-card__media img{transform:scale(1.03)}
.feature-card__body{
  padding:1.2rem 1.25rem 1.4rem;
}
.feature-card__body p{
  color:var(--muted);
  margin-bottom:.75rem;
}
.card-badge{
  display:inline-block;
  padding:.45rem .65rem;
  border-radius:999px;
  background:var(--paper-2);
  color:var(--accent-dark);
  font-size:.77rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  margin-bottom:.8rem;
}
.text-link{
  font-weight:700;
  color:var(--accent-dark);
}
.band{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:1.5rem;
  align-items:center;
}
.band .section-head .kicker,
.section--dark .kicker,
.section--dark .eyebrow{
  color:#d6b59b;
}
.section--dark .lead,
.section--dark p,
.section--dark li{
  color:#dfd3ca;
}
.band-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:26px;
  padding:1.5rem;
}
.band-stats{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1rem;
  margin-top:1.3rem;
}
.band-stat{
  padding:1rem 1rem .9rem;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  background:rgba(255,255,255,.04);
}
.band-stat strong{
  display:block;
  font-family:var(--serif);
  font-size:2rem;
  line-height:1;
  margin-bottom:.35rem;
}
.gallery{
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  gap:.9rem;
}
.gallery a,
.gallery .tile{
  border-radius:22px;
  overflow:hidden;
  min-height:14rem;
  box-shadow:var(--shadow);
  display:block;
}
.gallery img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.span-5{grid-column:span 5}
.span-4{grid-column:span 4}
.span-3{grid-column:span 3}
.span-6{grid-column:span 6}
.page-hero{
  position:relative;
  padding:clamp(4rem,9vw,7rem) 0;
  color:#fff;
  background:var(--dark-soft);
}
.page-hero img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.46;
}
.page-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(16,12,11,.28), rgba(16,12,11,.66));
}
.page-hero .container{
  position:relative;
  z-index:1;
}
.page-hero .lead{color:#eee5dd; max-width:46rem}
.pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:.7rem;
  margin-top:1.1rem;
}
.pill{
  display:inline-flex;
  align-items:center;
  padding:.6rem .85rem;
  border-radius:999px;
  background:var(--paper);
  border:1px solid var(--line);
  color:var(--muted);
  font-size:.92rem;
}
.section--dark .pill{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.12);
  color:#dfd3ca;
}
.article-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1.25rem;
}
.article-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.article-card img{aspect-ratio:1.2 / 1;object-fit:cover;width:100%}
.article-card__body{padding:1.2rem 1.25rem 1.45rem}
.article-card__meta{
  font-size:.8rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--accent-dark);
  font-weight:700;
  margin-bottom:.7rem;
}
.prose{
  max-width:780px;
}
.prose h2{margin-top:2rem}
.prose h3{margin-top:1.5rem}
.prose ul{padding-left:1.15rem}
.prose li{margin:.45rem 0;color:var(--muted)}
.form-shell{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:1.5rem;
  align-items:start;
}
.form-card{
  padding:1.5rem;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow);
}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1rem;
}
.field{display:grid;gap:.45rem}
label{font-size:.94rem;font-weight:600;color:var(--muted)}
input,select,textarea{
  width:100%;
  border-radius:16px;
  border:1px solid var(--line-strong);
  background:#fff;
  color:var(--text);
  padding:.98rem 1rem;
  font:inherit;
}
textarea{min-height:9rem;resize:vertical}
.note{
  padding:1rem 1.05rem;
  border-radius:18px;
  background:var(--paper-2);
  border:1px solid var(--line-strong);
  color:#514843;
}
.faq{
  display:grid;
  gap:.9rem;
}
.faq-item{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:20px;
  overflow:hidden;
}
.faq-trigger{
  width:100%;
  border:0;
  background:none;
  padding:1rem 1.15rem;
  text-align:left;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
  font:inherit;
  color:var(--text);
  cursor:pointer;
  font-weight:700;
}
.faq-trigger span:last-child{font-size:1.4rem;color:var(--accent-dark)}
.faq-answer{
  display:none;
  padding:0 1.15rem 1rem;
  color:var(--muted);
}
.faq-item.open .faq-answer{display:block}
.resource-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1.15rem;
}
.resource-card{
  padding:1.35rem;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:var(--shadow);
}
.resource-card h3{
  font-size:1.45rem;
  margin-bottom:.5rem;
}
.resource-card p{color:var(--muted)}
.resource-card .btn{margin-top:.6rem}
.map-frame{
  overflow:hidden;
  border-radius:24px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.map-frame iframe{
  width:100%;
  min-height:420px;
  border:0;
}
.site-footer{
  background:var(--dark);
  color:#efe5de;
  padding-top:3.4rem;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr .8fr .8fr 1fr;
  gap:1.6rem;
}
.footer-brand img{width:min(240px, 90%)}
.footer-brand p{max-width:30rem;color:#ddd1c8}
.site-footer h4{
  font-family:var(--sans);
  font-size:1rem;
  margin-bottom:.8rem;
}
.footer-links{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:.5rem;
}
.footer-links a,
.site-footer a{color:#efe5de}
.social-row{
  display:flex;
  flex-wrap:wrap;
  gap:.7rem;
  margin-top:1rem;
}
.social-row a{
  padding:.58rem .82rem;
  border-radius:999px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  font-size:.92rem;
}
.footer-bottom{
  padding:1.1rem 0 1.5rem;
  border-top:1px solid rgba(255,255,255,.09);
  margin-top:2rem;
}
.hours{
  color:#ddd1c8;
}
.center{text-align:center}
.mt-0{margin-top:0}
.mb-0{margin-bottom:0}
.mb-xl{margin-bottom:2rem}
.visually-hidden,
.skip-link{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.skip-link:focus{
  position:fixed;
  width:auto;
  height:auto;
  margin:0;
  clip:auto;
  top:1rem;
  left:1rem;
  background:var(--dark);
  color:#fff;
  padding:.85rem 1rem;
  border-radius:999px;
  z-index:100;
}
@media (max-width: 1050px){
  .hero-grid,.band,.split-card,.form-shell,.footer-grid{grid-template-columns:1fr}
  .grid-3,.feature-grid,.article-grid,.resource-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .timeline{grid-template-columns:repeat(2,minmax(0,1fr))}
  .hero-copy{padding-right:0}
}
@media (max-width: 760px){
  .top-strip__inner{flex-direction:column;align-items:flex-start;justify-content:center;padding:.6rem 0}
  .menu-toggle{display:inline-block}
  .site-nav{
    position:absolute;
    left:0;right:0;top:100%;
    background:rgba(255,253,249,.98);
    backdrop-filter:blur(14px);
    border-bottom:1px solid var(--line);
    padding:1rem;
    display:none;
    flex-direction:column;
    align-items:flex-start;
  }
  .site-nav.open{display:flex}
  .grid-2,.grid-3,.grid-4,.feature-grid,.article-grid,.resource-grid,.form-grid,.timeline,.band-stats{grid-template-columns:1fr}
  .hero-card{min-height:480px}
  .gallery{grid-template-columns:1fr 1fr}
  .gallery > *{grid-column:auto !important; min-height:12rem}
}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *{transition:none !important}
}


.embed-shell{
  overflow:hidden;
  border-radius:24px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background:#fff;
}
.embed-shell iframe{
  display:block;
  width:100%;
  min-height:720px;
  border:0;
}
.mini-list{
  margin:1rem 0 0;
  padding-left:1.1rem;
  color:var(--muted);
}
.mini-list li{margin:.35rem 0}
@media (max-width: 760px){
  .embed-shell iframe{min-height:800px}
}


.schedule-layout{align-items:start}
.scheduler-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.scheduler-card iframe{
  display:block;
  width:100%;
  min-height:720px;
  border:0;
  background:#fff;
}
.sticky-card{
  position:sticky;
  top:7rem;
}
@media (max-width: 1050px){
  .sticky-card{position:static}
}
@media (max-width: 760px){
  .scheduler-card iframe{min-height:760px}
}


/* Operational-status additions — built on the deployed v6 visual system. */
.top-strip__inner > span{max-width:62rem;line-height:1.45}
.top-strip__actions a{font-weight:700;text-decoration:underline;text-underline-offset:.18em}
.footer-status{color:#ddd1c8}
.status-card{border-left:4px solid var(--accent);padding:clamp(1.5rem,3vw,2.25rem)}
.update-date{display:inline-flex;margin-bottom:1rem;padding:.5rem .7rem;border-radius:999px;background:var(--paper-2);border:1px solid var(--line-strong);font-size:.8rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--accent-dark)}
.form-disclaimer{margin-top:1rem;padding: .85rem 1rem;border-radius:16px;background:var(--paper-2);border:1px solid var(--line-strong);font-size:.9rem;color:var(--muted)}
.footer-bottom a{text-decoration:underline;text-underline-offset:.16em}
.site-nav .btn-primary{color:#fff}
@media (max-width:760px){.top-strip__actions{width:100%;justify-content:flex-start}.top-strip__inner > span{font-size:.82rem}}


/* SEO and breadcrumb enhancements — v11. */
.breadcrumbs{margin:0 0 1rem;font-family:var(--sans);font-size:.78rem;letter-spacing:.04em}.breadcrumbs ol{display:flex;flex-wrap:wrap;gap:.45rem;margin:0;padding:0;list-style:none}.breadcrumbs li{display:flex;align-items:center;gap:.45rem}.breadcrumbs li:not(:last-child)::after{content:"/";opacity:.55}.breadcrumbs a{text-decoration:underline;text-underline-offset:.18em}.page-hero .breadcrumbs{color:rgba(255,255,255,.88)}.page-hero .breadcrumbs a{color:#fff}img{height:auto}@media(max-width:760px){.breadcrumbs{font-size:.72rem;margin-bottom:.75rem}}

.article-byline{margin:.8rem 0 0;font-family:var(--sans);font-size:.82rem;font-weight:600;letter-spacing:.04em;color:rgba(255,255,255,.86)}
