@import url("https://use.typekit.net/fep2zsu.css");
@import url("https://use.typekit.net/ste4qbf.css");

@font-face {
  font-family: "Dharma Gothic";
  src: url("../fonts/Dharma Gothic M W03 Bold Italic.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Gotham Medium";
  src: url("../fonts/GothamMediumItalic.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Gotham Book";
  src: url("../fonts/GothamBook.ttf") format("truetype");
  font-display: swap;
}

:root {
  --brown: #501913;
  --orange: #ec620a;
  --cream: #f2ddc8;
  --lime: #a5de31;
  --dark: #140705;
  --content: 1100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--brown);
  color: white;
  font-family: "neulis-sans", "Gotham Book", Arial, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; border: 0; background: none; cursor: pointer; }
iframe { width: 100%; border: 0; border-radius: 18px; }
.container { width: min(var(--content), calc(100% - 40px)); margin: 0 auto; }
.onepage-layout section { width: 100%; position: relative; }
.section-serif-title {
  font-family: "miller-banner", serif;
  font-weight: 800;
  font-style: normal;
  font-size: clamp(60px, 7vw, 120px);
  line-height: .95;
  text-align: center;
  color: var(--cream);
}
.section-serif-accent { color: var(--orange); }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; }
.top-nav {
  height: 80px;
  background: rgba(79,24,18,.48);
  backdrop-filter: blur(5px);
}
.top-nav-inner {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  height: 100%;
  display: grid;
  grid-template-columns: 120px 1fr 180px;
  align-items: center;
}
.menu-toggle { position: relative; width: 40px; height: 28px; }
.menu-toggle span {
  position: absolute; left: 0; right: 0; height: 4px; border-radius: 999px; background: var(--orange); transition: .25s;
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 12px; }
.menu-toggle span:nth-child(3) { bottom: 0; }
.nav-logo { justify-self: center; text-align: center; color: var(--cream); font-family: "field-gothic-xwide", sans-serif; font-style: italic; font-weight: 900; font-size: 22px; line-height: .9; text-transform: uppercase; }
.nav-logo img { max-height: 58px; width: auto; }
.top-socials { display: flex; justify-content: flex-end; gap: 12px; }
.top-socials a {
  width: 30px; height: 30px; border-radius: 50%; background: var(--orange); color: var(--brown); display: inline-flex; align-items: center; justify-content: center; font-family: Arial, sans-serif; font-size: 14px; font-weight: 700;
}

.menu-overlay { position: fixed; inset: 0; z-index: 120; background: rgba(0,0,0,.2); opacity: 0; visibility: hidden; transition: .25s; }
.menu-overlay.active { opacity: 1; visibility: visible; }
.menu-overlay-grid { height: 100%; display: grid; grid-template-columns: 1fr 360px; }
.menu-overlay-photo { background-size: cover; background-position: center; filter: saturate(1.1); }
.menu-overlay-panel {
  background: var(--orange);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
}
.menu-overlay-panel a {
  font-family: "miller-banner", serif; font-size: clamp(42px, 4vw, 64px); font-weight: 800; color: var(--brown); line-height: 1;
}
.menu-close {
  position: absolute; top: 18px; left: min(1280px, calc(100% - 40px)); transform: translateX(-100%); color: #fff; font-size: 46px; line-height: 1; z-index: 5;
}

.hero-home {
  min-height: 100svh;
  background-size: cover;
  background-position: center top;
}
.hero-home-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.12), rgba(0,0,0,.18));
}

.agenda-section {
  background: var(--orange);
  padding: 120px 0 70px;
}
.agenda-container { display: flex; flex-direction: column; gap: 32px; }
.agenda-viewport { overflow: hidden; width: 100%; }
.agenda-track { display: flex; width: 100%; transition: transform .55s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.agenda-slide { min-width: 100%; display: flex; flex-direction: column; gap: 3px; }
.agenda-row {
  display: grid; grid-template-columns: 210px 1fr 260px;
  align-items: center; gap: 10px;
  border-top: 1.4px solid rgba(80,25,19,.7);
  padding: 18px 18px 14px;
}
.agenda-slide .agenda-row:last-child { border-bottom: 1.4px solid rgba(80,25,19,.7); }
.agenda-date-ref {
  font-family: "miller-banner", serif; font-weight: 800; color: var(--brown); font-size: clamp(34px, 3vw, 56px);
}
.agenda-place-ref {
  font-family: "miller-banner-ex-compressed", sans-serif; font-weight: 600; font-size: clamp(24px, 2vw, 40px); text-transform: uppercase; color: var(--brown);
}
.agenda-ticket {
  justify-self: end; background: var(--brown); color: var(--cream); width: 260px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  font-family: "miller-banner-ex-compressed", sans-serif; font-size: 30px; letter-spacing: .02em;
}
.agenda-controls {
  display: flex; align-items: center; justify-content: center; gap: 180px; padding-top: 20px;
}
.agenda-nav { color: rgba(80,25,19,.75); font-size: 82px; line-height: .8; }
.agenda-dots { display: flex; gap: 8px; }
.agenda-dot { width: 11px; height: 11px; border: 1.6px solid var(--brown); border-radius: 50%; }
.agenda-dot.active { background: var(--brown); }
.agenda-empty { text-align: center; color: var(--brown); font-family: "field-gothic-condensed", sans-serif; font-size: 28px; padding: 30px 0; }

.release-section {
  min-height: 100svh; background-size: cover; background-position: center; display: flex; align-items: center; isolation: isolate;
}
.release-overlay { position: absolute; inset: 0; background: rgba(19,5,3,.56); z-index: -1; }
.release-container { display: flex; justify-content: flex-end; }
.release-copy { width: min(760px, 92%); padding: 130px 0 80px; }
.release-copy .section-serif-title { text-align: left; margin-bottom: 24px; }
.release-textbox {
  max-width: 640px; color: var(--cream); font-size: 17px; line-height: 1.6; text-align: justify; text-indent: 20px;
  max-height: 360px; overflow: auto; padding-right: 12px;
}

.music-section { background: var(--orange); padding: 110px 0 70px; }
.music-container { display: flex; flex-direction: column; align-items: center; }
.music-card {
  width: min(640px, 100%); min-height: 360px; border-radius: 18px; overflow: hidden; background: #9d0000; box-shadow: 0 14px 34px rgba(80,25,19,.28); margin-top: 28px;
}
.music-card iframe { min-height: 360px; }
.music-placeholder, .music-open-link {
  min-height: 360px; display: flex; align-items: center; justify-content: center; color: var(--cream); font-family: "field-gothic-xwide", sans-serif; font-size: 28px; text-align: center; padding: 20px;
}
.music-platform-bar { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 28px; flex-wrap: wrap; }
.music-platform-bar > span { font-family: var(--font-display); font-size: clamp(28px, 2.2vw, 44px); color: var(--cream); line-height: .92; text-transform: none; letter-spacing: -0.02em; }
.music-platform-icons { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; align-items: center; }
.music-platform-icons a { display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 50%; transition: transform .2s ease, opacity .2s ease; }
.music-platform-icons a:hover { transform: translateY(-2px) scale(1.04); opacity: .92; }
.music-platform-icons a img { width: 58px; height: 58px; object-fit: contain; display: block; }

.video-section {
  min-height: 100svh; background-size: cover; background-position: center; display: flex; align-items: center; isolation: isolate;
}
.video-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.62); z-index: -1; }
.video-container { display: flex; flex-direction: column; align-items: center; padding: 110px 0 80px; }
.video-feature-card { width: min(980px, 100%); margin-top: 28px; }
.video-inline-card {
  border: 2px solid rgba(255,255,255,.86);
  border-radius: 32px;
  padding: 28px;
  background: rgba(2,2,8,.28);
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
}
.video-player-shell {
  background: rgba(0,0,0,.7);
  border-radius: 24px;
  overflow: hidden;
}
.video-player-topbar {
  padding: 16px 20px 14px;
  background: linear-gradient(to bottom, rgba(0,0,0,.82), rgba(0,0,0,.55));
}
.video-player-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.video-player-meta strong {
  display: block;
  font-family: "neulis-sans", "Gotham Medium", Arial, sans-serif;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
}
.video-player-meta span {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  opacity: .88;
}
.video-player-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 44px;
}
.video-player-avatar--fallback {
  background: rgba(255,255,255,.18);
}
.video-frame-wrap {
  position: relative;
  display: block;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.video-frame-wrap img,
.video-frame-wrap iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
  border-radius: 0;
}
.video-frame-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.08) 40%, rgba(0,0,0,.1));
  pointer-events: none;
}
.video-player-shell.is-playing .video-frame-wrap::after,
.video-player-shell.is-playing .video-card-bottomline,
.video-player-shell.is-playing .video-play-btn {
  display: none;
}
.video-play-btn {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 104px; height: 74px; border-radius: 20px; background: rgba(255, 20, 20, .95); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 50px; z-index: 2;
  box-shadow: 0 12px 25px rgba(0,0,0,.32);
}
.video-card-bottomline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px 20px;
  color: #fff;
}
.video-card-icons {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 28px;
  line-height: 1;
}
.video-inline-link {
  font-family: "neulis-sans", Arial, sans-serif;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 700;
  text-shadow: 0 3px 8px rgba(0,0,0,.3);
}
.video-placeholder { min-height: 420px; display: flex; align-items: center; justify-content: center; background: rgba(236,98,10,.18); border: 1px solid rgba(255,255,255,.12); color: var(--cream); }
.video-cta {
  margin-top: 18px; background: var(--orange); color: var(--brown); padding: 16px 26px; font-family: "miller-banner", serif; font-size: clamp(28px, 2vw, 38px); font-weight: 800; text-align: center;
}

.contact-section { background: var(--orange); padding-top: 90px; }
.contact-container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; min-height: calc(100svh - 40px);
}
.contact-left { padding-bottom: 40px; }
.contact-item { margin-bottom: 22px; color: var(--brown); }
.contact-item h3 {
  font-family: "miller-banner", serif; font-size: clamp(42px, 4vw, 68px); line-height: .95; color: var(--cream); margin-bottom: 6px;
}
.contact-item p { font-size: 18px; line-height: 1.4; }
.contact-center {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 12px; min-height: 100%;
}
.contact-brandmark { color: var(--cream); font-family: "field-gothic-xwide", sans-serif; font-size: clamp(34px, 4vw, 62px); font-style: italic; font-weight: 900; line-height: .9; text-transform: uppercase; }
.contact-brandmark img { max-width: 340px; max-height: 160px; object-fit: contain; }
.contact-subbrand { color: var(--brown); font-family: "field-gothic-condensed", sans-serif; font-size: 28px; text-transform: uppercase; }
.press-kit {
  margin-top: 18px; background: var(--brown); color: var(--orange); min-height: 56px; padding: 10px 18px; border-radius: 10px; display: inline-flex; align-items: center; gap: 12px; font-family: "miller-banner", serif; font-size: clamp(22px, 2vw, 34px);
}
.press-icon { width: 30px; height: 30px; border-radius: 6px; border: 2px solid var(--cream); color: var(--cream); display: inline-flex; align-items: center; justify-content: center; font-size: 18px; }
.contact-footer { background: var(--brown); height: 40px; display: flex; align-items: center; justify-content: center; gap: 40px; color: var(--cream); }
.contact-footer span { font-family: "field-gothic-condensed", sans-serif; font-size: 18px; text-transform: uppercase; }

@media (max-width: 1100px) {
  .agenda-controls { gap: 90px; }
  .contact-container { grid-template-columns: 1fr; }
  .contact-center { padding-bottom: 40px; }
}

@media (max-width: 820px) {
  .top-nav-inner { grid-template-columns: 70px 1fr 120px; }
  .top-socials { gap: 8px; }
  .top-socials a { width: 26px; height: 26px; font-size: 12px; }
  .nav-logo { font-size: 16px; }
  .menu-overlay-grid { grid-template-columns: 1fr; }
  .menu-overlay-photo { display: none; }
  .menu-overlay-panel { width: 100%; }
  .menu-close { left: 24px; transform: none; }

  .agenda-row { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 8px; }
  .agenda-ticket { justify-self: center; width: min(260px, 100%); }
  .agenda-controls { gap: 40px; }

  .release-copy { width: 100%; padding-top: 120px; }
  .release-copy .section-serif-title { text-align: center; }
  .release-textbox { max-width: 100%; font-size: 15px; }

  .music-card iframe, .music-card, .music-placeholder, .music-open-link { min-height: 280px; }
  .music-platform-bar { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 28px; flex-wrap: wrap; }
  .music-platform-bar > span { font-family: var(--font-display); font-size: clamp(28px, 2.2vw, 44px); color: var(--cream); line-height: .92; text-transform: none; letter-spacing: -0.02em; }

  .video-inline-card { padding: 16px; border-radius: 22px; }
  .video-play-btn { width: 88px; height: 64px; font-size: 38px; }
  .video-card-bottomline { padding: 12px 14px 14px; }
  .video-card-icons { font-size: 22px; gap: 12px; }
  .video-inline-link { font-size: 16px; }
  .video-cta { font-size: 22px; }

  .contact-section { padding-top: 70px; }
  .contact-item h3 { font-size: 42px; }
  .contact-item p { font-size: 16px; }
}

.contact-footer{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    padding:18px 20px;
    text-align:center;
    flex-wrap:wrap;
}

.contact-footer-text{
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:14px;
    line-height:1.2;
    white-space:nowrap;
}

.contact-footer-logo{
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-footer-logo img{
    display:block;
    width:42px;
    height:auto;
    object-fit:contain;
}
