:root {
  color-scheme: light;
  --ink: #07111f;
  --muted: #5d6675;
  --paper: #fbf8ef;
  --surface: #ffffff;
  --river: #087e9f;
  --deep: #071b2f;
  --sun: #ffbe3d;
  --coral: #ff5f4d;
  --mint: #3fe0b5;
  --line: rgba(7, 17, 31, 0.12);
  --shadow: 0 24px 70px rgba(7, 17, 31, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 190, 61, 0.14), transparent 36%),
    linear-gradient(310deg, rgba(63, 224, 181, 0.16), transparent 40%);
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(16px, 4vw, 40px);
  color: #fff;
  background: rgba(7, 17, 31, 0.56);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--deep);
  font-size: 12px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--sun), var(--mint));
  border-radius: 8px;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 14px;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
}

.nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav a {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  border-radius: 999px;
}

.nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-media img,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  transform: scale(1.03);
}

.hero-scrim {
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.2), rgba(7, 17, 31, 0.72) 62%, rgba(7, 17, 31, 0.96)),
    linear-gradient(120deg, rgba(8, 126, 159, 0.5), rgba(255, 95, 77, 0.18) 54%, rgba(255, 190, 61, 0.26));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 104px clamp(18px, 5vw, 48px) 58px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--river);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(42px, 9vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 4.5vw, 24px);
}

.hero-actions,
.mobile-cta {
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  font-size: 15px;
  font-weight: 850;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
}

.btn-primary {
  color: var(--deep);
  background: linear-gradient(135deg, var(--sun), #ffe27a);
  border-color: transparent;
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.quick-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 760px;
  margin: 30px 0 0;
}

.quick-facts div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-facts dt {
  color: rgba(255, 255, 255, 0.62);
}

dd {
  margin: 4px 0 0;
  font-weight: 850;
}

section {
  padding: 68px clamp(18px, 5vw, 48px);
}

.band {
  background: var(--surface);
}

.section-head {
  width: min(980px, 100%);
  margin: 0 auto 28px;
}

.section-head h2 {
  max-width: 820px;
  margin-bottom: 12px;
  font-size: clamp(30px, 7vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.section-head p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
}

.intro-grid,
.spec-layout {
  display: grid;
  gap: 22px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.intro-grid > p,
.spec-copy p {
  color: #253144;
  font-size: 20px;
}

.vibe-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vibe-list li {
  padding: 16px;
  color: #112235;
  background: linear-gradient(135deg, rgba(255, 190, 61, 0.26), rgba(63, 224, 181, 0.18));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 750;
}

.media-section {
  background: #edf8f7;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.media-tile {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  padding: 0;
  color: #fff;
  background: var(--deep);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.media-tile-large {
  grid-column: 1 / -1;
  min-height: 260px;
}

.media-tile img,
.media-tile video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.media-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(7, 17, 31, 0.72));
}

.media-tile:hover img,
.media-tile:hover video {
  transform: scale(1.035);
}

.tile-caption {
  position: absolute;
  z-index: 1;
}

.tile-caption {
  right: 12px;
  bottom: 12px;
  left: 12px;
  font-size: 14px;
  font-weight: 900;
  text-align: left;
}

.spec-list,
.contact-panel {
  display: grid;
  gap: 10px;
}

.spec-list {
  margin: 0;
}

.spec-list div {
  padding: 18px;
  background: #f6fbfb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.spec-list-single {
  width: min(980px, 100%);
  margin: 0 auto;
}

.spec-list-single div {
  background: linear-gradient(135deg, rgba(255, 190, 61, 0.28), rgba(63, 224, 181, 0.2));
}

.formats {
  background: var(--deep);
  color: #fff;
}

.formats .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.format-grid {
  display: grid;
  gap: 10px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.format-card {
  min-height: 210px;
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(8, 126, 159, 0.58), rgba(255, 95, 77, 0.18)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.format-card span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 950;
}

.format-card h3 {
  margin: 54px 0 10px;
  font-size: 24px;
  line-height: 1.05;
}

.format-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.reviews-layout {
  display: grid;
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.review-form,
.admin-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: #f6fbfb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.review-form label,
.admin-login label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.review-form input,
.review-form select,
.review-form textarea,
.admin-login input {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  text-transform: none;
}

.review-form textarea {
  resize: vertical;
}

.review-hp {
  position: absolute;
  left: -9999px;
}

.review-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.review-status,
.admin-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.reviews-list,
.admin-reviews {
  display: grid;
  gap: 10px;
}

.review-card {
  padding: 16px;
  background: linear-gradient(135deg, #fff, #eefaf8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.review-card header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.review-card strong {
  color: var(--ink);
}

.review-card time,
.review-stars,
.reviews-empty {
  color: var(--muted);
  font-size: 13px;
}

.review-card p {
  margin-bottom: 0;
  color: #253144;
}

.admin-page {
  min-height: 100svh;
  padding: 88px clamp(18px, 5vw, 48px) 48px;
  background: var(--paper);
}

.admin-shell {
  width: min(980px, 100%);
  margin: 0 auto;
}

.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.admin-top h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 7vw, 64px);
}

.admin-login {
  display: flex;
  gap: 10px;
  align-items: end;
  margin-bottom: 18px;
}

.admin-login label {
  flex: 1;
}

.admin-login button,
.admin-delete,
.admin-logout {
  min-height: 46px;
  padding: 12px 16px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 850;
  cursor: pointer;
}

.admin-login button,
.admin-delete {
  color: var(--deep);
  background: var(--sun);
}

.admin-logout {
  color: #fff;
  background: var(--deep);
}

.admin-delete {
  margin-top: 12px;
}

.is-hidden {
  display: none !important;
}

.contact-panel {
  width: min(980px, 100%);
  margin: 0 auto;
}

.contact-link {
  position: relative;
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  color: var(--deep);
  background:
    linear-gradient(120deg, #ffffff 0%, #eefaf8 22%, #ffe27a 46%, #3fe0b5 66%, #e9f8ff 84%, #ffffff 100%);
  background-size: 260% 260%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(7, 17, 31, 0.08);
  animation: contact-shimmer 8s ease-in-out infinite;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(7, 17, 31, 0.14);
}

.contact-link span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-link strong {
  overflow-wrap: anywhere;
  text-align: right;
}

@keyframes contact-shimmer {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.disabled {
  cursor: default;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 48px) 96px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--deep);
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--sun);
  font-weight: 850;
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  padding: 8px;
  background: rgba(7, 17, 31, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  backdrop-filter: blur(18px);
}

.mobile-cta a {
  flex: 1;
  min-height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  border-radius: 8px;
}

.mobile-cta a:first-child {
  color: var(--deep);
  background: var(--sun);
}

.lightbox {
  width: min(980px, calc(100vw - 24px));
  max-height: calc(100svh - 24px);
  padding: 0;
  overflow: hidden;
  background: #020811;
  border: 0;
  border-radius: 8px;
}

.lightbox::backdrop {
  background: rgba(2, 8, 17, 0.78);
  backdrop-filter: blur(10px);
}

.lightbox-stage {
  display: grid;
  min-height: min(620px, 78svh);
  place-items: center;
}

.lightbox-stage img,
.lightbox-stage video {
  width: 100%;
  max-height: 82svh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  color: var(--deep);
  background: var(--sun);
  border: 0;
  border-radius: 8px;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
}

@media (min-width: 520px) {
  .quick-facts,
  .format-grid,
  .spec-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  .nav {
    display: flex;
  }

  .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    padding-bottom: 36px;
  }

  .quick-facts {
    width: min(760px, 100%);
    margin-top: 4px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quick-facts div {
    padding: 12px;
  }

  .intro-grid,
  .spec-layout {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }

  .media-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .media-tile-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .media-tile {
    min-height: 230px;
  }

  .format-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .contact-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reviews-layout {
    grid-template-columns: 0.86fr 1.14fr;
    align-items: start;
  }

  .contact-link {
    display: grid;
    min-height: 132px;
    align-content: space-between;
  }

  .contact-link strong {
    text-align: left;
  }

  .mobile-cta {
    display: none;
  }

  .footer {
    padding-bottom: 28px;
  }
}

@media (min-width: 1120px) {
  .hero-content {
    width: min(1320px, 100%);
    grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
    column-gap: 42px;
    align-items: end;
  }

  .hero-content > .eyebrow,
  .hero-content > h1,
  .hero-content > .hero-copy,
  .hero-content > .hero-actions {
    grid-column: 1;
  }

  .quick-facts {
    grid-column: 2;
    grid-row: 2 / 5;
    align-self: end;
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 84svh;
  }

  .hero-content {
    padding-top: 78px;
    padding-bottom: 34px;
  }

  h1 {
    font-size: 38px;
    line-height: 0.96;
  }

  .brand small {
    max-width: 178px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-actions {
    flex-direction: column;
  }

  .quick-facts {
    display: none;
  }

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

  .media-tile,
  .media-tile-large {
    min-height: 242px;
  }

  .footer {
    display: grid;
  }

  .admin-login {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .contact-link {
    animation: none;
  }
}
