/* =====================================================
   GREAT LAKE LOUNGE — style.css
   ===================================================== */

/* --- Google Fonts loaded via <link> in HTML --- */

/* --- Custom Properties --- */
:root {
  --lake-navy:     #1a2744;
  --deep-teal:     #1d4e5f;
  --mist-grey:     #8a9baa;
  --warm-sand:     #f5f0e8;
  --brushed-brass: #b8966e;
  --twilight-plum: #4a3355;
  --ivory-white:   #faf8f4;
  --charcoal:      #2c3e4a;
  --dark-navy:     #0f1929;
  --text-dark:     #1a2744;
  --text-body:     #3d4f5c;
  --text-muted:    #7a8d9a;
  --text-light:    #c8d4db;
  --border-light:  rgba(26,39,68,0.10);
  --border-brass:  rgba(184,150,110,0.35);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --s1:  8px;
  --s2:  16px;
  --s3:  24px;
  --s4:  32px;
  --s5:  40px;
  --s6:  48px;
  --s8:  64px;
  --s10: 80px;
  --s12: 96px;
  --s16: 128px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 100px;

  --shadow-sm:  0 2px 8px rgba(26,39,68,0.08);
  --shadow-md:  0 6px 24px rgba(26,39,68,0.12);
  --shadow-lg:  0 16px 48px rgba(26,39,68,0.16);
  --transition: 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--text-body); background: var(--ivory-white); line-height: 1.6; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); font-size: 1rem; }

/* --- Base Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--text-dark);
  font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.15rem; }
p { line-height: 1.75; }

/* --- Layout Utilities --- */
.gll-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s4);
}
.gll-container--narrow { max-width: 880px; margin: 0 auto; padding: 0 var(--s4); }
.gll-container--wide   { max-width: 1440px; margin: 0 auto; padding: 0 var(--s4); }

.gll-section { padding: var(--s12) 0; }
.gll-section--sm { padding: var(--s8) 0; }
.gll-section--lg { padding: var(--s16) 0; }

.gll-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brushed-brass);
  margin-bottom: var(--s2);
}

.gll-divider {
  width: 48px;
  height: 2px;
  background: var(--brushed-brass);
  margin: var(--s3) 0;
}
.gll-divider--center { margin: var(--s3) auto; }

/* --- Buttons --- */
.gll-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  padding: 14px var(--s4);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  white-space: nowrap;
}
.gll-btn--primary {
  background: var(--brushed-brass);
  color: var(--ivory-white);
}
.gll-btn--primary:hover {
  background: #a07d5a;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184,150,110,0.35);
}
.gll-btn--outline {
  border: 1.5px solid var(--brushed-brass);
  color: var(--brushed-brass);
  background: transparent;
}
.gll-btn--outline:hover {
  background: var(--brushed-brass);
  color: var(--ivory-white);
  transform: translateY(-1px);
}
.gll-btn--outline-light {
  border: 1.5px solid rgba(250,248,244,0.5);
  color: var(--ivory-white);
  background: transparent;
}
.gll-btn--outline-light:hover {
  background: rgba(250,248,244,0.12);
  border-color: var(--ivory-white);
}
.gll-btn--dark {
  background: var(--lake-navy);
  color: var(--ivory-white);
}
.gll-btn--dark:hover {
  background: var(--deep-teal);
  transform: translateY(-1px);
}

/* =====================================================
   COOKIE CONSENT BANNER
   ===================================================== */
.gll-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dark-navy);
  border-top: 1px solid rgba(184,150,110,0.3);
  padding: var(--s4) 0;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.25,0.8,0.25,1);
}
.gll-cookie.is-visible { transform: translateY(0); }
.gll-cookie__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s4);
  display: flex;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
}
.gll-cookie__text { flex: 1; min-width: 260px; color: var(--text-light); font-size: 0.875rem; line-height: 1.6; }
.gll-cookie__text a { color: var(--brushed-brass); text-decoration: underline; }
.gll-cookie__actions { display: flex; gap: var(--s2); flex-wrap: wrap; }
.gll-cookie__accept {
  padding: 10px var(--s4);
  background: var(--brushed-brass);
  color: var(--ivory-white);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}
.gll-cookie__accept:hover { background: #a07d5a; }
.gll-cookie__decline {
  padding: 10px var(--s3);
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.75;
  transition: var(--transition);
}
.gll-cookie__decline:hover { opacity: 1; }

/* =====================================================
   HEADER
   ===================================================== */
.gll-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--s3) 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.gll-header.is-scrolled {
  background: rgba(15,25,41,0.97);
  backdrop-filter: blur(12px);
  padding: var(--s2) 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.gll-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s4);
  display: flex;
  align-items: center;
  gap: var(--s4);
  overflow: hidden;
}
.gll-logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--s2);
  line-height: 1;
}
.gll-logo__img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}
.gll-logo__mark {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ivory-white);
  letter-spacing: 0.01em;
}
.gll-logo__sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brushed-brass);
  margin-top: 2px;
  font-weight: 500;
}
.gll-nav { flex: 1 1 auto; min-width: 0; display: flex; justify-content: center; }
.gll-nav__list { display: flex; align-items: center; gap: var(--s1); overflow: hidden; }
.gll-nav__link {
  padding: 8px var(--s2);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(250,248,244,0.8);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.gll-nav__link:hover { color: var(--ivory-white); }
.gll-nav__link.is-active { color: var(--brushed-brass); }
.gll-header__cta { flex-shrink: 0; min-width: fit-content; }
.gll-header__cta .gll-btn { padding: 10px var(--s3); font-size: 0.8rem; white-space: nowrap; }

/* Burger */
.gll-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.gll-burger__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ivory-white);
  border-radius: 2px;
  transition: var(--transition);
}
.gll-burger.is-open .gll-burger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gll-burger.is-open .gll-burger__line:nth-child(2) { opacity: 0; }
.gll-burger.is-open .gll-burger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.gll-mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--dark-navy);
  padding: var(--s16) var(--s4) var(--s8);
  flex-direction: column;
  gap: var(--s1);
  overflow-y: auto;
}
.gll-mobile-nav.is-open { display: flex; }
.gll-mobile-nav__link {
  display: block;
  padding: var(--s2) 0;
  font-size: 1.4rem;
  font-family: var(--font-display);
  color: var(--ivory-white);
  border-bottom: 1px solid rgba(184,150,110,0.15);
  transition: var(--transition);
}
.gll-mobile-nav__link:hover { color: var(--brushed-brass); padding-left: var(--s2); }
.gll-mobile-nav__cta { margin-top: var(--s4); }

/* =====================================================
   HERO
   ===================================================== */
.gll-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-navy);
}
.gll-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.gll-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,25,41,0.3) 0%,
    rgba(15,25,41,0.55) 50%,
    rgba(15,25,41,0.85) 100%
  );
}
.gll-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s4);
  padding-top: 120px;
  width: 100%;
}
.gll-hero__inner { max-width: 720px; }
.gll-hero__location {
  display: flex;
  align-items: center;
  gap: var(--s1);
  margin-bottom: var(--s4);
}
.gll-hero__location-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brushed-brass);
}
.gll-hero__location-text {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.6);
  font-weight: 500;
}
.gll-hero h1 {
  color: var(--ivory-white);
  margin-bottom: var(--s3);
  font-style: italic;
}
.gll-hero h1 em {
  font-style: normal;
  color: var(--brushed-brass);
}
.gll-hero__lead {
  font-size: 1.1rem;
  color: rgba(250,248,244,0.82);
  max-width: 560px;
  margin-bottom: var(--s5);
  line-height: 1.8;
}
.gll-hero__actions { display: flex; gap: var(--s2); flex-wrap: wrap; }
.gll-hero__scroll {
  position: absolute;
  bottom: var(--s6);
  left: var(--s4);
  right: var(--s4);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.gll-hero__scroll-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: rgba(184,150,110,0.4);
}
.gll-hero__scroll-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.5);
}

/* =====================================================
   PERSPECTIVE SECTION
   ===================================================== */
.gll-perspective {
  background: var(--ivory-white);
  padding: var(--s16) 0;
}
.gll-perspective__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: start;
}
.gll-perspective__main {}
.gll-perspective__statement {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.25;
  color: var(--lake-navy);
  margin-bottom: var(--s4);
}
.gll-perspective__statement em {
  font-style: italic;
  color: var(--deep-teal);
}
.gll-perspective__body {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: var(--s4);
  line-height: 1.8;
}
.gll-perspective__note {
  padding: var(--s3) var(--s4);
  border-left: 3px solid var(--brushed-brass);
  background: var(--warm-sand);
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
}
.gll-perspective__side {}
.gll-perspective__panel {
  background: var(--lake-navy);
  color: var(--ivory-white);
  padding: var(--s6);
  border-radius: var(--radius-lg);
  position: sticky;
  top: var(--s8);
}
.gll-perspective__panel-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--brushed-brass);
  margin-bottom: var(--s3);
}
.gll-perspective__panel p {
  font-size: 0.92rem;
  color: rgba(250,248,244,0.82);
  line-height: 1.8;
  margin-bottom: var(--s3);
}
.gll-perspective__panel p:last-child { margin-bottom: 0; }
.gll-perspective__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
  margin-top: var(--s4);
  padding-top: var(--s4);
  border-top: 1px solid rgba(184,150,110,0.2);
}
.gll-perspective__metric-value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--brushed-brass);
  font-weight: 700;
}
.gll-perspective__metric-label {
  font-size: 0.75rem;
  color: rgba(250,248,244,0.55);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* =====================================================
   EXPERIENCES — 4 DIFFERENT MODULES
   ===================================================== */
.gll-experiences { padding: var(--s16) 0; background: var(--warm-sand); }
.gll-experiences__header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s4);
  margin-bottom: var(--s10);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s4);
}
.gll-experiences__header-left {}
.gll-experiences__header h2 { max-width: 480px; }

/* Module 1: Wide Split Showcase (Poker) */
.gll-exp-split {
  max-width: 1280px;
  margin: 0 auto var(--s10);
  padding: 0 var(--s4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 540px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.gll-exp-split__image {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 400px;
}
.gll-exp-split__image-label {
  position: absolute;
  bottom: var(--s3);
  left: var(--s3);
  background: rgba(184,150,110,0.9);
  color: var(--ivory-white);
  padding: 4px 12px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  font-weight: 600;
}
.gll-exp-split__content {
  background: var(--lake-navy);
  padding: var(--s8) var(--s8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ivory-white);
}
.gll-exp-split__content h3 {
  color: var(--brushed-brass);
  font-style: italic;
  margin-bottom: var(--s3);
}
.gll-exp-split__content p {
  color: rgba(250,248,244,0.82);
  font-size: 0.95rem;
  margin-bottom: var(--s3);
  line-height: 1.8;
}
.gll-exp-split__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1);
  margin-bottom: var(--s4);
}
.gll-exp-split__tag {
  padding: 4px 12px;
  border: 1px solid rgba(184,150,110,0.4);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  color: rgba(250,248,244,0.7);
  letter-spacing: 0.04em;
}

/* Module 2: Editorial Panel (Blackjack) */
.gll-exp-editorial {
  background: var(--deep-teal);
  padding: var(--s10) 0;
  margin-bottom: var(--s2);
}
.gll-exp-editorial__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s4);
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--s10);
  align-items: center;
}
.gll-exp-editorial__text {}
.gll-exp-editorial__text .gll-eyebrow { color: rgba(184,150,110,0.85); }
.gll-exp-editorial__text h3 { color: var(--ivory-white); font-style: italic; margin-bottom: var(--s3); }
.gll-exp-editorial__lead {
  font-size: 1.15rem;
  color: rgba(250,248,244,0.9);
  margin-bottom: var(--s3);
  line-height: 1.75;
}
.gll-exp-editorial__body {
  font-size: 0.9rem;
  color: rgba(250,248,244,0.65);
  line-height: 1.8;
  margin-bottom: var(--s4);
}
.gll-exp-editorial__aside {
  border-left: 1px solid rgba(184,150,110,0.25);
  padding-left: var(--s6);
}
.gll-exp-editorial__aside-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--brushed-brass);
  margin-bottom: var(--s3);
  letter-spacing: 0.02em;
}
.gll-exp-editorial__attr {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.gll-exp-editorial__attr-item {}
.gll-exp-editorial__attr-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.45);
  margin-bottom: 4px;
}
.gll-exp-editorial__attr-value {
  font-size: 0.9rem;
  color: rgba(250,248,244,0.85);
}

/* Module 3: Panoramic Band (Roulette) */
.gll-exp-panorama {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  margin-bottom: var(--s2);
  display: flex;
  align-items: flex-end;
}
.gll-exp-panorama__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,25,41,0.92) 0%, rgba(15,25,41,0.55) 55%, rgba(15,25,41,0.2) 100%);
}
.gll-exp-panorama__content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--s4) var(--s8);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s8);
}
.gll-exp-panorama__left { max-width: 520px; }
.gll-exp-panorama__left .gll-eyebrow { color: rgba(184,150,110,0.85); }
.gll-exp-panorama__left h3 { color: var(--ivory-white); font-style: italic; margin-bottom: var(--s2); }
.gll-exp-panorama__left p { color: rgba(250,248,244,0.78); font-size: 0.95rem; line-height: 1.8; }
.gll-exp-panorama__right { flex-shrink: 0; text-align: right; }
.gll-exp-panorama__mood {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(250,248,244,0.5);
  margin-bottom: var(--s3);
}

/* Module 4: Stacked Detail (Dice) */
.gll-exp-stacked {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--s8) var(--s4) 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}
.gll-exp-stacked__header {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  align-items: end;
  margin-bottom: var(--s4);
}
.gll-exp-stacked__header .gll-eyebrow {}
.gll-exp-stacked__header h3 { color: var(--lake-navy); }
.gll-exp-stacked__lead { font-size: 1rem; color: var(--text-body); line-height: 1.8; }
.gll-exp-stacked__card {
  background: var(--ivory-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--s4);
  transition: var(--transition);
}
.gll-exp-stacked__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.gll-exp-stacked__card-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brushed-brass);
  margin-bottom: var(--s1);
  font-weight: 600;
}
.gll-exp-stacked__card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--lake-navy);
  margin-bottom: var(--s2);
}
.gll-exp-stacked__card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.gll-exp-stacked__image {
  grid-column: 1 / -1;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  margin-top: var(--s4);
}

/* =====================================================
   TESTIMONIAL BLOCK
   ===================================================== */
.gll-testimonial {
  padding: var(--s10) 0;
  background: var(--lake-navy);
}
.gll-testimonial__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--s4);
  text-align: center;
}
.gll-testimonial__quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--ivory-white);
  line-height: 1.55;
  margin-bottom: var(--s4);
}
.gll-testimonial__quote::before { content: '\201C'; color: var(--brushed-brass); margin-right: 4px; }
.gll-testimonial__quote::after  { content: '\201D'; color: var(--brushed-brass); margin-left: 4px; }
.gll-testimonial__attr { display: flex; align-items: center; gap: var(--s2); justify-content: center; }
.gll-testimonial__line { width: 32px; height: 1px; background: var(--brushed-brass); }
.gll-testimonial__name { font-size: 0.82rem; letter-spacing: 0.1em; color: rgba(250,248,244,0.55); text-transform: uppercase; }
.gll-testimonial__role { color: rgba(184,150,110,0.7); font-size: 0.78rem; }

/* =====================================================
   OCCASION TYPES
   ===================================================== */
.gll-occasions { padding: var(--s16) 0; background: var(--ivory-white); }

/* Feature block */
.gll-occ-feature {
  max-width: 1280px;
  margin: 0 auto var(--s10);
  padding: 0 var(--s4);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s8);
  align-items: center;
}
.gll-occ-feature__text h3 { color: var(--lake-navy); margin-bottom: var(--s2); }
.gll-occ-feature__text p { font-size: 1rem; color: var(--text-body); line-height: 1.8; margin-bottom: var(--s3); }
.gll-occ-feature__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2);
  padding: var(--s3);
  background: var(--warm-sand);
  border-radius: var(--radius-md);
}
.gll-occ-feature__meta-item {}
.gll-occ-feature__meta-label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.gll-occ-feature__meta-value { font-size: 0.88rem; color: var(--lake-navy); font-weight: 500; margin-top: 2px; }
.gll-occ-feature__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}

/* Split image-content */
.gll-occ-split-row {
  background: var(--warm-sand);
  padding: var(--s10) 0;
  margin-bottom: var(--s2);
}
.gll-occ-split-row__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  align-items: center;
}
.gll-occ-split-row__inner--reverse .gll-occ-split-row__image { order: 2; }
.gll-occ-split-row__image {
  height: 380px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.gll-occ-split-row__content h3 { color: var(--lake-navy); margin-bottom: var(--s2); }
.gll-occ-split-row__content p { font-size: 0.95rem; color: var(--text-body); line-height: 1.8; margin-bottom: var(--s3); }
.gll-occ-split-row__pkg {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  font-size: 0.78rem;
  color: var(--brushed-brass);
  border: 1px solid var(--border-brass);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

/* Lounge Row */
.gll-occ-lounge-row {
  max-width: 1280px;
  margin: var(--s8) auto;
  padding: 0 var(--s4);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s4);
}
.gll-occ-lounge-card {
  display: flex;
  gap: var(--s4);
  padding: var(--s4);
  background: var(--ivory-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.gll-occ-lounge-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.gll-occ-lounge-card__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(26,39,68,0.08);
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
}
.gll-occ-lounge-card__text h4 { color: var(--lake-navy); margin-bottom: var(--s1); }
.gll-occ-lounge-card__text p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* =====================================================
   WHAT CARRIES THE EVENING
   ===================================================== */
.gll-carries {
  background: var(--dark-navy);
  padding: var(--s16) 0;
}
.gll-carries__header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s4);
  margin-bottom: var(--s10);
  text-align: center;
}
.gll-carries__header .gll-eyebrow { color: rgba(184,150,110,0.85); }
.gll-carries__header h2 { color: var(--ivory-white); max-width: 560px; margin: 0 auto var(--s3); }
.gll-carries__header p { color: rgba(250,248,244,0.65); max-width: 520px; margin: 0 auto; font-size: 0.95rem; }
.gll-carries__grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s4);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
}
.gll-carries__item {
  padding: var(--s5) var(--s4);
  border: 1px solid rgba(184,150,110,0.12);
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.gll-carries__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--brushed-brass), transparent);
  opacity: 0;
  transition: var(--transition);
}
.gll-carries__item:hover { border-color: rgba(184,150,110,0.3); background: rgba(255,255,255,0.03); }
.gll-carries__item:hover::before { opacity: 1; }
.gll-carries__item-number {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: rgba(184,150,110,0.6);
  font-weight: 600;
  margin-bottom: var(--s2);
}
.gll-carries__item h4 { color: var(--ivory-white); margin-bottom: var(--s2); font-size: 1rem; }
.gll-carries__item p { font-size: 0.875rem; color: rgba(250,248,244,0.55); line-height: 1.75; }

/* =====================================================
   HOSTING FLOW
   ===================================================== */
.gll-flow { background: var(--warm-sand); padding: var(--s16) 0; }
.gll-flow__header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s4);
  margin-bottom: var(--s10);
}
.gll-flow__header h2 { max-width: 480px; }
.gll-flow__rail {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s4);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.gll-flow__rail::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(var(--s4) + 28px);
  right: calc(var(--s4) + 28px);
  height: 1px;
  background: linear-gradient(to right, var(--brushed-brass) 0%, rgba(184,150,110,0.3) 100%);
}
.gll-flow__step { padding: 0 var(--s3); }
.gll-flow__step-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ivory-white);
  border: 2px solid var(--brushed-brass);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s4);
  position: relative;
  z-index: 1;
}
.gll-flow__step-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--brushed-brass);
  font-weight: 600;
}
.gll-flow__step h4 { color: var(--lake-navy); margin-bottom: var(--s1); font-size: 1rem; }
.gll-flow__step p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* =====================================================
   PACKAGES
   ===================================================== */
.gll-packages { padding: var(--s16) 0; background: var(--ivory-white); }
.gll-packages__header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s4);
  text-align: center;
  margin-bottom: var(--s10);
}
.gll-packages__header h2 { max-width: 500px; margin: 0 auto var(--s3); }
.gll-packages__comparison {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s4);
  margin-bottom: var(--s6);
}
.gll-pkg-strip {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.gll-pkg-strip__row {
  display: contents;
}
.gll-pkg-strip__row > * {
  padding: var(--s2) var(--s3);
  border-bottom: 1px solid var(--border-light);
  font-size: 0.875rem;
}
.gll-pkg-strip__label { color: var(--text-muted); font-size: 0.82rem; background: var(--warm-sand); }
.gll-pkg-strip__val { color: var(--text-body); text-align: center; }
.gll-pkg-strip__val--featured { background: rgba(26,39,68,0.03); }
.gll-pkg-strip__head {
  display: contents;
}
.gll-pkg-strip__head > * {
  padding: var(--s3);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  background: var(--lake-navy);
  color: var(--ivory-white);
}
.gll-pkg-strip__head > *:first-child { background: var(--charcoal); text-align: left; }
.gll-pkg-strip__head > *.is-featured { background: var(--brushed-brass); }
.gll-pkg-strip__check { color: var(--deep-teal); font-size: 1rem; }
.gll-pkg-strip__dash { color: rgba(0,0,0,0.2); }

/* Package cards */
.gll-packages__cards {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s4);
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: var(--s4);
  align-items: end;
}
.gll-pkg-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.gll-pkg-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.gll-pkg-card--featured {
  border-color: var(--brushed-brass);
  box-shadow: 0 0 0 2px rgba(184,150,110,0.2), var(--shadow-lg);
}
.gll-pkg-card__badge {
  background: var(--brushed-brass);
  color: var(--ivory-white);
  text-align: center;
  padding: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.gll-pkg-card__header {
  padding: var(--s5) var(--s5) var(--s4);
  background: var(--lake-navy);
  color: var(--ivory-white);
}
.gll-pkg-card--featured .gll-pkg-card__header { background: var(--dark-navy); }
.gll-pkg-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--ivory-white);
  margin-bottom: var(--s1);
}
.gll-pkg-card__subtitle { font-size: 0.8rem; color: rgba(250,248,244,0.55); letter-spacing: 0.06em; }
.gll-pkg-card__body { padding: var(--s4) var(--s5) var(--s5); background: var(--ivory-white); }
.gll-pkg-card__features { margin-bottom: var(--s4); }
.gll-pkg-card__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.875rem;
  color: var(--text-body);
}
.gll-pkg-card__feature:last-child { border-bottom: none; }
.gll-pkg-card__feature-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brushed-brass);
  flex-shrink: 0;
  margin-top: 7px;
}

/* =====================================================
   FINAL ENQUIRY SECTION
   ===================================================== */
.gll-enquiry {
  background: var(--deep-teal);
  padding: var(--s16) 0;
  position: relative;
  overflow: hidden;
}
.gll-enquiry::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}
.gll-enquiry__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--s4);
  text-align: center;
  position: relative;
  z-index: 1;
}
.gll-enquiry__inner .gll-eyebrow { color: rgba(184,150,110,0.85); }
.gll-enquiry__inner h2 { color: var(--ivory-white); margin-bottom: var(--s3); }
.gll-enquiry__inner p { color: rgba(250,248,244,0.75); font-size: 1.05rem; margin-bottom: var(--s6); max-width: 560px; margin-left: auto; margin-right: auto; }
.gll-enquiry__actions { display: flex; gap: var(--s3); justify-content: center; flex-wrap: wrap; }
.gll-enquiry__note { margin-top: var(--s4); font-size: 0.8rem; color: rgba(250,248,244,0.35); }

/* =====================================================
   FOOTER
   ===================================================== */
.gll-footer { background: var(--dark-navy); padding: var(--s10) 0 var(--s4); }
.gll-footer__main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s4);
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--s8);
  padding-bottom: var(--s8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: var(--s5);
}
.gll-footer__brand .gll-logo__mark { font-size: 1.4rem; }
.gll-footer__brand p { font-size: 0.875rem; color: rgba(250,248,244,0.45); line-height: 1.75; margin-top: var(--s3); max-width: 280px; }
.gll-footer__col-title {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brushed-brass);
  font-weight: 600;
  margin-bottom: var(--s3);
}
.gll-footer__col-links { display: flex; flex-direction: column; gap: var(--s1); }
.gll-footer__col-links a {
  font-size: 0.875rem;
  color: rgba(250,248,244,0.5);
  transition: var(--transition);
  padding: 3px 0;
}
.gll-footer__col-links a:hover { color: rgba(250,248,244,0.9); }
.gll-footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: var(--s2);
}
.gll-footer__contact-label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,248,244,0.35); }
.gll-footer__contact-value { font-size: 0.875rem; color: rgba(250,248,244,0.65); }
.gll-footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s3);
}
.gll-footer__copy { font-size: 0.78rem; color: rgba(250,248,244,0.3); }
.gll-footer__legal { display: flex; gap: var(--s3); flex-wrap: wrap; }
.gll-footer__legal a { font-size: 0.78rem; color: rgba(250,248,244,0.3); transition: var(--transition); }
.gll-footer__legal a:hover { color: rgba(250,248,244,0.6); }

/* =====================================================
   INNER PAGE HERO (shared banner for inner pages)
   ===================================================== */
.gll-page-hero {
  background: var(--lake-navy);
  padding: calc(var(--s16) + 60px) 0 var(--s12);
  position: relative;
  overflow: hidden;
}
.gll-page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.gll-page-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s4);
  position: relative;
  z-index: 1;
}
.gll-page-hero h1 { color: var(--ivory-white); max-width: 680px; }
.gll-page-hero__lead { color: rgba(250,248,244,0.7); font-size: 1.1rem; max-width: 580px; margin-top: var(--s3); line-height: 1.8; }

/* =====================================================
   EXPERIENCES INNER PAGE
   ===================================================== */
.gll-exp-detail { padding: var(--s12) 0; }
.gll-exp-detail:nth-child(even) { background: var(--warm-sand); }
.gll-exp-detail__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s10);
  align-items: center;
}
.gll-exp-detail__inner--reverse .gll-exp-detail__image { order: 2; }
.gll-exp-detail__image {
  height: 480px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.gll-exp-detail__content h2 { margin-bottom: var(--s3); }
.gll-exp-detail__content p { font-size: 0.95rem; color: var(--text-body); margin-bottom: var(--s3); line-height: 1.8; }
.gll-exp-detail__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
  margin: var(--s4) 0;
  padding: var(--s4);
  background: var(--ivory-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}
.gll-exp-detail__spec-label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.gll-exp-detail__spec-value { font-size: 0.9rem; color: var(--lake-navy); font-weight: 500; }

/* =====================================================
   OCCASIONS INNER PAGE
   ===================================================== */
.gll-occ-detail { padding: var(--s12) 0; }
.gll-occ-detail:nth-child(even) { background: var(--warm-sand); }
.gll-occ-detail__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s4);
}
.gll-occ-detail__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--s8);
  align-items: start;
}
.gll-occ-detail__main h2 { margin-bottom: var(--s2); }
.gll-occ-detail__main p { font-size: 0.95rem; color: var(--text-body); line-height: 1.8; margin-bottom: var(--s3); }
.gll-occ-detail__sidebar {
  padding: var(--s4);
  background: var(--lake-navy);
  border-radius: var(--radius-md);
  color: var(--ivory-white);
  position: sticky;
  top: var(--s8);
}
.gll-occ-detail__sidebar h4 { color: var(--brushed-brass); font-size: 0.85rem; letter-spacing: 0.08em; margin-bottom: var(--s3); }
.gll-occ-detail__sidebar-item { padding: var(--s2) 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.gll-occ-detail__sidebar-item:last-child { border-bottom: none; }
.gll-occ-detail__sidebar-label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,248,244,0.4); margin-bottom: 2px; }
.gll-occ-detail__sidebar-value { font-size: 0.875rem; color: rgba(250,248,244,0.82); }

/* =====================================================
   PACKAGES INNER PAGE
   ===================================================== */
.gll-pkg-detail { padding: var(--s12) 0; }
.gll-pkg-detail:nth-child(even) { background: var(--warm-sand); }
.gll-pkg-full {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--s4);
}
.gll-pkg-full__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s4);
  margin-bottom: var(--s6);
  padding-bottom: var(--s6);
  border-bottom: 1px solid var(--border-light);
  flex-wrap: wrap;
}
.gll-pkg-full__title-group {}
.gll-pkg-full__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--lake-navy);
  font-style: italic;
}
.gll-pkg-full__sub { font-size: 0.85rem; color: var(--text-muted); margin-top: var(--s1); }
.gll-pkg-full__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--s8);
}
.gll-pkg-full__features-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--lake-navy);
  margin-bottom: var(--s3);
}
.gll-pkg-full__feature-row {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  padding: var(--s2) 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  color: var(--text-body);
}
.gll-pkg-full__feature-check { color: var(--deep-teal); flex-shrink: 0; }
.gll-pkg-specs {
  padding: var(--s4);
  background: var(--lake-navy);
  border-radius: var(--radius-md);
  color: var(--ivory-white);
}
.gll-pkg-specs h4 { color: var(--brushed-brass); margin-bottom: var(--s3); font-size: 0.85rem; letter-spacing: 0.08em; }
.gll-pkg-spec-row { padding: var(--s2) 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.gll-pkg-spec-row:last-child { border-bottom: none; }
.gll-pkg-spec-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,248,244,0.4); margin-bottom: 2px; }
.gll-pkg-spec-value { font-size: 0.9rem; color: rgba(250,248,244,0.85); }

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.gll-about-story { padding: var(--s12) 0; }
.gll-about-story__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s10);
  align-items: center;
}
.gll-about-story__image {
  height: 520px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.gll-about-story__text h2 { margin-bottom: var(--s3); }
.gll-about-story__text p { font-size: 0.95rem; color: var(--text-body); line-height: 1.85; margin-bottom: var(--s3); }
.gll-about-values {
  background: var(--warm-sand);
  padding: var(--s12) 0;
}
.gll-about-values__inner { max-width: 1280px; margin: 0 auto; padding: 0 var(--s4); }
.gll-about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-top: var(--s8);
}
.gll-about-value-card {
  padding: var(--s5) var(--s4);
  background: var(--ivory-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}
.gll-about-value-card h4 { color: var(--lake-navy); margin-bottom: var(--s2); }
.gll-about-value-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }
.gll-about-philosophy {
  background: var(--lake-navy);
  padding: var(--s12) 0;
  text-align: center;
}
.gll-about-philosophy__inner { max-width: 760px; margin: 0 auto; padding: 0 var(--s4); }
.gll-about-philosophy h2 { color: var(--ivory-white); margin-bottom: var(--s4); }
.gll-about-philosophy p { color: rgba(250,248,244,0.72); font-size: 1rem; line-height: 1.85; margin-bottom: var(--s3); }
.gll-about-standards {
  padding: var(--s12) 0;
}
.gll-about-standards__inner { max-width: 1280px; margin: 0 auto; padding: 0 var(--s4); }
.gll-about-standards__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s4);
  margin-top: var(--s8);
}
.gll-about-standard-item {
  display: flex;
  gap: var(--s3);
  padding: var(--s4);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}
.gll-about-standard-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(184,150,110,0.3);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}
.gll-about-standard-item h4 { color: var(--lake-navy); margin-bottom: var(--s1); }
.gll-about-standard-item p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* =====================================================
   HOSTING GUIDE PAGE
   ===================================================== */
.gll-guide { padding: var(--s10) 0; }
.gll-guide__inner { max-width: 960px; margin: 0 auto; padding: 0 var(--s4); }
.gll-guide__intro { margin-bottom: var(--s10); }
.gll-guide__intro p { font-size: 1rem; color: var(--text-body); line-height: 1.85; margin-bottom: var(--s3); }
.gll-guide-section { margin-bottom: var(--s8); }
.gll-guide-section__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--lake-navy);
  margin-bottom: var(--s4);
  padding-bottom: var(--s2);
  border-bottom: 2px solid var(--brushed-brass);
  display: inline-block;
}
.gll-accordion {}
.gll-accordion__item { border-bottom: 1px solid var(--border-light); }
.gll-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s3) 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--lake-navy);
  text-align: left;
  transition: var(--transition);
}
.gll-accordion__trigger:hover { color: var(--deep-teal); }
.gll-accordion__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 1.5px solid var(--brushed-brass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--brushed-brass);
  font-size: 1rem;
  line-height: 1;
}
.gll-accordion__item.is-open .gll-accordion__icon { transform: rotate(45deg); }
.gll-accordion__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.gll-accordion__body-inner { padding: 0 0 var(--s3); }
.gll-accordion__body-inner p { font-size: 0.9rem; color: var(--text-body); line-height: 1.8; margin-bottom: var(--s2); }
.gll-accordion__body-inner p:last-child { margin-bottom: 0; }
.gll-guide-tip {
  background: var(--warm-sand);
  border-left: 3px solid var(--brushed-brass);
  padding: var(--s3) var(--s4);
  margin: var(--s4) 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.gll-guide-tip__label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brushed-brass); font-weight: 600; margin-bottom: var(--s1); }
.gll-guide-tip p { font-size: 0.875rem; color: var(--text-body); line-height: 1.7; }
.gll-guide-checklist { list-style: none; }
.gll-guide-checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.gll-guide-checklist li::before { content: '—'; color: var(--brushed-brass); flex-shrink: 0; margin-top: 1px; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.gll-contact { padding: var(--s12) 0; }
.gll-contact__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s4);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s10);
  align-items: start;
}
.gll-contact__sidebar {}
.gll-contact__sidebar h2 { margin-bottom: var(--s3); }
.gll-contact__sidebar p { font-size: 0.95rem; color: var(--text-body); line-height: 1.8; margin-bottom: var(--s5); }
.gll-contact__info { display: flex; flex-direction: column; gap: var(--s3); }
.gll-contact__info-item {}
.gll-contact__info-label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brushed-brass); font-weight: 600; margin-bottom: 4px; }
.gll-contact__info-value { font-size: 0.9rem; color: var(--text-body); }
.gll-contact__form-wrap {
  background: var(--ivory-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--s6);
  box-shadow: var(--shadow-sm);
}
.gll-form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--lake-navy);
  margin-bottom: var(--s1);
}
.gll-form-subtitle { font-size: 0.875rem; color: var(--text-muted); margin-bottom: var(--s5); }
.gll-form { display: flex; flex-direction: column; gap: var(--s3); }
.gll-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); }
.gll-form__group { display: flex; flex-direction: column; gap: 6px; }
.gll-form__label { font-size: 0.8rem; font-weight: 500; color: var(--text-dark); letter-spacing: 0.02em; }
.gll-form__label span { color: var(--brushed-brass); }
.gll-form__input,
.gll-form__select,
.gll-form__textarea {
  width: 100%;
  padding: 12px var(--s2);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.gll-form__input:focus,
.gll-form__select:focus,
.gll-form__textarea:focus {
  border-color: var(--deep-teal);
  box-shadow: 0 0 0 3px rgba(29,78,95,0.08);
}
.gll-form__input.is-error,
.gll-form__select.is-error,
.gll-form__textarea.is-error { border-color: #c94040; }
.gll-form__error { font-size: 0.78rem; color: #c94040; margin-top: 2px; display: none; }
.gll-form__error.is-visible { display: block; }
.gll-form__textarea { resize: vertical; min-height: 120px; }
.gll-form__select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9baa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.gll-form__submit { margin-top: var(--s2); }
.gll-form__success {
  display: none;
  background: rgba(29,78,95,0.08);
  border: 1px solid rgba(29,78,95,0.25);
  border-radius: var(--radius-md);
  padding: var(--s4);
  text-align: center;
  color: var(--deep-teal);
  font-size: 0.95rem;
}
.gll-form__success.is-visible { display: block; }

/* =====================================================
   LEGAL PAGES
   ===================================================== */
.gll-legal { padding: var(--s12) 0; }
.gll-legal__inner { max-width: 860px; margin: 0 auto; padding: 0 var(--s4); }
.gll-legal__intro { color: var(--text-muted); font-size: 0.875rem; margin-bottom: var(--s8); padding-bottom: var(--s4); border-bottom: 1px solid var(--border-light); }
.gll-legal h2 { font-size: 1.4rem; color: var(--lake-navy); margin: var(--s6) 0 var(--s2); }
.gll-legal h3 { font-size: 1.1rem; color: var(--lake-navy); margin: var(--s4) 0 var(--s2); }
.gll-legal p { font-size: 0.9rem; color: var(--text-body); line-height: 1.85; margin-bottom: var(--s3); }
.gll-legal ul { margin: var(--s2) 0 var(--s3) var(--s4); }
.gll-legal ul li { font-size: 0.9rem; color: var(--text-body); line-height: 1.75; margin-bottom: var(--s1); list-style: disc; }

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
.gll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.gll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.gll-reveal--delay-1 { transition-delay: 0.1s; }
.gll-reveal--delay-2 { transition-delay: 0.2s; }
.gll-reveal--delay-3 { transition-delay: 0.3s; }
.gll-reveal--delay-4 { transition-delay: 0.4s; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .gll-perspective__grid { grid-template-columns: 1fr; gap: var(--s8); }
  .gll-perspective__panel { position: static; }
  .gll-exp-split { grid-template-columns: 1fr; min-height: auto; }
  .gll-exp-split__image { min-height: 320px; }
  .gll-exp-editorial__inner { grid-template-columns: 1fr; gap: var(--s6); }
  .gll-exp-editorial__aside { border-left: none; padding-left: 0; border-top: 1px solid rgba(184,150,110,0.25); padding-top: var(--s4); }
  .gll-exp-stacked { grid-template-columns: 1fr 1fr; }
  .gll-occ-feature { grid-template-columns: 1fr; gap: var(--s6); }
  .gll-occ-feature__image { order: -1; height: 300px; }
  .gll-occ-split-row__inner { grid-template-columns: 1fr; }
  .gll-occ-split-row__image { height: 280px; }
  .gll-occ-split-row__inner--reverse .gll-occ-split-row__image { order: 0; }
  .gll-carries__grid { grid-template-columns: repeat(2, 1fr); }
  .gll-flow__rail { grid-template-columns: repeat(2, 1fr); gap: var(--s6); }
  .gll-flow__rail::before { display: none; }
  .gll-packages__cards { grid-template-columns: 1fr; max-width: 560px; }
  .gll-pkg-strip { display: none; }
  .gll-footer__main { grid-template-columns: 1fr 1fr; gap: var(--s6); }
  .gll-exp-detail__inner { grid-template-columns: 1fr; }
  .gll-exp-detail__image { height: 320px; }
  .gll-exp-detail__inner--reverse .gll-exp-detail__image { order: 0; }
  .gll-occ-detail__grid { grid-template-columns: 1fr; }
  .gll-occ-detail__sidebar { position: static; }
  .gll-pkg-full__grid { grid-template-columns: 1fr; }
  .gll-about-story__inner { grid-template-columns: 1fr; }
  .gll-about-story__image { height: 320px; }
  .gll-about-values__grid { grid-template-columns: 1fr 1fr; }
  .gll-about-standards__grid { grid-template-columns: 1fr; }
  .gll-contact__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --s10: 56px;
    --s12: 72px;
    --s16: 96px;
  }
  .gll-nav { display: none; }
  .gll-header__cta { display: none; }
  .gll-burger { display: flex; }
  .gll-hero__content { padding-top: 100px; }
  .gll-exp-stacked { grid-template-columns: 1fr; }
  .gll-exp-panorama { height: auto; min-height: 400px; }
  .gll-exp-panorama__content { flex-direction: column; align-items: flex-start; gap: var(--s4); padding-bottom: var(--s6); }
  .gll-exp-panorama__right { text-align: left; }
  .gll-occ-lounge-row { grid-template-columns: 1fr; }
  .gll-carries__grid { grid-template-columns: 1fr; }
  .gll-flow__rail { grid-template-columns: 1fr; }
  .gll-packages__cards { grid-template-columns: 1fr; }
  .gll-footer__main { grid-template-columns: 1fr; gap: var(--s5); }
  .gll-footer__bottom { flex-direction: column; align-items: flex-start; }
  .gll-about-values__grid { grid-template-columns: 1fr; }
  .gll-form__row { grid-template-columns: 1fr; }
  .gll-perspective__metrics { grid-template-columns: 1fr 1fr; }
  .gll-hero__actions { flex-direction: column; align-items: flex-start; }
  .gll-hero__actions .gll-btn { width: 100%; max-width: 280px; justify-content: center; }
  .gll-experiences__header { flex-direction: column; }
}

@media (max-width: 480px) {
  .gll-container { padding: 0 var(--s3); }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}
