:root {
  --color-bg: #f7f3ee;
  --color-surface: #ffffff;
  --color-ink: #201817;
  --color-muted: #6f6461;
  --color-dark: #11151c;
  --color-dark-soft: #1c222c;
  --color-light: #f8f4ef;
  --color-accent: #b6344a;
  --color-accent-strong: #7d1f31;
  --color-teal: #0e6f68;
  --color-gold: #d5a642;
  --shadow-soft: 0 20px 50px rgba(17, 21, 28, 0.13);
  --shadow-dark: 0 24px 60px rgba(0, 0, 0, 0.34);
  --header-height: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: "Roboto", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

body.is-lightbox-open {
  overflow: hidden;
}

img,
iframe,
audio,
video {
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

section {
  scroll-margin-top: var(--header-height);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 400;
  padding: 0.6rem 0.8rem;
  background: var(--color-surface);
  color: var(--color-dark);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transform: translateY(calc(-100% - 1rem));
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-height);
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
  background: linear-gradient(180deg, rgba(17, 21, 28, 0.96), rgba(17, 21, 28, 0.78) 76%, rgba(17, 21, 28, 0));
  color: white;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo {
  display: block;
  width: clamp(82px, 10vw, 128px);
  height: auto;
}

.menu-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.4rem 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0.7rem;
  bottom: 0.32rem;
  left: 0.7rem;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: white;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.mobile-menu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.mobile-menu-icon span,
.mobile-menu-icon span::before,
.mobile-menu-icon span::after {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.mobile-menu-icon span {
  position: relative;
}

.mobile-menu-icon span::before,
.mobile-menu-icon span::after {
  content: "";
  position: absolute;
  left: 0;
}

.mobile-menu-icon span::before {
  top: -6px;
}

.mobile-menu-icon span::after {
  top: 6px;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  opacity: 0.88;
  transform: translateY(-1px);
}

.small-ico-spotify {
  width: 78px;
  height: auto;
}

.small-ico-insta {
  width: 37px;
  height: 37px;
}

.hero {
  position: relative;
  min-height: clamp(560px, 82vh, 840px);
  overflow: hidden;
  background: var(--color-dark);
}

.section-hero {
  padding: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 21, 28, 0.9), rgba(17, 21, 28, 0.44) 56%, rgba(17, 21, 28, 0.2)),
    linear-gradient(0deg, rgba(17, 21, 28, 0.62), rgba(17, 21, 28, 0) 45%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: inherit;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: calc(var(--header-height) + 2rem) 0 clamp(3.5rem, 8vw, 6rem);
  color: white;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Lobster", cursive;
  font-size: clamp(4.5rem, 14vw, 9.6rem);
  line-height: 0.9;
  font-weight: 400;
}

.hero-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: white;
}

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

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

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.1);
}

.content-section {
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 5vw, 4rem);
}

.section-dark {
  background: var(--color-dark);
  color: var(--color-light);
}

.section-light {
  background: var(--color-bg);
  color: var(--color-ink);
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(1.5rem, 4vw, 2.4rem);
}

.section-heading h2,
.content-section h2 {
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 3.45rem);
  line-height: 1.02;
}

.section-heading p:not(.eyebrow),
.content-section p {
  max-width: 900px;
  margin: 0.75rem 0 0;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.section-dark .section-heading p:not(.eyebrow),
.section-dark .content-section p,
.section-dark p {
  color: rgba(248, 244, 239, 0.76);
}

.content-section h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.25;
}

.video-gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(1rem, 2.2vw, 1.35rem);
}

.video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  min-width: 0;
  overflow: hidden;
  background: #050608;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.video-trigger {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #050608;
  color: white;
  overflow: hidden;
}

.video-trigger img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.video-trigger::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 56%;
  background: linear-gradient(0deg, rgba(5, 6, 8, 0.84), rgba(5, 6, 8, 0));
}

.video-trigger:hover img,
.video-trigger:focus-visible img {
  opacity: 0.92;
  transform: scale(1.035);
}

.play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
}

.play-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--color-accent);
}

.video-provider {
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  z-index: 2;
  padding: 0.38rem 0.58rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-dark);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
}

.video-external {
  position: absolute;
  right: 1rem;
  bottom: 0.9rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.38rem 0.58rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-dark);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.video-external:hover,
.video-external:focus-visible {
  background: white;
}

.video-frame {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: #000;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-close {
  position: absolute;
  right: 0.7rem;
  top: 0.7rem;
  z-index: 5;
  min-height: 36px;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.62);
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
}

.audio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
  gap: 1rem;
}

.audio-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.audio-card audio {
  display: none;
}

.audio-card.is-playing {
  border-color: rgba(213, 166, 66, 0.72);
  background: linear-gradient(135deg, rgba(182, 52, 74, 0.18), rgba(14, 111, 104, 0.14));
}

.audio-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: var(--color-light);
  color: var(--color-accent);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.audio-toggle::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid currentColor;
}

.audio-card.is-playing .audio-toggle::before {
  width: 15px;
  height: 18px;
  margin-left: 0;
  border: 0;
  background: linear-gradient(90deg, currentColor 0 34%, transparent 34% 66%, currentColor 66% 100%);
}

.audio-meta {
  min-width: 0;
}

.audio-meta h3 {
  margin-bottom: 0.65rem;
  color: white;
}

.audio-progress {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  color: rgba(248, 244, 239, 0.72);
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
}

.audio-seek {
  --progress: 0%;
  width: 100%;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  appearance: none;
  background: linear-gradient(90deg, var(--color-gold) 0 var(--progress), rgba(255, 255, 255, 0.18) var(--progress) 100%);
}

.audio-seek::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  border: 2px solid var(--color-dark);
  border-radius: 50%;
  appearance: none;
  background: var(--color-gold);
}

.audio-seek::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 2px solid var(--color-dark);
  border-radius: 50%;
  background: var(--color-gold);
}

.photo-heading {
  margin-top: clamp(3rem, 7vw, 5rem);
}

.photo-gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 1rem;
}

.photo-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: zoom-in;
}

.photo-button:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}

.photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 0 10px 28px rgba(17, 21, 28, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.photo:hover {
  filter: saturate(1.06);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  gap: 1rem;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(17, 21, 28, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-image {
  max-width: min(1100px, 100%);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow-dark);
}

.lightbox-caption {
  max-width: min(900px, 100%);
  margin: 0;
  color: white;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: white;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-close:focus-visible {
  outline: 3px solid white;
  outline-offset: 3px;
}

.bio-copy {
  display: grid;
  gap: 1rem;
  max-width: 980px;
}

.bio-copy h3 {
  margin-top: 1rem;
  color: white;
}

.bio-copy h3:first-child {
  margin-top: 0;
}

.bio-copy p {
  margin: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1rem;
}

.news-grid article,
.contact-panel {
  padding: 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.news-grid p,
.contact-panel p {
  margin: 0.55rem 0 0;
}

.contact-panel {
  max-width: 640px;
  background: var(--color-surface);
  border-color: rgba(17, 21, 28, 0.08);
  box-shadow: var(--shadow-soft);
}

.contact-panel p {
  color: var(--color-muted);
}

.contact-section a {
  color: var(--color-accent-strong);
  font-weight: 700;
}

footer {
  padding: 1.1rem;
  background: #0d1016;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

footer p {
  margin: 0;
}

@media (min-width: 1101px) {
  .mobile-menu-icon {
    display: none;
  }
}

@media (max-width: 1100px) {
  :root {
    --header-height: 84px;
  }

  .site-header {
    min-height: var(--header-height);
    padding-block: 0.55rem;
  }

  .menu-container {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .site-nav {
    order: 2;
  }

  .nav-links {
    position: absolute;
    top: calc(100% - 1px);
    right: 1rem;
    display: none;
    width: min(320px, calc(100vw - 2rem));
    padding: 0.45rem;
    background: rgba(17, 21, 28, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: var(--shadow-dark);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    width: 100%;
    justify-content: flex-start;
    padding-inline: 0.8rem;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    align-items: center;
  }

  .logo {
    width: 74px;
  }

  .social-links {
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .hero-copy {
    width: min(100% - 2rem, 1120px);
    padding-bottom: 3rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 260px;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .play-icon {
    width: 56px;
    height: 56px;
  }

  .audio-card {
    grid-template-columns: 1fr;
  }

  .audio-toggle {
    justify-self: start;
  }

  .photo-gallery-container {
    grid-template-columns: 1fr;
  }
}

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