/* ============================================================
   Kabuki Sound - styles
   Palette + fonts mirror the original Google Sites design.
   ============================================================ */

:root {
  --maroon: #4b0000;
  --maroon-dark: #380000;
  --bg: #f9f9f9;
  --ink: #1c1c1c;
  --light: #f8f8f8;
  --muted: rgba(28, 28, 28, 0.66);
  --hero-black: #050505;
  --border: rgba(0, 0, 0, 0.1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  --radius: 10px;
  --header-h: 68px;
  --maxw: 1160px;

  --font-head: "Lato", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Lexend", "Helvetica Neue", Arial, sans-serif;
  --font-alt: "Roboto", Arial, sans-serif;
  --font-script: "Great Vibes", cursive;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

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

.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--maroon);
}

section {
  padding: 72px 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 14px 30px;
  border-radius: 4px;
  border: 2px solid var(--maroon);
  background: var(--maroon);
  color: var(--light);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background: var(--maroon-dark);
  border-color: var(--maroon-dark);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--maroon);
}

.btn--outline:hover {
  background: var(--maroon);
  color: var(--light);
}

.btn--light {
  background: var(--light);
  color: var(--maroon);
  border-color: var(--light);
}

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

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  z-index: 100;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.transparent {
  background: transparent;
}

.site-header.solid {
  background: var(--hero-black);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.nav {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--light);
  font-size: 1.1rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  display: block;
  color: var(--light);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav__links a:hover {
  color: rgba(248, 248, 248, 0.78);
}

.nav__links a.active {
  font-weight: 700;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 230px;
  background: var(--hero-black);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  box-shadow: var(--shadow);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  padding: 9px 12px;
  font-size: 0.9rem;
  border-radius: 6px;
}

.dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--light);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 6px 10px;
}

/* ---------- Hero (home) ---------- */
.hero {
  min-height: 100vh;
  background: var(--hero-black);
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 40px) 24px 60px;
}

.hero__inner {
  max-width: 760px;
}

.hero__kicker {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  margin: 0 0 18px;
}

.logo-script {
  font-family: var(--font-script);
  font-size: clamp(4rem, 13vw, 8.5rem);
  line-height: 0.9;
  font-weight: 400;
  margin: 0;
}

.logo-sub {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.6em;
  font-size: clamp(1rem, 2.4vw, 1.5rem);
  text-transform: uppercase;
  margin: 6px 0 0 0.6em;
}

.hero__logo {
  width: min(620px, 82vw);
  max-width: 100%;
  margin: 10px auto 0;
  height: auto;
}

.hero__tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-top: 6px;
}

/* ---------- Page banner (inner pages) ---------- */
.page-banner {
  background: var(--maroon);
  color: var(--light);
  text-align: center;
  padding: calc(var(--header-h) + 60px) 24px 60px;
}

.page-banner h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}

.page-banner p {
  margin: 14px auto 0;
  max-width: 640px;
  font-weight: 300;
  font-size: 1.05rem;
}

/* ---------- Feature strip ---------- */
.features {
  background: var(--maroon);
  color: var(--light);
}

.features .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature {
  text-align: center;
}

.feature__icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  display: block;
}

.feature__img {
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 0 auto 16px;
  border-radius: 8px;
}

.feature h3 {
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.feature p {
  font-weight: 300;
  color: rgba(248, 248, 248, 0.9);
  margin: 0;
}

/* ---------- Contact call-out band ---------- */
.contact-band {
  text-align: center;
  background: var(--bg);
}

.contact-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  text-decoration: underline;
  text-underline-offset: 6px;
  color: var(--maroon);
  margin-bottom: 4px;
}

.contact-band .lead {
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.contact-band a.big {
  display: inline-block;
  font-size: 1.15rem;
  color: var(--maroon);
  font-weight: 400;
}

/* ---------- Cards (event solutions / packages) ---------- */
.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.cards--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin: 0 auto;
}

.video-embed {
  max-width: 820px;
  margin: 44px auto 0;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.card__icon {
  font-size: 2rem;
  color: var(--maroon);
  margin-bottom: 12px;
}

.card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--maroon);
}

.card p {
  color: var(--muted);
  flex: 1;
}

.card .btn {
  align-self: flex-start;
  margin-top: 12px;
}

.card__price {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--maroon);
  font-size: 1.05rem;
  margin-top: 4px;
}

.card__price span {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--muted);
  font-size: 0.82rem;
}

/* ---------- Pricing helpers (event pages) ---------- */
.price-range {
  font-size: 1.08rem;
  margin-top: 20px;
}

.price-range strong {
  color: var(--maroon);
}

.factors {
  list-style: none;
  padding: 0;
  max-width: 660px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 30px;
  text-align: left;
}

.factors li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.factors li::before {
  content: "\25B8";
  position: absolute;
  left: 0;
  color: var(--maroon);
}

@media (max-width: 620px) {
  .factors {
    grid-template-columns: 1fr;
  }
}

/* ---------- Equipment grid ---------- */
.equipment {
  background: var(--hero-black);
  color: var(--light);
}

.equipment .section-head h2 {
  color: var(--light);
}

.equip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.equip {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 34px 18px;
  text-align: center;
  transition: background 0.2s ease, transform 0.18s ease;
}

.equip:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}

.equip .equip__icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.equip__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
}

.equip h3 {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

/* ---------- Team (about) ---------- */
.team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.member {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.member__photo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 16px;
  border: 3px solid var(--maroon);
}

.member h3 {
  color: var(--maroon);
  margin-bottom: 2px;
}

.member .role {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 14px;
}

/* ---------- Contact / form ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.contact-info a {
  color: var(--maroon);
}

.contact-info .info-item {
  margin-bottom: 20px;
}

.contact-info .info-item h3 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  margin-bottom: 6px;
}

.field label .req {
  color: var(--maroon);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(75, 0, 0, 0.12);
}

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

/* Honeypot - hidden from humans */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__note {
  margin: 4px 0 16px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.form__status {
  margin-top: 14px;
  font-size: 0.95rem;
  min-height: 1.4em;
}

.form__status.ok {
  color: #1b6e2e;
}

.form__status.err {
  color: #b00020;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--hero-black);
  color: rgba(248, 248, 248, 0.85);
  padding: 50px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-grid h4 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 10px;
}

.footer-grid a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  font-size: 0.85rem;
  color: rgba(248, 248, 248, 0.6);
  text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav__toggle {
    display: block;
  }

  .nav__links {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--hero-black);
    padding: 10px 16px 20px;
    display: none;
    box-shadow: var(--shadow);
  }

  .nav__links.open {
    display: flex;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
    border: none;
    margin: 4px 0 4px 10px;
    display: none;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  .features .container,
  .cards,
  .cards--2,
  .equip-grid,
  .team,
  .footer-grid,
  .contact-layout,
  .form .row {
    grid-template-columns: 1fr;
  }
}
