:root {
  --ink: #151719;
  --muted: #5d6369;
  --paper: #fbfaf7;
  --line: #ded8cf;
  --amber: #f3b340;
  --coral: #e75f4f;
  --cyan: #3db8c9;
  --green: #4f8f69;
  --night: #10151d;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(21, 23, 25, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  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;
}

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

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

.site-header {
  align-items: center;
  background: rgba(251, 250, 247, 0.88);
  border-bottom: 1px solid rgba(222, 216, 207, 0.78);
  backdrop-filter: blur(18px);
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

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

.brand-mark {
  align-items: center;
  aspect-ratio: 1;
  background: var(--ink);
  border-radius: 50%;
  color: var(--amber);
  display: inline-flex;
  flex: 0 0 44px;
  font-size: 1.1rem;
  font-weight: 800;
  justify-content: center;
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand-name {
  font-weight: 800;
  white-space: nowrap;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.78rem;
  white-space: nowrap;
}

.nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 750;
}

.nav a {
  border-bottom: 2px solid transparent;
  padding: 8px 0;
}

.nav a:hover {
  border-color: var(--coral);
}

.hero {
  background: var(--night);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  min-height: min(760px, calc(100vh - 118px));
  overflow: hidden;
  position: relative;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(16, 21, 29, 0.9), rgba(16, 21, 29, 0.46) 46%, rgba(16, 21, 29, 0.15)),
    linear-gradient(0deg, rgba(16, 21, 29, 0.55), rgba(16, 21, 29, 0.08) 45%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-art {
  inset: 0;
  position: absolute;
}

.hero-art img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.hero-content {
  align-self: center;
  max-width: 660px;
  padding: clamp(46px, 6vw, 78px) clamp(22px, 5vw, 72px);
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(2.8rem, 5vw, 4.55rem);
  line-height: 0.98;
  margin-bottom: 20px;
  max-width: 720px;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.hero-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 850;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
}

.button.primary {
  background: var(--amber);
  color: var(--ink);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26);
  color: var(--white);
}

.hero-panel {
  align-self: end;
  background: rgba(251, 250, 247, 0.94);
  border-radius: 8px 0 0 0;
  box-shadow: var(--shadow);
  color: var(--ink);
  justify-self: end;
  margin-top: 36vh;
  max-width: 410px;
  padding: 26px;
  position: relative;
  width: min(92%, 410px);
  z-index: 1;
}

.status-dot {
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(79, 143, 105, 0.16);
  display: inline-block;
  height: 10px;
  margin-bottom: 16px;
  width: 10px;
}

.panel-label {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.panel-title {
  font-size: 1.55rem;
  font-weight: 850;
  line-height: 1.08;
  margin-bottom: 22px;
}

dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

dd {
  margin: 0;
}

.section {
  padding: clamp(64px, 10vw, 126px) clamp(20px, 5vw, 72px);
}

.intro {
  align-items: end;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
}

.intro p:last-child,
.sound-copy p,
.service-section p,
.booking-copy p,
.name-lab p,
.about-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.about-section {
  align-items: center;
  background: var(--white);
  display: grid;
  gap: clamp(28px, 5vw, 58px);
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.feature-photo {
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr);
  min-height: 420px;
}

.feature-photo img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.feature-photo div {
  align-self: center;
  padding: clamp(42px, 7vw, 86px) clamp(20px, 5vw, 72px);
}

.feature-photo h2 {
  font-size: clamp(1.8rem, 3.8vw, 3.7rem);
  margin-bottom: 0;
}

.about-photo {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.about-copy {
  max-width: 760px;
}

.section-heading {
  max-width: 760px;
}

.event-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.event-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 230px;
  padding: 24px;
}

.event-card span {
  color: var(--coral);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 42px;
}

.event-card p,
.steps p,
.form-note {
  color: var(--muted);
}

.sound-band {
  background: #183238;
  color: var(--white);
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.sound-copy {
  max-width: 680px;
}

.sound-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.mix-list {
  align-content: center;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mix-list span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-weight: 850;
  min-height: 62px;
  padding: 18px;
}

.cta-strip {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: clamp(28px, 5vw, 46px) clamp(20px, 5vw, 72px);
}

.cta-strip.light {
  background: #f2eee7;
  color: var(--ink);
}

.cta-strip.dark {
  background: #183238;
}

.cta-strip h2 {
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  margin: 0;
}

.cta-strip .section-kicker {
  margin-bottom: 8px;
}

.cta-strip .button {
  flex: 0 0 auto;
}

.service-section {
  align-items: start;
  background: var(--paper);
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.78fr);
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.service-section p {
  max-width: 720px;
}

.photo-strip {
  background: var(--ink);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.photo-strip figure {
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  position: relative;
}

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

.photo-strip figure:last-child img {
  position: relative;
  z-index: 1;
  object-fit: cover;
  object-position: center center;
}

.photo-strip figcaption {
  background: linear-gradient(0deg, rgba(16, 21, 29, 0.82), rgba(16, 21, 29, 0));
  bottom: 0;
  color: var(--white);
  font-weight: 850;
  left: 0;
  padding: 46px 24px 22px;
  position: absolute;
  right: 0;
  z-index: 2;
}

.packages {
  background: #f2eee7;
}

.steps {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.steps article {
  background: var(--paper);
  border-left: 4px solid var(--cyan);
  border-radius: 8px;
  padding: 24px;
}

.steps strong {
  color: var(--coral);
  display: block;
  font-size: 1.35rem;
  margin-bottom: 34px;
}

.name-lab {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.name-signature {
  align-items: center;
  background: var(--ink);
  border-radius: 8px;
  color: var(--white);
  display: grid;
  min-height: 220px;
  padding: clamp(28px, 5vw, 54px);
}

.name-signature span {
  color: var(--amber);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 850;
  line-height: 0.9;
}

.name-signature small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-lines a {
  color: var(--amber);
  font-size: 1.08rem;
  font-weight: 850;
}

.booking {
  background: var(--night);
  color: var(--white);
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.78fr);
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.booking-copy {
  max-width: 680px;
}

.booking-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.booking-form {
  background: var(--paper);
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
}

label {
  color: var(--muted);
  display: grid;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 7px;
}

input,
select,
textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 13px;
  width: 100%;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  outline: 3px solid rgba(61, 184, 201, 0.22);
}

.form-note {
  font-size: 0.9rem;
  margin: 0;
}

.contact-panel {
  background: var(--paper);
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
}

.contact-panel h3 {
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  line-height: 1.05;
  margin-bottom: 0;
}

.contact-panel p:not(.panel-label) {
  color: var(--muted);
  margin: 0;
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.dark-button {
  background: var(--ink);
  box-shadow: none;
  color: var(--white);
}

.footer {
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 72px);
}

.footer p {
  margin: 0;
}

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

@media (max-width: 900px) {
  .hero,
  .intro,
  .feature-photo,
  .about-section,
  .sound-band,
  .service-section,
  .name-lab,
  .booking {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 68vw;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(16, 21, 29, 0.97) 0%, rgba(16, 21, 29, 0.82) 36%, rgba(16, 21, 29, 0.2) 100%);
  }

  .hero-art {
    bottom: auto;
    height: 78vw;
    max-height: 520px;
  }

  .hero-art img {
    object-position: 45% center;
  }

  .hero-content {
    align-self: start;
    padding-top: 34px;
  }

  .hero-panel {
    border-radius: 8px 8px 0 0;
    justify-self: center;
    margin: 0 0 28px;
  }

  .event-grid,
  .steps,
  .photo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: center;
    gap: 14px;
    min-height: 64px;
    padding: 10px 16px;
  }

  .nav {
    gap: 10px;
    margin-left: auto;
    width: auto;
  }

  .nav a {
    font-size: 0.84rem;
    padding: 6px 0;
  }

  .brand-sub {
    display: none;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    flex-basis: 38px;
    font-size: 1rem;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .hero {
    padding-top: 56vw;
  }

  .hero-art {
    align-items: center;
    background: var(--night);
    display: flex;
    height: 62vw;
    max-height: 430px;
  }

  .hero-art img {
    height: auto;
    object-fit: contain;
    width: 100%;
  }

  .hero-content {
    padding: 26px 20px 32px;
  }

  .hero-panel {
    margin-bottom: 22px;
    padding: 22px;
    width: calc(100% - 32px);
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
    line-height: 1;
  }

  .panel-title {
    font-size: 1.36rem;
  }

  .event-grid,
  .steps,
  .mix-list,
  .feature-photo,
  .photo-strip {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-strip,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
