@charset "UTF-8";
/* CSS Document */
/* FG */
/* LR 1.1.1 */



    :root {
      --edge-offset: 40px;
      --text-color: #fff;
      --bg: #111;
      --panel: #f68b1f;
      --accent: #f68b1f;
      --secondary: #000959;
      --border: #fff;
      --shadow: 0;
      --font-main: 'NoeStandard-Regular', sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      background: #111;
    }

    body {
      margin: 0;
      font-family: var(--font-main);
      color: var(--text-color);
      background: #111;
      overflow-x: hidden;
      position: relative;
    }

    a {
      color: #fff;
      text-decoration: none;
    }

    .background-media {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
      background: #111;
    }

    .background-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      z-index: 0;
      transition: opacity 1.6s ease;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      will-change: opacity;
    }

    .background-slide.active {
      opacity: 1;
    }

    .background-slide.is-top {
      z-index: 2;
    }

    .background-slide.is-bottom {
      z-index: 1;
    }

    .fixed-item {
      position: fixed;
      z-index: 20;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-family: Helvetica, Arial, sans-serif;
      font-size: 12px;
      line-height: 1;
      color: #fff;
    }

    .top-center-link {
      top: var(--edge-offset);
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
    }

    .left-middle-vertical,
    .right-bottom-vertical,
    .right-top-vertical {
      writing-mode: vertical-rl;
      text-orientation: mixed;
      white-space: nowrap;
    }

    .left-middle-vertical {
      left: var(--edge-offset);
      top: 50%;
      transform: translateY(-50%) rotate(180deg);
      text-align: center;
    }

    .right-bottom-vertical {
      right: var(--edge-offset);
      bottom: var(--edge-offset);
      transform: rotate(180deg);
      text-align: left;
    }

    .right-top-vertical {
      right: var(--edge-offset);
      top: var(--edge-offset);
      transform: rotate(180deg);
      text-align: right;
    }

    .logo-wrap {
      position: fixed;
      left: var(--edge-offset);
      bottom: var(--edge-offset);
      z-index: 20;
      width: 88px;
      height: 88px;
      display: grid;
      place-items: center;
      overflow: hidden;
    }

    .logo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .intro-stage {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
    }

    .hero {
      min-height: 100vh;
      display: grid;
      place-items: center;
      padding: 120px clamp(24px, 8vw, 120px);
    }

    .hero-inner {
      width: min(980px, 100%);
      text-align: center;
      opacity: 0;
      animation: fadeInHero 2.2s cubic-bezier(0.22, 1, 0.36, 1) 2.5s forwards;
      padding: 0 24px;
    }

    .eyebrow {
      font-size: 12px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      margin-bottom: 24px;
      opacity: 0.7;
    }

    h1 {
      margin: 0;
      font-size: clamp(3rem, 8vw, 7rem);
      line-height: 0.95;
      letter-spacing: -0.04em;
    }

    .hero-copy {
      width: min(630px, 100%);
      margin: 28px auto 0;
      font-size: clamp(16px, 1.7vw, 1.2rem);
      line-height: 1.4;
      opacity: 1;
    }


    .info-copy {
      font-size: clamp(16px, 1.7vw, 1.2rem);
      line-height: 1.4;
      opacity: 1;
    }



    .scroll-stack {
      padding: 0 0 14vh;
      position: relative;
      z-index: 1;
    }

    .accordion-section {
      width: min(1100px, calc(100% - 48px));
      margin: -40px auto 18vh;
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 1.1s ease, transform 1.1s ease;
      transition-delay: 2s;
      min-height: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      scroll-margin-top: 40px;
      padding: 0 24px;
    }

    .accordion-section.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    .accordion-section.centered-view,
    .accordion-section.user-interacted {
      justify-content: flex-start;
    }

    .accordion-item {
      border: 0;
    }

    .accordion-trigger {
      width: 100%;
      border: 0;
      border-bottom: 1px solid var(--border);
      background: transparent;
      padding: clamp(12px, 1.8vw, 18px) 0;
      text-align: left;
      cursor: pointer;
      font: inherit;
      color: inherit;
      display: block;
      scroll-margin-top: 40px;
    }

    .accordion-item:first-child .accordion-trigger {
      border-top: 1px solid var(--border);
    }

    .accordion-title {
      margin: 0;
      font-size: clamp(2.4rem, 5vw, 5.2rem);
      line-height: 0.95;
      letter-spacing: -0.04em;
      font-weight: 400;
    }

    .accordion-panel {
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      height: 0;
      overflow: hidden;
      background: var(--accent);
      transition: height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .accordion-panel-inner,
    .accordion-panel-inner_lineup {
      width: min(1100px, calc(100% - 48px));
      margin: 0 auto;
      padding: clamp(28px, 5vw, 56px) 25px;
      overflow: visible;
    }

    .accordion-panel-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(20px, 4vw, 56px);
      align-items: start;
    }

    .accordion-panel-grid.single-column {
      grid-template-columns: 1fr;
    }

    .accordion-copy {
      margin: 0;
      font-size: 1rem;
      line-height: 1.8;
      max-width: 56ch;
      opacity: 0.82;
    }

    .accordion-meta {
      font-size: 12px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      opacity: 0.68;
      margin-bottom: 18px;
    }

    .accordion-visual {
      min-height: 220px;
      border-radius: 18px;
      border: 1px solid rgba(17, 17, 17, 0.12);
      background: rgba(255, 255, 255, 0.36);
    }

     .feature-image-wrap {
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .feature-image-stage {
      position: relative;
      width: min(62vh, 720px);
      max-width: 50vw;
      aspect-ratio: 1 / 1;
      margin: 0 auto;
    }

    .feature-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      background: rgba(255, 255, 255, 0.5);
      border: 1px solid rgba(17, 17, 17, 0.12);
    }

    .feature-vertical-label {
      position: absolute;
      left: -20px;
      bottom: 0px;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      transform: rotate(180deg);	
      white-space: nowrap;
      z-index: 2;
      background: transparent;
    }

	  
    .feature-overlay-copy {
      position: absolute;
      top: 50%;
      right: -200px;
      transform: translateY(-50%);
      width: min(400px, 40vw);
      text-align: center;
      background: transparent;
      z-index: 2;
    }

    .feature-overlay-copy p {
      margin: 0;
      line-height: 1;
    }

    .feature-bottom-copy {
      position: absolute;
      right: -200px;
      bottom: -18px;
      width: min(400px, 40vw);
      text-align: center;
	font-family: Arial, sans-serif;
      z-index: 2;margin-top: -3px;
    }

    .feature-bottom-copy-line {
      display: block;
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      line-height: 1.4;
    }




 @media (max-width: 800px) {

   .feature-image-wrap {
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .feature-image-stage {
      position: relative;
      width: min(62vh, 720px);
      max-width: 70vw;
      aspect-ratio: 1 / 1;
      margin: 0 auto;
    }

    .feature-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      background: rgba(255, 255, 255, 0.5);
      border: 1px solid rgba(17, 17, 17, 0.12);
    }

    .feature-vertical-label {
      position: absolute;
      left: -20px;
      bottom: 0px;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      transform: rotate(180deg);	
      white-space: nowrap;
      z-index: 2;
      background: transparent;
    }

	  
    .feature-overlay-copy {
      position: absolute;
      top: 95%;
      left: 75px;
      right: 50px;
      width: min(400px, 40vw);
      text-align: center;
      background: transparent;
      z-index: 2; padding-bottom: 40px;
    }

    .feature-overlay-copy p {
      margin: 0;
      line-height: 1;
    }

    .feature-bottom-copy {
      text-align: center;
	font-family: Arial, sans-serif;
      z-index: 2;margin-bottom: 40px; padding: 20px; margin-right: 20px;
    }

    .feature-bottom-copy-line {
      display: block;
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      line-height: 1.4;
    }

}






    .form-panel {
      min-height: 80vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      width: min(1100px, 100%);
      margin: 0 auto;
      gap: clamp(28px, 4vw, 44px);
      padding-top: 0;
    }

    .form-intro,
    .form-intro-top,
    .form-intro-bottom {
      max-width: 72ch;
      width: 100%;
      margin: 0 auto;
      text-align: center;
      font-size: clamp(1rem, 1.8vw, 1.2rem);
      line-height: 1.4;
      opacity: 1;	
		
    }

    .form-fields {
      display: flex;
      flex-direction: column;
      gap: 22px;
      width: 100%;
      align-items: stretch;
      justify-content: center;
    }

    .form-input {
      width: 100%;
      border: 0;
      border-bottom: 1px solid var(--border);
      background: transparent;
      padding: 0 0 14px;
      font: inherit;
      font-size: clamp(2.4rem, 5vw, 5.2rem);
      line-height: 0.95;
      letter-spacing: -0.04em;
      color: inherit;
      outline: none;
      border-radius: 0;
      appearance: none;
      text-align: center;
    }

    .form-input::placeholder {
      color: inherit;
      opacity: 1;
    }

    .form-input:focus {
      border-bottom-color: rgba(17, 17, 17, 0.5);
    }

    .form-fields .form-input:first-child {
      margin-top: -10px;
    }

    .schedule-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(220px, 1fr));
      justify-content: space-between;
      column-gap: clamp(24px, 3vw, 48px);
      row-gap: 0;
      align-items: start;
    }

    .schedule-column {
      width: 100%;
      text-align: left;
    }

    .schedule-column.upper {
      padding-top: 0;
    }

    .schedule-column.lower {
      padding-top: clamp(180px, 16vw, 260px);
    }

    .schedule-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .schedule-entry {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .schedule-day {
      margin: 0;
      font-size: clamp(1.35rem, 2vw, 2rem);
      line-height: 0.95;
      font-weight: 700; text-transform: uppercase;
    }

    .schedule-name {
      margin: 0;
      font-size: clamp(1.4rem, 2.1vw, 2.1rem);
      line-height: 0.95;
      font-weight: 700;
      text-transform: uppercase; opacity: 0.7;
    }

    .schedule-genre {
      margin: 0;
      font-size: clamp(1rem, 1.5vw, 1.4rem);
      line-height: 1.05;
      font-style: italic;
      opacity: 0.62;
    }

    .three-col-layout {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(24px, 4vw, 48px);
      align-items: start;
      min-height: 80vh;
    }

    .three-col {
      display: flex;
      flex-direction: column;
      gap: 8px;
      text-align: left;
    }

    .three-col p {
      margin: 0;
      font-size: clamp(1.1rem, 1.6vw, 1.6rem);
      line-height: 1.2;
    }

    .site-footer {
      width: 100%;
      padding: 0;
    }

    .footer-inner {
      width: min(1100px, calc(100% - 48px));
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 40px;
      padding: 0 25px;
      margin-bottom: -75px;
    }

    .footer-icons {
      display: flex;
      align-items: center;
    }

    .footer-icons img {
      height: 24px;
      width: auto;
      margin-right: 20px;
      opacity: 0.8;
    }

    .footer-links {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: Helvetica, Arial, sans-serif;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
    }

    .footer-links-left {
      display: flex;
      gap: 28px;
    }

    .footer-links a {
      opacity: 0.8;
    }

    @keyframes fadeInHero {
      to {
        opacity: 1;
      }
    }

    .menu-drink { width: 60%; }
    .menu-food { width: 40%; margin-left: 60%; margin-top: -5px; }
		.menus_align	{text-align: left;}	

		.m		{visibility: hidden; display: none;}
		.d		{visibility: visible; display: block;}


    @media (max-width: 1000px) {
      .menu-drink { width: 80%; margin: auto; }
      .menu-food { width: 80%; margin: auto; margin-top: 40px; }
		.menus_align	{text-align: center;}	
		
		.m		{visibility: visible; display: block;}
		.d		{visibility: hidden; display: none;}
		
    }

    @media (max-width: 1325px) {
      .scroll-stack {
        margin-top: 10px;
      }

      .footer-inner {
        max-width: 600px;
        align-items: center;
        text-align: center;
      }

      .footer-icons {
        flex-direction: column;
        align-items: center;
      }

      .footer-icons img {
        margin-right: 0;
        margin-bottom: 12px;
      }

      .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
      }

      .footer-links-left {
        flex-direction: column;
        align-items: center;
        gap: 15px;
      }

      .footer-links-right {
        align-items: center;
      }
    }

    @media (max-width: 820px) {
      :root {
        --edge-offset: 22px;
      }

      .fixed-item {
      letter-spacing: 3px;;
      text-transform: uppercase;
	  font-family: Helvetica, Arial, sans-serif;
      font-size: 11px;
      }

      .logo-wrap {
        width: 68px;
        height: 68px;
      }

      .panel-grid,
      .accordion-panel-grid,
      .schedule-grid {
        grid-template-columns: 1fr;
      }

      .panel-side,
      .accordion-visual {
        min-height: 160px;
      }

      .schedule-grid {
        justify-content: stretch;
        gap: 32px;
      }

      .form-panel {
        min-height: 70vh;
      }

      .form-input {
        font-size: clamp(2rem, 8vw, 3.4rem);
      }

		
		
		

/* --- Email signup ----------------------------------------------------------- */


#mce-EMAIL			{font-size: clamp(2rem, 8vw, 3.4rem) }

#mc-embedded-subscribe					{color: #fff; background:#fff;text-decoration: none; margin: auto; font-family: Helvetica, Arial, sans-serif; text-transform: uppercase; font-size: 1px; font-weight: 400; letter-spacing: 2px; line-height: 1px; cursor: pointer; float: none; clear: both;width: 100%; opacity: 0.01;}

#mc-embedded-subscribe:hover 			{color: #fff; background:#fff;text-decoration: none; margin: auto; font-family: Helvetica, Arial, sans-serif; text-transform: uppercase; font-size: 1px; font-weight: 400; letter-spacing: 2px; line-height: 1px; cursor: pointer; float: none; clear: both;width: 100%; opacity: 0.01;}

input[type=submit] {
    -webkit-appearance: none; /*Safari/Chrome*/
    -moz-appearance: none; /*Firefox*/
    -ms-appearance: none; /*IE*/
    -o-appearance: none; /*Opera*/
    appearance: none;

    -webkit-border-radius: 0;
	border:none; 
	height:0px; width:67px; background:none;
	margin-top:0px;height:24px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #000;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #000;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #000;
}

div:focus, textarea:focus, input:focus{outline: none;}


input,
select,
textarea {
  field-sizing: content;
}
textarea {
  min-width: 10ch;
  max-width: min(40ch, 100%);
}

input,
select,
textarea {
  font-size: inherit;
  border: 1px solid #000;
	background: #000;
	font-family: Helvetica, Arial, sans-serif; font-style: normal;font-size: 15px; line-height: 21px; font-weight: 300; margin: 0; padding: 10px; text-transform: none;
	border-bottom: 1px solid #fff; color:#fff; 
}

  }
}

			
		
		
		
		
		
		
		
		
		
      .schedule-column,
      .schedule-column.upper,
      .schedule-column.lower {
        padding-top: 0;
      }








    @media (max-width: 560px) {
      .top-center-link {
        top: 20px;
      }

      .left-middle-vertical,
      .right-bottom-vertical,
      .right-top-vertical {
        opacity: 0.85;
      }

      .hero {
        padding-top: 150px;
      }

      .panel {
        width: min(100% - 24px, 100% - 24px);
        margin-bottom: 12vh;
        border-radius: 18px;
      }
    }

    @font-face {
      font-family: 'NoeStandard-Regular';
      src: url('NoeStandard-Regular.eot');
      src:
        url('../fonts/NoeStandard-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NoeStandard-Regular.woff2') format('woff2'),
        url('../fonts/NoeStandard-Regular.woff') format('woff');
      font-weight: normal;
      font-style: normal;
    }