/* ==========================================================================
   KiTi-Bat — site styles
   Palette: club navy + citrus orange on a cool off-white
   (variable names kept generic: --green = primary, --sun = accent)
   ========================================================================== */

:root {
  /* text */
  --ink:        #16233d;
  --ink-soft:   #3b4a68;
  --ink-mute:   #6b7891;

  /* surfaces */
  --white:      #ffffff;
  --cream:      #f7f8fb;
  --cream-deep: #e8edf6;
  --mint:       #eef1f8;

  /* brand */
  --green:      #28407a;   /* primary — club navy */
  --green-dark: #1a2c58;
  --forest:     #1b2c52;   /* dark sections */
  --forest-deep:#111d38;   /* footer */
  --sun:        #ff8a2b;   /* accent — citrus, for fills */
  --sun-ink:    #c2560a;   /* accent for text: citrus is too pale to read */
  --sun-soft:   #ffdcbd;
  --sky:        #5b8bd6;
  --willow:     #f2e3cd;

  --line:       #e0e6f0;
  --line-dark:  rgba(255, 255, 255, .18);

  --shadow-sm:  0 1px 2px rgba(22, 35, 61, .05), 0 3px 10px rgba(22, 35, 61, .07);
  --shadow-md:  0 6px 16px rgba(22, 35, 61, .08), 0 16px 38px rgba(22, 35, 61, .1);
  --shadow-lg:  0 14px 30px rgba(22, 35, 61, .11), 0 36px 70px rgba(22, 35, 61, .15);

  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --serif: Cambria, "Times New Roman", Georgia, serif;

  --wrap: 1180px;
  --gut: clamp(1.15rem, 4vw, 2.5rem);
  --radius: 20px;
  --radius-sm: 12px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: var(--green-dark); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.08; margin: 0 0 .5em; }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0 0 1.15em; padding-left: 1.15em; }

:focus-visible {
  outline: 3px solid var(--green-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--forest); color: #fff; padding: .8rem 1.2rem; font-weight: 700;
}
.skip:focus { left: .5rem; top: .5rem; }

/* ---------- type ---------- */
.display {
  font-weight: 800;
  letter-spacing: -.028em;
  text-transform: uppercase;
  font-size: clamp(2.3rem, 1.35rem + 4.3vw, 4.35rem);
  line-height: .94;
}
.h2 { font-size: clamp(1.75rem, 1.2rem + 2.1vw, 2.8rem); font-weight: 800; letter-spacing: -.022em; }
.h3 { font-size: clamp(1.2rem, 1.05rem + .6vw, 1.48rem); font-weight: 750; letter-spacing: -.012em; }
.lede { font-size: clamp(1.06rem, 1rem + .45vw, 1.28rem); line-height: 1.58; color: var(--ink-soft); }

.kicker {
  display: inline-block;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: .9rem;
}
.kicker--light { color: var(--sun); }

.green { color: var(--sun-ink); }
.on-dark .green, .section--dark .green { color: var(--sun); }

/* ---------- layout ---------- */
.wrap { width: min(100% - (var(--gut) * 2), var(--wrap)); margin-inline: auto; }
.section { padding: clamp(3.25rem, 7vw, 6rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--bone { background: var(--cream); }
.section--white { background: var(--white); }
.section--mint { background: var(--mint); }
.section--dark { background: var(--forest); color: #ccd8ee; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--willow { background: linear-gradient(165deg, #fdf4dd, #f6e7c4); }

.stack > * + * { margin-top: 1.15rem; }
.center { text-align: center; }
.measure { max-width: 62ch; }
.measure-center { max-width: 62ch; margin-inline: auto; }

.rule::after {
  content: "";
  display: block;
  width: 62px; height: 6px;
  background: var(--sun);
  border-radius: 100px;
  margin-top: 1.1rem;
}
.center.rule::after { margin-inline: auto; }
.section--dark .rule::after { background: var(--sun); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 750;
  letter-spacing: .01em;
  padding: .9rem 1.55rem;
  border-radius: 100px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--green); color: #fff; box-shadow: 0 4px 0 var(--green-dark); }
.btn--primary:hover { background: var(--green-dark); box-shadow: 0 4px 0 var(--forest); color: #fff; }
.btn--sun { background: var(--sun); color: var(--ink); box-shadow: 0 4px 0 #d96f12; }
.btn--sun:hover { background: #ffa155; color: var(--ink); }
.btn--dark { background: var(--forest); color: #fff; }
.btn--dark:hover { background: var(--forest-deep); color: #fff; }
.btn--ghost { border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.on-dark .btn--ghost, .section--dark .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .55); }
.on-dark .btn--ghost:hover, .section--dark .btn--ghost:hover { background: #fff; color: var(--forest); border-color: #fff; }
.btn--wa { background: #25d366; color: #05330f; box-shadow: 0 4px 0 #14a94b; }
.btn--wa:hover { background: #34e076; color: #05330f; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.btn-row--center { justify-content: center; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}
.logo { display: inline-flex; flex-direction: column; text-decoration: none; line-height: 1; padding: .4rem 0; }
.logo img { height: 34px; width: auto; }
.logo__sub {
  font-size: .53rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-top: .42rem;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  background: none; border: 2px solid var(--line); border-radius: 10px;
  color: var(--ink); padding: .5rem .7rem; cursor: pointer; font: inherit; font-size: .85rem; font-weight: 700;
  align-items: center; gap: .45rem;
}
.nav-toggle__bars { display: block; width: 17px; height: 2.5px; background: var(--ink); border-radius: 2px; position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 2.5px; background: var(--ink); border-radius: 2px;
}
.nav-toggle__bars::before { top: -5.5px; }
.nav-toggle__bars::after { top: 5.5px; }

.nav { display: flex; align-items: center; gap: .2rem; }
.nav a {
  color: var(--ink-soft); text-decoration: none;
  font-size: .92rem; font-weight: 700;
  padding: .5rem .8rem; border-radius: 100px;
  white-space: nowrap;
}
.nav a:hover { color: var(--ink); background: var(--mint); }
.nav a[aria-current="page"] { color: var(--green-dark); background: var(--mint); }
.nav a.btn { margin-left: .55rem; padding: .68rem 1.2rem; font-size: .88rem; }
.nav a.btn--primary, .nav a.btn--primary:hover { color: #fff; background: var(--green); }
.nav a.btn--primary:hover { background: var(--green-dark); }
.nav a.btn--primary[aria-current="page"] { background: var(--green-dark); color: #fff; }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: .15rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: .75rem var(--gut) 1.25rem;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .8rem .9rem; font-size: 1rem; border-radius: 12px; }
  .nav .btn { margin: .5rem 0 0; justify-content: center; padding: .9rem 1.2rem; }
}

/* ---------- hero (light, split) ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 88% 6%, var(--sun-soft) 0%, rgba(255, 234, 176, 0) 62%),
    linear-gradient(168deg, var(--mint) 0%, var(--cream) 58%);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2.5rem, 5.5vw, 4.5rem) 0 clamp(2.75rem, 6vw, 5rem);
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.02fr .98fr; }
}
.hero__copy { max-width: 40rem; }
.hero .lede { color: var(--ink-soft); }

.hero__art {
  position: relative;
  margin: 0;
}
.hero__art::before {
  content: "";
  position: absolute;
  inset: -6% -5% -8% -6%;
  background: var(--green);
  border-radius: 46% 54% 52% 48% / 52% 46% 54% 48%;
  opacity: .16;
}
.hero__art img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.hero__art--tall img { aspect-ratio: 4 / 4.4; }

.hero__price {
  display: inline-flex; align-items: baseline; gap: .45rem; flex-wrap: wrap;
  font-weight: 750; color: var(--ink);
  background: var(--white);
  border: 2px dashed var(--sun);
  border-radius: 100px;
  padding: .55rem 1.15rem;
}
.hero__price b { font-size: 1.5rem; color: var(--green-dark); letter-spacing: -.02em; }

.breadcrumb { font-size: .84rem; color: var(--ink-mute); margin: 0 0 .35rem; }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; font-weight: 650; }
.breadcrumb a:hover { color: var(--green-dark); text-decoration: underline; }

/* ---------- trust strip ---------- */
.strip { background: var(--sun); color: var(--ink); }
.strip__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px; background: rgba(30, 43, 35, .14);
}
.strip__item { background: var(--sun); padding: 1.5rem 1.35rem; }
.strip__item b { display: block; color: var(--ink); font-size: 1.04rem; margin-bottom: .18rem; }
.strip__item span { font-size: .88rem; line-height: 1.45; display: block; color: #4a2a0a; }

/* ---------- cards ---------- */
.cards { display: grid; gap: clamp(1.25rem, 3vw, 2rem); grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
@media (min-width: 640px) { .cards--quad { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .cards--quad { grid-template-columns: repeat(4, 1fr); } }

.card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card__media { position: relative; aspect-ratio: 4 / 3; background: var(--cream-deep); }
.card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card__tag {
  position: absolute; top: .85rem; left: .85rem;
  background: var(--sun); color: var(--ink);
  font-size: .68rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase;
  padding: .38rem .7rem; border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.card__body { padding: 1.4rem 1.45rem 1.55rem; display: flex; flex-direction: column; flex: 1; }
.card__body p { color: var(--ink-mute); font-size: .96rem; }
.card__price {
  margin-top: auto; padding-top: 1rem;
  font-weight: 850; color: var(--green-dark); font-size: 1.32rem; letter-spacing: -.02em;
}
.card__price small { display: block; font-size: .78rem; font-weight: 600; color: var(--ink-mute); letter-spacing: .01em; margin-top: .15rem; }
.card__link {
  margin-top: 1rem;
  font-weight: 800; font-size: .93rem; text-decoration: none; color: var(--green-dark);
  display: inline-flex; align-items: center; gap: .35rem;
}
.card__link:hover { text-decoration: underline; }
.card__link::after { content: "→"; transition: transform .15s ease; }
.card:hover .card__link::after { transform: translateX(4px); }

/* ---------- split rows ---------- */
.split {
  display: grid; gap: clamp(1.75rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left { grid-template-columns: 1.15fr .85fr; }
  .split--wide-right { grid-template-columns: .85fr 1.15fr; }
  .split--flip > *:first-child { order: 2; }
}
.frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--cream-deep);
  border: 6px solid var(--white);
}
.section--white .frame { border-color: var(--cream); }
.frame--tall img, .frame--wide img, .frame--square img { position: absolute; inset: 0; }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame--tall { aspect-ratio: 4 / 5; }
.frame--wide { aspect-ratio: 16 / 10; }
.frame--square { aspect-ratio: 1 / 1; }

/* ---------- feature list ---------- */
.features { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .1rem; }
.features li {
  display: flex; gap: .9rem; align-items: flex-start;
  padding: .85rem 0;
  border-top: 1px solid var(--line);
}
.features li:last-child { border-bottom: 1px solid var(--line); }
.section--dark .features li { border-color: var(--line-dark); }
.features .dot {
  flex: 0 0 auto; margin-top: .25rem;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: grid; place-items: center;
  font-size: .74rem; font-weight: 900;
}
.section--dark .features .dot { background: var(--sun); color: var(--forest-deep); }
.features b { color: var(--ink); display: block; }
.section--dark .features b { color: #fff; }
.features span { font-size: .95rem; color: var(--ink-mute); }
.section--dark .features span { color: #b4c3de; }

/* ---------- numbered steps ---------- */
.steps { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); list-style: none; padding: 0; margin: 0; counter-reset: step; }
.steps li { counter-increment: step; position: relative; padding-top: 3.4rem; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-size: 1.7rem; font-weight: 850; color: var(--green-dark);
  letter-spacing: -.03em;
  border-bottom: 5px solid var(--sun);
  padding-bottom: .3rem;
}
.section--dark .steps li::before { color: var(--sun); border-color: rgba(255, 255, 255, .3); }
.steps b { display: block; color: var(--ink); font-size: 1.06rem; margin-bottom: .3rem; }
.section--dark .steps b { color: #fff; }
.steps p { font-size: .96rem; color: var(--ink-mute); }
.section--dark .steps p { color: #b4c3de; }

/* ---------- price boxes ---------- */
.pricebox {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.pricebox__head {
  background: var(--forest); color: #fff;
  padding: 1.15rem 1.45rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.pricebox__head h3 { color: #fff; margin: 0; font-size: 1.12rem; }
.pricebox__head span { font-size: .74rem; color: var(--sun); letter-spacing: .13em; text-transform: uppercase; font-weight: 800; }
.pricelist { list-style: none; margin: 0; padding: .35rem 1.45rem 1.15rem; }
.pricelist li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: .8rem 0;
  border-bottom: 1px dashed var(--line);
}
.pricelist li:last-child { border-bottom: 0; }
.pricelist .item { font-weight: 700; color: var(--ink); }
.pricelist .item small { display: block; font-weight: 500; font-size: .84rem; color: var(--ink-mute); }
.pricelist .amt { font-weight: 850; color: var(--green-dark); white-space: nowrap; font-size: 1.08rem; letter-spacing: -.02em; }
.pricelist .amt.free { color: var(--ink-mute); font-size: .92rem; white-space: normal; text-align: right; }

.deal {
  background: var(--sun);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.55rem 1.65rem;
  box-shadow: var(--shadow-sm);
}
.deal span { display: block; font-size: .74rem; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; color: #5c3208; }
.deal b { display: block; font-size: clamp(2rem, 1.4rem + 2vw, 2.9rem); line-height: 1; margin: .35rem 0 .35rem; letter-spacing: -.03em; color: var(--forest); }
.deal p { margin: 0; font-size: .95rem; color: #4a2a0a; }

/* ---------- contact cards ---------- */
.contact-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 6px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 1.45rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { margin-bottom: .1rem; font-size: 1.16rem; }
.contact-card .role { font-size: .76rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; color: var(--green-dark); margin-bottom: .9rem; }
.contact-card ul { list-style: none; padding: 0; margin: 0 0 1.15rem; }
.contact-card li { padding: .28rem 0; font-size: .97rem; }
.contact-card a { color: var(--ink); text-decoration: none; font-weight: 700; }
.contact-card a:hover { color: var(--green-dark); text-decoration: underline; }

/* ---------- gallery ---------- */
.gallery { display: grid; gap: .85rem; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.gallery figure { position: relative; margin: 0; border-radius: var(--radius-sm); overflow: hidden; background: var(--cream-deep); aspect-ratio: 1 / 1; box-shadow: var(--shadow-sm); border: 5px solid var(--white); }
.section--dark .gallery figure { border-color: rgba(255, 255, 255, .22); }
.gallery img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery figure:hover img { transform: scale(1.06); }

/* ---------- video ---------- */
.videobox { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); background: #0b1526; border: 6px solid var(--white); }
.section--dark .videobox { border-color: rgba(255, 255, 255, .22); }
.videobox video { width: 100%; height: auto; display: block; }

/* ---------- notes ---------- */
.note {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.45rem;
  font-size: .96rem;
  color: var(--ink-mute);
}
.note b { color: var(--ink); }
.note--warn { border-left: 6px solid var(--sun); background: #fff7ef; }
.section--dark .note { background: rgba(255, 255, 255, .07); border-color: var(--line-dark); color: #c4d2e9; }
.section--dark .note b { color: #fff; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--forest); color: #c7d4ea; text-align: center; }
.cta-band .h2 { color: #fff; }
.cta-band p { max-width: 55ch; margin-inline: auto; }

/* ---------- footer ---------- */
.site-footer { background: var(--forest-deep); color: #9fb0cd; padding: clamp(2.75rem, 6vw, 4rem) 0 2rem; font-size: .93rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }
.site-footer h4 { color: var(--sun); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: .22rem 0; }
.site-footer a { color: #cfe3d2; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer .logo { margin-bottom: 1rem; }
.site-footer .logo img { height: 30px; }
.site-footer .logo__sub { color: var(--sun); }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: space-between;
  font-size: .84rem; color: #8fae95;
}

/* ---------- sticky mobile order bar ---------- */
.orderbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none;
  gap: .5rem;
  padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .97);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(30, 43, 35, .08);
}
.orderbar .btn { flex: 1; justify-content: center; padding: .8rem .75rem; font-size: .9rem; }
@media (max-width: 700px) {
  .orderbar { display: flex; }
  body { padding-bottom: 4.4rem; }
}

/* ---------- spec list ---------- */
.specs { list-style: none; padding: 0; margin: 1.6rem 0 0; border-top: 2px solid var(--line); }
.specs li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: .78rem 0; border-bottom: 1px solid var(--line); font-size: .98rem;
}
.specs li span:first-child { color: var(--ink-mute); font-weight: 650; letter-spacing: .04em; text-transform: uppercase; font-size: .76rem; }
.specs li span:last-child { color: var(--ink); font-weight: 750; text-align: right; }

/* ---------- panorama frame + caption ---------- */
.frame--pano { aspect-ratio: 16 / 9; }
.frame--pano img { position: absolute; inset: 0; }
.figcap {
  margin: .9rem 0 0;
  font-size: .86rem;
  color: var(--ink-mute);
  text-align: center;
}
.section--dark .figcap { color: #9fb0cd; }

/* panorama video band */
.pano-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* hero image caption */
.hero__cap {
  position: relative;
  margin-top: .85rem;
  font-size: .84rem;
  line-height: 1.45;
  color: var(--ink-mute);
  text-align: center;
}

/* ---------- image crop helpers ----------
   Portrait photographs of people must never be centre-cropped into a
   landscape box: it takes the heads off. */
.hero__art--portrait img {
  aspect-ratio: 4 / 5;
  object-position: 50% 18%;
}
/* Full-length product shots: show the whole bat rather than crop it */
.hero__art--product img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #fff;
  padding: 1.25rem;
}
/* Keep faces in frame inside square gallery tiles */
.img-top { object-position: 50% 15% !important; }

/* ---------- FAQ ---------- */
.faq { max-width: 62rem; margin-inline: auto; display: grid; gap: .75rem; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 3rem 1.1rem 1.35rem;
  font-weight: 750;
  color: var(--ink);
  position: relative;
  font-size: 1.02rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute; right: 1.35rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 700; line-height: 1;
  color: var(--sun-ink);
}
.faq__item[open] summary::after { content: "\2212"; }
.faq__item summary:hover { background: var(--mint); }
.faq__answer { padding: 0 1.35rem 1.25rem; color: var(--ink-mute); font-size: .98rem; }
.faq__answer p { margin: 0; }
