/* ============================================================
   BASHUNDHARA SUPERGOLF — Design System
   Brand: Victory Red #EA2128 · Midnight Black · Sky White
   Type:  Bebas Neue (display) · Manrope (body)
   ============================================================ */

:root {
  /* Core brand */
  --red:        #EA2128;
  --red-dark:   #C0151B;
  --red-glow:   rgba(234,33,40,0.45);
  --black:      #000000;
  --ink:        #0B0B0C;
  --ink-2:      #16161A;
  --ink-3:      #24242B;
  --white:      #FFFFFF;

  /* Secondary palette (category accents) */
  --purple:     #7A3FF2;
  --pink:       #FF4D8D;
  --neon:       #1FE06B;
  --lagoon:     #1FAEDC;

  /* Neutrals */
  --paper:      #F7F5F0;
  --smoke:      #ECE8E0;
  --line:       #E2DDD2;
  --line-dark:  rgba(255,255,255,0.12);
  --muted:      #8A857C;
  --muted-dark: rgba(255,255,255,0.55);

  /* Type */
  --display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --body: 'Manrope', system-ui, sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 4px;
  --radius-lg: 10px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---- Display type ---- */
.display, h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0;
}
h1 { font-size: clamp(48px, 8vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 76px); }
h3 { font-size: clamp(26px, 3vw, 40px); }

.kicker {
  font-family: var(--body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--red);
  display: inline-block;
}
.kicker.on-dark { color: var(--white); }
.kicker.on-dark::before { background: var(--red); }

.lead { font-size: clamp(17px, 2vw, 21px); line-height: 1.55; color: var(--muted); max-width: 56ch; }
.on-dark .lead, .lead.on-dark { color: var(--muted-dark); }

/* ---- Layout helpers ---- */
.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 9vw, 130px); }
.section-tight { padding-block: clamp(40px, 6vw, 80px); }
.dark { background: var(--ink); color: var(--white); }
.dark h1, .dark h2, .dark h3 { color: var(--white); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 4vw, 52px);
  flex-wrap: wrap;
}
.section-head .titles { max-width: 60ch; }
.section-head h2 { margin-top: 14px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 2px;
  transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s;
  position: relative;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 8px 24px -8px var(--red-glow); }
.btn--primary:hover { background: var(--red-dark); box-shadow: 0 14px 32px -10px var(--red-glow); }
.btn--ghost { background: transparent; border-color: currentColor; color: var(--ink); }
.btn--ghost.on-dark { color: #fff; }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--ghost.on-dark:hover { background: #fff; color: var(--ink); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--paper); }
.btn .ico { width: 18px; height: 18px; }
.btn--sm { padding: 10px 16px; font-size: 12px; }
.btn--block { width: 100%; justify-content: center; }

/* arrow link */
.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14px; letter-spacing: 0.03em;
  text-transform: uppercase; color: var(--ink);
  transition: gap .25s var(--ease), color .2s;
}
.arrow-link .ico { transition: transform .25s var(--ease); }
.arrow-link:hover { color: var(--red); }
.arrow-link:hover .ico { transform: translateX(4px); }
.on-dark .arrow-link, .arrow-link.on-dark { color: #fff; }

/* ---- Tags / pills ---- */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px; border-radius: 2px;
  background: var(--ink); color: #fff;
}
.tag--red { background: var(--red); }
.tag--outline { background: transparent; border: 1.5px solid currentColor; }
.tag--purple { background: var(--purple); }
.tag--lagoon { background: var(--lagoon); }
.tag--neon { background: var(--neon); color: #06301a; }
.tag--pink { background: var(--pink); }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 999px;
  border: 1.5px solid var(--line);
  font-weight: 600; font-size: 14px;
  background: #fff; color: var(--ink);
  transition: all .2s var(--ease);
  cursor: pointer;
}
.pill:hover { border-color: var(--ink); }
.pill[aria-pressed="true"], .pill.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.dark .pill { background: transparent; color: #fff; border-color: var(--line-dark); }
.dark .pill[aria-pressed="true"], .dark .pill.is-active { background: var(--red); border-color: var(--red); }

/* ---- Cards ---- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 28px 50px -28px rgba(0,0,0,0.35); }
.card__media { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__media .tag { position: absolute; top: 14px; left: 14px; }
.card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__title { font-family: var(--display); font-size: 26px; line-height: 0.95; }
.card__meta { font-size: 13px; color: var(--muted); font-weight: 600; display:flex; gap:14px; flex-wrap:wrap; }
.card__foot { margin-top: auto; padding-top: 14px; display: flex; align-items: center; justify-content: space-between; }
.price { font-family: var(--display); font-size: 30px; color: var(--ink); line-height: 1; }
.price small { font-family: var(--body); font-size: 12px; font-weight: 600; color: var(--muted); }

/* media zoom util */
.zoom { overflow: hidden; }
.zoom img { transition: transform .8s var(--ease); width:100%; height:100%; object-fit:cover; }
.zoom:hover img { transform: scale(1.05); }

/* ---- Image overlay scrim ---- */
.scrim::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.78) 100%);
}

/* ---- Grid ---- */
.grid { display: grid; gap: clamp(16px, 2vw, 24px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ============================================================
   HEADER / NAV  (sg-* theme classes)
   ============================================================ */

/* ── sg-btn: used in nav CTA + drawer ── */
.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; cursor: pointer;
  transition: transform .2s var(--ease), background .2s;
  white-space: nowrap;
}
.sg-btn:hover { background: var(--red-dark); transform: translateY(-2px); }
.sg-btn--sm   { padding: 8px 14px; font-size: 11px; }
.sg-btn--full { width: 100%; justify-content: center; }

/* ── Header ── */
.sg-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,11,12,.96); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #fff; height: 72px;
}
.sg-header__inner {
  display: flex; align-items: center; gap: 20px; height: 100%;
}
.sg-header__logo { display: flex; align-items: center; flex-shrink: 0; }
.sg-header__logo img { height: 36px; width: auto; display: block; }
.sg-header__actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.sg-header__lang {
  background: transparent; border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8); font-family: var(--body); font-size: 12px;
  font-weight: 700; padding: 6px 10px; border-radius: 2px; cursor: pointer;
  letter-spacing: .06em;
}

/* ── Primary Nav ── */
.sg-nav { flex: 1; min-width: 0; }
.sg-nav__list {
  display: flex; align-items: center; gap: 0;
  justify-content: center; list-style: none; margin: 0; padding: 0;
}
.sg-nav__item { position: relative; }
.sg-nav__item > a {
  display: block; padding: 10px 11px;
  font-family: var(--body); font-size: 13px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  color: rgba(255,255,255,.78); white-space: nowrap;
  transition: color .15s; position: relative;
}
.sg-nav__item > a::after {
  content: ''; position: absolute; bottom: 2px; left: 11px; right: 11px;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.sg-nav__item > a:hover { color: #fff; }
.sg-nav__item > a:hover::after,
.sg-nav__item.is-active > a::after { transform: scaleX(1); }
.sg-nav__item.is-active > a { color: #fff; }

/* ── Dropdowns ── */
.sg-nav__item--has-dropdown { }
.sg-nav__dropdown {
  position: absolute; top: calc(100% + 6px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 190px; list-style: none; margin: 0; padding: 8px 0;
  background: var(--ink-2); border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,.7);
}
.sg-nav__item--has-dropdown:hover .sg-nav__dropdown,
.sg-nav__item--has-dropdown.is-open .sg-nav__dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.sg-nav__dropdown li a {
  display: block; padding: 9px 18px;
  font-family: var(--body); font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.78); white-space: nowrap;
  transition: color .15s, background .15s;
}
.sg-nav__dropdown li a:hover { color: #fff; background: rgba(255,255,255,.06); }
.sg-nav__dropdown li a.is-active { color: var(--red); }

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

/* ── Mobile Drawer ── */
.sg-drawer {
  position: fixed; inset: 0 0 0 auto; width: min(340px, 90vw);
  background: var(--ink); color: #fff; z-index: 200;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  overflow-y: auto; overflow-x: hidden;
}
.sg-drawer.is-open { transform: translateX(0); }
.sg-drawer__inner {
  padding: 20px 26px 32px; display: flex; flex-direction: column;
  min-height: 100%;
}
.sg-drawer__close {
  background: none; border: none; color: rgba(255,255,255,.7);
  font-size: 22px; align-self: flex-end; padding: 4px 0; cursor: pointer;
  line-height: 1; transition: color .15s;
}
.sg-drawer__close:hover { color: #fff; }
.sg-drawer__list {
  list-style: none; margin: 20px 0 0; padding: 0;
  display: flex; flex-direction: column;
}
.sg-drawer__list > li > a {
  display: block; padding: 12px 0; font-size: 17px; font-weight: 700;
  color: rgba(255,255,255,.85); border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .15s;
}
.sg-drawer__list > li > a:hover,
.sg-drawer__list > li > a.is-active { color: var(--red); }
.sg-drawer__list ul { list-style: none; padding: 4px 0 4px 14px; }
.sg-drawer__list ul li a {
  display: block; padding: 7px 0; font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.6); border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .15s;
}
.sg-drawer__list ul li a:hover,
.sg-drawer__list ul li a.is-active { color: #fff; }
.sg-drawer__group {
  display: block; padding: 14px 0 3px;
  font-family: var(--body); font-size: 10px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.35);
}
.sg-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 150;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.sg-overlay.is-active { opacity: 1; pointer-events: auto; }

/* ── Footer logo brand (used by footer builder) ── */
.brand { display: flex; align-items: center; color: #fff; }
.brand__logo { height: 38px; width: auto; display: block; }
.brand--footer { display: inline-block; }
.brand__logo--vertical { height: auto; width: 132px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); color: rgba(255,255,255,0.7); padding-top: clamp(56px, 8vw, 100px); }
.footer__cta {
  border: 1px solid var(--line-dark); border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 64px);
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap; margin-bottom: clamp(48px, 7vw, 90px);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(234,33,40,0.22), transparent 60%),
    var(--ink-2);
}
.footer__cta h2 { color:#fff; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer h5 { font-family: var(--body); font-weight: 800; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; margin: 0 0 18px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { font-size: 14.5px; transition: color .2s; }
.footer ul a:hover { color: #fff; }
.footer__brandblock p { font-size: 14.5px; max-width: 34ch; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-items: center; transition: all .25s; }
.socials a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.footer__bottom { border-top: 1px solid var(--line-dark); padding: 24px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content:''; position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 35%, rgba(0,0,0,0.85) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.6) 0%, transparent 55%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(48px, 8vw, 110px); padding-top: clamp(60px, 10vw, 110px); }
.hero h1 { max-width: 16ch; }
.hero h1 .accent { color: var(--red); }
.hero__sub { margin-top: 22px; max-width: 48ch; font-size: clamp(16px,1.6vw,20px); color: rgba(255,255,255,0.85); }
.hero__actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll { position: absolute; right: var(--gutter); bottom: 40px; z-index: 2; writing-mode: vertical-rl; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 12px; }
.hero__scroll::after { content:''; width: 1px; height: 50px; background: linear-gradient(rgba(255,255,255,0.7), transparent); animation: scrollpulse 2s var(--ease) infinite; }
@keyframes scrollpulse { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* live stat bar */
.statbar { display:flex; justify-content:space-between; align-items:center; flex-wrap:nowrap; gap:16px; margin-top:44px; padding-top:28px; border-top:1px solid rgba(255,255,255,0.18); }
.statbar__left  { display:flex; flex-shrink:0; gap:clamp(16px,3vw,40px); align-items:center; }
.statbar__right { display:flex; flex-wrap:nowrap; gap:clamp(8px,1.2vw,16px); align-items:center; padding-left:clamp(12px,1.5vw,22px); border-left:1px solid rgba(255,255,255,.18); min-width:0; }
.statbar .stat b { font-family: var(--display); font-size: clamp(28px,3vw,42px); color: #fff; display: block; line-height: 0.9; }
.statbar .stat span { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.statbar .stat .live { color: var(--neon); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { background: var(--red); color: #fff; overflow: hidden; padding: 14px 0; border-block: 2px solid var(--ink); }
.marquee__track { display: flex; gap: 0; white-space: nowrap; width: max-content; animation: marquee 30s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee span { font-family: var(--display); font-size: 26px; letter-spacing: 0.04em; padding: 0 28px; display: inline-flex; align-items: center; gap: 28px; }
.marquee span::after { content: '★'; font-size: 16px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */

/* manual [data-reveal] — fade + rise */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }

/* auto-reveal — cards, tiles, components */
.sg-reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.sg-revealed { opacity: 1; transform: none; }

/* section-level reveal */
.sg-sec-reveal {
  opacity: 0; transform: translateY(14px);
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out);
}
.sg-sec-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], .sg-reveal, .sg-sec-reveal {
    opacity: 1; transform: none; transition: none;
  }
  .marquee__track, .hero__scroll::after { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   CAROUSEL
   ============================================================ */
.carousel { position: relative; }
.carousel__track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; scrollbar-width: none; }
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > * { scroll-snap-align: start; flex: 0 0 clamp(260px, 30vw, 340px); }
.carousel__nav { display: flex; gap: 10px; }
.carousel__btn { width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff; display: grid; place-items: center; transition: all .2s; }
.carousel__btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.carousel__btn:disabled { opacity: 0.3; cursor: default; }
.carousel__btn svg { width: 20px; height: 20px; }
.dark .carousel__btn { background: transparent; color: #fff; border-color: var(--line-dark); }
.dark .carousel__btn:hover { background: var(--red); border-color: var(--red); }

/* ============================================================
   MODAL (booking)
   ============================================================ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 300; background: rgba(5,5,6,0.7); backdrop-filter: blur(6px);
  display: grid; place-items: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.modal-backdrop.open { opacity: 1; visibility: visible; }
.modal {
  width: min(680px, 100%); max-height: 92vh; overflow-y: auto;
  background: var(--paper); border-radius: var(--radius-lg);
  transform: translateY(20px) scale(.98); transition: transform .35s var(--ease);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.6);
}
.modal-backdrop.open .modal { transform: none; }
.modal__head { position: relative; padding: 28px 32px; color: #fff; overflow: hidden; background: var(--ink); }
.modal__head::before { content:''; position:absolute; inset:0; background: radial-gradient(120% 160% at 100% 0, rgba(234,33,40,0.5), transparent 55%); }
.modal__head > * { position: relative; }
.modal__close { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.12); border: none; color: #fff; display: grid; place-items: center; z-index: 2; transition: background .2s; }
.modal__close:hover { background: var(--red); }
.modal__close svg { width: 20px; height: 20px; }
.modal__body { padding: 28px 32px 32px; }
.field { margin-bottom: 18px; }
.field > label { display: block; font-weight: 700; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.input, select.input {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: #fff; font-family: var(--body); font-size: 15px; color: var(--ink); transition: border .2s, box-shadow .2s;
}
.input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(234,33,40,0.15); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* segmented bay-type chooser */
.choices { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.choice { border: 1.5px solid var(--line); border-radius: var(--radius); padding: 14px; cursor: pointer; transition: all .2s; background:#fff; text-align:left; }
.choice b { font-family: var(--display); font-size: 22px; display:block; }
.choice span { font-size: 12px; color: var(--muted); }
.choice.sel { border-color: var(--red); background: #fff; box-shadow: 0 0 0 3px rgba(234,33,40,0.13); }
.choice.sel b { color: var(--red); }

.stepper { display:flex; align-items:center; gap:0; border:1.5px solid var(--line); border-radius:var(--radius); width:fit-content; overflow:hidden; }
.stepper button { width:46px; height:46px; background:#fff; border:none; font-size:20px; color:var(--ink); }
.stepper button:hover { background: var(--smoke); }
.stepper span { min-width:48px; text-align:center; font-weight:700; }

.modal__summary { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:16px 18px; display:flex; justify-content:space-between; align-items:center; margin: 6px 0 20px; }
.modal__summary .price { font-size: 34px; }
.toast-ok { text-align:center; padding: 30px 10px; }
.toast-ok .check { width:74px; height:74px; border-radius:50%; background:var(--neon); display:grid; place-items:center; margin:0 auto 18px; }
.toast-ok .check svg { width:38px; height:38px; color:#06301a; }

/* ============================================================
   FEATURE / SPLIT BLOCKS
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 60px); align-items: center; }
.split--media-r { direction: ltr; }
.media-frame { border-radius: var(--radius-lg); overflow: hidden; position: relative; aspect-ratio: 4/3; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* number ticker block */
.bignum { font-family: var(--display); font-size: clamp(54px, 8vw, 110px); line-height: 0.85; color: var(--red); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.step__n { font-family: var(--display); font-size: 64px; line-height: 0.8; color: var(--line); -webkit-text-stroke: 1px var(--muted); color: transparent; }
.dark .step__n { -webkit-text-stroke: 1px rgba(255,255,255,0.3); }
.step h4 { font-family: var(--display); font-size: 24px; margin: 12px 0 8px; }
.step p { font-size: 14.5px; color: var(--muted); margin: 0; }
.dark .step p { color: var(--muted-dark); }

/* tile grid (promos) */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.tile { position: relative; border-radius: var(--radius-lg); overflow: hidden; color: #fff; display: flex; align-items: flex-end; padding: 22px; }
.tile img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition: transform .8s var(--ease); z-index:0; }
.tile:hover img { transform: scale(1.07); }
.tile::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.78)); z-index:1; }
.tile > * { position: relative; z-index: 2; }
.tile h4 { font-family: var(--display); font-size: 30px; line-height: 0.95; }
.tile p { font-size: 13.5px; color: rgba(255,255,255,0.82); margin: 6px 0 0; }
.tile--big { grid-column: span 2; grid-row: span 2; }
.tile--wide { grid-column: span 2; }

/* social feed */
.feed { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.feed a { position: relative; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; }
.feed img { width:100%; height:100%; object-fit: cover; transition: transform .6s var(--ease); }
.feed a:hover img { transform: scale(1.1); }
.feed a::after { content:''; position:absolute; inset:0; background: rgba(234,33,40,0); transition: background .25s; }
.feed a:hover::after { background: rgba(234,33,40,0.35); }

/* page hero (inner pages) */
.pagehero { position: relative; padding-top: 160px; padding-bottom: clamp(40px,6vw,80px); color: #fff; overflow: hidden; }
.pagehero__media { position:absolute; inset:0; z-index:0; }
.pagehero__media img { width:100%; height:100%; object-fit:cover; }
.pagehero__media::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(11,11,12,0.7), rgba(11,11,12,0.92)); }
.pagehero__inner { position: relative; z-index: 2; }
.pagehero h1 { max-width: 18ch; }
.crumbs { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 600; margin-bottom: 18px; letter-spacing: 0.04em; }
.crumbs a:hover { color: #fff; }

/* table */
.tier-table { width: 100%; border-collapse: collapse; background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.tier-table th, .tier-table td { padding: 16px 18px; text-align: center; border-bottom: 1px solid var(--line); }
.tier-table th:first-child, .tier-table td:first-child { text-align: left; font-weight: 600; }
.tier-table thead th { background: var(--ink); color: #fff; font-family: var(--display); font-size: 24px; font-weight: 400; }
.tier-table thead th small { display:block; font-family:var(--body); font-size:12px; font-weight:700; color: var(--muted-dark); }
.tier-table .feat { color: var(--neon); font-weight: 800; }
.tier-table .no { color: var(--line); }
.tier-table tr:last-child td { border-bottom: none; }
.tier-table .hl { background: rgba(234,33,40,0.05); }

/* ============================================================
   RESTAURANT PAGES
   ============================================================ */
/* per-page accent helpers (--accent set inline on <html>) */
.kicker.r-accent { color: var(--accent); }
.kicker.r-accent::before { background: var(--accent); }
.tag.r-accent { background: var(--accent); color: #fff; }
.r-accent-text { color: var(--accent); }

/* signature cards */
.sig-card .card__media { aspect-ratio: 4/3; }
.sig-card .card__foot { border-top: 1px solid var(--line); }
.dark .sig-card { background: var(--ink-2); border-color: var(--line-dark); }
.dark .sig-card .card__title { color: #fff; }
.dark .sig-card .card__foot { border-top-color: var(--line-dark); }

/* typographic menu */
.menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); }
.menu-group { margin-bottom: 34px; }
.menu-group:last-child { margin-bottom: 0; }
.menu-group > h3 { font-size: 30px; display: flex; align-items: baseline; gap: 12px; }
.menu-group > h3 small { font-family: var(--body); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.menu-list { margin-top: 16px; display: flex; flex-direction: column; }
.menu-item { display: flex; gap: 16px; align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--line); }
.menu-item:last-child { border-bottom: none; }
.menu-item .mi-main { flex: 1; }
.menu-item .mi-name { font-weight: 700; font-size: 16px; }
.menu-item .mi-desc { color: var(--muted); font-size: 13.5px; margin-top: 3px; line-height: 1.45; }
.menu-item .mi-price { font-family: var(--display); font-size: 23px; white-space: nowrap; color: var(--ink); letter-spacing: .02em; }

/* info / visit cards */
.visit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.visit-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 22px; }
.visit-card .vc-k { font-family: var(--display); font-size: 24px; color: var(--accent); line-height: 1; }
.visit-card p { color: var(--muted); font-size: 14px; margin: 8px 0 0; }

@media (max-width: 860px) {
  .menu-cols { grid-template-columns: 1fr; gap: 30px; }
  .visit-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .visit-grid { grid-template-columns: 1fr; } }

/* ---- Golf bay pages ---- */
.bay-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bay-feat { border: 1px solid var(--line-dark); border-radius: 6px; padding: 13px 16px; font-weight: 600; font-size: 14.5px; }
.bay-feat::before { content: '✓'; color: var(--accent); font-weight: 800; margin-right: 9px; }
.bay-stat { background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); padding: 22px; }
.bay-stat .bs-n { font-family: var(--display); font-size: 44px; color: var(--accent); line-height: 1; }
.bay-stat .bs-l { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-dark); margin-top: 8px; }
@media (max-width: 560px) { .bay-feats { grid-template-columns: 1fr; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tiles { grid-auto-rows: 170px; }
}
@media (max-width: 1100px) {
  .sg-nav { display: none; }
  .sg-header__lang { display: none; }
  .sg-header__hamburger { display: flex; }
}
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split .media-frame { order: -1; }
  .field-row { grid-template-columns: 1fr; }
  .tier-table { font-size: 13px; }
  .tier-table th, .tier-table td { padding: 11px 9px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .tile--big { grid-column: span 2; grid-row: span 1; }
  .feed { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__cta { flex-direction: column; align-items: flex-start; }
  .choices { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
}


/* ============================================================
   LEFT SIDEBAR LAYOUT
   ============================================================ */
:root { --sb: 248px; --sb-narrow: 54px; }

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

/* Hide old top header + drawer when sidebar 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 padding (no sticky header above) */
body.sg-has-sidebar .pagehero { padding-top: clamp(68px, 8vw, 96px); }

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

/* ── Hamburger toggle (shows when collapsed) ── */
.sb-toggle-btn {
  position: absolute; top: 0; left: 0; right: 0; height: var(--sb-narrow);
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.55); opacity: 0; pointer-events: none;
  transition: opacity 0.25s, color 0.2s; z-index: 2; flex-shrink: 0;
}
.sb-toggle-btn:hover { color: #fff; }
.sb-toggle-btn svg { width: 22px; height: 22px; }

/* ── Logo ── */
.sb-logo { padding: 28px 24px 22px; border-bottom: 1px solid rgba(255,255,255,0.07); flex-shrink: 0; }
.sb-logo a { display: block; }
.sb-logo img { height: 44px; width: auto; display: block; }

/* ── 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;
  font-family: var(--body); font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.52);
  background: none; border: none; width: 100%; text-align: left;
  text-decoration: none; cursor: pointer; transition: color 0.18s, background 0.15s;
}
.sb-nav__link:hover { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.04); }
.sb-nav__item.is-active > .sb-nav__link { color: #fff; border-left: 2px solid var(--red); padding-left: 20px; }

.sb-chevron { width: 13px; height: 13px; opacity: 0.4; flex-shrink: 0; transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), opacity 0.2s; }
.sb-nav__item.is-open > .sb-nav__link .sb-chevron { transform: rotate(180deg); opacity: 0.7; }

.sb-sub { list-style: none; margin: 0; padding: 0 0 4px; overflow: hidden; max-height: 0; transition: max-height 0.38s cubic-bezier(0.22,1,0.36,1); }
.sb-nav__item.is-open > .sb-sub { max-height: 500px; }
.sb-sub li a { display: block; padding: 7px 22px 7px 32px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.38); letter-spacing: 0.03em; transition: color 0.15s, background 0.15s; }
.sb-sub li a:hover { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.03); }
.sb-sub li a.is-active { color: var(--red); }

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

/* ── Footer ── */
.sb-foot { padding: 18px 22px 26px; border-top: 1px solid rgba(255,255,255,0.07); flex-shrink: 0; display: flex; flex-direction: column; gap: 10px; }
.sb-foot__lang { background: transparent; border: 1px solid rgba(255,255,255,0.16); color: rgba(255,255,255,0.55); font-family: var(--body); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; padding: 7px 10px; border-radius: 2px; cursor: pointer; width: 100%; text-align: left; transition: border-color 0.2s, color 0.2s; }
.sb-foot__lang:hover { border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.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: 0.07em; text-transform: uppercase; border: none; border-radius: 2px; cursor: pointer; transition: background 0.2s, transform 0.2s; width: 100%; }
.sb-book:hover { background: var(--red-dark); transform: translateY(-1px); }
.sb-book svg { width: 14px; height: 14px; }

/* Inner content animate */
.sb-logo, .sb-nav, .sb-foot { transition: opacity 0.28s, transform 0.35s cubic-bezier(0.22,1,0.36,1); }

/* ── Mobile bar ── */
.sg-mob-bar { display: none; position: fixed; top: 0; left: 0; right: 0; height: 58px; background: var(--ink); z-index: 200; align-items: center; justify-content: space-between; padding: 0 18px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.sg-mob-bar img { height: 30px; }
.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 0.22s; }
.sg-mob-veil { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 150; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.sg-mob-veil.on { opacity: 1; pointer-events: auto; }

/* ── Collapsed state ── */
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 ── */
body.sb-narrow .sg-sidebar.sb-hovering { width: var(--sb); box-shadow: 8px 0 40px -4px rgba(0,0,0,0.55); }
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: translateX(0); }

/* ── 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 0.38s cubic-bezier(0.22,1,0.36,1); width: var(--sb); }
  .sg-sidebar.sb-open { transform: translateX(0); }
  .sg-mob-bar { display: flex; }
}
