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