:root{
  --bg:#ffffff;
  --surface:#ffffff;
  --soft:#f6f7f9;

  --ink:#0b0f17;
  --muted:rgba(11,15,23,.72);
  --line:rgba(11,15,23,.12);

  --brand:#c1121f;
  --brand-2:#9b0d18;

  --shadow-sm:0 10px 28px rgba(16,24,40,.10);
  --shadow-md:0 18px 55px rgba(16,24,40,.14);

  --radius:18px;
  --max:1180px;

  --font:ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;

  --nav-h:76px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  color:var(--ink);
  background:var(--bg);
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
.wrap{max-width:var(--max);margin:0 auto;padding:0 18px}
@media (min-width:900px){.wrap{padding:0 22px}}

h1,h2,h3{letter-spacing:-.02em;margin:0 0 .6rem;line-height:1.15}
h1{font-size:clamp(2.0rem, 4.5vw, 3.2rem)}
h2{font-size:clamp(1.6rem, 3.5vw, 2.2rem)}
h3{font-size:1.1rem}
p{margin:.5rem 0}

.small{font-size:.92rem}
.muted{color:var(--muted)}
.lead{font-size:1.08rem;color:var(--muted);max-width:56ch}

/* Buttons (site-wide) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.85rem 1.05rem;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:750;
  letter-spacing:.01em;
  cursor:pointer;
  user-select:none;
  white-space:nowrap;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.btn:active{transform:translateY(1px)}
.btn--full{width:100%}
.btn--sm{padding:.56rem .78rem;font-size:.86rem}

.btn--primary{
  background:linear-gradient(180deg,var(--brand),var(--brand-2));
  color:#fff;
  box-shadow:0 14px 28px rgba(193,18,31,.18);
}
.btn--primary:hover{box-shadow:0 18px 40px rgba(193,18,31,.24)}

.btn--ghost{
  background:#fff;
  border-color:rgba(11,15,23,.14);
  color:var(--ink);
}
.btn--ghost:hover{
  box-shadow:var(--shadow-sm);
  border-color:rgba(11,15,23,.22);
}
.btn.is-active{border-color:rgba(193,18,31,.32)}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:200;
  background:#fff;
  border-bottom:1px solid rgba(11,15,23,.08);
}
.header.is-scrolled{box-shadow:0 10px 30px rgba(16,24,40,.08)}

.topbar{
  background:var(--soft);
  border-bottom:1px solid rgba(11,15,23,.08);
}
.topbar__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:10px 0;
  font-size:.92rem;
  color:rgba(11,15,23,.82);
}
.topbar a{font-weight:800}
.topbar .sep{margin:0 8px;color:rgba(11,15,23,.35)}

.header__inner{
  display:flex;
  align-items:center;
  min-height:var(--nav-h);
}

/* Nav */
.nav{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.nav__logo img{width:auto;height:54px}

/* Desktop */
.nav__desktop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex:1;
}
.nav__links{
  display:flex;
  align-items:center;
  gap:14px;
}
.nav__link{
  padding:10px 10px;
  border-radius:12px;
  font-weight:850;
  color:rgba(11,15,23,.86);
}
.nav__link:hover{background:rgba(11,15,23,.05)}
.nav__link.is-active{color:var(--brand)}

.nav__actions{
  display:flex;
  align-items:center;
  gap:12px;
}

/* Dropdown (details) */
.dd{position:relative}
.dd__summary{
  list-style:none;
  cursor:pointer;
  padding:10px 12px;
  border-radius:12px;
  font-weight:850;
  color:rgba(11,15,23,.86);
}
.dd__summary::-webkit-details-marker{display:none}
.dd[open] .dd__summary{background:rgba(11,15,23,.05)}
.dd__menu{
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  min-width:290px;
  background:#fff;
  border:1px solid rgba(11,15,23,.10);
  border-radius:16px;
  box-shadow:var(--shadow-sm);
  padding:8px;
  z-index:50;
}
.dd--right .dd__menu{left:auto;right:0}
.dd__item{
  display:block;
  padding:10px 10px;
  border-radius:12px;
  font-weight:850;
  font-size:.95rem;
  color:rgba(11,15,23,.82);
  white-space:normal;
  line-height:1.25;
}
.dd__item:hover{background:rgba(11,15,23,.06)}
.dd__item.is-active{background:rgba(193,18,31,.10);color:var(--ink)}

/* Mobile toggle */
.nav__toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  border:1px solid rgba(11,15,23,.12);
  background:#fff;
  padding:10px;
  border-radius:12px;
}
.nav__toggle span{
  width:22px;
  height:2px;
  background:var(--ink);
  border-radius:99px;
  opacity:.9;
}

/* Fullscreen mobile menu */
.nav__backdrop{
  position:fixed;
  inset:0;
  z-index:9998;
  background:rgba(0,0,0,.08);
}
body.is-navOpen{
  overflow:hidden;
  touch-action:none;
}

.nav__panel{
  position:fixed;
  inset:0;
  z-index:9999;
  background:#fff !important;
  opacity:1 !important;
  backdrop-filter:none !important;
  transform:translate3d(0, 12px, 0);
  visibility:hidden;
  pointer-events:none;
  transition:opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  will-change:opacity, transform;
}
.nav__panel.is-open{
  transform:translate3d(0, 0, 0);
  visibility:visible;
  pointer-events:auto;
  transition:opacity .22s ease, transform .22s ease, visibility 0s;
}

.nav__drawerTop{
  position:sticky;
  top:0;
  background:#fff;
  border-bottom:1px solid rgba(11,15,23,.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  padding-top:calc(12px + env(safe-area-inset-top));
}
.nav__drawerTitle{
  font-weight:900;
  font-size:.95rem;
  color:rgba(11,15,23,.88);
  letter-spacing:.2px;
}

.nav__close{
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(11,15,23,.12);
  background:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.nav__close:active{transform:translateY(1px)}
.nav__close span{
  display:block;
  width:18px;
  height:2px;
  background:transparent;
  position:relative;
  border-radius:99px;
}
.nav__close span::before,
.nav__close span::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background:var(--ink);
  border-radius:99px;
  top:0;
}
.nav__close span::before{transform:rotate(45deg)}
.nav__close span::after{transform:rotate(-45deg)}

.nav__panelInner{
  height:100%;
  overflow:auto;
  -webkit-overflow-scrolling:touch;
  overscroll-behavior:contain;
  padding:10px 18px 18px;
  padding-bottom:calc(18px + env(safe-area-inset-bottom));
  max-width:720px;
  margin:0 auto;
}

.nav__mLink{
  display:block;
  padding:16px 2px;
  font-size:1.05rem;
  font-weight:850;
  color:rgba(11,15,23,.92);
  border-bottom:1px solid rgba(11,15,23,.10);
}
.nav__mLink:active{opacity:.75}
.nav__mLink.is-active{color:var(--brand)}

.nav__mDivider{height:14px}
.nav__mLang{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 0 6px;
}
.nav__mLang a{
  font-weight:850;
  font-size:.95rem;
  color:rgba(11,15,23,.85);
}
.nav__mLang a.is-active{color:var(--brand)}

.nav__panel .btn{border-radius:12px}

@media (max-width:980px){
  .nav__desktop{display:none}
  .nav__toggle{display:inline-flex}
}

/* Sections */
.section{padding:64px 0}
@media (min-width:900px){.section{padding:84px 0}}
.card{
  background:#fff;
  border:1px solid rgba(11,15,23,.10);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow-sm);
}

/* =========================
   FOOTER (Premium)
   ========================= */
.footer{
  border-top:1px solid rgba(11,15,23,.10);
  background:var(--soft);
  color:var(--ink);
}
.footer__top{padding:52px 0}

.footerGrid{
  display:grid;
  gap:28px;
  grid-template-columns:1.6fr 1fr 1fr 1fr;
  align-items:start;
}
@media (max-width:980px){
  .footerGrid{grid-template-columns:1fr 1fr}
}
@media (max-width:640px){
  .footerGrid{grid-template-columns:1fr}
}

.footer__brand{
  display:flex;
  flex-direction:column;
  gap:12px;
  min-width:0;
}
.footer__logo{
  display:inline-flex;
  align-items:center;
  gap:12px;
}
.footer__logo img{
  height:54px;
  width:auto;
  max-width:240px;
  object-fit:contain;
}

.footer__tagline{
  margin:0;
  color:rgba(11,15,23,.72);
  line-height:1.45;
  max-width:52ch;
}

.footer__pillRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:4px;
}
.footer__pillRow .btn{border-radius:999px}

.footer__meta{
  margin:6px 0 0;
  color:rgba(11,15,23,.74);
  font-size:.92rem;
  line-height:1.45;
}
.footer__meta strong{
  color:rgba(11,15,23,.92);
  font-weight:900;
}

.footer__colTitle{
  margin:0 0 10px;
  font-size:1.02rem;
  font-weight:900;
  letter-spacing:.2px;
}
.footer__colHint{
  margin:0 0 14px;
  font-size:.92rem;
  color:rgba(11,15,23,.66);
}

.footer__links{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
}
.footer__links a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 0;
  border-bottom:1px solid rgba(11,15,23,.10);
  color:rgba(11,15,23,.84);
  font-weight:800;
  line-height:1.25;
}
.footer__links a:hover{color:rgba(11,15,23,.98)}
.footer__links a:active{opacity:.75}

.footer__langInline{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  padding-top:2px;
}
.footer__langInline a{
  font-weight:900;
  color:rgba(11,15,23,.82);
  padding:8px 0;
  border-bottom:2px solid transparent;
}
.footer__langInline a:hover{
  color:rgba(11,15,23,.98);
  border-bottom-color:rgba(193,18,31,.32);
}
.footer__langInline a.is-active{
  color:var(--brand);
  border-bottom-color:rgba(193,18,31,.55);
}

/* Footer bottom + powered by */
.footer__bottom{
  border-top:1px solid rgba(11,15,23,.10);
  background:#fff;
}
.footer__bottomInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 0;
  font-size:.92rem;
  color:rgba(11,15,23,.70);
  flex-wrap:wrap;
}
@media (max-width:640px){
  .footer__bottomInner{
    flex-direction:column;
    align-items:flex-start;
  }
}

.footer__tinyLinks{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
.footer__tinyLinks a{
  color:rgba(11,15,23,.70);
  font-weight:850;
}
.footer__tinyLinks a:hover{color:rgba(11,15,23,.92)}
.footer__sep{color:rgba(11,15,23,.30)}

.footer__powered{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  flex-wrap:wrap;
}
.footer__poweredText{
  font-size:14px;
  color:var(--muted);
  font-weight:700;
  line-height:1;
}
.footer__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  min-height:60px;
  border-radius:14px;
  background:#fff;
  border:1px solid rgba(11,15,23,.12);
  box-shadow:0 10px 22px rgba(16,24,40,.10);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.footer__badge:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(16,24,40,.14);
  border-color:rgba(11,15,23,.18);
}
.footer__badge img{
  display:block;
  height:42px;
  width:auto;
  max-width:none;
}
@media (max-width:640px){
  .footer__powered{justify-content:flex-start}
  .footer__badge{
    padding:9px 14px;
    min-height:56px;
  }
  .footer__badge img{height:36px}
}

/* HERO */
.hero{
  position:relative;
  min-height:520px;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.hero__bg{
  position:absolute;
  inset:0;
}
.hero__bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.05);
}

.hero__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.45));
}

.hero__content{
  position:relative;
  z-index:2;
}
.hero__text{
  max-width:560px;
  color:#fff;
}

.hero h1{
  font-size:clamp(34px,5vw,48px);
  font-weight:900;
  line-height:1.1;
  margin-bottom:18px;
}

.hero__lead{
  font-size:18px;
  opacity:.9;
  margin-bottom:26px;
}

.hero__cta{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:24px;
}

.hero__trust{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  font-size:14px;
}

.hero__badge{
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(4px);
  padding:8px 14px;
  border-radius:20px;
}

/* =========================
   HOME NOTICE / ANNOUNCEMENTS
   ========================= */
.notice{
  padding:46px 0;
  background:var(--soft);
  border-top:1px solid rgba(11,15,23,.06);
  border-bottom:1px solid rgba(11,15,23,.06);
}

.notice__grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}

.notice__card{
  background:#fff;
  border:1px solid rgba(11,15,23,.10);
  border-radius:var(--radius);
  box-shadow:var(--shadow-sm);
  padding:22px;
  overflow:hidden;
}

.notice__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:900;
  font-size:.82rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(11,15,23,.60);
  margin-bottom:10px;
}

.notice__title{
  margin:0 0 10px;
  font-size:clamp(1.35rem, 2.2vw, 1.7rem);
}

.notice__lead{
  margin:0 0 16px;
  color:var(--muted);
  max-width:62ch;
  line-height:1.5;
}

.notice__dates{
  display:grid;
  gap:10px;
  margin-bottom:16px;
}

.notice__date{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  border:1px solid rgba(11,15,23,.10);
  border-radius:14px;
  background:rgba(11,15,23,.02);
  font-weight:900;
}

.notice__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:16px;
}

.notice__divider{
  height:1px;
  background:rgba(11,15,23,.10);
  margin:16px 0 14px;
}

.notice__subTitle{
  margin:0 0 6px;
  font-size:1.05rem;
  font-weight:950;
}

.notice__subLead{
  margin:0 0 12px;
  color:var(--muted);
}

.notice__chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(11,15,23,.12);
  background:#fff;
  font-weight:850;
  font-size:.92rem;
  color:rgba(11,15,23,.82);
}

.notice__media{
  position:relative;
  border-radius:var(--radius);
  border:1px solid rgba(11,15,23,.10);
  overflow:hidden;
  background:linear-gradient(135deg, rgba(193,18,31,.10), rgba(11,15,23,.06)), #fff;
  background-size:cover;
  background-position:center;
  min-height:360px;
  box-shadow:var(--shadow-sm);
  transform:translate3d(0,0,0);
}

.notice__mediaOverlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(11,15,23,.10), rgba(11,15,23,.55));
}

.notice__mediaInner{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  color:#fff;
}

.notice__mediaKicker{
  font-weight:950;
  font-size:1.05rem;
  letter-spacing:-.01em;
  margin-bottom:6px;
  text-shadow:0 10px 26px rgba(0,0,0,.28);
}

.notice__mediaHint{
  font-size:.92rem;
  opacity:.92;
  text-shadow:0 10px 26px rgba(0,0,0,.28);
}

@media (max-width:980px){
  .notice__grid{grid-template-columns:1fr}
  .notice__media{min-height:260px}
}

@media (prefers-reduced-motion:no-preference){
  .notice__card,
  .notice__media{
    animation:noticeIn .55s ease both;
  }
  .notice__media{animation-delay:.06s}
  @keyframes noticeIn{
    from{opacity:0;transform:translateY(8px)}
    to{opacity:1;transform:translateY(0)}
  }
}

/* =========================
   HOME IN-PERSON NOTICE
   ========================= */
.inperson{
  padding:52px 0;
  background:#fff;
}

.inperson__grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:22px;
  align-items:stretch;
}

.inperson__media{
  position:relative;
  border-radius:var(--radius);
  border:1px solid rgba(11,15,23,.10);
  overflow:hidden;
  background:linear-gradient(135deg, rgba(193,18,31,.10), rgba(11,15,23,.06)), #fff;
  background-size:cover;
  background-position:center;
  min-height:420px;
  box-shadow:var(--shadow-sm);
}

.inperson__mediaOverlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(11,15,23,.12), rgba(11,15,23,.55));
}

.inperson__card{
  background:#fff;
  border:1px solid rgba(11,15,23,.10);
  border-radius:var(--radius);
  box-shadow:var(--shadow-sm);
  padding:22px;
}

.inperson__title{
  margin:0 0 10px;
  font-size:clamp(1.35rem, 2.1vw, 1.8rem);
  font-weight:950;
}

.inperson__dear{
  margin:0 0 14px;
  color:rgba(11,15,23,.72);
}

.inperson__alert{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 14px;
  border-radius:16px;
  border:1px solid rgba(193,18,31,.22);
  background:rgba(193,18,31,.06);
  margin-bottom:14px;
}

.inperson__alertDot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--brand);
  margin-top:6px;
  flex:0 0 auto;
  box-shadow:0 0 0 6px rgba(193,18,31,.12);
}

.inperson__alertMain{
  font-weight:950;
  color:rgba(11,15,23,.94);
  margin-bottom:6px;
}

.inperson__alertSub{
  color:rgba(11,15,23,.72);
  line-height:1.45;
}

.inperson__text p{
  margin:10px 0;
  color:rgba(11,15,23,.74);
  line-height:1.55;
}

.inperson__link{
  font-weight:950;
  color:rgba(11,15,23,.92);
  text-decoration:underline;
  text-decoration-color:rgba(193,18,31,.35);
  text-underline-offset:3px;
}

.inperson__hours{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin:14px 0 16px;
}

.inperson__hoursItem{
  border:1px solid rgba(11,15,23,.10);
  border-radius:16px;
  background:rgba(11,15,23,.02);
  padding:12px 14px;
}

.inperson__hoursLabel{
  font-size:.85rem;
  font-weight:950;
  color:rgba(11,15,23,.60);
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-bottom:6px;
}

.inperson__hoursValue{
  font-weight:950;
  color:rgba(11,15,23,.88);
}

.inperson__policies{
  display:grid;
  gap:10px;
  margin-bottom:16px;
}

.inperson__policy{
  border:1px solid rgba(11,15,23,.10);
  border-radius:16px;
  padding:12px 14px;
  background:#fff;
}

.inperson__policyTitle{
  font-weight:950;
  margin-bottom:6px;
}

.inperson__policyText{
  color:rgba(11,15,23,.72);
  line-height:1.45;
}

.inperson__policy--danger{
  border-color:rgba(193,18,31,.22);
  background:rgba(193,18,31,.06);
  color:rgba(193,18,31,.95);
  font-weight:950;
  letter-spacing:.02em;
  text-transform:uppercase;
}

.inperson__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

@media (max-width:980px){
  .inperson__grid{grid-template-columns:1fr}
  .inperson__media{min-height:260px}
  .inperson__hours{grid-template-columns:1fr}
}

@media (prefers-reduced-motion:no-preference){
  .inperson__card,
  .inperson__media{
    animation:inpersonIn .55s ease both;
  }
  .inperson__media{animation-delay:.06s}
  @keyframes inpersonIn{
    from{opacity:0;transform:translateY(8px)}
    to{opacity:1;transform:translateY(0)}
  }
}

/* ================================
   REVIEWS SECTION
   ================================ */
.reviews{
  padding:80px 0;
  background:#f8fafc;
}

.reviews__header{
  text-align:center;
  margin-bottom:50px;
}

.reviews__header h2{
  font-size:36px;
  margin-bottom:10px;
}

.reviews__lead{
  max-width:640px;
  margin:auto;
  color:#6b7280;
}

.reviews__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}

.reviewCard{
  background:#fff;
  border-radius:14px;
  padding:34px;
  box-shadow:0 10px 30px rgba(0,0,0,.06), 0 2px 6px rgba(0,0,0,.04);
  transition:transform .35s ease, box-shadow .35s ease;
  opacity:0;
  transform:translateY(20px);
  animation:reviewFade .8s ease forwards;
}
.reviewCard:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,.12), 0 8px 12px rgba(0,0,0,.08);
}
.reviewCard:nth-child(2){animation-delay:.1s}
.reviewCard:nth-child(3){animation-delay:.2s}
.reviewCard:nth-child(4){animation-delay:.3s}

.reviewStars{
  color:#f59e0b;
  font-size:20px;
  letter-spacing:4px;
  margin-bottom:16px;
}

.reviewText{
  font-style:italic;
  color:#374151;
  line-height:1.7;
  margin-bottom:24px;
  font-size:17px;
}

.reviewAuthor{
  display:flex;
  align-items:center;
  gap:14px;
}

.reviewAuthor img{
  width:48px;
  height:48px;
  border-radius:50%;
  object-fit:cover;
}

.reviewName{
  font-weight:700;
  color:#111827;
}

.reviewRole{
  font-size:14px;
  color:#6b7280;
}

@keyframes reviewFade{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@media (max-width:900px){
  .reviews__grid{grid-template-columns:1fr}
}