
/* main/styles/typography.css */
@font-face {
    font-family: Rhode;
    src: url("../assets/fonts/RhodeBlackWide.woff2") format("woff2"),
        url("../assets/fonts/RhodeBlackWide.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Rhode;
    src: url("../assets/fonts/RhodeMediumExtended.woff2") format("woff2"),
        url("../assets/fonts/RhodeMediumExtended.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Rhode;
    src: url("../assets/fonts/RhodeBoldWide.woff2") format("woff2"),
        url("../assets/fonts/RhodeBoldWide.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Omnes;
    src: url("../assets/fonts/Omnes Medium.woff2") format("woff2"),
        url("../assets/fonts/Omnes Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Omnes;
    src: url("../assets/fonts/Omnes Bold.woff2") format("woff2"),
        url("../assets/fonts/Omnes Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Omnes;
    src: url("../assets/fonts/Omnes Black.woff2") format("woff2"),
        url("../assets/fonts/Omnes Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Interstate Cond Mono";
    src: url("../assets/fonts/Interstate Cond Mono.woff2") format("woff2"),
        url("../assets/fonts/Interstate Cond Mono.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Interstate Cond Mono";
    src: url("../assets/fonts/Interstate Cond Mono Bold.woff2") format("woff2"),
        url("../assets/fonts/Interstate Cond Mono Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Interstate Cond Mono";
    src: url("../assets/fonts/Interstate Cond Mono - Lgt.woff2") format("woff2"),
        url("../assets/fonts/Interstate Cond Mono - Lgt.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-h1: "Rhode", sans-serif;
    --font-section: "Omnes", sans-serif;
    --font-subheadline: "Omnes", sans-serif;
    --font-body: "Omnes", sans-serif;
    --font-nav: "Interstate Cond Mono", monospace;
    --font-kicker: "Interstate Cond Mono", monospace;
    --font-caption: "Interstate Cond Mono", monospace;
    --size-h1: 64px;
    --size-section: 40px;
    --size-subheadline: 28px;
    --size-body: 18px;
    --size-body-small: 16px;
    --size-nav: 15px;
    --size-kicker: 14px;
    --size-caption: 13px;
}

body {
    font-family: var(--font-body);
    font-size: var(--size-body);
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.text-h1 {
    font-family: var(--font-h1);
    font-size: var(--size-h1);
    font-weight: 900;
    line-height: 1.1;
}

.text-section-headline {
    font-family: var(--font-section);
    font-size: var(--size-section);
    font-weight: 900;
    line-height: 1.2;
}

.text-subheadline {
    font-family: var(--font-subheadline);
    font-size: var(--size-subheadline);
    font-weight: 900;
    line-height: 1.3;
}

.text-body {
    font-family: var(--font-body);
    font-size: var(--size-body);
    font-weight: 500;
    line-height: 1.6;
}

.text-body-small {
    font-family: var(--font-body);
    font-size: var(--size-body-small);
    font-weight: 500;
    line-height: 1.6;
}

.text-kicker {
    font-family: var(--font-kicker);
    font-size: var(--size-kicker);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.text-caption {
    font-family: var(--font-caption);
    font-size: var(--size-caption);
    font-weight: 300;
    line-height: 1.4;
}

@media (width <= 900px) {
    :root {
        --size-h1: 52px;
        --size-section: 34px;
        --size-subheadline: 24px;
        --size-body: 17px;
        --size-body-small: 15px;
        --size-nav: 14px;
        --size-kicker: 13px;
        --size-caption: 12px;
    }
}

@media (width <= 640px) {
    :root {
        --size-h1: 38px;
        --size-section: 28px;
        --size-subheadline: 20px;
        --size-body: 16px;
        --size-body-small: 14px;
        --size-nav: 13px;
        --size-kicker: 12px;
        --size-caption: 11px;
    }
}

/* main/styles/site.css */
/* Shared layout */
:root {
  --globe-red: #f04e23;
  --globe-charcoal: #391c1c;
  --globe-cream: #f5ead8;
  --green: #37b777;
  --purple: #b97bb5;
  --pink: #f16b81;
  --orange: #f68b1f;
  --yellow: #ffd400;
  --nav-icon: none;
  --color-bg: #fff;
  --color-surface: #fff;
  --color-surface-muted: #f9f4ec;
  --color-text: var(--globe-charcoal);
  --color-text-muted: rgb(57 28 28 / 80%);
  --color-border: rgb(57 28 28 / 12%);
  --color-border-strong: rgb(57 28 28 / 18%);
  --color-shadow: rgb(241 107 129 / 12%);
  --section-divider-fill: #fff;
  --hero-overlay: rgb(57 28 28 / 35%);
  --placeholder-bg: linear-gradient(140deg, rgb(245 234 216 / 75%), rgb(241 107 129 / 8%) 48%, rgb(57 28 28 / 4%));
  --placeholder-shadow: 0 2px 6px rgb(241 107 129 / 12%), inset 0 1px 0 rgb(245 234 216 / 50%);
  --btn-bg: rgb(245 234 216 / 20%);
  --btn-hover-bg: transparent;
  --radius-tile: 4px;
  --radius-control: 8px;
  --radius-chip: 12px;
  --radius-pill: 14px;

  /* Divider controls */
  --footer-divider-height: 90px;   /* overall visual height */
  --footer-divider-lift: 1px;      /* hides 1px seams */
}

[data-theme="dark"] {
  --color-bg: #0f0a0b;
  --color-surface: #1b1113;
  --color-surface-muted: #231516;
  --color-text: #f5ead8;
  --color-text-muted: rgb(245 234 216 / 82%);
  --color-border: rgb(245 234 216 / 12%);
  --color-border-strong: rgb(245 234 216 / 22%);
  --color-shadow: rgb(241 107 129 / 35%);
  --section-divider-fill: #0f0a0b;
  --hero-overlay: rgb(0 0 0 / 55%);
  --placeholder-bg: linear-gradient(140deg, rgb(57 28 28 / 55%), rgb(185 123 181 / 24%) 52%, rgb(245 234 216 / 8%));
  --placeholder-shadow: 0 2px 16px rgb(241 107 129 / 35%), inset 0 1px 0 rgb(245 234 216 / 16%);
  --btn-bg: rgb(245 234 216 / 10%);
  --btn-hover-bg: rgb(245 234 216 / 8%);
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
}

html {
  scrollbar-gutter: stable;
}


nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 14px 18px;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 6px 16px -12px var(--color-shadow);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 20px;
}

.nav-icon {
  width: 36px;
  height: 36px;
  position: absolute;
  left: max(24px, calc(50% - 600px + 24px));
  top: 50%;
  transform: translateY(-50%);
  background-image: var(--nav-icon);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.nav-toggle {
  display: none;
  align-items: center;
  padding: 6px 8px;
  border: none;
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-nav);
  font-size: var(--size-nav);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: currentcolor;
  border-radius: var(--radius-pill);
  transition: transform 150ms ease, opacity 150ms ease;
}

.nav-toggle__icon {
  position: relative;
}

.nav-toggle__icon::before {
  position: absolute;
  top: -6px;
  left: 0;
}

.nav-toggle__icon::after {
  position: absolute;
  top: 6px;
  left: 0;
}

.nav-open .nav-toggle__icon {
  transform: rotate(45deg);
}

.nav-open .nav-toggle__icon::before {
  transform: rotate(90deg) translateX(0);
  top: 0;
}

.nav-open .nav-toggle__icon::after {
  opacity: 0;
}

nav a {
  font-family: var(--font-nav);
  font-size: var(--size-nav);
  color: var(--color-text);
  text-decoration: none;
  padding: 10px 6px 8px;
  border-radius: 0;
  position: relative;
  transition: color 150ms ease;
}

nav a:hover {
  color: var(--globe-red);
}

nav a.active,
nav a[aria-current="page"] {
  color: var(--globe-red);
}

nav a.active::after,
nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--globe-red);
  border-radius: var(--radius-pill);
}

main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.home-page main {
  gap: 48px;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padded {
  padding-top: 40px;
  padding-bottom: 40px;
}

.home-page .section-padded {
  padding-top: 64px;
  padding-bottom: 64px;
}

.home-page .whats-background {
  margin-top: -48px;
}

.home-page section[id] {
  scroll-margin-top: 88px;
}


.placeholder {
  background: var(--placeholder-bg);
  border-radius: var(--radius-tile);
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  box-shadow: var(--placeholder-shadow);
}

.placeholder.image-only {
  background: transparent;
  padding: 0;
  min-height: 0;
  display: block;
}

.placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

/* Footer base */
footer {
    margin-top: 25px;
}

footer,
.site-footer {
    position: relative;
    overflow: hidden;
    background: var(--green);
    color: var(--globe-cream);
    font-family: var(--font-body);
}

.section-divider-top {
    display: block;
    width: 100%;
    height: 80px;
    margin-top: 0;
    transform: translateY(-1px) scaleY(-1);
    transform-origin: center;
}

.section-divider-top path {
    fill: var(--section-divider-fill);
}


footer .footer-inner,
.site-footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 24px 32px;
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) minmax(300px, 2fr);
    gap: 28px 32px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

footer .footer-inner > *,
.site-footer .footer-inner > * {
  min-width: 0;
}

.footer-brand {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-brand--funding {
  grid-column: 1 / -1;
  justify-items: center;
  text-align: center;
  border-top: 1px solid rgb(245 234 216 / 24%);
  padding-top: 18px;
  margin-top: 4px;
}

.footer-brand p {
  margin: 0;
}

.footer-logo {
  max-width: 96px;
  width: 100%;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

.footer-links h3,
.footer-contact h3,
.footer-ack h3 {
  margin: 0 0 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.site-footer .footer-links a,
.site-footer .footer-contact a,
.site-footer .footer-contact span {
  color: var(--globe-cream);
  text-decoration: none;
}

.site-footer .footer-links a:hover,
.site-footer .footer-contact a:hover {
  color: var(--globe-charcoal);
  text-decoration: underline;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-social--placeholder {
  opacity: 0.7;
  pointer-events: none;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  stroke: currentcolor;
}

.footer-ack,
.footer-funding {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-ack p,
.footer-funding p {
  margin: 0;
}

.footer-funding-logo {
  max-width: 140px;
  width: 100%;
  height: auto;
  display: block;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  background: var(--color-surface) !important;
  text-align: center;
  padding: 14px 24px;
  font-family: var(--font-caption);
  color: var(--color-text) !important;
  position: relative;
  z-index: 3;
}

/* Footer themes */
.site-footer.footer-red {
  background: var(--globe-red);
}

.site-footer.footer-red .footer-bottom {
  background: rgb(57 28 28 / 12%);
}

.site-footer.footer-green {
  background: var(--green);
}

.site-footer.footer-green .footer-bottom {
  background: rgb(57 28 28 / 12%);
}

.site-footer.footer-purple {
  background: var(--purple);
}

.site-footer.footer-purple .footer-bottom {
  background: rgb(57 28 28 / 12%);
}

.site-footer.footer-orange {
  background: var(--orange);
}

.site-footer.footer-orange .footer-bottom {
  background: rgb(57 28 28 / 12%);
}

@media (width <= 900px) {
  nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 8px 12px;
  }

  .nav-icon {
    width: 32px;
    height: 32px;
    left: max(24px, calc(50% - 600px + 24px));
    top: 14px;
    transform: none;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    align-self: center;
  }

  .nav-links {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    padding: 6px 0 4px;
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    overflow: hidden;
    pointer-events: none;
    transition: max-height 200ms ease, opacity 200ms ease, transform 200ms ease;
  }

  nav.nav-open .nav-links {
    max-height: 320px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  :root {
    --footer-divider-height: 72px;
  }

  footer .footer-inner,
  .site-footer .footer-inner {
    padding-top: 76px;
    grid-template-columns: 1fr;
  }
}

@media (width <= 640px) {
  nav {
    padding: 10px 12px;
    gap: 6px 10px;
  }

  nav a {
    padding: 8px 4px 6px;
  }

  .nav-toggle {
    padding: 5px 10px;
  }

  .nav-icon {
    left: 16px;
    top: 10px;
  }

  .section {
    padding: 0 16px;
  }

  .section-padded {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  footer .footer-inner,
  .site-footer .footer-inner {
    padding: 44px 16px 28px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand--funding {
    justify-items: center;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .footer-links,
  .footer-contact,
  .footer-ack,
  .footer-funding {
    text-align: center;
  }

  .footer-links ul {
    justify-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-funding-logo {
    margin: 0 auto;
  }

  .section-divider-top {
    height: 30px;
  }

  .site-footer,
  footer {
    margin-top: 36px;
  }
}

/* main/styles/components/buttons.css */
/* Reusable components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--color-text);
  border-radius: var(--radius-control);
  background: transparent;
  color: var(--globe-charcoal);
  text-decoration: none;
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: var(--size-nav);
  text-align: center;
  min-width: 110px;
  height: 40px;
  line-height: 1.2;
  box-sizing: border-box;
  appearance: none;
  cursor: pointer;
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
}

.btn:hover {
  background: var(--btn-hover-bg);
  border-color: var(--globe-red);
  color: var(--globe-red);
}

.btn--light {
  background: rgb(255 255 255 / 15%);
  color: var(--globe-cream);
  border-color: var(--globe-cream);
}

.btn--light:hover {
  background: transparent;
  color: var(--globe-red);
  border-color: var(--globe-red);
}

.btn--solid {
  background: var(--btn-solid-bg, var(--globe-red));
  color: var(--btn-solid-color, var(--globe-cream));
  border-color: var(--btn-solid-bg, var(--globe-red));
}

.btn--solid:hover {
  background: transparent;
  color: var(--btn-solid-bg, var(--globe-red));
  border-color: var(--btn-solid-bg, var(--globe-red));
}

@media (width <= 640px) {
  .btn {
    min-width: 96px;
    padding: 7px 10px;
    font-size: 13px;
    height: 36px;
  }
}

/* main/styles/components/forms.css */
/* Reusable form elements */
.form-field {
  display: grid;
  gap: 6px;
}

.field-input,
.field-select,
.field-textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgb(57 28 28 / 20%);
  border-radius: var(--radius-control);
  font-family: var(--font-body);
  font-size: var(--size-body-small);
  background: #fff;
  box-sizing: border-box;
}

.field-textarea {
  resize: vertical;
}

.field-select {
  background: #fff;
}

.form-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox-field input[type="checkbox"] {
  width: 12px;
  height: 12px;
  border: 1px solid rgb(57 28 28 / 60%);
  border-radius: 2px;
  appearance: none;
  background: #fff;
  position: relative;
  cursor: pointer;
  box-shadow: 0 1px 3px rgb(241 107 129 / 20%);
}

.checkbox-field input[type="checkbox"]:checked {
  background: var(--globe-charcoal);
  border-color: var(--globe-charcoal);
}

@media (width <= 640px) {
  .form-inline {
    flex-direction: column;
    align-items: stretch;
  }

  .form-inline .btn {
    align-self: flex-start;
  }

  .checkbox-field {
    align-items: flex-start;
  }

  .form-inline .checkbox-field {
    width: 100%;
    align-self: flex-start;
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .form-inline .checkbox-field input[type="checkbox"] {
    order: 2;
  }

  .form-inline .checkbox-field span {
    order: 1;
  }
}

/* main/styles/style.css */
/* Home-specific styles */
.hero {
    position: relative;
    color: var(--globe-cream);
    background: url("../assets/imgs/GlobeLane9.webp") center/cover no-repeat;
    min-height: 88vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    margin: 0;
    width: 100%;
    border-radius: 0;
    box-shadow: 0 18px 40px rgb(241 107 129 / 14%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(57 28 28 / 35%);
    pointer-events: none;
}

.hero::after {
    content: none;
}

.hero-content {
    position: relative;
    padding: 56px 24px 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
    flex: 1;
    min-height: 88vh;
}

.hero-content h1 {
    margin: 0;
    max-width: 720px;
    opacity: 0.9;
    font-family: Omnes, sans-serif;
    font-weight: 900;
    font-size: 72px;
    line-height: 1.05;
}

.hero-logo {
    height: 300px;
    width: auto;
    max-width: 620px;
    filter: drop-shadow(0 4px 14px rgb(0 0 0 / 15%));
    opacity: 0.9;
}

.hero-logo-wrap {
    position: absolute;
    right: max(24px, calc(50% - 600px + 24px));
    bottom: 32px;
    z-index: 1;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: auto;
}


.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: start;
}

@media (width <= 900px) {
    .hero {
        min-height: 68vh;
        margin: 0;
        width: 100%;
    }

    .hero-content {
        padding: 44px 22px 32px;
        min-height: 68vh;
    }

    .hero-logo {
        height: 180px;
        max-width: 340px;
    }

    .hero-logo-wrap {
        right: 24px;
        bottom: 20px;
    }

    .hero-actions {
        flex-wrap: wrap;
    }

    .hero-content h1 {
        font-size: 58px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (width <= 640px) {
    .hero-logo-wrap {
        position: absolute;
        right: 16px;
        bottom: 20px;
        margin-top: 0;
        align-self: auto;
    }

    .hero-content {
        padding: 36px 150px 28px 18px;
    }

    .hero-logo {
        height: 100px;
        max-width: 220px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-top: auto;
    }

    .hero-content h1 {
        font-size: 48px;
    }
}

@media (width <= 480px) {
    .hero {
        min-height: 60vh;
    }

    .hero-content {
        padding: 30px 16px 24px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

}

/* main/styles/whatsOn.css */
/* What's On page styles */

.whats-background {
    position: relative;
    background-color: var(--color-bg);
    overflow: hidden;
}

.whats-background::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        url("../assets/logos/1 Charcoal/3x/Charcoal _ Ball@3x.png"),
        url("../assets/logos/1 Charcoal/3x/Charcoal _ Coconut@3x.png"),
        url("../assets/logos/1 Charcoal/3x/Charcoal _ Disco@3x.png"),
        url("../assets/logos/1 Charcoal/3x/Charcoal _ Guitar@3x.png"),
        url("../assets/logos/1 Charcoal/3x/Charcoal _ Vinyl@3x.png");
    background-repeat: no-repeat;
    background-size: 200px, 220px, 260px, 200px, 220px;
    background-position:
        8% 22%,
        78% 26%,
        54% 86%,
        14% 74%,
        86% 72%;
    opacity: 0.28;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: multiply;
}

.whats-background > * {
    position: relative;
    z-index: 1;
}

.whats-page {
    background: transparent;
    color: var(--color-text);
}

.whats-hero-banner {
    position: relative;
    padding: 44px 24px 82px;
    background: var(--globe-charcoal);
    overflow: hidden;
    color: var(--globe-cream);
}

.whats-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 24px;
}

.whats-hero-copy {
    display: grid;
    gap: 14px;
}

.whats-hero-copy .text-kicker {
    font-size: 26px;
    color: var(--orange);
    letter-spacing: 0.01em;
    line-height: 1.25;
}

.whats-hero-logo {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.whats-hero-logo > img {
    max-width: 520px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 22px rgb(57 28 28 / 20%));
}

.whats-logo-cycle {
    position: relative;
    width: min(320px, 70vw);
    height: min(320px, 70vw);
}

.whats-logo-cycle__item {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 22px rgb(57 28 28 / 20%));
    animation: whats-logo-cycle 20s ease-in-out infinite;
    animation-delay: calc(var(--logo-index) * 2.5s);
    animation-fill-mode: both;
}

@keyframes whats-logo-cycle {
    0% {
        opacity: 0;
        transform: scale(0.96);
    }

    6% {
        opacity: 1;
        transform: scale(1);
    }

    12.5% {
        opacity: 1;
        transform: scale(1);
    }

    18% {
        opacity: 0;
        transform: scale(1.02);
    }

    100% {
        opacity: 0;
        transform: scale(1.02);
    }
}

.whats-hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 120%;
    height: 90px;
    padding-top:  100px;
    
}

.whats-hero-wave path {
    fill: var(--color-bg);
}


.whats-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px 72px;
    display: grid;
    gap: 44px;
}

.whats-find {
    display: grid;
    gap: 16px;
    align-items: center;
}

.whats-find .text-section-headline {
    margin: 0;
    text-align: center;
}

.whats-find-map img {
    display: block;
    width: min(900px, 90%);
    height: auto;
    border-radius: var(--radius-tile);
    box-shadow: 0 0 12px rgb(241 107 129 / 45%), 0 0 28px rgb(241 107 129 / 30%);
}

.whats-find-map {
    display: flex;
    justify-content: center;
}

.explore-plan {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: start;
}

.explore-column {
    display: grid;
    gap: 14px;
}

.explore-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.feature-tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.feature-tiles .placeholder {
    min-height: 420px;
}

.plan-visit {
    display: grid;
    margin-top: 55px;
    gap: 6px;
    padding: 16px 16px 18px;
    border-radius: var(--radius-control);
    background: transparent;
    border: 1px solid rgb(57 28 28 / 18%);
    box-shadow:
        0 18px 34px rgb(241 107 129 / 18%),
        0 1px 0 rgb(241 107 129 / 16%),
        inset 0 1px 0 rgb(255 255 255 / 60%);
    height: 490px;
    
}


.plan-visit .text-section-headline {
    margin: 0;
    opacity: 1;
}

.plan-visit-options {
    display: grid;
    gap: 15px;
}

.plan-visit-option {
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-control);
    background: rgb(255 255 255 / 75%);
    backdrop-filter: blur(6px);
    padding: 10px 12px;
    box-shadow: none;
    opacity: 1;
}

.plan-visit-option > *:not(summary) {
    display: block;
}

.plan-visit-option summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.plan-visit-option[open] summary {
    margin-bottom: 6px;
}

.plan-visit-option summary::-webkit-details-marker {
    display: none;
}

.plan-visit-option summary::after {
    content: "▾";
    font-size: 12px;
    color: var(--color-text-muted);
    transition: transform 200ms ease;
}

.plan-visit-option[open] summary::after {
    transform: rotate(180deg);
}

.plan-visit-content {
    display: grid;
    gap: 6px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-4px);
    transition: max-height 260ms ease, opacity 200ms ease, transform 200ms ease;
}

.plan-visit-option.is-open .plan-visit-content {
    opacity: 1;
    transform: translateY(0);
}

.plan-info {
    margin: 0;
    padding: 4px 0 6px;
    height: auto;
    opacity: 1;
    overflow: visible;
    line-height: 1.65;
    color: var(--color-text-muted);
}

.plan-visit-link {
    display: inline;
    color: var(--globe-red);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    margin-top: 2px;
    line-height: 1.4;
}

.image-strip-full {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 32px 0;
}

.image-strip-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 1fr);
    gap: 16px;
    align-items: stretch;
    overflow: hidden;
    padding: 0 24px;
}

.image-strip-track .placeholder {
    min-height: 320px;
}

.coming-soon {
    display: grid;
    gap: 16px;
}

.coming-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.coming-header img {
    max-width: 120px;
    height: auto;
}

.coming-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}

.coming-grid .placeholder {
    min-height: 160px;
}

.event-card {
    display: grid;
    gap: 8px;
    flex: 0 1 320px;
    max-width: 320px;
    text-decoration: none;
    color: var(--globe-charcoal);
    border-radius: var(--radius-tile);
    padding: 0;
    background: rgb(255 255 255 / 72%);
    box-shadow: 0 16px 30px rgb(57 28 28 / 16%);
    backdrop-filter: blur(6px);
    border: 1px solid rgb(57 28 28 / 12%);
    transition: transform 150ms ease, box-shadow 150ms ease;
}

.event-meta {
    display: grid;
    gap: 2px;
    padding: 8px 12px 12px;
}

.event-title {
    margin: 0;
    font-weight: 700;
}

.event-card .placeholder {
    height: auto;
    min-height: 0;
    border-radius: var(--radius-tile) var(--radius-tile) 0 0;
    overflow: hidden;
}

.event-card .event-image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 36px rgb(57 28 28 / 20%);
}

@media (width <= 980px) {
    .whats-hero-inner,
    .explore-plan {
        grid-template-columns: 1fr;
    }

    .whats-hero-logo {
        justify-content: center;
    }

    .whats-find {
        gap: 12px;
    }

    .plan-visit {
        height: auto;
    }

    .whats-hero-wave {
        height: 30px;
        padding-top: 40px;
    }

    .coming-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (width <= 640px) {
    .whats-hero-banner {
        padding: 40px 18px 68px;
    }

    .whats-hero-logo {
        justify-content: center;
    }

    .whats-hero-wave {
        height: 20px;
        padding-top: 40px;
    }

    .whats-page {
        overflow-x: hidden;
    }

    .whats-background::before {
        background-size: 130px, 150px, 180px, 130px, 150px;
        background-position:
            8vw 620px,
            calc(100% - 140px) 760px,
            42vw 1240px,
            6vw 1620px,
            calc(100% - 150px) 1780px;
    }

    .whats-content {
        padding: 8px 18px 56px;
    }

    .whats-hero-copy .text-kicker {
        font-size: 22px;
    }

    .image-strip-full {
        display: none;
    }

    .whats-hero-logo img {
        max-width: 260px;
    }

    .feature-tiles {
        grid-template-columns: 1fr;
    }

    .feature-tiles .placeholder {
        min-height: 260px;
    }

    .image-strip-track {
        grid-auto-columns: minmax(220px, 1fr);
        gap: 12px;
    }

    .coming-grid {
        gap: 14px;
    }
}

@media (width <= 480px) {
    .whats-hero-banner {
        padding: 32px 16px 58px;
    }

    .plan-visit {
        padding: 14px;
    }

    .plan-visit-options {
        gap: 12px;
    }
}

/* main/styles/about.css */
/* About section wrapper */
.about-section {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("../assets/logos/2 Pink/3x/Pink _ Ball@3x.png"),
    url("../assets/logos/2 Pink/3x/Pink _ Coconut@3x.png"),
    url("../assets/logos/2 Pink/3x/Pink _ Disco@3x.png"),
    url("../assets/logos/2 Pink/3x/Pink _ Guitar@3x.png");
  background-repeat: no-repeat;
  background-size: 170px, 190px, 220px, 170px;
  background-position:
    6% 10%,
    86% 16%,
    52% 90%,
    14% 64%;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}

.about-section > * {
  position: relative;
  z-index: 1;
}


/* Logo column */
.about-logo-column {
  display: none;
}

/* The vertical logo itself */
.about-logo-column::before {
  content: "";
  position: sticky;
  top: 1200px; /* stays aligned as user scrolls */
  display: block;
  width: 900px;
  height: 850px;
  background: url("../assets/logos/Horizontal/GLOBELANE_horizontal_red_WEB-1000px.png")
    no-repeat center;
  background-size: contain;
  z-index: -2;
  transform: translateX(-380px) rotate(90deg);
  opacity: 0.7;
  pointer-events: none;
}

/* Main about content grid */
.about-page {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 18px;
  align-items: start;
}

/* Text wrapper */
.about-wrapper {
  position: relative;
  z-index: 1;
}

.about-images {
  display: grid;
  gap: 16px;
  padding-top: 96px;
}

/* Links */
.about-page a {
  color: var(--globe-charcoal);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.about-page a:hover {
  color: var(--globe-red);
  text-decoration-color: var(--globe-red);
}

.about-images .placeholder {
  min-height: 140px;
}

.about-images-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-images-row .placeholder {
  min-height: 220px;
}

/* Map */
.about-map {
  min-height: 280px;
  height: 300px;
}

.about-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius-tile);
  display: block;
}

.about-bottom {
  min-height: 320px;
}

/* Tablet */
@media (width <= 1024px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-logo-column {
    display: none;
  }

  .about-page {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Mobile */
@media (width <= 640px) {
  .about-page {
    gap: 16px;
  }

  .about-section::before {
    background-size: 130px, 150px, 180px, 130px;
    background-position:
      6% 12%,
      88% 18%,
      50% 92%,
      12% 66%;
    opacity: 0.16;
  }

  .about-images {
    gap: 12px;
    padding-top: 32px;
  }

  .about-images-row {
    grid-template-columns: 1fr;
  }

  .about-images-row .placeholder {
    min-height: 200px;
  }

  .about-map {
    min-height: 220px;
    height: 240px;
  }

  .about-bottom {
    min-height: 220px;
  }
}

/* main/styles/contact.css */
/* Contact page styles */
.contact-hero {
    position: relative;
    overflow: hidden;
    padding: 40px 24px 20px;
}

.contact-hero::before,
.contact-hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

.contact-hero::before {
    inset: 0;
    background-image:
        url("../assets/logos/1 Charcoal/3x/Charcoal _ Ball@3x.png"),
        url("../assets/logos/1 Charcoal/3x/Charcoal _ Coconut@3x.png"),
        url("../assets/logos/1 Charcoal/3x/Charcoal _ Guitar@3x.png");
    background-repeat: no-repeat;
    background-size: 180px, 200px, 180px;
    background-position:
        10% 32%,
        82% 36%,
        18% 66%;
    opacity: 0.28;
    mix-blend-mode: multiply;
}

.contact-hero::after {
    inset: 0;
    background-image:
        url("../assets/logos/Split Header-Footer/GLOBELANE_split-header_red_WEB-1000px.png"),
        url("../assets/logos/Split Header-Footer/GLOBELANE_split-footer_red_WEB-1000px.png");
    background-repeat: no-repeat;
    background-size: 720px 300px, 720px 300px;
    background-position: 40px 0, right -10px bottom 0;
    opacity: 0.6;
}

.contact-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
    margin-top: 16px;
}

.contact-grid .placeholder {
    min-height: 280px;
}

.newsletter-block {
    margin-top: 80px;
}

.contact-form {
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgb(57 28 28 / 16%);
    border-radius: var(--radius-control);
    background: rgb(255 255 255 / 70%);
    box-shadow: 0 8px 18px rgb(241 107 129 / 8%);
}


.contact-form .btn {
    justify-self: flex-start;
    margin-top: 0;
}

.contact-inline-link {
    color: var(--globe-charcoal);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

.contact-inline-link:hover {
    color: var(--globe-red);
    text-decoration-color: var(--globe-red);
}

@media (width <= 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-block {
        margin-top: 32px;
    }

    .contact-hero::before {
        background-size: 180px, 200px, 180px;
        background-position:
            8% 18%,
            78% 22%,
            14% 70%;
    }

    .contact-hero::after {
        content: none;
    }
}

@media (width <= 640px) {
    .contact-hero {
        padding: 32px 16px 16px;
    }

    .contact-hero::before {
        background-size: 140px, 160px, 140px;
        background-position:
            8% 16%,
            84% 18%,
            12% 66%;
    }

}
