:root {
  --ink: #171319;
  --ink-soft: #211c24;
  --ink-deep: #100d12;
  --paper: #f2ecdf;
  --paper-deep: #e6dcc9;
  --white: #fffdf7;
  --aqua: #45d7cb;
  --aqua-dark: #137f7d;
  --magenta: #d84986;
  --gold: #e2b247;
  --line-light: rgba(255, 255, 255, 0.15);
  --content: 1180px;
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Barlow", sans-serif;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.62;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.65rem 1rem;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1.25rem, 4vw, 4rem);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(10, 7, 11, 0.86), transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  text-decoration: none;
}

.brand-name {
  font-family: "Barlow", sans-serif;
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.4vw, 2rem);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--aqua);
}

.nav-book {
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: min(930px, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-image: url("hero.jpg");
  background-position: center 48%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 50% 37%,
      rgba(15, 9, 18, 0.68) 0%,
      rgba(15, 9, 18, 0.38) 36%,
      rgba(15, 9, 18, 0.12) 66%
    ),
    linear-gradient(
      to bottom,
      rgba(15, 9, 18, 0.22) 0%,
      rgba(15, 9, 18, 0.06) 48%,
      rgba(15, 9, 18, 0.2) 68%,
      rgba(15, 9, 18, 0.88) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(840px, 84vw);
  margin: 0 auto;
  padding: 7.8rem 0 13rem;
  text-align: center;
  transform: translateY(-5%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--magenta);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ff76ae;
}

.hero-logo-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.hero-logo {
  display: block;
  width: min(100%, 430px);
  margin: 0 auto;
  height: auto;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.58));
}

.hero-copy {
  max-width: 610px;
  margin: 1.65rem auto 0;
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.42;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.68rem 1.2rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--magenta);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #b82c6d;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.hero-proof {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 0.5rem 1rem 0.72rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(15, 10, 17, 0.95);
  color: var(--white);
  text-align: center;
  backdrop-filter: blur(8px);
}

.hero-proof-label {
  display: block;
  color: var(--aqua);
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(900px, 100%);
  margin: 0.25rem auto 0;
}

.hero-proof-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1.8rem;
  padding: 0 1rem;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.hero-proof-list span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 4rem);
}

.section-inner {
  width: min(100%, var(--content));
  margin: 0 auto;
}

.narrow {
  width: min(100%, 980px);
}

.intro {
  background:
    radial-gradient(circle at 12% 15%, rgba(69, 215, 203, 0.1), transparent 24rem),
    var(--paper);
}

.intro-grid,
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

h2 {
  margin: 0;
  font-family: "Big Shoulders Display", "Arial Narrow", sans-serif;
  font-size: clamp(2.55rem, 5.15vw, 4.85rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0.005em;
  text-wrap: balance;
}

.intro-copy p,
.story-body p,
.booking-copy {
  margin-top: 0;
  font-size: 1.05rem;
}

.intro-copy p:last-child,
.story-body p:last-child {
  margin-bottom: 0;
}

.feature-photo {
  position: relative;
  height: clamp(340px, 56vw, 720px);
  margin: 0;
  overflow: hidden;
  background: var(--ink-deep);
}

.feature-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.22);
}

.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-photo-one img {
  object-position: center 39%;
}

.feature-photo-two img {
  object-position: center 54%;
}

.section-dark {
  background: var(--ink-soft);
  color: #f4f1eb;
}

.video-section {
  text-align: center;
}

.video-section h2 {
  margin-bottom: 2.25rem;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.36);
}

/* When the video is ready, an iframe can replace .video-placeholder.
   Keep .video-frame on the wrapper and use:
   .video-frame iframe { display:block; width:100%; height:100%; border:0; }
*/
.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}

.video-placeholder-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 7, 11, 0.82), rgba(10, 7, 11, 0.12));
}

.video-placeholder-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.25rem;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.7);
}

.video-placeholder-copy strong {
  font-size: clamp(1.45rem, 3.8vw, 2.8rem);
  font-weight: 900;
  line-height: 1.05;
}

.video-placeholder-copy span:last-child {
  font-size: clamp(0.9rem, 1.7vw, 1.08rem);
  font-weight: 600;
}

.play-mark {
  position: relative;
  width: 66px;
  height: 66px;
  margin-bottom: 0.35rem;
  border: 3px solid var(--aqua);
  border-radius: 50%;
  background: rgba(16, 13, 18, 0.72);
}

.play-mark::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 19px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 19px solid var(--white);
}

.story {
  background:
    linear-gradient(135deg, rgba(226, 178, 71, 0.08), transparent 42%),
    var(--paper);
}

.story-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2.25rem, 7vw, 6.5rem);
  align-items: center;
}

.story-photo {
  position: relative;
  width: min(100%, 500px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink-deep);
  box-shadow: 0 24px 60px rgba(23, 19, 25, 0.2);
}

.story-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.12);
}

.story-photo img {
  width: 100%;
  height: auto;
}

.story-copy h2 {
  margin-bottom: clamp(1.5rem, 3vw, 2.3rem);
}

.story-body {
  max-width: 680px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.8rem;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.member-card {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #1b171e;
}

.member-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.member-card:nth-child(1) img {
  object-position: center 38%;
}

.member-card:nth-child(2) img {
  object-position: center 22%;
}

.member-card:nth-child(3) img {
  object-position: center 38%;
}

.member-copy {
  padding: 1.4rem;
}

.member-copy h3 {
  margin: 0;
  color: var(--paper);
  font-family: "Big Shoulders Display", "Arial Narrow", sans-serif;
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.member-role {
  margin: 0.15rem 0 0;
  color: var(--aqua);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.member-copy p:last-child {
  margin-bottom: 0;
  color: #d8d3db;
  font-size: 0.94rem;
}

.booking {
  position: relative;
  overflow: hidden;
  background: var(--aqua-dark);
  color: var(--white);
}

.booking::before {
  content: "BBR";
  position: absolute;
  right: -0.02em;
  bottom: -0.28em;
  color: rgba(255, 255, 255, 0.055);
  font-family: "Big Shoulders Display", "Arial Narrow", sans-serif;
  font-size: clamp(11rem, 32vw, 30rem);
  line-height: 0.8;
  pointer-events: none;
  transform: rotate(-7deg);
}

.booking .section-inner {
  position: relative;
  z-index: 1;
}

.booking .section-kicker {
  color: #ffe08b;
}

.booking-band-name {
  display: inline-block;
  color: #ffe08b;
  font-family: "Big Shoulders Display", "Arial Narrow", sans-serif;
  font-size: 0.98em;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.contact-card {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.9rem;
  width: 100%;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  background: rgba(15, 61, 61, 0.42);
  backdrop-filter: blur(8px);
}

.button-wide {
  width: 100%;
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  letter-spacing: 0.02em;
  text-transform: none;
}

.booking-email,
.booking-phone {
  color: var(--white);
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  opacity: 0.9;
}

.booking-email:hover,
.booking-email:focus-visible,
.booking-phone:hover,
.booking-phone:focus-visible {
  opacity: 1;
  text-decoration: underline;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem clamp(1.25rem, 4vw, 4rem);
  background: var(--ink-deep);
  color: #cfc8d0;
  font-size: 0.78rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--paper);
  font-weight: 800;
  text-transform: uppercase;
}

.footer-logo {
  display: block;
  width: 70px;
  height: auto;
  opacity: 0.95;
}

@media (min-width: 1000px) {
  .hero-content {
    width: min(840px, 72vw);
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    gap: 1rem;
  }

  .site-nav a:not(.nav-book) {
    display: none;
  }

  .hero {
    min-height: 780px;
    background-position: center 50%;
  }

  .hero-shade {
    background:
      radial-gradient(ellipse at 50% 34%, rgba(15, 9, 18, 0.72), rgba(15, 9, 18, 0.22) 62%),
      linear-gradient(to top, rgba(15, 9, 18, 0.88), transparent 58%);
  }

  .hero-content {
    width: auto;
    margin: 0;
    padding: 8.2rem 1.25rem 12rem;
    transform: translateY(-3%);
  }

  .intro-grid,
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .story-feature {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
    gap: 2rem;
    align-items: start;
  }

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

  .member-card {
    display: grid;
    grid-template-columns: minmax(145px, 0.72fr) minmax(0, 1.28fr);
  }

  .member-card img {
    height: 100%;
    aspect-ratio: auto;
  }
}

@media (max-width: 700px) {
  .story-feature {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .story-photo {
    width: min(100%, 460px);
    margin-inline: auto;
  }

  .hero-proof {
    padding: 0.45rem 0.75rem 0.65rem;
  }

  .hero-proof-list {
    grid-template-columns: 1fr;
    width: min(420px, 100%);
  }

  .hero-proof-list span {
    min-height: auto;
    padding: 0.4rem 0.5rem;
    font-size: 0.57rem;
  }

  .hero-proof-list span + span {
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    border-left: 0;
  }

  .hero-content {
    padding-bottom: 14rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 1rem;
  }

  .brand-name {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
  }

  .hero-logo {
    width: min(100%, 330px);
  }

  .nav-book {
    padding: 0.38rem 0.65rem;
    font-size: 0.7rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.55rem);
  }

  .hero-copy {
    font-size: 1.06rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .feature-photo {
    height: 310px;
  }

  .member-card {
    display: block;
  }

  .member-card img {
    aspect-ratio: 4 / 3;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
