/* Shared site styles */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600;700&display=swap');

/* ===========================================================
   Inner pages (About, Join, Criteria, Events, Contact)
   Shared under .inner-page — identical design across all five.
   =========================================================== */
.inner-page{
  --ink:#1a1a1a; --paper:#ffffff; --cream:#f2ece1; --crimson:#a13a2f;
  --crimson-dark:#8a2f26; --line:#e6e1d6; --muted:#6b6b6b; --black:#161513;
}
.inner-page *{margin:0;padding:0;box-sizing:border-box;}
.inner-page{font-family:'Inter',sans-serif;color:var(--ink);line-height:1.65;background:var(--paper);}
.inner-page a{color:inherit;text-decoration:none;}
.inner-page img{max-width:100%;display:block;}
.inner-page .container{max-width:1180px;margin:0 auto;padding:0 32px;}

/* Topbar (legacy per-page component, superseded by .site-util-bar) */
.inner-page .topbar{background:var(--black);color:#cfcac0;font-size:12.5px;}
.inner-page .topbar .container{display:flex;justify-content:space-between;align-items:center;padding:9px 32px;}
.inner-page .topbar a{color:#cfcac0;}
.inner-page .topbar .tb-left span{margin-right:6px;color:#8a8578;}

/* Header (legacy per-page component, superseded by .site-header-common) */
.inner-page header.site-header{background:#fff;border-bottom:1px solid var(--line);position:relative;z-index:20;}
.inner-page .header-inner{display:flex;align-items:center;justify-content:space-between;padding:18px 32px;max-width:1180px;margin:0 auto;}
.inner-page .brand{line-height:1.15;}
.inner-page .brand .en{font-family:'Inter',sans-serif;font-weight:700;font-size:15px;letter-spacing:1.5px;color:var(--ink);}
.inner-page .brand .jp{color:var(--crimson);font-size:13px;letter-spacing:1px;margin-top:2px;}
.inner-page nav.main-nav{display:flex;gap:30px;font-size:13.5px;font-weight:600;letter-spacing:.3px;}
.inner-page nav.main-nav a{padding:6px 0;border-bottom:2px solid transparent;}
.inner-page nav.main-nav a:hover, .inner-page nav.main-nav a.active{border-color:var(--crimson);color:var(--crimson-dark);}

/* Page header banner */
.inner-page .page-hero{
  background:
    linear-gradient(135deg, rgba(22,21,19,.82), rgba(22,21,19,.62)),
    repeating-linear-gradient(45deg, #2b2823, #2b2823 2px, #201e1b 2px, #201e1b 40px);
  color:#fff;padding:64px 32px 60px;text-align:center;
}
.inner-page .page-hero .kicker{font-size:12px;letter-spacing:3px;text-transform:uppercase;color:#e0a893;margin-bottom:14px;font-weight:600;}
.inner-page .page-hero h1{font-family:'Playfair Display',serif;font-weight:700;font-size:clamp(28px,4vw,42px);font-style:italic;max-width:820px;margin:0 auto;}

/* Home hero (legacy, unused on inner pages but kept for safety) */
.inner-page .home-hero{
  background:
    linear-gradient(180deg, rgba(20,19,17,.35), rgba(15,14,13,.78)),
    repeating-linear-gradient(45deg, #33302a, #33302a 2px, #221f1b 2px, #221f1b 44px);
  color:#fff;padding:100px 32px 90px;text-align:center;
}
.inner-page .home-hero .kicker{font-size:12.5px;letter-spacing:3px;text-transform:uppercase;color:#e6b39f;margin-bottom:18px;font-weight:600;}
.inner-page .home-hero h1{font-family:'Playfair Display',serif;font-style:italic;font-weight:700;font-size:clamp(30px,5vw,50px);max-width:820px;margin:0 auto 26px;}
.inner-page .home-hero p{max-width:640px;margin:0 auto 34px;color:#e8e4dc;font-size:15.5px;}
.inner-page .home-hero p a{color:#e6b39f;font-weight:600;border-bottom:1px solid rgba(230,179,159,.5);}

.inner-page .btn-row{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;}
.inner-page .btn{padding:14px 26px;font-size:13px;font-weight:700;letter-spacing:.3px;border-radius:3px;display:inline-flex;align-items:center;gap:8px;}
.inner-page .btn-primary{background:var(--crimson);color:#fff;}
.inner-page .btn-primary:hover{background:var(--crimson-dark);}
.inner-page .btn-outline{border:1.5px solid rgba(255,255,255,.55);color:#fff;background:transparent;}
.inner-page .btn-outline:hover{border-color:#fff;}

/* Who we are / prose section */
.inner-page .whoweare{background:var(--cream);padding:80px 32px;}
.inner-page .whoweare .container{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start;}
.inner-page .kicker-sm{font-size:12px;letter-spacing:3px;text-transform:uppercase;color:var(--crimson);font-weight:700;margin-bottom:14px;}
.inner-page .whoweare h2{font-family:'Playfair Display',serif;font-size:32px;font-weight:700;color:var(--ink);line-height:1.2;}
.inner-page .prose-block{border-left:2.5px solid var(--crimson);padding-left:26px;}
.inner-page .prose-block p{color:#4a453e;font-size:15.5px;margin-bottom:14px;}

/* Section generic */
.inner-page section.block{padding:76px 32px;}
.inner-page .block-head{text-align:center;max-width:640px;margin:0 auto 48px;}
.inner-page .block-head h2{font-family:'Playfair Display',serif;font-size:28px;font-weight:700;}

/* Cards grid */
.inner-page .cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:24px;max-width:1180px;margin:0 auto;}
.inner-page .card{border:1px solid var(--line);border-radius:6px;padding:30px 26px;background:#fff;transition:box-shadow .15s;}
.inner-page .card:hover{box-shadow:0 6px 20px rgba(0,0,0,.06);}
.inner-page .card .icon{width:44px;height:44px;border-radius:50%;background:var(--cream);color:var(--crimson);display:flex;align-items:center;justify-content:center;margin-bottom:16px;font-size:18px;font-weight:700;}
.inner-page .card h3{font-family:'Playfair Display',serif;font-size:17px;margin-bottom:8px;}
.inner-page .card p{color:#666;font-size:13.5px;margin-bottom:14px;}
.inner-page .card .link{color:var(--crimson-dark);font-size:13px;font-weight:700;}
.page-contact-sia .card .icon{margin:0 auto 10px;}

/* Simple content list */
.inner-page .doc-list{max-width:720px;margin:0 auto;}
.inner-page .doc-item{display:flex;align-items:center;justify-content:space-between;padding:20px 26px;border:1px solid var(--line);border-radius:6px;margin-bottom:14px;background:#fff;}
.inner-page .doc-item .name{font-weight:600;font-size:14.5px;}
.inner-page .doc-item .dl{color:var(--crimson-dark);font-size:13px;font-weight:700;}

/* Fee table */
.inner-page table.fees{width:100%;border-collapse:collapse;font-size:14px;}
.inner-page table.fees th{text-align:left;background:var(--cream);padding:12px 16px;font-size:12px;letter-spacing:1px;text-transform:uppercase;color:var(--crimson-dark);}
.inner-page table.fees td{padding:12px 16px;border-bottom:1px solid var(--line);color:#444;}

/* People grid */
.inner-page .people{display:grid;grid-template-columns:repeat(auto-fit,minmax(170px,1fr));gap:22px;max-width:1180px;margin:0 auto;}
.inner-page .person{text-align:center;}
.inner-page .person .photo{aspect-ratio:1/1;border-radius:6px;background:linear-gradient(135deg,#d8d2c4,#c3bcac);overflow:hidden;margin-bottom:12px;}
.inner-page .person .photo img{width:100%;height:100%;object-fit:cover;border-radius:5px;}
.inner-page .person h4{font-size:14px;font-weight:700;}
.inner-page .person span{font-size:12.5px;color:var(--crimson-dark);}

/* Footer (legacy per-page component, superseded by .site-footer-common) */
.inner-page footer.site-footer{background:var(--black);color:#c9c4b9;padding:64px 32px 24px;}
.inner-page .footer-top{max-width:1180px;margin:0 auto;display:grid;grid-template-columns:1.3fr 1fr 1fr 1fr;gap:40px;padding-bottom:36px;border-bottom:1px solid rgba(255,255,255,.1);}
.inner-page .footer-top .kicker-sm{color:#e0a893;}
.inner-page .footer-brand h3{font-family:'Playfair Display',serif;font-size:20px;color:#fff;margin-top:6px;}
.inner-page .footer-top h5{font-size:11.5px;letter-spacing:1.5px;text-transform:uppercase;color:#8a8578;margin-bottom:10px;}
.inner-page .footer-top p, .inner-page .footer-top a{font-size:13.5px;color:#c9c4b9;}
.inner-page .footer-bottom{max-width:1180px;margin:0 auto;display:flex;justify-content:space-between;padding-top:20px;font-size:12.5px;color:#7a7568;flex-wrap:wrap;gap:10px;}

@media (max-width:900px){
  .inner-page nav.main-nav{display:none;}
  .inner-page .whoweare .container{grid-template-columns:1fr;}
  .inner-page .footer-top{grid-template-columns:1fr 1fr;}
}


/* ===========================================================
   Home page
   =========================================================== */
body.page-home{
  --ink:#211F1B;
  --paper:#FFFFFF;
  --paper-2:#F3F2EF;
  --red:#8C2F26;
  --gold:#9C7A3C;
  --line:rgba(33,31,27,0.12);
  --muted:#635E54;
}

*{box-sizing:border-box;}
body.page-home{scroll-behavior:smooth;}
body.page-home{
  margin:0;background:var(--paper);color:var(--ink);
  font-family:'Inter',-apple-system,sans-serif;
  -webkit-font-smoothing:antialiased;
}
body.page-home a{color:inherit;text-decoration:none;}
body.page-home img{display:block;max-width:100%;}
body.page-home :focus-visible{outline:2px solid var(--red);outline-offset:3px;}

/* ---------- Utility bar ---------- */
body.page-home .util-bar{
  background:var(--ink);color:#D9D4C7;
  font-size:12.5px;letter-spacing:.03em;
  padding:8px 40px;
  display:flex;justify-content:space-between;align-items:center;
}
body.page-home .util-bar a{color:#D9D4C7;opacity:.9;}
body.page-home .util-bar a:hover{opacity:1;color:#fff;}
body.page-home .util-bar .social{display:flex;align-items:center;gap:6px;}
body.page-home .util-bar svg{width:14px;height:14px;fill:#D9D4C7;}

/* ---------- Header ---------- */
body.page-home header{
  display:flex;align-items:center;justify-content:space-between;
  padding:20px 40px;border-bottom:1px solid var(--line);
  background:var(--paper);position:sticky;top:0;z-index:50;
}
body.page-home .brand{display:flex;align-items:center;gap:14px;}
body.page-home .brand img{height:46px;width:auto;}
body.page-home .brand-fallback{
  display:none;font-family:'Lora',serif;font-weight:700;font-size:16px;letter-spacing:.03em;
}

body.page-home nav.primary{display:flex;align-items:center;gap:2px;}
body.page-home .nav-item{position:relative;}
body.page-home .nav-item > a{
  display:block;padding:12px 16px;font-size:13.5px;font-weight:600;
  letter-spacing:.04em;color:var(--ink);
  border-bottom:2px solid transparent;
}
body.page-home .nav-item > a:hover{color:var(--red);}
body.page-home .nav-item.has-drop > a::after{
  content:"";display:inline-block;margin-left:5px;
  border:4px solid transparent;border-top-color:currentColor;
  vertical-align:middle;opacity:.55;
}
body.page-home .dropdown{
  position:absolute;top:100%;left:0;min-width:220px;
  background:#fff;border:1px solid var(--line);border-top:2px solid var(--red);
  box-shadow:0 12px 28px rgba(33,31,27,.08);
  opacity:0;visibility:hidden;transform:translateY(6px);
  transition:all .16s ease;padding:8px 0;
}
body.page-home .nav-item.has-drop:hover .dropdown, body.page-home .nav-item.has-drop:focus-within .dropdown{
  opacity:1;visibility:visible;transform:translateY(0);
}
body.page-home .dropdown a{
  display:block;padding:10px 20px;font-size:13px;font-weight:500;color:var(--muted);
}
body.page-home .dropdown a:hover{color:var(--red);background:var(--paper);}

body.page-home .header-actions{display:flex;align-items:center;gap:18px;}
body.page-home .icon-btn{
  width:36px;height:36px;border-radius:50%;border:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;
}
body.page-home .icon-btn svg{width:15px;height:15px;stroke:var(--ink);fill:none;stroke-width:1.8;}

body.page-home .menu-toggle{display:none;}

/* ---------- Hero ---------- */
body.page-home .hero{
  text-align:center;padding:88px 32px 74px; margin:0 auto;
  background-image: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)), url('images/hero-bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
body.page-home .hero .eyebrow{
  font-family:'Inter',sans-serif;font-size:12px;font-weight:700;letter-spacing:.22em;
  text-transform:uppercase;color:#fff;margin:0 0 22px;
}
body.page-home .hero h1{
  font-family:'Lora',serif;font-weight:600;font-style:italic;
  font-size:clamp(30px,4.2vw,44px);line-height:1.28;
  margin:0 0 28px;color:#fff;
}
body.page-home .hero .lead{
  font-size:16px;line-height:1.75;color:#fff;
  max-width:600px;margin:0 auto 38px;
}
body.page-home .hero .lead a{color:var(--red);font-weight:600;border-bottom:1px solid rgba(140,47,38,.35);}
body.page-home .hero .lead a:hover{border-color:var(--red);}

body.page-home .cta-row{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;}
body.page-home .btn{
  display:inline-flex;align-items:center;gap:9px;
  padding:14px 26px;font-size:13.5px;font-weight:600;letter-spacing:.02em;
  border-radius:3px;border:1.5px solid transparent;
}
body.page-home .btn-primary{background: var(--red);color:var(--paper);}
body.page-home .btn-primary:hover{background:#fff; color: var(--red);}
body.page-home .btn-secondary{border-color:#fff;color:#fff;}
body.page-home .btn-secondary:hover{background:#fff;    color: var(--red);}
body.page-home .btn svg{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:2;}

/* ---------- Divider with mark ---------- */
body.page-home .divider{
  display:flex;align-items:center;justify-content:center;gap:16px;
  max-width:420px;margin:0 auto;padding-bottom:70px;
}
body.page-home .divider .rule{height:1px;flex:1;background:var(--line);}
body.page-home .divider .ring{
  width:22px;height:22px;border:1.5px solid var(--gold);border-radius:50%;position:relative;flex:none;
}
body.page-home .divider .ring::after{content:"";position:absolute;inset:6px;background:var(--gold);border-radius:50%;}

/* ---------- Identity band ---------- */
body.page-home .identity{
  background: #F3EEE5;color:#211F1B;
  padding:80px 40px;
}
body.page-home .identity-inner{
  max-width:1040px;margin:0 auto;
  display:grid;grid-template-columns:.85fr 1.15fr;gap:64px;align-items:center;
}
body.page-home .identity .kicker{
  font-size:11.5px;font-weight:600;letter-spacing:.24em;text-transform:uppercase;
  color:var(--red);margin:0 0 22px;
}
body.page-home .identity .wordmark{
  font-family:'Lora',serif;font-weight:500;font-size:clamp(24px,3vw,34px);
  line-height:1.4;letter-spacing:.01em;margin:0;
}
body.page-home .identity .wordmark strong{
  font-weight:700;color:var(--gold);font-size:1.15em;
}
body.page-home .identity-copy p{
  font-size:15.5px;line-height:1.8;color:#211F1B;margin:0;
  border-left:2px solid var(--red);padding-left:26px;
}

/* ---------- Quick links ---------- */
body.page-home .quick-links{
  max-width:1040px;margin:0 auto;padding:80px 40px;
}
body.page-home .section-head{
  text-align:center;margin:0 0 40px;
}
body.page-home .section-head .kicker{
  font-size:11.5px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  color:var(--red);margin:0 0 12px;
}
body.page-home .section-head h2{
  font-family:'Lora',serif;font-size:24px;font-weight:600;margin:0;
}
body.page-home .ql-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:22px;
}
body.page-home .quick-links a{
  background:#fff;border:1px solid var(--line);border-radius:6px;
  padding:30px 24px;display:flex;flex-direction:column;gap:12px;
  transition:border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
body.page-home .quick-links a:hover{
  border-color:var(--red);transform:translateY(-3px);
  box-shadow:0 14px 28px rgba(33,31,27,.08);
}
body.page-home .ql-icon{
  width:38px;height:38px;border-radius:50%;background:var(--paper-2);
  display:flex;align-items:center;justify-content:center;margin-bottom:4px;
}
body.page-home .ql-icon svg{width:17px;height:17px;stroke:var(--red);fill:none;stroke-width:1.8;}
body.page-home .quick-links .ql-title{font-family:'Lora',serif;font-size:17px;font-weight:600;}
body.page-home .quick-links .ql-desc{font-size:13px;color:var(--muted);line-height:1.6;margin:0;}
body.page-home .quick-links .ql-arrow{
  margin-top:auto;padding-top:6px;font-size:12px;font-weight:600;color:var(--red);
  display:flex;align-items:center;gap:6px;
}

/* ---------- Footer ---------- */
body.page-home footer{
  background:var(--ink);color:#D9D4C7;
  padding:52px 40px 26px;
}
body.page-home .footer-top{
  max-width:1040px;margin:0 auto;
  padding-bottom:34px;border-bottom:1px solid rgba(217,212,199,.14);
}
body.page-home .footer-top .kicker{
  font-size:11.5px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  color:#fff;margin:0 0 24px;
}
body.page-home .footer-cols{
  display:flex;justify-content:space-between;align-items:flex-start;gap:24px;flex-wrap:wrap;
}
body.page-home .footer-brand{font-family:'Lora',serif;font-size:15px;letter-spacing:.03em;line-height:1.6;}
body.page-home .footer-brand strong{color:var(--gold);font-weight:700;}
body.page-home .footer-contact{
  display:flex;gap:36px;font-size:13px;flex-wrap:wrap;
}
body.page-home .footer-contact dt{
  font-size:10.5px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:#9A9585;margin-bottom:6px;
}
body.page-home .footer-contact dd{margin:0;font-weight:500;color:#EDEAE0;}
body.page-home .footer-contact a{color:#EDEAE0;}
body.page-home .footer-contact a:hover{color:#fff;}
body.page-home .footer-bottom{
  max-width:1040px;margin:0 auto;padding-top:22px;
  display:flex;justify-content:space-between;align-items:center;
  font-size:12px;color:#9A9585;flex-wrap:wrap;gap:12px;
}
body.page-home .footer-bottom a{color:#9A9585;}
body.page-home .footer-bottom a:hover{color:#fff;}
body.page-home .to-top{
  display:flex;align-items:center;gap:6px;font-weight:600;
}
body.page-home .to-top svg{width:11px;height:11px;stroke:currentColor;fill:none;stroke-width:2;}

/* ---------- Responsive ---------- */
@media (max-width:860px){
  body.page-home nav.primary{display:none;}
  body.page-home .util-bar{padding:8px 20px;}
  body.page-home header{padding:16px 20px;}
  body.page-home .identity-inner{grid-template-columns:1fr;gap:28px;}
  body.page-home .ql-grid{grid-template-columns:1fr 1fr;}
  body.page-home .quick-links{padding:60px 20px;}
  body.page-home .footer-cols{flex-direction:column;gap:26px;}
  body.page-home footer{padding:44px 20px 24px;}
  body.page-home .footer-bottom{flex-direction:column;gap:10px;text-align:center;padding:0 20px;}
}
@media (max-width:480px){
  body.page-home .ql-grid{grid-template-columns:1fr;}
  body.page-home .hero{padding:64px 22px 54px;}
  body.page-home .footer-contact{gap:22px;}
}


/* ===== Shared header/footer: canonical home design ===== */
.site-util-bar{background:#211F1B;color:#D9D4C7;font-size:12.5px;letter-spacing:.03em;padding:8px 40px;display:flex;justify-content:space-between;align-items:center;}
.site-util-bar a{color:#D9D4C7;opacity:.9}.site-util-bar a:hover{opacity:1;color:#fff}.site-util-bar .social{display:flex;align-items:center;gap:6px}.site-util-bar svg{width:14px;height:14px;fill:#D9D4C7}
.site-header-common{display:flex;align-items:center;justify-content:space-between;padding:20px 40px;border-bottom:1px solid rgba(33,31,27,.12);background:#fff;position:sticky;top:0;z-index:50;}
.brand-common{display:flex;align-items:center;gap:14px}.brand-common img{height:46px;width:auto}.brand-fallback{display:none;font-family:'Lora',serif;font-weight:700;font-size:16px;letter-spacing:.03em}
nav.primary-common{display:flex;align-items:center;gap:2px}.primary-common .nav-item{position:relative}.primary-common .nav-item>a{display:block;padding:12px 16px;font-size:13.5px;font-weight:600;letter-spacing:.04em;color:#211F1B;border-bottom:2px solid transparent}.primary-common .nav-item>a:hover{color:#8C2F26}.primary-common .has-drop>a:after{content:"";display:inline-block;margin-left:5px;border:4px solid transparent;border-top-color:currentColor;vertical-align:middle;opacity:.55}
.primary-common .dropdown{position:absolute;top:100%;left:0;min-width:220px;background:#fff;border:1px solid rgba(33,31,27,.12);border-top:2px solid #8C2F26;box-shadow:0 12px 28px rgba(33,31,27,.08);opacity:0;visibility:hidden;transform:translateY(6px);transition:all .16s ease;padding:8px 0}.primary-common .has-drop:hover .dropdown,.primary-common .has-drop:focus-within .dropdown{opacity:1;visibility:visible;transform:translateY(0)}.primary-common .dropdown a{display:block;padding:10px 20px;font-size:13px;font-weight:500;color:#635E54}.primary-common .dropdown a:hover{color:#8C2F26;background:#F3F2EF}
.mobile-toggle-common{display:none;border:1px solid rgba(33,31,27,.12);background:#fff;width:40px;height:40px;align-items:center;justify-content:center;cursor:pointer}.mobile-toggle-common svg{width:20px;height:20px;stroke:#211F1B;fill:none;stroke-width:2}
.mobile-nav-common{display:none;background:#fff;border-bottom:1px solid rgba(33,31,27,.12);padding:8px 20px}.mobile-nav-common.open{display:block}.mobile-nav-common a{display:block;padding:12px 8px;font-size:14px;font-weight:600;border-bottom:1px solid rgba(33,31,27,.08)}.mobile-nav-common .mobile-sub{padding-left:20px;font-weight:500;font-size:13px}
.site-footer-common{background:#211F1B;color:#D9D4C7;padding:52px 40px 26px}.site-footer-common .footer-top-common{max-width:1040px;margin:0 auto;padding-bottom:34px;border-bottom:1px solid rgba(217,212,199,.14)}.site-footer-common .footer-kicker{font-size:11.5px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:#fff;margin:0 0 24px}.site-footer-common .footer-cols-common{display:flex;justify-content:space-between;align-items:flex-start;gap:24px;flex-wrap:wrap}.site-footer-common .footer-brand-common{font-family:'Lora',serif;font-size:15px;letter-spacing:.03em;line-height:1.6}.site-footer-common .footer-contact-common{display:flex;gap:36px;font-size:13px;flex-wrap:wrap}.site-footer-common dt{font-size:10.5px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:#9A9585;margin-bottom:6px}.site-footer-common dd{margin:0;font-weight:500;color:#EDEAE0}.site-footer-common a{color:#EDEAE0}.site-footer-common a:hover{color:#fff}.site-footer-common .footer-bottom-common{max-width:1040px;margin:0 auto;padding-top:22px;display:flex;justify-content:space-between;align-items:center;font-size:12px;color:#9A9585;flex-wrap:wrap;gap:12px}.site-footer-common .footer-bottom-common a{color:#9A9585}.site-footer-common .to-top-common{display:flex;align-items:center;gap:6px;font-weight:600}.site-footer-common .to-top-common svg{width:11px;height:11px;stroke:currentColor;fill:none;stroke-width:2}
@media(max-width:860px){.site-util-bar{padding:8px 20px}.site-header-common{padding:16px 20px}.primary-common{display:none!important}.mobile-toggle-common{display:flex}.site-footer-common{padding:44px 20px 24px}.site-footer-common .footer-cols-common{flex-direction:column;gap:26px}.site-footer-common .footer-bottom-common{flex-direction:column;gap:10px;text-align:center;padding:0 20px}.mobile-nav-common{display:none}.mobile-nav-common.open{display:block}}
@media(max-width:480px){.site-util-bar{font-size:11px}.site-footer-common .footer-contact-common{gap:22px}}

/* Events flyers */
.event-flyer-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;align-items:stretch}
.event-flyer{display:block}
.event-flyer .photo{aspect-ratio:3/4!important;background:#f2ece1!important;overflow:hidden}
.event-flyer img{width:100%;height:100%;object-fit:contain;background:#fff}
.event-lightbox{position:fixed;inset:0;background:rgba(0,0,0,.88);display:none;align-items:center;justify-content:center;padding:30px;z-index:9999}
.event-lightbox.open{display:flex}.event-lightbox img{max-width:95vw;max-height:92vh;width:auto;height:auto;object-fit:contain;background:#fff}.event-lightbox-close{position:absolute;right:18px;top:10px;background:none;border:0;color:#fff;font-size:38px;cursor:pointer}
@media(max-width:700px){.event-flyer-grid{grid-template-columns:1fr!important}}


/* ===== Final responsive/header fixes ===== */
.brand-common { flex: 0 0 auto; }
.brand-common img {
  display:block;
  width:210px;
  height:auto;
  max-height:52px;
  object-fit:contain;
}
@media (max-width:860px){
  .site-header-common{position:relative;}
  .brand-common img{width:200px;max-height:50px;}
  .mobile-nav-common{display:none;}
  .mobile-nav-common.open{display:block;}
  .mobile-nav-common details{border-bottom:1px solid rgba(33,31,27,.08);}
  .mobile-nav-common summary{list-style:none;cursor:pointer;padding:12px 8px;font-size:14px;font-weight:600;}
  .mobile-nav-common summary::-webkit-details-marker{display:none;}
  .mobile-nav-common details > a{border-bottom:0;}
  .mobile-nav-common .mobile-sub{padding-left:24px;font-weight:500;font-size:13px;}
}
@media (max-width:700px){
  .identity-inner{
    grid-template-columns:1fr !important;
    gap:28px !important;
  }
  .identity-copy{
    width:100%;
    min-width:0;
  }
  .identity-copy p{
    overflow-wrap:anywhere;
    word-break:normal;
  }
  .ql-grid{
    grid-template-columns:1fr !important;
  }
  .quick-links{padding-left:20px !important;padding-right:20px !important;}
  .site-footer-common .footer-cols-common{
    flex-direction:column;
  }
  .site-footer-common .footer-contact-common{
    width:100%;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:22px;
  }
}
@media (max-width:420px){
  .site-util-bar{padding:8px 14px;}
  .site-header-common{padding:12px 14px;}
  .brand-common img{width:175px;}
  .mobile-nav-common{padding:8px 14px;}
  .site-footer-common .footer-contact-common{grid-template-columns:1fr;}
}


/* ===== VERIFIED RESPONSIVE LAYOUT ===== */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;overflow-x:hidden}
body{margin:0;max-width:100%;overflow-x:hidden}
img{max-width:100%;height:auto}

.brand-common img{width:250px;height:auto;max-width:100%;display:block;object-fit:contain}

/* Common mobile navigation */
.mobile-nav-common{display:none}
@media (max-width:860px){
  .site-header-common{padding:14px 20px!important;position:relative;min-height:70px}
  .brand-common{min-width:0;max-width:calc(100% - 58px)}
  .brand-common img{display:block;width:200px;max-width:100%;height:auto;max-height:50px;object-fit:contain}
  nav.primary-common{display:none!important}
  .mobile-toggle-common{display:flex!important;flex:0 0 42px;width:42px;height:42px;padding:0;align-items:center;justify-content:center;z-index:3}
  .mobile-nav-common{display:none;background:#fff;border-bottom:1px solid rgba(33,31,27,.12);padding:8px 20px;position:relative;z-index:49}
  .mobile-nav-common.open{display:block}
  .mobile-nav-common>a,.mobile-nav-common summary{display:block;width:100%;padding:13px 8px;font-size:14px;font-weight:600;line-height:1.35;color:#211F1B;text-decoration:none;border-bottom:1px solid rgba(33,31,27,.08);cursor:pointer}
  .mobile-nav-common>a:hover{color:#8C2F26}
  .mobile-nav-common details{border-bottom:1px solid rgba(33,31,27,.08)}
  .mobile-nav-common details>a{border-bottom:0}
  .mobile-nav-common summary{list-style:none}
  .mobile-nav-common summary::-webkit-details-marker{display:none}
  .mobile-nav-common summary::after{content:'+';float:right;color:#8C2F26;font-size:18px;font-weight:400}
  .mobile-nav-common details[open] summary::after{content:'−'}
  .mobile-nav-common .mobile-sub{padding-left:28px;font-size:13px;font-weight:500}
}

/* Home identity: never allow the text column to become a thin strip */
@media (max-width:900px){
  body.page-home .identity{padding:64px 24px}
  body.page-home .identity-inner{grid-template-columns:minmax(0,1fr)!important;gap:30px!important;width:100%;max-width:760px}
  body.page-home .identity-copy{min-width:0;width:100%}
  body.page-home .identity-copy p{max-width:none;width:100%;padding-left:20px;overflow-wrap:break-word}
}

/* Home cards */
@media (max-width:900px){body.page-home .ql-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:560px){
  body.page-home .hero{padding:64px 20px 54px}
  body.page-home .identity{padding:54px 20px}
  body.page-home .identity-inner{gap:26px!important}
  body.page-home .identity .wordmark{font-size:30px;line-height:1.28}
  body.page-home .identity-copy p{font-size:15px;line-height:1.7}
  body.page-home .quick-links{padding:56px 20px}
  body.page-home .ql-grid{grid-template-columns:1fr}
  body.page-home .quick-links a{padding:24px 20px}
}

/* Inner pages */
@media (max-width:760px){
  .inner-page .whoweare .container{grid-template-columns:1fr;gap:32px}
  .inner-page .container{padding-left:20px;padding-right:20px}
  .inner-page .whoweare,.inner-page section.block{padding-left:20px;padding-right:20px}
  .cards{grid-template-columns:1fr!important}
  .doc-list{grid-template-columns:1fr!important}
  .people{grid-template-columns:1fr!important}
}

/* Footer */
@media (max-width:700px){
  .site-footer-common{padding:40px 20px 24px}
  .site-footer-common .footer-cols-common{flex-direction:column;gap:24px}
  .site-footer-common .footer-contact-common{width:100%;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}
  .site-footer-common .footer-bottom-common{padding:20px 0 0;flex-direction:column;align-items:flex-start;gap:12px}
}
@media (max-width:420px){
  .site-util-bar{padding:8px 14px}
  .site-util-bar>span:first-child{white-space:normal}
  .site-header-common{padding:12px 14px!important}
  .brand-common img{width:175px}
  .mobile-nav-common{padding:8px 14px}
  .site-footer-common .footer-contact-common{grid-template-columns:1fr}
}

/* Events flyers */
@media (max-width:700px){.event-flyer-grid{grid-template-columns:1fr!important}.event-flyer .photo{aspect-ratio:3/4!important}}


/* ===== FINAL DESKTOP HEADER/FOOTER ALIGNMENT ===== */
/* Keep inner pages visually identical to the home page common header/footer. */
.site-util-bar{
  padding:8px 40px;
}
.site-header-common{
  padding:20px 40px;
  min-height:0;
}
.brand-common{
  flex:0 0 auto;
}
.brand-common img{
  width:250px;
  height:auto;
  max-width:250px;
  max-height:none;
  display:block;
  object-fit:contain;
}
.site-footer-common{
  padding:52px 40px 26px;
}
.site-footer-common .footer-top-common,
.site-footer-common .footer-bottom-common{
  max-width:1040px;
  margin-left:auto;
  margin-right:auto;
}

/* Home hero: keep the chairman name on the same readable line. */
body.page-home .hero .lead{
  max-width:760px;
}
body.page-home .hero .lead a{
  white-space:nowrap;
}

/* Responsive overrides */
@media (max-width:860px){
  .site-util-bar{padding:8px 20px;}
  .site-header-common{padding:16px 20px;}
  .brand-common img{
    width:200px;
    max-width:calc(100vw - 100px);
    max-height:50px;
  }
}
@media (max-width:420px){
  .site-util-bar{padding:8px 14px;}
  .site-header-common{padding:12px 14px;}
  .brand-common img{
    width:175px;
    max-width:calc(100vw - 90px);
    max-height:48px;
  }
}


/* ===== FINAL EXACT HOME HEADER / FOOTER SPACING ===== */
.site-util-bar{
  height:33px !important;
  min-height:33px !important;
  padding:8px 40px !important;
  box-sizing:border-box !important;
}
.site-header-common{
  height:83px !important;
  min-height:83px !important;
  padding:20px 40px !important;
  box-sizing:border-box !important;
  position:relative !important;
}
.site-header-common .brand-common{
  height:46px !important;
  display:flex !important;
  align-items:center !important;
}
.site-header-common .brand-common img{
  width:250px !important;
  height:46px !important;
  max-width:250px !important;
  max-height:46px !important;
  object-fit:contain !important;
  display:block !important;
}
.site-header-common .primary-common{
  height:46px !important;
  display:flex !important;
  align-items:center !important;
}
.site-footer-common{
  padding:52px 40px 26px !important;
  box-sizing:border-box !important;
}
.site-footer-common .footer-top-common{
  max-width:1040px !important;
  margin:0 auto !important;
  padding-bottom:34px !important;
}
.site-footer-common .footer-cols-common{
  display:flex !important;
  justify-content:space-between !important;
  align-items:flex-start !important;
  gap:24px !important;
  flex-wrap:wrap !important;
}
.site-footer-common .footer-contact-common{
  display:flex !important;
  gap:36px !important;
  flex-wrap:wrap !important;
}
.site-footer-common .footer-bottom-common{
  max-width:1040px !important;
  margin:0 auto !important;
  padding-top:22px !important;
  display:flex !important;
  justify-content:space-between !important;
  align-items:center !important;
}
@media(max-width:860px){
  .site-util-bar{
    height:auto !important;
    min-height:33px !important;
    padding:8px 20px !important;
  }
  .site-header-common{
    height:auto !important;
    min-height:70px !important;
    padding:14px 20px !important;
  }
  .site-header-common .brand-common{height:auto !important;}
  .site-header-common .brand-common img{
    width:200px !important;
    height:auto !important;
    max-width:calc(100vw - 100px) !important;
    max-height:50px !important;
  }
  .site-header-common .primary-common{display:none !important;}
  .site-footer-common{padding:40px 20px 24px !important;}
  .site-footer-common .footer-cols-common{flex-direction:column !important;gap:24px !important;}
  .site-footer-common .footer-contact-common{
    width:100% !important;
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:20px !important;
  }
  .site-footer-common .footer-bottom-common{
    padding-top:20px !important;
    flex-direction:column !important;
    align-items:flex-start !important;
    gap:12px !important;
  }
}
@media(max-width:420px){
  .site-util-bar{padding:8px 14px !important;}
  .site-header-common{padding:12px 14px !important;}
  .site-header-common .brand-common img{width:175px !important;max-width:calc(100vw - 90px) !important;max-height:48px !important;}
  .site-footer-common .footer-contact-common{grid-template-columns:1fr !important;}
}

/* ===== Accessibility & performance polish ===== */
.skip-link{position:absolute;left:-9999px;top:0;background:#8C2F26;color:#fff;padding:10px 18px;z-index:9999;font-size:13px;font-weight:600;border-radius:0 0 4px 0;}
.skip-link:focus{left:0;}
.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;}
}
