:root{
  /* SFS-style palette (adjust if needed) */
  --navy: #02447c;
  --blue: #79bde8;
  --ink: #0b1220;
  --muted: #5b677a;
  --bg: #ffffff;
  --card: #f6f8fb;
  --border: rgba(2, 68, 124, 0.18);
  --shadow: 0 10px 30px rgba(11, 18, 32, 0.08);
  --radius: 16px;
  --radius-lg: 22px;
  --max: 1100px;
  --focus: 0 0 0 4px rgba(121, 189, 232, 0.45);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

a{ color: var(--navy); text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top: 10px;
  background:#fff;
  border:1px solid var(--border);
  padding:10px 12px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{ left: 12px; outline: none; box-shadow: var(--focus); }

.topbar{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand__logo{
  height: 34px;
  width: auto;
  display:block;
}

.topbar__actions{
  display:flex;
  gap:10px;
  align-items:center;
}

/* Hero */
.hero{
  background:
    radial-gradient(1200px 500px at 30% -40%, rgba(121,189,232,0.35), transparent 60%),
    radial-gradient(900px 450px at 80% 0%, rgba(2,68,124,0.20), transparent 55%),
    linear-gradient(180deg, rgba(2,68,124,0.06), transparent 60%);
  border-bottom: 1px solid var(--border);
}
.hero__inner{
  padding: 36px 0 26px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(121,189,232,0.22);
  border: 1px solid rgba(2,68,124,0.18);
  padding: 8px 12px;
  border-radius: 999px;
}
.hero h1{
  margin: 14px 0 8px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero__sub{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 70ch;
}

.hero__meta{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 18px;
}
.metaCard{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  box-shadow: 0 6px 16px rgba(11, 18, 32, 0.06);
}
.metaCard__label{
  font-size: 12px;
  color: var(--muted);
}
.metaCard__value{
  font-weight: 700;
  margin-top: 2px;
}

.hero__tools{
  display:flex;
  align-items:flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.search{
  display:flex;
  flex-direction:column;
  gap:6px;
  min-width: 260px;
  flex: 1;
}
.search__label{
  font-size: 12px;
  color: var(--muted);
}
.search input{
  height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  outline: none;
}
.search input:focus{
  box-shadow: var(--focus);
  border-color: rgba(2,68,124,0.35);
}

/* --- Hero split layout + 360 image --- */
.hero__grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: start;
}

.heroArt__card{
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(2, 68, 124, 0.16);
  box-shadow: 0 14px 38px rgba(11,18,32,0.10);

  /* Zoom-out effect */
  padding: 18px;
}

.heroArt__card img{
  width: 100%;
  height: auto;
  display: block;

  /* Prevent “zoomed-in” feeling */
  object-fit: contain;
}


.heroArt__caption{
  margin: 10px 2px 0;
  color: var(--muted);
  font-size: 13px;
}

/* --- Responsive YouTube embed --- */
.videoCard{
  margin: 12px 0 12px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(121,189,232,0.10), rgba(255,255,255,0.0));
  border: 1px solid rgba(2, 68, 124, 0.16);
  border-radius: 18px;
}

.videoEmbed{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.videoEmbed iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.videoCard__caption{
  margin: 10px 4px 0;
  color: var(--muted);
  font-size: 13px;
}

/* --- Disclosure address formatting --- */
.disclosure__address{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(2, 68, 124, 0.20);
}

/* --- Hero responsive --- */
@media (max-width: 980px){
  .hero__grid{
    grid-template-columns: 1fr;
  }
}

/* --- Subtle floating animation for the 360 image --- */
.heroArt__card{
  position: relative;
  transform: translateZ(0);
  animation: heroFloat 6.5s ease-in-out infinite;
}

@keyframes heroFloat{
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* Make it feel interactive but still professional */
.heroArt__card:hover{
  animation-play-state: paused;
}
.heroArt__card:hover img{
  transform: scale(1.01);
}
.heroArt__card img{
  transition: transform .25s ease;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .heroArt__card{ animation: none; }
}

/* --- Video overlay play button --- */
.videoEmbed--overlay{
  position: relative;
}

.videoEmbed--overlay::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 55%, rgba(0,0,0,0.15), rgba(0,0,0,0.35));
  pointer-events: none;
  opacity: 0.85;
  transition: opacity .2s ease;
}

.videoPlay{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

.videoPlay__icon{
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: rgba(2, 68, 124, 0.92);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  position: relative;
  transition: transform .15s ease, filter .15s ease;
}

.videoPlay__icon::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.videoPlay__text{
  margin-top: 10px;
  display: inline-block;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* Hover/Focus polish */
.videoPlay:hover .videoPlay__icon{
  transform: scale(1.05);
  filter: brightness(1.08);
}
.videoPlay:focus{
  outline: none;
}
.videoPlay:focus .videoPlay__icon{
  box-shadow: 0 0 0 4px rgba(121,189,232,0.55), 0 18px 40px rgba(0,0,0,0.25);
}

/* When playing, hide overlay + button */
.videoEmbed--playing::after{
  opacity: 0;
}
.videoEmbed--playing .videoPlay{
  display: none;
}


/* Sections */
.section{
  padding: 30px 0;
}
.section--alt{
  background: linear-gradient(180deg, rgba(2,68,124,0.04), transparent 45%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section__head{
  margin-bottom: 14px;
}
.section__head h2{
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.section__sub{
  margin: 0;
  color: var(--muted);
}

/* Menu Cards */
.menuGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.menuCard{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 16px 14px;
  box-shadow: var(--shadow);
  transition: transform .12s ease, box-shadow .12s ease;
}
.menuCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(11,18,32,0.10);
}
.menuCard__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.menuCard__title{
  margin:0;
  font-size: 16px;
}
.menuCard__desc{
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}
.pill{
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  background: rgba(121,189,232,0.20);
  border: 1px solid rgba(2,68,124,0.16);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.menuCard__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
}

/* --- Card + Accordion Images --- */
.menuCard__media{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 150px;
  margin-bottom: 12px;
  border: 1px solid rgba(2, 68, 124, 0.16);
  background: #fff;
}

.menuCard__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .25s ease;
}

.menuCard__media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 68, 124, 0.08),
    rgba(2, 68, 124, 0.00) 55%,
    rgba(2, 68, 124, 0.10)
  );
  pointer-events: none;
}

.menuCard:hover .menuCard__img{
  transform: scale(1.06);
}

/* Accordion image block */
.acc__media{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(2, 68, 124, 0.16);
  background: #fff;
  margin: 12px 0 12px;
  height: 180px;
}

.acc__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  cursor:pointer;
  text-decoration:none;
  user-select:none;
}
.btn:focus{ outline:none; box-shadow: var(--focus); }
.btn--primary{
  background: var(--navy);
  color: #fff;
  border-color: rgba(2,68,124,0.25);
}
.btn--primary:hover{
  filter: brightness(1.05);
  text-decoration:none;
}
.btn--outline{
  background: #fff;
  color: var(--navy);
  border-color: rgba(2,68,124,0.25);
}
.btn--outline:hover{ background: rgba(121,189,232,0.12); text-decoration:none; }
.btn--ghost{
  background: transparent;
  color: var(--navy);
  border-color: rgba(2,68,124,0.18);
}
.btn--ghost:hover{ background: rgba(121,189,232,0.10); text-decoration:none; }

/* Accordion */
.accordion{
  display:grid;
  gap: 10px;
  margin-top: 14px;
}
.acc{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.acc__summary{
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 16px;
  cursor:pointer;
}
.acc__summary::-webkit-details-marker{ display:none; }
.acc__title{
  font-weight: 900;
}
.acc__meta{
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
}
.acc__body{
  padding: 0 16px 16px;
  color: var(--ink);
}
.acc__body ul{
  margin: 10px 0 12px;
  padding-left: 18px;
}
.acc__body li{ margin: 6px 0; color: var(--muted); }

/* Disclosure */
.disclosure{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
}
.disclosure p{ margin: 0 0 10px; }
.disclosure__muted{ color: var(--muted); margin-bottom: 0; }

/* Footer */
.footer{
  padding: 18px 0;
  border-top: 1px solid var(--border);
  background: #fff;
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  color: var(--muted);
}
.sep{ margin: 0 8px; color: rgba(91,103,122,0.6); }

/* Responsive */
@media (max-width: 980px){
  .menuGrid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__meta{ grid-template-columns: 1fr; }
}
@media (max-width: 620px){
  .menuGrid{ grid-template-columns: 1fr; }
  .topbar__inner{ flex-direction: column; align-items:flex-start; }
  .topbar__actions{ width: 100%; justify-content:flex-start; flex-wrap: wrap; }
}
@media print{
  .topbar, .hero__tools, #expandAllBtn, #printBtn, .footer__right { display:none !important; }
  .menuCard{ box-shadow:none; }
  .acc{ box-shadow:none; }
}
