/* =============================================================
   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:   72px;
}

/* ── 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; }

/* ── 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: #fff; }
.sg-sec-head { margin-bottom: 36px; }
.sg-sec-head h2 { 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: var(--muted); 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; }

/* ── 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: 80vh; 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; 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; }

/* ── 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; }
.sg-steps::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%;
                    height: 1px; border-top: 2px dashed var(--line); z-index: 0; }
.sg-step { text-align: center; position: relative; z-index: 1; }
.sg-step__num { width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--ink);
                background: var(--paper); display: flex; align-items: center; justify-content: center;
                margin: 0 auto; font-family: var(--display); font-size: 28px; color: var(--red); }
.sg-step__title { font-family: var(--display); font-size: 20px; margin-top: 14px; }
.sg-step__desc  { font-size: 14px; color: var(--muted); margin-top: 8px; }

/* ── 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: 70vh; 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; }

/* ── 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 { padding: 9px 14px; border: 1px solid var(--line); border-radius: 4px;
                font-size: 13px; font-weight: 600; }

/* ── 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; }

/* ── 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: 70vh; 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; 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 ── */
.sg-menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.sg-menu-group__title { font-size: 24px; margin-bottom: 16px; }
.sg-menu-row { display: flex; justify-content: space-between; padding: 12px 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; }

/* ── 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); }

/* ── 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: 60vh; 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-switcher { display: flex; gap: 8px; justify-content: center; margin-bottom: 32px; }
.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); }
.sg-plan-card__features { display: flex; flex-direction: column; gap: 6px; font-size: 14px; flex: 1; }
.sg-plan-card__features li::before { content: '✓ '; color: var(--red); font-weight: 700; }
.sg-plan-card__cta { margin-top: auto; padding-top: 16px; }
.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-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); }

/* ── 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; }

/* ── 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); }
.sg-footer__top { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(32px,5vw,80px);
                   padding: clamp(48px,7vw,80px) 0 clamp(32px,5vw,60px); }
.sg-footer__brand { display: flex; flex-direction: column; gap: 14px; }
.sg-footer__logo   { height: 48px; width: auto; }
.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__nav { grid-template-columns: 1fr 1fr; }
  .sg-menu-grid, .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 {
  .sg-header, .sg-footer, .sg-hero__ctas, .sg-btn { display: none !important; }
}


/* =============================================================
   LEFT SIDEBAR LAYOUT — v2 design
   ============================================================= */
:root {
  --sb:        248px;   /* full sidebar width          */
  --sb-narrow: 54px;    /* collapsed (hamburger) width */
}

/* Body padding pushes all content right of the fixed sidebar */
body.sg-has-sidebar {
  padding-left: var(--sb);
  transition: padding-left 0.4s cubic-bezier(.22,1,.36,1);
}
body.sg-has-sidebar.sb-narrow { padding-left: var(--sb-narrow); }

/* Hide old top header + drawer when sidebar is active */
body.sg-has-sidebar .sg-header,
body.sg-has-sidebar .sg-drawer,
body.sg-has-sidebar .sg-overlay { display: none !important; }

/* Inner-page hero: trim top-pad (no sticky header above) */
body.sg-has-sidebar .sg-page-hero { padding-top: clamp(72px,8vw,100px); }

/* ── Sidebar shell ── */
.sg-sidebar {
  position: fixed; inset: 0 auto 0 0; width: var(--sb);
  background: #0B0B0C; color: #fff;
  display: flex; flex-direction: column;
  z-index: 200;
  border-right: 1px solid rgba(255,255,255,.06);
  overflow-y: auto; overflow-x: hidden; scrollbar-width: none;
  transition: width .4s cubic-bezier(.22,1,.36,1), box-shadow .4s cubic-bezier(.22,1,.36,1);
  will-change: width;
}
.sg-sidebar::-webkit-scrollbar { display: none; }

/* ── Hamburger toggle (visible only when collapsed) ── */
.sb-toggle-btn {
  position: absolute; inset: 0 0 auto 0; height: var(--sb-narrow);
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.55); opacity: 0; pointer-events: none;
  transition: opacity .25s, color .2s; z-index: 2;
}
.sb-toggle-btn:hover { color: #fff; }
.sb-toggle-btn svg { width: 22px; height: 22px; }

/* ── Logo zone ── */
.sb-logo { padding: 28px 24px 22px; border-bottom: 1px solid rgba(255,255,255,.07); flex-shrink: 0; }
.sb-logo a { display: block; }
.sb-logo img { height: 44px; width: auto; display: block; }
.sb-logo__text { font-family: var(--display); font-size: 22px; color: #fff; line-height: 1; }

/* ── Nav ── */
.sb-nav { flex: 1; padding: 10px 0 6px; overflow-y: auto; scrollbar-width: none; }
.sb-nav::-webkit-scrollbar { display: none; }
.sb-nav__list { list-style: none; margin: 0; padding: 0; }

.sb-nav__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 22px; width: 100%; text-align: left;
  font-family: var(--body); font-size: 12.5px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: rgba(255,255,255,.52);
  background: none; border: none; text-decoration: none; cursor: pointer;
  transition: color .18s, background .15s;
}
.sb-nav__link:hover { color: rgba(255,255,255,.9); background: rgba(255,255,255,.04); }
.sb-nav__item.is-active > .sb-nav__link {
  color: #fff; border-left: 2px solid var(--red); padding-left: 20px;
}

/* Chevron */
.sb-chevron { width: 13px; height: 13px; opacity: .4; flex-shrink: 0;
  transition: transform .3s cubic-bezier(.22,1,.36,1), opacity .2s; }
.sb-nav__item.is-open > .sb-nav__link .sb-chevron { transform: rotate(180deg); opacity: .7; }

/* Sub-menu accordion */
.sb-sub { list-style: none; margin: 0; padding: 0 0 4px;
  overflow: hidden; max-height: 0;
  transition: max-height .38s cubic-bezier(.22,1,.36,1); }
.sb-nav__item.is-open > .sb-sub { max-height: 600px; }
.sb-sub li a {
  display: block; padding: 7px 22px 7px 32px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.38);
  letter-spacing: .03em; transition: color .15s, background .15s;
}
.sb-sub li a:hover { color: rgba(255,255,255,.8); background: rgba(255,255,255,.03); }
.sb-sub li a.is-active { color: var(--red); }

/* Separator */
.sb-sep { height: 1px; background: rgba(255,255,255,.06); margin: 7px 22px; }

/* ── Sidebar footer ── */
.sb-foot { padding: 18px 22px 26px; border-top: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0; display: flex; flex-direction: column; gap: 10px; }
.sb-foot__lang {
  background: transparent; border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.55); font-family: var(--body); font-size: 11px;
  font-weight: 700; letter-spacing: .08em; padding: 7px 10px;
  border-radius: 2px; cursor: pointer; width: 100%; text-align: left;
  transition: border-color .2s, color .2s;
}
.sb-foot__lang:hover { border-color: rgba(255,255,255,.35); color: rgba(255,255,255,.8); }
.sb-book {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 16px; background: var(--red); color: #fff;
  font-family: var(--body); font-weight: 700; font-size: 12.5px;
  letter-spacing: .07em; text-transform: uppercase;
  border: none; border-radius: 2px; text-decoration: none;
  transition: background .2s, transform .2s; width: 100%;
}
.sb-book:hover { background: var(--red-dark); transform: translateY(-1px); color: #fff; }
.sb-book svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Inner sections — fade/slide on collapse */
.sb-logo, .sb-nav, .sb-foot {
  transition: opacity .28s, transform .35s cubic-bezier(.22,1,.36,1);
}

/* ── Mobile top bar ── */
.sg-mob-bar {
  display: none; position: fixed; top: 0; left: 0; right: 0; height: 58px;
  background: var(--ink); z-index: 300;
  align-items: center; justify-content: space-between;
  padding: 0 18px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.sg-mob-bar img { height: 30px; display: block; }
.sg-mob-bar__right { display: flex; align-items: center; gap: 10px; }
.sg-mob-ham {
  background: none; border: none;
  display: flex; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer;
}
.sg-mob-ham span { display: block; width: 21px; height: 2px; background: #fff;
  border-radius: 2px; transition: all .22s; }
.sg-mob-veil {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 250;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.sg-mob-veil.on { opacity: 1; pointer-events: auto; }

/* ── Collapsed state (body.sb-narrow) ── */
body.sb-narrow .sg-sidebar { width: var(--sb-narrow); }
body.sb-narrow .sg-sidebar .sb-toggle-btn { opacity: 1; pointer-events: auto; }
body.sb-narrow .sg-sidebar .sb-logo,
body.sb-narrow .sg-sidebar .sb-nav,
body.sb-narrow .sg-sidebar .sb-foot { opacity: 0; pointer-events: none; transform: translateX(-12px); }

/* ── Hover-expand while collapsed (overlay, no content shift) ── */
body.sb-narrow .sg-sidebar.sb-hovering {
  width: var(--sb); box-shadow: 8px 0 40px -4px rgba(0,0,0,.6);
}
body.sb-narrow .sg-sidebar.sb-hovering .sb-toggle-btn { opacity: 0; pointer-events: none; }
body.sb-narrow .sg-sidebar.sb-hovering .sb-logo,
body.sb-narrow .sg-sidebar.sb-hovering .sb-nav,
body.sb-narrow .sg-sidebar.sb-hovering .sb-foot { opacity: 1; pointer-events: auto; transform: none; }

/* ── Responsive ── */
@media (max-width: 1024px) { :root { --sb: 220px; } }
@media (max-width: 760px) {
  :root { --sb: 280px; }
  body.sg-has-sidebar { padding-left: 0; padding-top: 58px; }
  body.sg-has-sidebar.sb-narrow { padding-left: 0; }
  .sg-sidebar {
    transform: translateX(-100%);
    transition: transform .38s cubic-bezier(.22,1,.36,1);
    width: var(--sb);
    z-index: 300;
  }
  .sg-sidebar.sb-open { transform: translateX(0); }
  .sg-mob-bar { display: flex; }
  /* Override sb-narrow on mobile — sidebar is hidden, not just narrow */
  body.sb-narrow .sg-sidebar { width: var(--sb); }
}


/* =============================================================
   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); }

/* ── 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 (no-image variant) ── */
.sg-offer-card { background:#fff; }

/* ── 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); }
}
