/* =============================================================
   SuperGolf — Main Stylesheet
   Design tokens, global layout, all component styles.
   ============================================================= */

/* ── CSS Variables ── */
:root {
  --red:        #EA2128;
  --red-dark:   #C0151B;
  --ink:        #0B0B0C;
  --ink-2:      #16161A;
  --ink-3:      #24242B;
  --paper:      #F7F5F0;
  --smoke:      #ECE8E0;
  --line:       #E2DDD2;
  --line-dark:  rgba(255,255,255,.12);
  --muted:      #8A857C;
  --muted-d:    rgba(255,255,255,.55);
  --neon:       #1FE06B;
  --lagoon:     #1FAEDC;
  --amber:      #F4A92B;
  --purple:     #7A3FF2;
  --display:    'Bebas Neue', sans-serif;
  --body:       'Manrope', system-ui, sans-serif;
  --mono:       'JetBrains Mono', monospace;
  --container:  1180px;
  --ease:       cubic-bezier(.22,1,.36,1);
  --header-h:   64px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--body); background: var(--paper); color: var(--ink);
       font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
h1,h2,h3,h4,h5 { font-family: var(--display); font-weight: 400;
                  line-height: .94; letter-spacing: .01em; text-transform: uppercase; }
/* Fallback sizes so any unclassed heading matches the design scale
   (classed headings like .sg-h2 / .sg-card__title override these). */
h1 { font-size: clamp(44px,7vw,96px); }
h2 { font-size: clamp(32px,4.5vw,56px); }
h3 { font-size: clamp(22px,2.4vw,30px); }
h4 { font-size: 20px; }

/* ── Container ── */
.container { max-width: var(--container); margin-inline: auto;
             padding-inline: clamp(20px,4vw,40px); }
.sg-narrow  { max-width: 760px; }

/* ── Typography ── */
.sg-h1 { font-size: clamp(44px,7vw,96px); }
.sg-h2 { font-size: clamp(32px,4.5vw,64px); margin-top: 14px; }
.sg-h3 { font-size: clamp(24px,3vw,42px); margin-top: 10px; }
.sg-mono { font-family: var(--mono); font-size: 12px; letter-spacing: .06em; color: var(--muted); }
.sg-prose { font-size: 17px; line-height: 1.7; color: var(--ink); }
.sg-prose p + p { margin-top: 1em; }

/* ── Kick label ── */
.sg-kick { display: inline-flex; align-items: center; gap: 10px;
           font-weight: 700; font-size: 12px; letter-spacing: .2em;
           text-transform: uppercase; color: var(--red); }
.sg-kick::before { content: ''; width: 26px; height: 2px; background: var(--red); }
.sg-kick--light { color: #fff; }
.sg-kick--light::before { background: var(--red); }

/* ── Buttons ── */
.sg-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; font-family: var(--body); font-weight: 700;
  font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
  border: 2px solid transparent; border-radius: 2px;
  background: var(--red); color: #fff;
  transition: transform .2s var(--ease), background .2s;
}
.sg-btn:hover { background: var(--red-dark); transform: translateY(-2px); }
.sg-btn--ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.sg-btn--ghost:hover { background: var(--ink); color: #fff; }
.sg-btn--sm { padding: 8px 14px; font-size: 11px; }
.sg-btn--lg { padding: 15px 28px; font-size: 14px; }
.sg-btn--full { width: 100%; justify-content: center; }
.sg-link { font-weight: 700; font-size: 13px; letter-spacing: .04em;
           text-transform: uppercase; color: var(--red); }
.sg-link:hover { text-decoration: underline; }

/* ── Badges ── */
.sg-badge { display: inline-block; font-size: 9.5px; font-weight: 800;
            letter-spacing: .1em; text-transform: uppercase;
            padding: 3px 8px; border-radius: 3px;
            background: var(--red); color: #fff; }
.sg-badge--dark   { background: var(--ink); }
.sg-badge--accent { background: var(--bay-accent, var(--red)); }
.sg-badge--float  { position: absolute; top: 12px; left: 12px; }

/* ── Pills ── */
.sg-pill { display: inline-flex; align-items: center; padding: 7px 14px;
           font-weight: 700; font-size: 12px; letter-spacing: .04em;
           border: 1.5px solid var(--line); border-radius: 999px; background: #fff;
           transition: all .15s; }
.sg-pill:hover, .sg-pill--active { background: var(--ink); color: #fff; border-color: var(--ink); }
.sg-pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

/* ── Prices ── */
.sg-price { font-family: var(--display); font-size: 1.4em; line-height: .85; }
.sg-price small { font-family: var(--body); font-size: 12px; font-weight: 600;
                  color: var(--muted); margin-left: 3px; }

/* ── Sections ── */
.sg-section { padding: clamp(44px,7vw,90px) 0; }
.sg-section--alt  { background: var(--smoke); }
.sg-section--dark { background: var(--ink); color: #fff; }
.sg-section--dark h2, .sg-section--dark h3 { color: #0B0B0C; }
.sg-sec-head { margin-bottom: 36px; }
.sg-sec-head h2 { font-size: clamp(36px,5vw,76px); margin-top: 10px; }
.sg-sec-head p  { color: var(--muted); margin-top: 10px; font-size: 17px; }
.sg-section__cta { margin-top: 36px; text-align: center; }

/* ── Grids ── */
.sg-grid { display: grid; gap: 18px; }
.sg-grid--2 { grid-template-columns: repeat(2,1fr); }
.sg-grid--3 { grid-template-columns: repeat(3,1fr); }
.sg-grid--4 { grid-template-columns: repeat(4,1fr); }
.sg-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.sg-two-col__img { width: 100%; height: auto; border-radius: 4px; object-fit: cover; }

/* ── Cards ── */
.sg-card { background: #fff; border: 1px solid var(--line); border-radius: 6px;
           overflow: hidden; display: flex; flex-direction: column;
           transition: transform .2s var(--ease), box-shadow .2s; }
.sg-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.sg-card__img-wrap { display: block; overflow: hidden; position: relative;
                      aspect-ratio: 4/3; background: var(--smoke); }
.sg-card__img-wrap img { width: 100%; height: 100%; object-fit: cover;
                          transition: transform .4s var(--ease); }
.sg-card:hover .sg-card__img-wrap img { transform: scale(1.04); }
.sg-card__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.sg-card__title { font-family: var(--display); font-size: 24px; line-height: .95; }
.sg-card__title a:hover { color: var(--red); }
.sg-card__sub { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.sg-card__excerpt { font-size: 14px; color: #0B0B0C; line-height: 1.5; }
.sg-card__foot { display: flex; align-items: center; justify-content: space-between;
                 margin-top: auto; padding-top: 12px; }
.sg-card__meta { display: flex; gap: 16px; font-size: 13px; }
.sg-card__expires { font-size: 12px; color: var(--amber); font-weight: 700; }
.sg-card--dark { background: var(--ink-2); border-color: var(--line-dark); color: #fff; }

/* ── Retail: horizontal store card ── */
.sg-card--row { flex-direction: row; }
.sg-card--row .sg-card__img-wrap { aspect-ratio: auto; width: 240px; flex-shrink: 0; }
.sg-card--row .sg-card__body { padding: 24px; }

/* ── Retail: store / flagship quick-fact meta ── */
.sg-store-meta { display: flex; flex-wrap: wrap; gap: 18px 24px; margin-top: 16px;
                 padding-top: 16px; border-top: 1px solid var(--line); }
.sg-store-meta__item { display: flex; flex-direction: column; gap: 2px; }
.sg-store-meta__item small { font-family: var(--mono); font-size: 10px; letter-spacing: .08em;
                             text-transform: uppercase; color: var(--muted); }
.sg-store-meta__item span { font-size: 14px; font-weight: 700; color: var(--ink); }
.sg-store-meta--lg { gap: 22px 32px; }

/* ── Retail: floor guide card ── */
.sg-floor-card { background: var(--smoke); border-radius: 6px; padding: 24px 22px; }
.sg-floor-card__level { font-family: var(--display); font-size: 44px; line-height: 1; color: var(--red); }
.sg-floor-card__name { font-family: var(--display); font-size: 22px; margin: 8px 0 12px; }
.sg-floor-card__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.sg-floor-card__list li { font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 9px; }
.sg-floor-card__list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%;
                                   background: var(--red); flex-shrink: 0; }
@media (max-width: 720px) {
  .sg-card--row { flex-direction: column; }
  .sg-card--row .sg-card__img-wrap { width: 100%; aspect-ratio: 16/9; }
}

/* ── Header ── */
.sg-header { position: sticky; top: 0; z-index: 100;
             background: rgba(11,11,12,.95); backdrop-filter: blur(12px);
             border-bottom: 1px solid var(--line-dark); color: #fff; height: var(--header-h); }
.sg-header__inner { display: flex; align-items: center; gap: 24px; height: 100%; }
.sg-header__logo { display: flex; align-items: center; flex-shrink: 0; }
.sg-header__logo img { height: 36px; width: auto; }
.sg-header__wordmark { font-family: var(--display); font-size: 22px; }
.sg-header__actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.sg-header__lang { background: transparent; border: 1px solid var(--line-dark);
                   color: #fff; font-size: 12px; font-weight: 700; padding: 6px 10px;
                   border-radius: 2px; }

/* ── Nav ── */
.sg-nav { flex: 1; }
.sg-nav__list { display: flex; align-items: center; gap: 4px; justify-content: center; }
.sg-nav__item { position: relative; }
.sg-nav__item > a { display: block; padding: 10px 12px; font-size: 13px; font-weight: 700;
                    letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.85);
                    transition: color .15s; white-space: nowrap; }
.sg-nav__item > a:hover,
.sg-nav__item.is-active > a { color: #fff; }
.sg-nav__dropdown { position: absolute; top: calc(100% + 8px); left: 50%;
                    transform: translateX(-50%); min-width: 180px;
                    background: var(--ink-2); border: 1px solid var(--line-dark);
                    border-radius: 4px; padding: 8px 0;
                    opacity: 0; visibility: hidden; pointer-events: none;
                    transition: opacity .2s var(--ease), transform .2s var(--ease);
                    transform: translateX(-50%) translateY(-6px); }
.sg-nav__item--has-dropdown:hover .sg-nav__dropdown { opacity: 1; visibility: visible;
    pointer-events: auto; transform: translateX(-50%) translateY(0); }
.sg-nav__dropdown li a { display: block; padding: 9px 16px; font-size: 13px;
                          color: rgba(255,255,255,.8); white-space: nowrap; }
.sg-nav__dropdown li a:hover { color: #fff; background: rgba(255,255,255,.06); }

/* ── Hamburger ── */
.sg-header__hamburger { display: none; flex-direction: column; gap: 5px;
                         background: none; border: none; padding: 8px; }
.sg-header__hamburger span { display: block; width: 22px; height: 2px;
                               background: #fff; border-radius: 2px;
                               transition: all .2s; }

/* ── Mobile Drawer ── */
.sg-drawer { position: fixed; inset: 0 0 0 auto; width: min(320px,85vw);
             background: var(--ink); color: #fff; z-index: 200;
             transform: translateX(100%); transition: transform .3s var(--ease);
             overflow-y: auto; }
.sg-drawer.is-open { transform: translateX(0); }
.sg-drawer__inner { padding: 24px 28px; display: flex; flex-direction: column; gap: 24px; min-height: 100%; }
.sg-drawer__close { background: none; border: none; color: #fff; font-size: 20px;
                    align-self: flex-end; padding: 4px; }
.sg-drawer__list { display: flex; flex-direction: column; gap: 4px; }
.sg-drawer__list a { display: block; padding: 10px 0; font-size: 16px; font-weight: 600;
                      border-bottom: 1px solid var(--line-dark); }
.sg-drawer__list ul { padding-left: 16px; }
.sg-drawer__group { display: block; padding: 10px 0 4px; font-size: 11px; font-weight: 800;
                    letter-spacing: .15em; text-transform: uppercase; color: var(--muted-d); }
.sg-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 150;
              opacity: 0; pointer-events: none; transition: opacity .3s; }
.sg-overlay.is-active { opacity: 1; pointer-events: auto; }

/* ── Hero ── */
.sg-hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end;
           overflow: hidden; background: var(--ink); }
.sg-hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sg-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.7) 0%,rgba(0,0,0,.2) 60%,transparent 100%); }
.sg-hero__content { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(48px,8vw,96px);
                    color: #fff; }
.sg-hero__h1 { font-size: clamp(48px,8vw,108px); max-width: 16ch; }
.sg-hero__sub { max-width: 54ch; margin-top: 16px; font-size: clamp(16px,1.8vw,20px);
                color: rgba(255,255,255,.85); }
.sg-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.sg-hero__ctas .sg-btn { padding-inline: 16px; white-space: nowrap; }
/* Membership & League CTAs: keep both on one line, slightly thinner */
.sg-two-col--mem .sg-hero__ctas { flex-wrap: nowrap; }
.sg-two-col--mem .sg-hero__ctas .sg-btn { padding-block: 10px; padding-inline: 18px; }

/* ── Stat Bar ── */
.sg-statbar { background: var(--ink-2); border-bottom: 1px solid var(--line-dark); }
.sg-statbar__inner { display: flex; align-items: center; gap: clamp(16px,3vw,40px);
                      padding: 14px 0; flex-wrap: wrap; }
.sg-statbar__live { font-family: var(--mono); font-size: 11px; color: var(--red);
                    font-weight: 700; letter-spacing: .1em; }
.sg-statbar__item { display: flex; flex-direction: column; }
.sg-statbar__label { font-family: var(--mono); font-size: 10px; color: var(--muted-d); text-transform: uppercase; }
.sg-statbar__value { font-family: var(--display); font-size: 20px; color: #fff; line-height: .9; }

/* ── Marquee ── */
.sg-marquee { overflow: hidden; background: var(--red); padding: 10px 0; }
.sg-marquee__track { display: flex; gap: 48px; animation: sg-marquee 20s linear infinite; white-space: nowrap; }
.sg-marquee__track span { font-family: var(--display); font-size: 22px; color: #fff;
                           letter-spacing: .08em; flex-shrink: 0; }
@keyframes sg-marquee { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }

/* ── Page Hero ── */
.sg-page-hero { padding: clamp(56px,9vw,120px) 0 clamp(40px,6vw,72px);
                background: var(--smoke); position: relative; overflow: hidden; }
.sg-page-hero--dark { background: var(--ink); color: #fff; }
.sg-page-hero--has-bg { background: var(--ink); color: #fff; }
.sg-page-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%;
                    object-fit: cover; opacity: .4; }
.sg-page-hero__content { position: relative; z-index: 2; }
.sg-page-hero__intro { max-width: 56ch; font-size: clamp(16px,1.8vw,20px);
                       margin-top: 16px; color: var(--muted); }
.sg-page-hero--dark .sg-page-hero__intro,
.sg-page-hero--has-bg .sg-page-hero__intro { color: var(--muted-d); }

/* ── Bay Filter ── */
.sg-bay-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; align-items: center; }
.sg-bay-filter__pill { padding: 8px 16px; font-weight: 700; font-size: 12px;
                        letter-spacing: .04em; text-transform: uppercase;
                        border: 1.5px solid rgba(255,255,255,.4); border-radius: 999px;
                        background: transparent; color: #fff; transition: all .15s; }
.sg-bay-filter__pill:hover,
.sg-bay-filter__pill.is-active { background: #fff; color: var(--ink); }
.sg-bay-filter__pill--availability { border-color: var(--neon); color: var(--neon); }
.sg-bay-filter__pill--availability:hover { background: var(--neon); color: var(--ink); }
.sg-bay-filter__sep { width: 1px; height: 24px; background: rgba(255,255,255,.3); margin: 0 4px; }

/* ── Bay Cards ── */
.sg-bay-card { background: #fff; border: 1px solid var(--line); border-radius: 8px;
               overflow: hidden; transition: transform .2s var(--ease), box-shadow .2s; }
.sg-bay-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
.sg-bay-card--popular { border-top: 3px solid var(--red); }
.sg-bay-card__img-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.sg-bay-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.sg-bay-card__badge { position: absolute; top: 12px; right: 12px;
                       background: var(--red); color: #fff; font-size: 9px;
                       font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
                       padding: 4px 8px; border-radius: 3px; }
.sg-bay-card__body { padding: 22px; }
.sg-bay-card__kicker { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.sg-bay-card__title { font-size: 30px; margin-top: 6px; }
.sg-bay-card__features { margin-top: 14px; display: flex; flex-direction: column; gap: 4px; font-size: 13px; }
.sg-bay-card__features li::before { content: '· '; }
.sg-bay-card__foot { display: flex; justify-content: space-between; align-items: center;
                      margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); }

/* ── Steps ── */
.sg-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; margin-top: 8px; }
.sg-steps::before { content: ''; position: absolute; top: 56px; left: 12%; right: 12%;
                    height: 2px; background: repeating-linear-gradient(90deg,var(--line) 0 8px,transparent 8px 16px); z-index: 0; }
.sg-step { text-align: center; position: relative; z-index: 1; background: #fff;
           border: 1px solid var(--line); border-radius: 10px; padding: 28px 22px 26px;
           transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.sg-step:hover { transform: translateY(-4px); box-shadow: 0 16px 36px -22px rgba(11,11,12,.4); }
.sg-step__num { width: 56px; height: 56px; border-radius: 50%; border: none;
                background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center;
                margin: 0 auto; font-family: var(--display); font-size: 26px; line-height: 1;
                box-shadow: 0 8px 20px -8px rgba(234,33,40,.7); }
.sg-step__title { font-family: var(--display); font-size: 22px; margin-top: 16px; }
.sg-step__desc  { font-size: 14px; color: var(--muted); margin-top: 8px; line-height: 1.55; }

/* ── Venue Info ── */
.sg-venue-info { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: start; }
.sg-venue-info__map, .sg-venue-info__map-placeholder { width: 100%; aspect-ratio: 4/3;
    background: var(--smoke); border-radius: 6px; overflow: hidden; }
.sg-venue-info__map iframe { width: 100%; height: 100%; border: 0; }
.sg-venue-info__details { display: flex; flex-direction: column; gap: 16px; }
.sg-venue-tile { display: flex; gap: 14px; align-items: flex-start;
                  padding: 16px; background: #fff; border: 1px solid var(--line); border-radius: 6px; }
.sg-venue-tile__icon { font-size: 22px; flex-shrink: 0; }
.sg-venue-tile strong { font-size: 15px; display: block; }
.sg-venue-tile p { font-size: 14px; color: var(--muted); margin-top: 3px; }

/* ── Bay Hero ── */
.sg-bay-hero { position: relative; min-height: 90vh; display: flex; align-items: flex-end; background: var(--ink); }
.sg-bay-hero__media { position: absolute; inset: 0; }
.sg-bay-hero__img { width: 100%; height: 100%; object-fit: cover; }
.sg-bay-hero__img--placeholder { background: var(--ink-3); height: 100%; }
.sg-bay-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.8),rgba(0,0,0,.2) 60%,transparent); }
.sg-bay-hero__content { position: relative; z-index: 2; color: #fff; width: 100%;
                         padding-bottom: clamp(40px,6vw,80px); display: flex;
                         justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; }
.sg-bay-hero__kicker { font-family: var(--mono); font-size: 12px; opacity: .7; text-transform: uppercase; display: block; }
.sg-bay-hero__h1 { font-size: clamp(44px,7vw,88px); }
.sg-bay-hero__feat { font-size: 18px; opacity: .85; margin-top: 8px; }
.sg-bay-hero__price { font-family: var(--display); font-size: 42px; color: #fff; }
.sg-bay-hero__price small { font-family: var(--body); font-size: 13px; opacity: .7; }
.sg-bay-hero__actions { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.sg-bay-hero--plain { min-height: 48vh; }
.sg-offer-detail__meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
                          margin-top: 14px; font-size: 16px; color: var(--muted); }
/* Offer detail two-column layout (consistent with bay/restaurant detail pages) */
.sg-offer-detail { display: grid; grid-template-columns: 1.5fr .9fr; gap: 48px; align-items: start; }
.sg-offer-summary { background: #fff; border: 1px solid var(--line);
                    border-top: 4px solid var(--bay-accent,var(--red)); border-radius: 8px;
                    padding: 28px; position: sticky; top: 96px; }
.sg-offer-summary__price { font-family: var(--display); font-size: clamp(40px,5vw,56px);
                           line-height: .9; color: var(--bay-accent,var(--red)); }
.sg-offer-summary__price small { font-family: var(--body); font-size: 14px; font-weight: 600; color: var(--muted); margin-left: 4px; }
.sg-offer-summary__list { list-style: none; margin: 20px 0; padding: 0; }
.sg-offer-summary__list li { display: flex; justify-content: space-between; gap: 14px;
                             padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
.sg-offer-summary__list li:last-child { border-bottom: none; }
.sg-offer-summary__list span { color: var(--muted); }
.sg-offer-summary__list strong { font-weight: 700; }
.sg-offer-summary__expired { display: block; text-align: center; color: var(--muted); font-weight: 700; }
@media (max-width: 860px) {
  .sg-offer-detail { grid-template-columns: 1fr; gap: 28px; }
  .sg-offer-summary { position: static; }
}

/* ── Bay Stats ── */
.sg-bay-stats { display: flex; gap: 16px; flex-wrap: wrap; margin-top: -24px;
                padding: 24px 0; }
.sg-bay-stats__tile { background: #fff; border: 1px solid var(--line); border-radius: 6px;
                       padding: 18px 22px; min-width: 120px; }
.sg-bay-stats__tile strong { font-family: var(--display); font-size: 34px; color: var(--bay-accent,var(--red)); display: block; line-height: .85; }
.sg-bay-stats__tile span { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }

/* ── Bay About ── */
.sg-bay-about { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.sg-bay-about__features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.sg-feat-chip { display: flex; align-items: center; gap: 10px; padding: 7px 14px; background: #fff;
                border: 1.5px solid var(--line); border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .04em; color: var(--ink);
                transition: all .15s; }
.sg-feat-chip:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: none; box-shadow: none; }
.sg-feat-chip__ic { flex: none; width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center;
                    background: color-mix(in srgb, var(--bay-accent,var(--red)) 14%, #fff);
                    color: var(--bay-accent,var(--red)); font-size: 12px; font-weight: 800; line-height: 1; }

/* ── Gallery ── */
.sg-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.sg-gallery__item--hero { grid-column: span 2; grid-row: span 2; }
.sg-gallery__item { position: relative; overflow: hidden; aspect-ratio: 1; border-radius: 4px; display: block; }
.sg-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s var(--ease); }
.sg-gallery__item:hover img { transform: scale(1.04); }
.sg-gallery__more { position: absolute; inset: 0; background: rgba(0,0,0,.5); color: #fff;
                    display: flex; align-items: center; justify-content: center;
                    font-family: var(--display); font-size: 28px; }

/* ── Rate Table ── */
.sg-rate-table { background: #fff; border: 1px solid var(--line); border-radius: 8px;
                  overflow: hidden; max-width: 520px; }
.sg-rate-row { display: flex; justify-content: space-between; align-items: center;
               padding: 14px 20px; border-bottom: 1px dashed var(--line); }
.sg-rate-row:last-child { border-bottom: none; }
.sg-rate-row__period { font-size: 14px; }
.sg-rate-row__price { font-family: var(--display); font-size: 24px; }
.sg-rate-table__cta { padding: 16px 20px; }
.sg-bay-rates { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.sg-bay-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ── Weekly Rate Grid ── */
.sg-rategrid { margin-top: 4px; }
/* Bay toggle above the grid (Deluxe / Premium / VIP Suite) */
.sg-rategrid-tiers { display: inline-flex; flex-wrap: wrap; gap: 6px; background: #fff;
                     border: 1px solid var(--line); border-radius: 999px; padding: 5px; margin-bottom: 24px; }
.sg-rategrid-tier { border: none; background: transparent; cursor: pointer; color: var(--muted);
                    font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .04em;
                    text-transform: uppercase; padding: 9px 18px; border-radius: 999px;
                    transition: background .15s, color .15s; display: flex; flex-direction: column;
                    align-items: center; gap: 1px; line-height: 1.1; }
.sg-rategrid-tier .px { font-family: var(--display); font-size: 16px; letter-spacing: .02em; color: inherit; }
.sg-rategrid-tier.is-active { background: var(--ink); color: #fff; }
.sg-rategrid-panel[hidden] { display: none; }
.sg-rategrid__legend { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 22px; margin-bottom: 22px; }
.sg-rategrid__legend-item { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; }
.sg-rategrid__swatch { width: 16px; height: 16px; border-radius: 4px; flex: none;
                       background: var(--c, #ccc); box-shadow: inset 0 0 0 1px rgba(0,0,0,.1); }
.sg-rategrid__swatch--closed { background: repeating-linear-gradient(45deg,#efeae1,#efeae1 3px,#dfd9cd 3px,#dfd9cd 6px); }
.sg-rategrid__legend-name { font-weight: 700; }
.sg-rategrid__legend-price { font-family: var(--display); font-size: 20px; line-height: 1; }
.sg-rategrid__legend-meta { font-size: 12px; color: var(--muted); margin-left: -4px; }
.sg-rategrid__legend-item--closed { color: var(--muted); }

.sg-rategrid__scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px;
                       background: #fff; -webkit-overflow-scrolling: touch; }
.sg-rategrid__table { display: grid; grid-template-columns: 92px repeat(7, minmax(76px, 1fr)); min-width: 720px; }

.sg-rategrid__corner, .sg-rategrid__day {
  position: sticky; top: 0; z-index: 3; background: var(--ink); color: #fff;
  font-family: var(--display); font-size: 18px; letter-spacing: .04em;
  display: flex; align-items: center; justify-content: center; padding: 13px 6px; }
.sg-rategrid__corner { left: 0; z-index: 4; font-family: var(--mono); font-size: 10px;
                       letter-spacing: .08em; text-transform: uppercase; color: var(--muted-d); }
.sg-rategrid__day--weekend { color: var(--amber); }

.sg-rategrid__time { position: sticky; left: 0; z-index: 2; background: var(--paper);
                     border-top: 1px solid var(--line); font-family: var(--mono); font-size: 11px;
                     color: var(--muted); display: flex; align-items: center; justify-content: flex-end;
                     padding: 0 12px; white-space: nowrap; }

.sg-rategrid__cell { border-top: 1px solid var(--line); border-left: 1px solid var(--line);
                     min-height: 46px; display: flex; flex-direction: column; align-items: center;
                     justify-content: center; gap: 1px; position: relative; cursor: default;
                     background: color-mix(in srgb, var(--c, #fff) 15%, #fff);
                     transition: background .12s, transform .12s; }
.sg-rategrid__cell:hover { background: color-mix(in srgb, var(--c, #fff) 38%, #fff); z-index: 1; }
.sg-rategrid__cell-price { font-family: var(--display); font-size: 19px; line-height: 1; color: var(--ink); }
.sg-rategrid__cell-tier { font-family: var(--mono); font-size: 8px; letter-spacing: .04em;
                          text-transform: uppercase; font-weight: 600; color: var(--muted); }
.sg-rategrid__cell--closed { color: var(--muted); font-family: var(--mono); font-size: 13px;
                             background: repeating-linear-gradient(45deg,#faf8f4,#faf8f4 6px,#f1ede5 6px,#f1ede5 12px); }
.sg-rategrid__cell--closed:hover { background: repeating-linear-gradient(45deg,#faf8f4,#faf8f4 6px,#f1ede5 6px,#f1ede5 12px); }

.sg-rategrid__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
                     gap: 16px; margin-top: 22px; }
.sg-rategrid__note { font-size: 13px; color: var(--muted); }
@media (max-width: 560px) { .sg-rategrid__cell-price { font-size: 16px; } .sg-rategrid__time { font-size: 10px; } }

/* ── Amenity Cards ── */
.sg-amenity-card { background: #fff; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.sg-amenity-card__img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.sg-amenity-card__body { padding: 16px; }
.sg-amenity-card__body h3 { font-size: 20px; }

/* ── Restaurant Hero ── */
.sg-rest-hero { position: relative; min-height: 90vh; display: flex; align-items: flex-end; background: var(--ink); overflow: hidden; }
.sg-rest-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.sg-rest-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.85),rgba(0,0,0,.2) 60%,transparent); }
.sg-rest-hero__content { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(40px,6vw,72px); color: #fff; }
.sg-rest-hero__h1 { font-size: clamp(48px,7vw,96px); margin-top: 10px; }
.sg-rest-hero__sub { max-width: 52ch; font-size: 18px; margin-top: 12px; opacity: .85; }

/* ── Restaurant About ── */
.sg-rest-about { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.sg-rest-about__img { width: 100%; border-radius: 4px; object-fit: cover; max-height: 480px; }

/* ── Menu (tabbed) ── */
.sg-menu-tabs { margin-top: 8px; }
.sg-menu-tabs__nav { display: flex; flex-wrap: wrap; gap: 6px; border-bottom: 2px solid var(--line);
                     margin-bottom: 30px; }
.sg-menu-tab { display: inline-flex; align-items: center; gap: 9px; background: transparent; border: none;
               font-family: var(--body); font-weight: 700; font-size: 15px; color: var(--muted);
               padding: 12px 18px; cursor: pointer; position: relative; border-radius: 4px 4px 0 0;
               transition: color .15s, background .15s; }
.sg-menu-tab::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
                      background: var(--rest-accent, var(--red)); transform: scaleX(0);
                      transition: transform .2s var(--ease); }
.sg-menu-tab:hover { color: var(--ink); }
.sg-menu-tab.is-active { color: var(--ink); }
.sg-menu-tab.is-active::after { transform: scaleX(1); }
.sg-menu-tab__count { font-family: var(--mono); font-size: 11px; font-weight: 600; line-height: 1;
                      color: var(--muted); background: var(--smoke); border-radius: 999px; padding: 4px 7px; }
.sg-menu-tab.is-active .sg-menu-tab__count { color: #fff; background: var(--rest-accent, var(--red)); }

.sg-menu-panel { display: none; animation: sg-menu-fade .25s var(--ease); }
.sg-menu-panel.is-active { display: block; }
.sg-menu-panel[hidden] { display: none; }
.sg-menu-panel__tagline { font-size: 14px; color: var(--muted); margin-bottom: 18px; max-width: 60ch; }
.sg-menu-panel__list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
@keyframes sg-menu-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.sg-menu-row { display: flex; justify-content: space-between; padding: 14px 0;
               border-bottom: 1px dashed var(--line); font-size: 14px; gap: 16px; }
.sg-menu-row__price { font-family: var(--display); font-size: 20px; white-space: nowrap; color: var(--rest-accent, var(--ink)); }
.sg-menu-row__sig { display: inline-block; margin-left: 8px; font-family: var(--body, inherit); font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--rest-accent, var(--red)); vertical-align: middle; white-space: nowrap; }

/* ── Visit Info ── */
.sg-visit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.sg-visit-tile { background: #fff; border: 1px solid var(--line); border-radius: 6px;
                  padding: 16px 18px; }
.sg-visit-tile strong { display: block; font-size: 15px; font-weight: 800; }
.sg-visit-tile span { font-size: 14px; color: var(--muted); }
.sg-visit-tile__value { font-family: var(--display); font-size: 26px; line-height: 1; color: var(--red); }
.sg-visit-tile__note { font-size: 14px; color: var(--muted); margin-top: 6px; }

/* ── Events ── */
.sg-featured-event { display: grid; grid-template-columns: 1.4fr 1fr; border: 1px solid var(--line);
                      border-radius: 8px; overflow: hidden; background: #fff; }
.sg-featured-event__img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.sg-featured-event__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.sg-featured-event__body { padding: clamp(24px,4vw,40px); display: flex; flex-direction: column; gap: 14px; }
.sg-featured-event__meta { display: flex; flex-wrap: wrap; gap: 24px; }
.sg-featured-event__meta div { display: flex; flex-direction: column; gap: 3px; }
.sg-featured-event__meta span { font-family: var(--mono); font-size: 10px; color: var(--muted); text-transform: uppercase; }
.sg-featured-event__meta strong { font-size: 14px; font-weight: 700; }
.sg-event-filter { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 20px; }
.sg-event-filter__label { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.sg-event-filter__sort { margin-left: auto; font-size: 13px; font-weight: 700; border: 1.5px solid var(--line);
                          border-radius: 4px; padding: 7px 12px; background: #fff; cursor: pointer; }
.sg-event-hero { position: relative; min-height: 90vh; display: flex; align-items: flex-end; background: var(--ink); overflow: hidden; }
.sg-event-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.sg-event-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.8),transparent 70%); }
.sg-event-hero__content { position: relative; z-index: 2; color: #fff; padding-bottom: clamp(36px,5vw,64px); }
.sg-event-hero__h1 { font-size: clamp(40px,6vw,80px); margin-top: 10px; }
.sg-event-hero__meta { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 20px; }
.sg-event-hero__meta div { display: flex; flex-direction: column; gap: 4px; }
.sg-event-hero__meta span { font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,.6); text-transform: uppercase; }
.sg-event-hero__meta strong { font-size: 16px; }

/* ── Membership ── */
.sg-mem-subnav { position: sticky; top: var(--header-h); z-index: 90; background: rgba(255,255,255,.96);
                 backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); margin: -8px 0 28px;
                 padding: 14px 0; }
.sg-mem-subnav__inner { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.sg-mem-subnav__label { font-family: var(--display); font-size: 15px; font-weight: 700; color: var(--ink);
                         padding-right: 16px; border-right: 1px solid var(--line); }
.sg-mem-switcher { display: flex; gap: 8px; justify-content: center; }
.sg-mem-switcher__tab { padding: 10px 24px; font-weight: 700; font-size: 13px;
                         letter-spacing: .05em; text-transform: uppercase;
                         border: 2px solid var(--line); border-radius: 999px;
                         background: #fff; color: var(--muted); transition: all .15s; }
.sg-mem-switcher__tab.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.sg-mem-panel { display: none; }
.sg-mem-panel.is-active { display: block; }
.sg-plan-card { background: #fff; border: 1px solid var(--line); border-radius: 8px;
                padding: 28px; display: flex; flex-direction: column; gap: 12px; position: relative; }
.sg-plan-card--featured { border-top: 3px solid var(--red); }
.sg-plan-card__badge { display: inline-block; font-size: 10px; font-weight: 800;
                        letter-spacing: .1em; text-transform: uppercase;
                        background: var(--red); color: #fff; padding: 4px 10px; border-radius: 3px; }
.sg-plan-card__name  { font-family: var(--display); font-size: 32px; }
.sg-plan-card__price { font-family: var(--display); font-size: 36px; color: var(--red); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.sg-savings-badge { display: inline-block; font-family: var(--body,inherit); font-size: 11px; font-weight: 800;
                     letter-spacing: .03em; text-transform: uppercase; background: #17864a; color: #fff;
                     padding: 4px 10px; border-radius: 999px; vertical-align: middle; }
.sg-savings-badge--sm { font-size: 9.5px; padding: 3px 8px; margin-top: 2px; }
.sg-plan-card__desc { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin: -4px 0 4px; }
.sg-plan-card__features { display: flex; flex-direction: column; gap: 12px; font-size: 14px; flex: 1; }
.sg-plan-card__features li { display: flex; align-items: flex-start; gap: 10px; }
.sg-plan-card__feat-icon { flex: 0 0 auto; width: 22px; line-height: 1.3; text-align: center; font-size: 15px; color: var(--red); }
.sg-plan-card__feat-text { display: flex; flex-direction: column; gap: 2px; }
.sg-plan-card__feat-title { font-weight: 700; color: var(--ink); }
.sg-plan-card__feat-detail { font-size: 12.5px; color: var(--muted); }
.sg-plan-card__cta { margin-top: auto; padding-top: 16px; }

/* ── Membership Comparison Grid ── */
.sg-mem-compare { margin-top: 0; }
.sg-mem-compare__title { font-family: var(--display); font-size: 24px; margin-bottom: 20px; text-align: center; }
.sg-mem-compare__table { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #fff; }
.sg-mem-compare__row { display: grid; grid-template-columns: minmax(160px,1.3fr) repeat(var(--sg-compare-cols,3), minmax(150px,1fr)); }
.sg-mem-compare__row:not(:last-child) { border-bottom: 1px solid var(--line); }
.sg-mem-compare__row--head { background: var(--smoke); position: sticky; top: 0; }
.sg-mem-compare__cell { padding: 16px 18px; display: flex; flex-direction: column; align-items: center; justify-content: center;
                         text-align: center; gap: 4px; font-size: 14px; line-height: 1.45; border-left: 1px solid var(--line); }
.sg-mem-compare__cell--label { align-items: flex-start; text-align: left; font-weight: 700; border-left: none; }
.sg-mem-compare__cell--head { padding: 18px 16px; gap: 6px; }
.sg-mem-compare__cell--head .sg-btn { margin-top: 10px; font-size: 12px; padding: 10px 16px; }
.sg-mem-compare__row--desc .sg-mem-compare__cell--label { align-self: flex-start; }
.sg-mem-compare__cell--desc { font-size: 13px; color: var(--ink); line-height: 1.5; opacity: 1; }
.sg-mem-compare__cell--desc.is-best-value,
.sg-mem-compare__cell--desc.is-popular { font-weight: 600; }
.sg-mem-compare__guest-passes { font-weight: 700; color: var(--ink); font-size: 13.5px; }
.sg-mem-compare__cell--hours { align-items: center; }
.sg-priority-hours { display: flex; flex-direction: column; gap: 5px; width: 100%; list-style: none; margin: 0; padding: 0; }
.sg-priority-hours__row { display: flex; align-items: center; justify-content: space-between; gap: 8px;
                          font-size: 11.5px; padding: 4px 9px; background: var(--smoke); border-radius: 6px; }
.sg-priority-hours__day { font-weight: 800; letter-spacing: .03em; text-transform: uppercase; color: var(--ink); }
.sg-priority-hours__day::after { content: ':'; }
.sg-priority-hours__time { font-weight: 600; color: var(--ink); }
.sg-seat-pricing { display: flex; flex-direction: column; gap: 5px; width: 100%; list-style: none; margin: 0; padding: 0; }
.sg-seat-pricing__row { display: flex; align-items: center; justify-content: space-between; gap: 8px;
                        font-size: 12px; padding: 5px 9px; background: var(--smoke); border-radius: 6px; }
.sg-seat-pricing__range { font-weight: 700; color: var(--ink); }
.sg-seat-pricing__price { font-family: var(--display); font-size: 14px; color: var(--red); }
.sg-mem-compare__cell--seats.is-best-value .sg-seat-pricing__price { color: #17864a; }
.sg-mem-compare__cell.is-popular { background: rgba(234,33,40,.05); }
.sg-mem-compare__cell--head.is-popular { background: rgba(234,33,40,.08); }
.sg-mem-compare__cell.is-best-value { background: rgba(23,134,74,.06); }
.sg-mem-compare__cell--head.is-best-value { background: rgba(23,134,74,.1); }
.sg-mem-compare__cell--feat { gap: 6px; align-items: flex-start; text-align: left; }
.sg-mem-compare__feat-detail { font-size: 13px; color: var(--ink); line-height: 1.5; font-weight: 500; }
.sg-plan-card__badge--value { background: #17864a; }
.sg-mem-compare__tier-name { font-weight: 800; font-size: 14px; }
.sg-mem-compare__tier-price { font-family: var(--display); font-size: 18px; color: var(--red); }
.sg-mem-compare__check { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px;
                          border-radius: 50%; background: rgba(234,33,40,.1); color: var(--red); font-size: 14px; font-weight: 800; flex-shrink: 0; }
.sg-mem-compare__cell--hours.is-best-value .sg-mem-compare__check,
.sg-mem-compare__cell--feat.is-best-value .sg-mem-compare__check { background: rgba(23,134,74,.12); color: #17864a; }
.sg-mem-compare__dash { color: var(--ink); opacity: .35; }
.sg-mem-compare__info { font-size: 10.5px; color: var(--ink); vertical-align: super; }

/* Lightweight CSS tooltip, used across the comparison grid */
.sg-tooltip { position: relative; cursor: help; border-bottom: 1px dotted var(--ink); }
.sg-mem-compare__check.sg-tooltip { border-bottom: none; display: inline-block; }
.sg-tooltip::after {
  content: attr(data-tooltip);
  position: absolute; bottom: calc(100% + 9px); left: 50%; transform: translateX(-50%) translateY(4px);
  width: max-content; max-width: 220px;
  background: var(--ink); color: #fff; font-size: 11.5px; font-weight: 500; line-height: 1.4;
  text-align: center; padding: 8px 11px; border-radius: 6px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  z-index: 20;
}
.sg-tooltip::before {
  content: ''; position: absolute; bottom: calc(100% + 3px); left: 50%; transform: translateX(-50%);
  border: 6px solid transparent; border-top-color: var(--ink);
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .15s ease;
  z-index: 20;
}
.sg-tooltip:hover::after, .sg-tooltip:hover::before,
.sg-tooltip:focus::after, .sg-tooltip:focus::before { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.sg-mem-compare__cell--label .sg-tooltip::after { left: 0; transform: translateX(0) translateY(4px); text-align: left; }
.sg-mem-compare__cell--label .sg-tooltip:hover::after,
.sg-mem-compare__cell--label .sg-tooltip:focus::after { transform: translateX(0) translateY(0); }
.sg-mem-compare__cell--label .sg-tooltip::before { left: 10px; transform: none; }
@media (max-width: 720px) {
  .sg-mem-compare__table { overflow-x: auto; }
  .sg-mem-compare__row { grid-template-columns: 130px repeat(var(--sg-compare-cols,3), minmax(140px,1fr)); width: max-content; min-width: 100%; }
}
.sg-membership-promo { display: grid; grid-template-columns: 1fr; max-width: 680px; }
.sg-membership-promo__types { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.sg-membership-promo__type { display: flex; justify-content: space-between; padding: 12px 16px;
                               border: 1px solid var(--line-dark); border-radius: 4px;
                               font-weight: 700; color: #fff; font-size: 14px; }
.sg-membership-promo__type:hover { background: rgba(255,255,255,.06); }

/* ── Academy ── */
.sg-academy-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.sg-academy-hero__img { width: 100%; border-radius: 4px; object-fit: cover; max-height: 420px; }
.sg-package-card { background: #fff; border: 1px solid var(--line); border-radius: 6px;
                    padding: 22px; display: flex; flex-direction: column; gap: 8px; }
.sg-package-card__title { font-family: var(--display); font-size: 26px; }
.sg-package-card__level { font-family: var(--mono); font-size: 11px; color: var(--muted); text-transform: uppercase; }
.sg-package-card__lessons { font-size: 13px; color: var(--muted); }
.sg-package-card__foot { display: flex; justify-content: space-between; align-items: center;
                           margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); }
.sg-curriculum { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line);
                  border-radius: 6px; overflow: hidden; background: #fff; }
.sg-curriculum__week { padding: 16px 18px; border-right: 1px dashed var(--line); }
.sg-curriculum__week:last-child { border-right: none; }
.sg-curriculum__label { font-family: var(--mono); font-size: 11px; color: var(--red); text-transform: uppercase; display: block; }
.sg-schedule { background: #fff; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.sg-schedule__days { display: grid; grid-template-columns: repeat(7,1fr); background: var(--ink); }
.sg-schedule__day { text-align: center; padding: 10px; }
.sg-schedule__day-letter { display: block; font-family: var(--mono); font-size: 10px; color: var(--muted-d); text-transform: uppercase; }
.sg-schedule__day-num   { display: block; font-family: var(--display); font-size: 22px; color: #fff; margin-top: 3px; }
.sg-schedule__slots { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.sg-schedule__slot { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px;
                      padding: 10px 12px; border-bottom: 1px dashed var(--line); font-size: 13px; align-items: center; }
.sg-schedule__slot-time  { font-family: var(--mono); }
.sg-schedule__slot-coach { font-size: 12px; color: var(--muted); }
.sg-schedule__slot-class { display: flex; align-items: center; gap: 6px; font-weight: 700; }
.sg-schedule__slot-icon { font-size: 14px; line-height: 1; }
.sg-schedule__slot-price { font-family: var(--display); font-size: 15px; color: var(--rest-accent, var(--ink)); }
.sg-schedule-note { display: flex; align-items: center; gap: 6px; margin: 8px 0; padding: 6px 12px;
                     background: var(--smoke); border-radius: 999px; width: fit-content; }
.sg-schedule-note__ic { font-size: 13px; }
.sg-schedule-note__label { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.sg-schedule-note__time { font-size: 12.5px; font-weight: 700; color: var(--ink); }
.sg-schedule__cols { display: grid; grid-template-columns: repeat(7,1fr); }
.sg-schedule__col { padding: 10px; border-right: 1px dashed var(--line); display: flex; flex-direction: column; gap: 8px; min-height: 60px; }
.sg-schedule__col:last-child { border-right: none; }
.sg-schedule__slot--stacked { display: flex; flex-direction: column; gap: 3px; grid-template-columns: none;
                               padding: 10px; border: 1px solid var(--line); border-radius: 5px; background: #fff; }
.sg-schedule__slot--empty { border: none; background: none; color: var(--muted); font-size: 12px; text-align: center; padding: 10px 0; }
.sg-pill--sm { display: inline-flex; padding: 3px 9px; font-size: 10px; }
.sg-instructor-list { display: flex; flex-direction: column; gap: 12px; }
.sg-instructor-card { display: flex; align-items: center; gap: 16px; padding: 16px;
                       background: #fff; border: 1px solid var(--line); border-radius: 6px; }
.sg-instructor-card__photo { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.sg-instructor-card__body { flex: 1; }
.sg-instructor-card__creds { font-family: var(--mono); font-size: 11px; color: var(--muted); }

/* ── Single Instructor profile ── */
.sg-instructor-profile { display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: start; }
.sg-instructor-profile__aside { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 96px; }
.sg-instructor-profile__photo img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; }
.sg-instructor-profile__fact { border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.sg-instructor-profile__fact-label { display: block; font-family: var(--mono); font-size: 11px;
                                      text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 4px; }
.sg-instructor-profile__fact strong { font-size: 16px; font-weight: 700; }
.sg-instructor-profile__main .sg-prose { margin-top: 14px; }
@media (max-width: 768px) {
  .sg-instructor-profile { grid-template-columns: 1fr; gap: 28px; }
  .sg-instructor-profile__aside { position: static; }
}

/* ── Loyalty ── */
.sg-loyalty-card { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #fff; }
.sg-loyalty-card__header { padding: 20px; background: var(--tier-accent,var(--red)); color: #fff; }
.sg-loyalty-card__header h3 { font-size: 28px; color: #fff; }
.sg-loyalty-card__perks { padding: 16px 20px; display: flex; flex-direction: column; gap: 6px; font-size: 14px; }
.sg-loyalty-card__perks li::before { content: '· '; }
.sg-earn-card { background: #fff; border: 1px solid var(--line); border-radius: 6px;
                padding: 22px; display: flex; flex-direction: column; gap: 8px; }
.sg-earn-card__icon { font-size: 32px; }

/* ── League ── */
.sg-standings-table { width: 100%; border-collapse: collapse; }
.sg-standings-table th, .sg-standings-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; }
.sg-standings-table thead th { background: var(--ink); color: #fff; font-family: var(--display); font-size: 16px; font-weight: 400; }
.sg-standings-table tbody tr:hover { background: var(--smoke); }
.sg-standings__division { font-family: var(--display); font-size: 28px; margin-bottom: 12px; }
.sg-division-card { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 22px; }
.sg-division-card h3 { font-size: 26px; }
.sg-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.sg-table th, .sg-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.sg-table-wrap { overflow-x: auto; }

/* ── Private Events ── */
.sg-room-card { background: #fff; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.sg-room-rates { display: flex; gap: 16px; margin-top: 10px; }
.sg-room-rates div { display: flex; flex-direction: column; }
.sg-room-rates span { font-size: 11px; color: var(--muted); text-transform: uppercase; font-weight: 700; }
.sg-room-specs { font-size: 13px; color: var(--muted); padding-left: 16px; list-style: disc; margin-top: 8px; }

/* ── Contact ── */
.sg-contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.sg-contact-info { display: flex; flex-direction: column; gap: 12px; }
.sg-contact-tile { display: flex; gap: 14px; align-items: flex-start; padding: 16px;
                    background: #fff; border: 1px solid var(--line); border-radius: 6px; }
.sg-contact-tile__icon { font-size: 22px; }
.sg-contact-tile__label { font-family: var(--mono); font-size: 10px; color: var(--muted); text-transform: uppercase; display: block; }
.sg-contact-tile__val { font-weight: 700; font-size: 15px; }
.sg-contact-map { aspect-ratio: 4/3; background: var(--smoke); border-radius: 6px; overflow: hidden; margin-top: 4px; }
.sg-contact-map iframe { width: 100%; height: 100%; border: 0; }

/* ── Forms ── */
.sg-form { display: flex; flex-direction: column; gap: 16px; }
.sg-form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sg-form__field { display: flex; flex-direction: column; gap: 6px; }
.sg-form__field label { font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.sg-form__field input, .sg-form__field textarea, .sg-form__field select {
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 4px;
  font-family: var(--body); font-size: 15px; background: #fff;
  transition: border-color .15s;
}
.sg-form__field input:focus, .sg-form__field textarea:focus, .sg-form__field select:focus {
  outline: none; border-color: var(--red);
}
.sg-form__footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.sg-checkbox { display: flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; }
.sg-checkbox input { width: auto; }
.sg-form__opt { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--muted); }

/* ── Modal (membership enquiry) ── */
.sg-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center;
            justify-content: center; padding: 20px; opacity: 0; visibility: hidden;
            transition: opacity .25s var(--ease), visibility .25s var(--ease); }
.sg-modal.is-open { opacity: 1; visibility: visible; }
.sg-modal__veil { position: absolute; inset: 0; background: rgba(11,11,12,.72);
                  backdrop-filter: blur(3px); }
.sg-modal__dialog { position: relative; z-index: 1; width: 100%; max-width: 560px;
                    max-height: 92vh; overflow-y: auto; background: var(--paper);
                    border-radius: 10px; padding: clamp(24px,4vw,40px);
                    box-shadow: 0 30px 80px rgba(0,0,0,.45);
                    transform: translateY(16px) scale(.98); transition: transform .25s var(--ease); }
.sg-modal.is-open .sg-modal__dialog { transform: translateY(0) scale(1); }
.sg-modal__close { position: absolute; top: 14px; right: 16px; width: 36px; height: 36px;
                   border: none; border-radius: 50%; background: var(--smoke); color: var(--ink);
                   font-size: 15px; line-height: 1; display: grid; place-items: center;
                   transition: background .15s; }
.sg-modal__close:hover { background: var(--line); }
.sg-modal__head { margin-bottom: 22px; }
.sg-modal__sub { margin-top: 10px; font-size: 14px; color: var(--muted); }
.sg-modal__sub strong { color: var(--red); }
.sg-modal__form .sg-form__footer { margin-top: 4px; }
@media (max-width: 560px) {
  .sg-modal__form .sg-form__row--2 { grid-template-columns: 1fr; }
  .sg-modal__form .sg-form__footer { flex-direction: column; align-items: stretch; }
  .sg-modal__form .sg-form__footer .sg-btn { width: 100%; text-align: center; }
}

/* ── Pro Shop / WooCommerce ── */
.sg-cat-tile { position: relative; display: block; border-radius: 6px; overflow: hidden;
               aspect-ratio: 16/9; background: var(--smoke); }
.sg-cat-tile__img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s var(--ease); }
.sg-cat-tile:hover .sg-cat-tile__img { transform: scale(1.05); }
.sg-cat-tile__label { position: absolute; bottom: 16px; left: 16px; font-family: var(--display);
                       font-size: 26px; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.6); }
ul.products { list-style: none; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
ul.products li.product { background: #fff; border: 1px solid var(--line); border-radius: 6px;
                           overflow: hidden; transition: transform .2s var(--ease); }
ul.products li.product:hover { transform: translateY(-4px); }
ul.products li.product img { width: 100%; aspect-ratio: 1; object-fit: cover; }
ul.products li.product .woocommerce-loop-product__title { font-family: var(--display); font-size: 20px; padding: 12px 14px 4px; }
ul.products li.product .price { padding: 0 14px 14px; font-family: var(--display); font-size: 22px; color: var(--red); }
ul.products li.product .button { display: block; margin: 0 14px 14px; text-align: center; }

/* ── Promo Grid ── */
.sg-promo-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: repeat(2,140px); gap: 12px; }
.sg-promo-tile { position: relative; overflow: hidden; border-radius: 4px; display: block; }
.sg-promo-tile--featured { grid-column: span 2; grid-row: span 2; }
.sg-promo-tile__img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s var(--ease); }
.sg-promo-tile:hover .sg-promo-tile__img { transform: scale(1.04); }
.sg-promo-tile__label { position: absolute; bottom: 12px; left: 12px; font-family: var(--display);
                         font-size: 18px; color: #fff; text-shadow: 0 2px 6px rgba(0,0,0,.7); }

/* ── Carousel ── */
.sg-carousel { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 12px;
               scrollbar-width: thin; scroll-snap-type: x mandatory; }
.sg-carousel__item { flex: 0 0 280px; scroll-snap-align: start; }

/* ── Pagination ── */
.sg-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; flex-wrap: wrap; }
.sg-pagination .page-numbers { padding: 8px 14px; border: 1.5px solid var(--line); border-radius: 4px;
                                 font-weight: 700; font-size: 13px; background: #fff; }
.sg-pagination .page-numbers.current { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ── Footer ── */
.sg-footer { background: var(--ink); color: rgba(255,255,255,.75); padding-top: clamp(56px,8vw,100px); }
.sg-footer__cta { display: flex; align-items: center; justify-content: space-between;
                   flex-wrap: wrap; gap: 32px; margin-bottom: clamp(48px,7vw,90px);
                   border: 1px solid var(--line-dark); border-radius: 16px;
                   padding: clamp(32px,5vw,64px);
                   background: radial-gradient(120% 140% at 100% 0%, rgba(234,33,40,.22), transparent 60%), var(--ink-2); }
.sg-footer__cta-h2 { font-family: var(--display); color: #fff; margin-top: 14px;
                      max-width: 14ch; font-size: clamp(34px,4.5vw,56px); line-height: 1.02; }
.sg-footer__cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.sg-footer__top { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(32px,5vw,80px);
                   padding: 0 0 clamp(32px,5vw,60px); }
.sg-footer__brand { display: flex; flex-direction: column; gap: 14px; }
.sg-footer__logo   { height: auto; width: 25%; }
.sg-footer__wordmark { font-family: var(--display); font-size: 28px; color: #fff; }
.sg-footer__tagline  { font-size: 14px; opacity: .7; }
.sg-footer__social { display: flex; gap: 10px; }
.sg-footer__social-link { width: 36px; height: 36px; border-radius: 50%;
                            border: 1px solid var(--line-dark); display: grid; place-items: center;
                            font-size: 13px; font-weight: 700; color: rgba(255,255,255,.7);
                            transition: all .15s; }
.sg-footer__social-link:hover { border-color: #fff; color: #fff; }
.sg-footer__nav { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.sg-footer__col h4 { font-family: var(--display); font-size: 18px; color: #fff; margin-bottom: 14px; }
.sg-footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.sg-footer__col ul li a { font-size: 14px; transition: color .15s; }
.sg-footer__col ul li a:hover { color: #fff; }
.sg-footer__bottom { display: flex; justify-content: space-between; align-items: center;
                      padding: 20px 0; border-top: 1px solid var(--line-dark); flex-wrap: wrap; gap: 12px; }
.sg-footer__copy   { font-size: 13px; }
.sg-footer__legal-list { display: flex; gap: 20px; list-style: none; }
.sg-footer__legal-list a { font-size: 12px; opacity: .6; }
.sg-footer__legal-list a:hover { opacity: 1; }

/* ── Misc ── */
.sg-back-link { padding: 28px 0; font-size: 14px; font-weight: 700; }
.sg-back-link a { color: var(--muted); }
.sg-back-link a:hover { color: var(--red); }
.sg-empty-state { color: var(--muted); font-style: italic; padding: 32px 0; }
.sg-img--placeholder { background: repeating-linear-gradient(135deg,var(--line) 0 1px,transparent 1px 14px),var(--smoke);
                        min-height: 200px; width: 100%; border-radius: 4px; }
.sg-program-tile { background: #fff; border: 1px solid var(--line); border-radius: 6px;
                    padding: 20px; display: flex; flex-direction: column; gap: 6px; }
.sg-program-tile__day   { font-family: var(--display); font-size: 32px; color: var(--red); }
.sg-program-tile__event { font-size: 16px; font-weight: 700; }
.sg-program-tile__time  { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.sg-explore-teaser { display: flex; background: #fff; border: 1px solid var(--line);
                      border-radius: 6px; overflow: hidden; text-decoration: none;
                      transition: transform .2s var(--ease); }
.sg-explore-teaser:hover { transform: translateY(-3px); }
.sg-explore-teaser__img { width: 180px; flex-shrink: 0; object-fit: cover; }
.sg-explore-teaser__body { padding: 22px; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.sg-explore-teaser__body h3 { font-size: 26px; }
.sg-fee-chip { font-size: 13px; font-weight: 600; }
.sg-event-sidebar__card { background: var(--smoke); border: 1px solid var(--line); border-radius: 6px;
                           padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.sg-two-col--narrow { grid-template-columns: 1.5fr 1fr; }

/* ── Scroll Reveal ── */
.sg-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}
.sg-revealed { opacity: 1; transform: none; }

.sg-sec-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s cubic-bezier(.16,1,.3,1), transform .55s cubic-bezier(.16,1,.3,1);
}
.sg-sec-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .sg-reveal, .sg-sec-reveal { opacity: 1; transform: none; transition: none; }
  .sg-marquee__track { animation: none; }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .sg-nav { display: none; }
  .sg-header__hamburger { display: flex; }
  .sg-grid--4 { grid-template-columns: repeat(2,1fr); }
  .sg-footer__nav { grid-template-columns: repeat(2,1fr); }
  .sg-steps { grid-template-columns: repeat(2,1fr); }
  .sg-steps::before { display: none; }
}
@media (max-width: 768px) {
  .sg-grid--2, .sg-grid--3, .sg-grid--4 { grid-template-columns: 1fr; }
  .sg-two-col, .sg-bay-about, .sg-rest-about, .sg-venue-info,
  .sg-contact-grid, .sg-bay-rates, .sg-featured-event { grid-template-columns: 1fr; }
  .sg-footer__top { grid-template-columns: 1fr; }
  .sg-footer__cta { flex-direction: column; align-items: flex-start; }
  .sg-footer__nav { grid-template-columns: 1fr 1fr; }
  .sg-menu-grid, .sg-menu-panel__list, .sg-form__row--2, .sg-visit-grid { grid-template-columns: 1fr; }
  .sg-bay-hero__content { flex-direction: column; align-items: flex-start; }
  .sg-curriculum { grid-template-columns: 1fr 1fr; }
  .sg-promo-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .sg-promo-tile--featured { grid-column: span 2; grid-row: auto; }
  .sg-academy-hero { grid-template-columns: 1fr; }
  ul.products { grid-template-columns: 1fr 1fr; }
  .sg-gallery { grid-template-columns: 1fr 1fr; }
  .sg-gallery__item--hero { grid-column: span 2; }
}
@media (max-width: 480px) {
  .sg-hero__h1 { font-size: clamp(38px,10vw,60px); }
  .sg-footer__nav { grid-template-columns: 1fr; }
  ul.products { grid-template-columns: 1fr; }
  .sg-mem-switcher { flex-direction: column; align-items: stretch; }
}
@media print {
  .nav, .drawer, .sg-overlay, .sg-footer, .sg-hero__ctas, .sg-btn { display: none !important; }
}


/* (v3) Left-sidebar layout removed — v3 uses the horizontal top nav (.nav/.drawer). */



/* =============================================================
   HOMEPAGE COMPONENTS — added for index-v2 design
   ============================================================= */

/* ── Hero extras ── */
.sg-accent { color: var(--red); }
.sg-live-dot { color: var(--neon); animation: sg-pulse 1.8s ease-in-out infinite; }
@keyframes sg-pulse { 0%,100%{opacity:1} 50%{opacity:.35} }
.sg-hero__scroll {
  position:absolute; bottom:32px; left:50%; transform:translateX(-50%);
  font-family:var(--mono); font-size:10px; letter-spacing:.2em; text-transform:uppercase;
  color:rgba(255,255,255,.45); writing-mode:vertical-rl; z-index:2;
}
.sg-btn--ghost-light { border-color:rgba(255,255,255,.5); color:#fff; }
.sg-btn--ghost-light:hover { background:#fff; color:var(--ink); }

/* ── Hero stat bar ── */
.sg-hp-statbar {
  display:flex; align-items:center; gap:clamp(18px,3vw,40px); flex-wrap:wrap;
  margin-top:clamp(28px,4vw,44px); padding-top:clamp(18px,2vw,24px);
  border-top:1px solid rgba(255,255,255,.15);
}
.sg-hp-stat { display:flex; flex-direction:column; }
.sg-hp-stat b {
  font-family:var(--display); font-size:clamp(24px,3vw,36px); color:#fff;
  line-height:.9; display:flex; align-items:baseline; gap:5px;
}
.sg-hp-stat span {
  font-family:var(--mono); font-size:10px; text-transform:uppercase;
  letter-spacing:.12em; color:rgba(255,255,255,.45); margin-top:4px;
}

/* ── Marquee wrap + toggle ── */
.sg-mq-wrap {
  position:relative; background:var(--red);
  border-top:2px solid var(--ink); border-bottom:2px solid var(--ink);
  overflow:hidden;
}
.sg-mq-wrap .sg-marquee {
  transition:max-height .4s cubic-bezier(.22,1,.36,1), padding .4s cubic-bezier(.22,1,.36,1);
  max-height:80px;
}
.sg-mq-wrap.sg-mq-off .sg-marquee { max-height:0; padding:0; overflow:hidden; }
.sg-mq-wrap.sg-mq-off { min-height:34px; }
.sg-mq-toggle {
  position:absolute; right:clamp(16px,4vw,40px); top:50%; transform:translateY(-50%);
  z-index:10; background:rgba(0,0,0,.28); border:1.5px solid rgba(255,255,255,.28);
  border-radius:99px; color:#fff; font-family:var(--body); font-size:10px;
  font-weight:800; letter-spacing:.12em; text-transform:uppercase;
  padding:5px 9px 5px 11px; cursor:pointer;
  display:flex; align-items:center; gap:8px;
  transition:background .2s; white-space:nowrap;
}
.sg-mq-toggle:hover { background:rgba(0,0,0,.55); }
.sg-mq-pill {
  width:28px; height:15px; border-radius:99px;
  background:rgba(255,255,255,.3); position:relative;
  transition:background .25s; flex-shrink:0;
}
.sg-mq-pill::after {
  content:''; position:absolute; top:3px; left:3px;
  width:9px; height:9px; border-radius:50%;
  background:#fff; transition:transform .25s;
}
.sg-mq-toggle[aria-pressed="false"] .sg-mq-pill { background:rgba(255,255,255,.15); }
.sg-mq-toggle[aria-pressed="false"] .sg-mq-pill::after { transform:translateX(0); }
.sg-mq-toggle[aria-pressed="true"] .sg-mq-pill { background:rgba(255,255,255,.55); }
.sg-mq-toggle[aria-pressed="true"] .sg-mq-pill::after { transform:translateX(13px); }

/* ── Bay Booking Widget ── */
.sg-bkw {
  background:var(--ink); border-bottom:1px solid rgba(255,255,255,.08);
}
.sg-bkw__inner {
  display:flex; align-items:center; gap:8px;
  height:58px; overflow-x:auto; scrollbar-width:none;
}
.sg-bkw__inner::-webkit-scrollbar { display:none; }
.sg-bkw__label {
  font-family:var(--display); font-size:22px; color:#fff;
  white-space:nowrap; flex-shrink:0;
  padding-right:16px; border-right:1px solid rgba(255,255,255,.12); margin-right:4px; line-height:1;
}
.sg-bkw__input {
  background:rgba(255,255,255,.07); border:1.5px solid rgba(255,255,255,.11);
  border-radius:4px; color:#fff; font-family:var(--body); font-size:13px;
  font-weight:600; padding:0 10px; height:36px; outline:none; cursor:pointer;
  transition:border-color .2s; color-scheme:dark; flex-shrink:0;
}
.sg-bkw__input:focus { border-color:var(--red); }
.sg-bkw__input option { background:#1a1a1e; }
.sg-bkw__submit {
  white-space:nowrap; height:36px; padding:0 18px;
  font-size:12px; margin-left:auto; flex-shrink:0;
}
@media(max-width:700px){ .sg-bkw__label{display:none} }

/* ── Section head row variant ── */
.sg-sec-head--row {
  display:flex; align-items:flex-end; justify-content:space-between;
  flex-wrap:wrap; gap:16px;
}
.sg-sec-head--light h2,
.sg-sec-head--light .sg-kick { color:#fff; }

/* ── Arrow links ── */
.sg-arrow-link {
  display:inline-flex; align-items:center; gap:6px;
  font-weight:700; font-size:13px; letter-spacing:.06em; text-transform:uppercase;
  color:var(--ink); transition:gap .2s, opacity .2s;
}
.sg-arrow-link:hover { gap:10px; }
.sg-arrow-link--light { color:rgba(255,255,255,.7); }
.sg-arrow-link--light:hover { color:#fff; }
.sg-arrow-link--sm { font-size:12px; margin-top:6px; color:var(--red); }
/* Inline action-arrow icons scale with their label for consistent sizing */
.sg-ico { width:1.05em; height:1.05em; flex:none; }

/* ── Carousel nav buttons ── */
.sg-car-nav { display:flex; gap:8px; flex-shrink:0; }
.sg-car-btn {
  width:40px; height:40px; border-radius:50%;
  border:1.5px solid rgba(255,255,255,.2); background:rgba(255,255,255,.06);
  color:#fff; cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:background .2s, border-color .2s;
}
.sg-car-btn:hover { background:rgba(255,255,255,.14); border-color:rgba(255,255,255,.4); }
.sg-car-btn svg { width:18px; height:18px; }

/* ── Restaurant card name line ── */
.sg-rest-name {
  font-size:11px; font-weight:800; letter-spacing:.14em;
  text-transform:uppercase; margin:0 0 5px;
}

/* ── Membership split layout ── */
.sg-two-col--mem {
  grid-template-columns:1fr 1fr; align-items:center; gap:clamp(32px,6vw,80px);
}
.sg-mem-body {
  font-size:clamp(17px,2vw,21px); line-height:1.55;
  color:var(--muted); margin-top:18px; max-width:52ch;
}
.sg-mem-stats {
  display:flex; gap:clamp(20px,4vw,40px); margin:30px 0;
}
.sg-mem-stats > div { display:flex; flex-direction:column; gap:4px; }
.sg-bignum {
  font-family:var(--display); font-size:clamp(40px,5vw,64px); line-height:.9;
  color:var(--red);
}
.sg-stat-label {
  font-size:12px; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; color:var(--muted);
}
.sg-media-frame {
  border-radius:8px; overflow:hidden; aspect-ratio:3/4; background:var(--smoke);
}
.sg-media-frame img { width:100%; height:100%; object-fit:cover; display:block; }

/* ── Homepage promo card layout ── */
.sg-hp-promo-layout {
  display:grid; grid-template-columns:1fr 1fr; gap:18px; align-items:stretch;
}
.sg-hp-promo-featured { display:flex; flex-direction:column; }
.sg-hp-promo-featured .sg-hp-promo-card { flex:1; }
.sg-hp-promo-side {
  display:grid; grid-template-columns:1fr 1fr; gap:12px;
}
.sg-hp-promo-card {
  border-radius:8px; overflow:hidden; display:flex; flex-direction:column;
  background:#fff; border:1px solid var(--line); text-decoration:none;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
.sg-hp-promo-card:hover { transform:translateY(-5px); box-shadow:0 22px 44px -20px rgba(0,0,0,.2); }
.sg-hp-promo-card__media { position:relative; aspect-ratio:16/9; overflow:hidden; flex-shrink:0; }
.sg-hp-promo-card--feat .sg-hp-promo-card__media { aspect-ratio:unset; flex:1; min-height:260px; }
.sg-hp-promo-card__media img { width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease); }
.sg-hp-promo-card:hover .sg-hp-promo-card__media img { transform:scale(1.06); }
.sg-hp-promo-card__body { padding:18px; display:flex; flex-direction:column; gap:4px; flex:1; }
.sg-hp-promo-card__kicker {
  font-size:10.5px; font-weight:800; letter-spacing:.14em; text-transform:uppercase;
  color:var(--pc-accent, var(--red));
}
.sg-hp-promo-card__title {
  font-family:var(--display); font-size:26px; line-height:.95; color:var(--ink);
}
.sg-hp-promo-card--feat .sg-hp-promo-card__title { font-size:42px; }
.sg-hp-promo-card__desc { font-size:13px; color:var(--muted); line-height:1.45; margin:3px 0 0; flex:1; }
.sg-hp-promo-card__foot {
  margin-top:14px; display:flex; align-items:center;
  justify-content:space-between; gap:8px;
}
.sg-hp-promo-card__value {
  font-family:var(--display); font-size:24px;
  color:var(--pc-accent, var(--red)); line-height:1;
}
.sg-hp-promo-card--feat .sg-hp-promo-card__value { font-size:34px; }
.sg-hp-promo-card__exp {
  font-size:10px; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; color:var(--muted);
}

/* ── Instagram / social feed ── */
.sg-insta-feed {
  display:grid; grid-template-columns:repeat(6,1fr); gap:4px;
}
.sg-insta-feed a { display:block; aspect-ratio:1; overflow:hidden; }
.sg-insta-feed a img { width:100%; height:100%; object-fit:cover; transition:transform .3s var(--ease); }
.sg-insta-feed a:hover img { transform:scale(1.06); }
.sg-insta-loading { color:var(--muted-d); font-size:14px; grid-column:span 6; padding:32px 0; }

/* ── Offer card ── */
.sg-offer-card { background:#fff; }
.sg-offer-card__excerpt { display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical;
                          overflow:hidden; }

/* ── Pill button ── */
.sg-pill {
  display:inline-flex; align-items:center; padding:7px 14px;
  font-weight:700; font-size:12px; letter-spacing:.04em;
  border:1.5px solid var(--line); border-radius:999px; background:#fff;
  transition:all .15s; white-space:nowrap;
}
.sg-pill:hover { background:var(--ink); color:#fff; border-color:var(--ink); }

/* ── Responsive: promo grid ── */
@media(max-width:900px){
  .sg-hp-promo-layout { grid-template-columns:1fr; }
  .sg-hp-promo-side { grid-template-columns:1fr 1fr; }
  .sg-hp-promo-card--feat .sg-hp-promo-card__media { min-height:200px; }
  .sg-two-col--mem { grid-template-columns:1fr; }
}
@media(max-width:520px){
  .sg-hp-promo-side { grid-template-columns:1fr; }
  .sg-insta-feed { grid-template-columns:repeat(3,1fr); }
}

/* ════════════════════════════════════════════════════════════
   SUPERGOLF EXPERIENCE PAGE  (page-experience.php)
   ════════════════════════════════════════════════════════════ */
.sg-xp-section { scroll-margin-top: 124px; }
.sg-xp-h2 { font-size: clamp(38px,5.5vw,64px); line-height: .9; margin-top: 14px; }
.sg-xp-sec-head { margin-top: clamp(48px,7vw,90px); }

/* ── How It Works — image step cards ── */
.sg-xp-stepcards { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 44px; }
.sg-xp-stepcard { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
                  display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); }
.sg-xp-stepcard:hover { transform: translateY(-6px); box-shadow: 0 18px 40px -18px rgba(11,11,12,.35); border-color: transparent; }
.sg-xp-stepcard__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink); }
.sg-xp-stepcard__media img { width: 100%; height: 100%; object-fit: cover; display: block;
                             transform: scale(1.02); transition: transform .6s var(--ease); }
.sg-xp-stepcard:hover .sg-xp-stepcard__media img { transform: scale(1.1); }
.sg-xp-stepcard__media::after { content: ''; position: absolute; inset: 0;
                                background: linear-gradient(to top, rgba(11,11,12,.55) 0%, rgba(11,11,12,0) 55%); }
.sg-xp-stepcard__num { position: absolute; top: 12px; left: 12px; z-index: 1;
                       width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
                       background: var(--red); color: #fff; font-family: var(--display); font-size: 26px; line-height: 1;
                       box-shadow: 0 6px 18px -6px rgba(234,33,40,.7); }
.sg-xp-stepcard__body { padding: 22px 22px 26px; }
.sg-xp-stepcard__title { font-family: var(--display); font-size: 26px; line-height: .95; margin-bottom: 9px; }
.sg-xp-stepcard__desc { font-size: 14px; color: var(--muted); line-height: 1.55; }
@media (max-width: 900px) { .sg-xp-stepcards { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .sg-xp-stepcards { grid-template-columns: 1fr; } }
.sg-xp-lead { font-size: clamp(17px,2vw,21px); line-height: 1.58; margin-top: 18px; max-width: 62ch; color: var(--ink); }
.sg-xp-lead--light { color: var(--muted-d); }
.sg-xp-body { color: var(--muted); margin-top: 14px; line-height: 1.65; }
.sg-section--dark .sg-xp-body { color: var(--muted-d); }
.sg-xp-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 36px; }
.sg-xp-head-row .sg-sec-head { margin-bottom: 0; }

/* ── Hero ── */
.sg-xp-hero { position: relative; padding: clamp(120px,16vw,180px) 0 clamp(48px,7vw,80px); color: #fff; overflow: hidden; background: var(--ink); }
.sg-xp-hero::before { content: ''; position: absolute; inset: 0; z-index: 0; background-image: var(--xp-hero); background-size: cover; background-position: center; }
.sg-xp-hero::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(11,11,12,.5) 0%, rgba(11,11,12,.55) 40%, rgba(11,11,12,.85) 100%), linear-gradient(90deg, rgba(11,11,12,.6) 0%, transparent 60%); }
.sg-xp-hero__inner { position: relative; z-index: 2; }
.sg-xp-crumbs { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 22px; }
.sg-xp-crumbs a { color: rgba(255,255,255,.8); }
.sg-xp-crumbs a:hover { color: #fff; }
.sg-xp-hero__h1 { font-size: clamp(54px,9vw,104px); line-height: .9; margin-top: 14px; }
.sg-xp-hero__intro { font-size: clamp(16px,1.8vw,20px); line-height: 1.55; margin-top: 18px; max-width: 54ch; color: rgba(255,255,255,.82); }
.sg-xp-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.sg-btn--ghost-light { border-color: rgba(255,255,255,.5); color: #fff; }
.sg-btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ── Sticky sub-nav ── */
.sg-xp-subnav { position: sticky; top: var(--header-h); z-index: 90; background: rgba(11,11,12,.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line-dark); }
.sg-xp-subnav__inner { display: flex; gap: 4px; height: 52px; align-items: center; overflow-x: auto; scrollbar-width: none; }
.sg-xp-subnav__inner::-webkit-scrollbar { display: none; }
.sg-xp-subnav a { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.55); padding: 8px 14px; border-radius: 99px; white-space: nowrap; transition: color .2s, background .2s; flex-shrink: 0; }
.sg-xp-subnav a:hover { color: #fff; }
.sg-xp-subnav a.is-current { color: #fff; background: var(--red); }
@media(max-width:760px){ .sg-xp-subnav { top: 0; } }

/* ── What: split ── */
.sg-xp-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,60px); align-items: center; }
.sg-xp-media { border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; }
.sg-xp-media img { width: 100%; height: 100%; object-fit: cover; }
@media(max-width:860px){ .sg-xp-split { grid-template-columns: 1fr; } .sg-xp-media { order: -1; } }

/* ── Feature cards ── */
.sg-xp-feats { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 44px; }
.sg-xp-feat { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 26px 24px; }
.sg-xp-feat__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--smoke); display: grid; place-items: center; color: var(--red); margin-bottom: 18px; }
.sg-xp-feat__ic svg { width: 24px; height: 24px; flex: none; display: block; }
.sg-xp-feat h4 { font-family: var(--display); font-size: 24px; line-height: .95; margin-bottom: 8px; }
.sg-xp-feat p { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
@media(max-width:860px){ .sg-xp-feats { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px){ .sg-xp-feats { grid-template-columns: 1fr; } }

/* ── Plan a Visit: info cards ── */
.sg-xp-info { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.sg-xp-info__card { background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: 8px; padding: 28px 26px; }
.sg-xp-info__card h4 { font-family: var(--display); font-size: 26px; line-height: .95; margin-bottom: 14px; color: #fff; }
.sg-xp-info__row { display: flex; justify-content: space-between; gap: 14px; padding: 7px 0; font-size: 14px; border-bottom: 1px dashed var(--line-dark); }
.sg-xp-info__row:last-child { border-bottom: none; }
.sg-xp-info__row span:first-child { color: var(--muted-d); }
.sg-xp-info__row span:last-child { font-weight: 700; text-align: right; color: #fff; }
@media(max-width:860px){ .sg-xp-info { grid-template-columns: 1fr; } }

/* ── Rate cards ── */
.sg-xp-rates { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 26px; }
.sg-xp-rate { border: 1px solid var(--line-dark); border-radius: 8px; padding: 26px; background: var(--ink-2); }
.sg-xp-rate.is-featured { border-color: var(--red); }
.sg-xp-rate__tag { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--neon); }
.sg-xp-rate.is-featured .sg-xp-rate__tag { color: var(--red); }
.sg-xp-rate__price { font-family: var(--display); font-size: 54px; line-height: 1; color: #fff; margin: 12px 0 4px; }
.sg-xp-rate__price small { font-family: var(--body); font-size: 14px; font-weight: 600; color: var(--muted-d); }
.sg-xp-rate__note { font-size: 13px; color: var(--muted-d); }
@media(max-width:860px){ .sg-xp-rates { grid-template-columns: 1fr; } }

/* ── Plan a Visit — light treatment ── */
.sg-xp-visit { background: var(--paper); }
.sg-xp-visit .sg-xp-info { margin-top: 4px; }
.sg-xp-visit .sg-xp-info__card { background: #fff; border-color: var(--line); box-shadow: 0 1px 0 rgba(11,11,12,.03); }
.sg-xp-visit .sg-xp-info__card h4 { color: var(--ink); }
.sg-xp-visit .sg-xp-info__row { border-bottom-color: var(--line); }
.sg-xp-visit .sg-xp-info__row span:first-child { color: var(--muted); }
.sg-xp-visit .sg-xp-info__row span:last-child { color: var(--ink); }
.sg-xp-visit .sg-xp-rate { background: #fff; border-color: var(--line); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.sg-xp-visit .sg-xp-rate:hover { transform: translateY(-4px); box-shadow: 0 16px 36px -22px rgba(11,11,12,.4); }
.sg-xp-visit .sg-xp-rate.is-featured { border-color: var(--red); box-shadow: 0 18px 40px -22px rgba(234,33,40,.45); }
.sg-xp-visit .sg-xp-rate__tag { color: var(--muted); }
.sg-xp-visit .sg-xp-rate.is-featured .sg-xp-rate__tag { color: var(--red); }
.sg-xp-visit .sg-xp-rate__price { color: var(--ink); }
.sg-xp-visit .sg-xp-rate__price small { color: var(--muted); }
.sg-xp-visit .sg-xp-rate__note { color: var(--muted); }

/* ── FAQ accordion ── */
.sg-xp-faq { max-width: 860px; }
.sg-xp-acc { border-bottom: 1px solid var(--line); }
.sg-xp-acc__q { width: 100%; background: none; border: none; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 4px; font-family: var(--body); font-size: 18px; font-weight: 700; color: var(--ink); text-transform: none; letter-spacing: 0; }
.sg-xp-acc__q:hover { color: var(--red); }
.sg-xp-acc__ic { flex-shrink: 0; width: 26px; height: 26px; position: relative; }
.sg-xp-acc__ic::before, .sg-xp-acc__ic::after { content: ''; position: absolute; background: var(--red); border-radius: 2px; transition: transform .3s var(--ease); }
.sg-xp-acc__ic::before { top: 12px; left: 4px; right: 4px; height: 2px; }
.sg-xp-acc__ic::after { left: 12px; top: 4px; bottom: 4px; width: 2px; }
.sg-xp-acc.is-open .sg-xp-acc__ic::after { transform: scaleY(0); }
.sg-xp-acc__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.sg-xp-acc__a p { padding: 0 4px 24px; font-size: 15px; line-height: 1.65; color: var(--muted); max-width: 70ch; }

/* ── Games grid ── */
.sg-xp-games { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 36px; }
.sg-xp-game { position: relative; border-radius: 8px; overflow: hidden; min-height: 280px; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; color: #fff; isolation: isolate; }
.sg-xp-game img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .7s var(--ease); }
.sg-xp-game::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11,11,12,.1) 0%, rgba(11,11,12,.55) 55%, rgba(11,11,12,.92) 100%); }
.sg-xp-game:hover img { transform: scale(1.06); }
.sg-xp-game__meta { display: flex; gap: 8px; margin-bottom: 12px; }
.sg-xp-game h4 { font-family: var(--display); font-size: 34px; line-height: .9; color: #fff; }
.sg-xp-game p { font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,.8); margin-top: 8px; }
.sg-xp-chip { font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 4px 9px; border-radius: 99px; background: rgba(255,255,255,.16); backdrop-filter: blur(4px); }
@media(max-width:860px){ .sg-xp-games { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px){ .sg-xp-games { grid-template-columns: 1fr; } }

/* ── Gallery ── */
.sg-xp-video { position: relative; display: block; border-radius: 8px; overflow: hidden; aspect-ratio: 16/9; }
.sg-xp-video img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.sg-xp-video:hover img { transform: scale(1.04); }
.sg-xp-video::after { content: ''; position: absolute; inset: 0; background: rgba(11,11,12,.28); }
.sg-xp-video__play { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; }
.sg-xp-video__play > span { width: 84px; height: 84px; border-radius: 50%; background: var(--red); display: grid; place-items: center; box-shadow: 0 18px 40px -12px rgba(234,33,40,.7); transition: transform .25s; }
.sg-xp-video:hover .sg-xp-video__play > span { transform: scale(1.08); }
.sg-xp-video__play svg { width: 32px; height: 32px; color: #fff; margin-left: 4px; flex: none; display: block; }
.sg-xp-video__cap { position: absolute; left: 24px; bottom: 22px; z-index: 2; color: #fff; font-family: var(--display); font-size: 28px; }
.sg-xp-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 200px; gap: 12px; margin-top: 18px; }
.sg-xp-grid a { position: relative; border-radius: 6px; overflow: hidden; }
.sg-xp-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.sg-xp-grid a:hover img { transform: scale(1.08); }
.sg-xp-grid .wide { grid-column: span 2; }
.sg-xp-grid .tall { grid-row: span 2; }
@media(max-width:860px){ .sg-xp-grid { grid-template-columns: repeat(2,1fr); } }

/* =============================================================
   HORIZONTAL TOP NAV — v2-horizontal (matches homepage prototype)
   ============================================================= */

/* Fixed, transparent over the hero; solid dark on inner pages + on scroll */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  padding: 14px 0;
  background: rgba(11,11,12,.96); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
  transition: background .4s var(--ease), box-shadow .4s, padding .4s, border-color .4s;
}
/* Front page: floaty transparent bar over the hero */
body.is-home .nav { background: rgba(11, 11, 12, .92); border-bottom-color: transparent; padding: 18px 0; -webkit-backdrop-filter: none; backdrop-filter: none; }
.nav.scrolled { background: rgba(11,11,12,.92); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
                padding: 12px 0; box-shadow: 0 1px 0 var(--line-dark); border-bottom-color: transparent; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 11px; color: #fff; flex: 0 0 auto; }
.brand__logo { height: 38px; width: auto; display: block; }
.nav.scrolled .brand__logo { height: 34px; transition: height .4s var(--ease); }
.brand__name { font-family: var(--display); font-size: 23px; line-height: .8; color: #fff; }

.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__links > li > a,
.nav__links .sub-toggle {
  display: block; padding: 9px 14px; color: rgba(255,255,255,.82);
  font-family: var(--body); font-weight: 600; font-size: 14px; border-radius: 2px;
  white-space: nowrap; cursor: pointer; transition: color .2s; position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }
.nav__links a.active { color: #fff; }

/* Dropdown sub-nav */
.nav__links .has-sub { position: relative; }
.nav__links .sub-toggle { display: flex; align-items: center; gap: 6px; }
.nav__links .sub-toggle .caret { width: 12px; height: 12px; transition: transform .28s var(--ease); opacity: .7; }
.has-sub:hover .sub-toggle .caret,
.has-sub.is-open .sub-toggle .caret { transform: rotate(180deg); opacity: 1; }
.subnav {
  position: absolute; top: 100%; left: 0; padding-top: 14px; min-width: 248px;
  opacity: 0; visibility: hidden; transform: translateY(8px); pointer-events: none;
  transition: opacity .24s var(--ease), transform .24s var(--ease), visibility .24s;
}
.has-sub:hover .subnav,
.has-sub:focus-within .subnav,
.has-sub.is-open .subnav { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.subnav__panel {
  background: rgba(11,11,12,.96); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid var(--line-dark); border-radius: 10px; padding: 8px;
  display: flex; flex-direction: column; gap: 2px;
  max-height: min(72vh,540px); overflow-y: auto;
  box-shadow: 0 28px 60px -24px rgba(0,0,0,.8);
}
.subnav__panel a { display: flex; flex-direction: column; gap: 2px; padding: 11px 14px; border-radius: 7px; transition: background .18s; }
.subnav__panel a::after { content: none; }
.subnav__panel a b { font-family: var(--display); font-size: 21px; font-weight: 400; letter-spacing: .02em; color: #fff; line-height: 1; }
.subnav__panel a small { font-size: 12px; color: var(--muted-d); font-weight: 500; }
.subnav__panel a:hover { background: rgba(255,255,255,.07); }
.subnav__panel a.active { background: rgba(234,33,40,.16); }
.subnav__panel a.active b { color: var(--red); }

/* Right-side actions */
.nav__cta { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.nav__lang { color: var(--muted-d); font-weight: 700; font-size: 13px; cursor: pointer; }
.nav__burger { display: none; background: none; border: none; color: #fff; padding: 6px; cursor: pointer; }
.nav__burger svg { width: 28px; height: 28px; }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 200; background: var(--ink);
  display: flex; flex-direction: column; padding: 24px clamp(20px,5vw,40px);
  transform: translateX(100%); transition: transform .4s var(--ease); visibility: hidden;
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); visibility: visible; }
.drawer__top { display: flex; justify-content: space-between; align-items: center; }
.drawer__close { background: none; border: none; color: #fff; cursor: pointer; }
.drawer__close svg { width: 30px; height: 30px; }
.drawer nav { display: flex; flex-direction: column; gap: 4px; margin-top: 32px; }
.drawer nav > a { font-family: var(--display); font-size: 40px; color: #fff; padding: 8px 0; border-bottom: 1px solid var(--line-dark); }
.drawer nav > a.active { color: var(--red); }
.drawer__group { display: flex; flex-direction: column; }
.drawer__grouplabel { font-family: var(--body); font-weight: 800; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted-d); margin: 22px 0 4px; }
.drawer__group a { font-family: var(--display); font-size: 30px; color: #fff; padding: 6px 0; }
.drawer__group a:hover { color: var(--red); }

/* Top-nav layout: clear the fixed bar on light/top-aligned page heroes */
body.sg-has-topnav .sg-page-hero { padding-top: clamp(96px,10vw,128px); }

/* Responsive: collapse to burger + drawer */
@media (max-width: 992px) {
  .nav__links, .nav__lang { display: none; }
  .nav__burger { display: block; }
}
