/* Sips & Sounds Lounge — Coming Soon
   Brand: Navy #114884 · Gold #F5BF29 */

:root {
  --navy: #114884;
  --navy-deep: #0a2b50;
  --navy-bg: #0d3766;
  --navy-card: #14497f;
  --gold: #f5bf29;
  --gold-soft: #ffd769;
  --cream: #f7f4ec;
  --muted: rgba(247, 244, 236, 0.62);
  --border: rgb(148 148 148 / 22%);
  --input-border: rgb(148 148 148 / 22%);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Karla", "Helvetica Neue", Arial, sans-serif;
  --gradient-gold: linear-gradient(100deg, var(--gold-soft), var(--gold));
  --gradient-hero: linear-gradient(180deg,
      rgba(10, 43, 80, 0.6) 0%,
      rgba(10, 43, 80, 0.84) 55%,
      #0d3766 100%);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--navy-bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 300;
  margin: 0;
  line-height: 1.15;
}

p {
  margin: 0;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rule-gold {
  height: 1px;
  width: 10rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section {
  padding: 6rem 1.5rem;
}

.section--alt {
  background: var(--navy-deep);
}

.section__head {
  text-align: center;
}

.section__head h2 {
  margin-top: 1rem;
  font-size: clamp(2.025rem, 4vw, 3.125rem);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 1.5rem;
  text-align: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6rem 0 2.5rem;
}

.hero__logo {
  width: min(28rem, 80vw);
  height: auto;
}

.hero__eyebrow {
  margin-top: 2rem;
}

.hero__tagline {
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3.2vw, 2.125rem);
  line-height: 1.3;
}

.hero__rule {
  margin-top: 2.5rem;
}

.hero__note {
  margin-top: 2rem;
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 2.4vw, 1.5rem);
  letter-spacing: 0.22em;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero__scroll span:first-child {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
  left: 0.3em;
  position: relative;
}

.hero__scroll-line {
  height: 2.5rem;
  width: 1px;
  background: rgba(245, 191, 41, 0.7);
  animation: pulse 2s ease-in-out infinite;
}

.mouse_scroll {
  position: absolute;
  bottom: 20px;
  width: 50px;
  height: 70px;
  background-color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 42px;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, 0);
  cursor: pointer;
}

.scroll-downs {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mousey {
  width: 0px;
  padding: 10px 10px;
  height: 13px;
  border: 2px solid var(--gold);
  border-radius: 15px;
  opacity: 0.75;
  box-sizing: content-box
}

.scroller {
  width: 3px;
  height: 10px;
  border-radius: 20%;
  background-color: var(--gold);
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15, .41, .69, .94);
  animation-iteration-count: infinite;
  margin-left: -1.1px;
  margin-top: -2px;
}

@keyframes scroll {
  0% {
    opacity: 0;
  }

  10% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}


.scroll-to {
  --border-color: hsla(0, 0%, 100%, 0.85);
  --background-color: transparent;
  --color: hsla(0, 0%, 100%, 0.85);
  position: absolute;
  right: 70px;
  bottom: 70px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  transition: all .25s ease-in-out;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--background-color);
  color: var(--color);
  font-size: 17px
}

.scroll-to:after,
.scroll-to:before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  -webkit-animation-name: expand-blur;
  animation-name: expand-blur;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  border-radius: 50%;
  border: 1px solid #fff
}

.scroll-to:after {
  -webkit-animation-delay: 2s;
  animation-delay: 2s
}

@-webkit-keyframes expand-blur {
  0% {
    width: 50px;
    height: 50px;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }

  100% {
    width: 150px;
    height: 150px;
    opacity: 0;
    -webkit-filter: blur(1px);
    filter: blur(1px);
  }
}

@keyframes expand-blur {
  0% {
    width: 50px;
    height: 50px;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0)
  }

  to {
    width: 150px;
    height: 150px;
    opacity: 0;
    -webkit-filter: blur(1px);
    filter: blur(1px)
  }
}

/* ---------- mission ---------- */

#mission {
    padding: 2rem 0;
}


.mission {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  line-height: 1.65;
  color: rgba(247, 244, 236, 0.92);
  position: relative;
  /* display: flex; */
  /* align-items: center; */
}

.mission:before {
  content: '“';
  font-size: 200px;
  line-height: 1;
  position: relative;
  left: -75px;
  top: 0;
  font-weight: bold;
  font-family: 'Karla';
  opacity: 0.1;
  width: 120px;
  display: block;
  height: 120px;
  text-align: center;
}

.mission:after {
  content: '”';
  font-size: 200px;
  line-height: 1;
  position: relative;
  right: 0;
  bottom: 0;
  font-weight: bold;
  font-family: 'Karla';
  opacity: 0.1;
  width: 120px;
  display: block;
  height: 120px;
  margin: 0 0 0 auto;
}

/* ---------- pillars ---------- */
.wrap-lg {
  max-width: 64rem;
  margin: 0 auto;
}

.wrap-md {
  max-width: 48rem;
  margin: 0 auto;
}

.wrap-sm {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.pillars {
  margin-top: 4rem;
  display: grid;
  gap: 30px;
}

.pillar img {
  width: 75px;
  margin: 0 auto;
  height: 75px;
  object-fit: contain;
}

@media (min-width: 640px) {
  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar {
  background: rgb(10 43 80);
  padding: 3rem 2rem;
  text-align: center;
}

.pillar__numeral {
  font-family: var(--font-display);
  font-size: 1.9rem;
}

.pillar h3 {
  margin-top: 1.5rem;
  font-size: 1.625rem;
  letter-spacing: 0.03em;
}

.pillar p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* ---------- calendar ---------- */
.setlist {
  list-style: none;
  margin: 3.5rem 0 0;
  padding: 0;
}

.setlist li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.setlist__night img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}


.setlist li:first-child {
  border-top: 1px solid rgba(245, 191, 41, 0.2);
}

@media (max-width: 767px) {
  .setlist__night {
    flex-direction: column;
  }

  .setlist__note {
    text-align: center;
  }

  .scroll-to {
	 
   	bottom: 0;
        left: 0;
        right: 0;
        transform: unset;
        position: relative;
                margin: 0 auto 5rem auto;
  }

  .hero__inner {
    padding: 6rem 0 60px;
  }
}

@media (min-width: 640px) {
  .setlist li {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.setlist__night {
  font-family: var(--font-display);
  font-size: 1.625rem;
  display: flex;
  gap: 15px;
  align-items: center;
}

.setlist__note {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}

/* ---------- signup ---------- */
.signup__note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.signup__form {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .signup__form {
    flex-direction: row;
  }
}

.signup__form input {
  flex: 1;
  border: 1px solid var(--border);
  background: transparent;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s ease;
}

.signup__form input::placeholder {
  color: rgba(247, 244, 236, 0.45);
}

.signup__form input:focus {
  border-color: var(--gold);
}

/* .signup__form button {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #12345c;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.signup__form button:hover {
  background: transparent;
  color: var(--gold);
} */
.signup__form input[type="submit"] {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #12345c;
  padding: 15px 20px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.signup__form input[type="submit"]:hover {
  background: transparent;
  color: var(--gold);
}

.signup-form-wrap p {
  display: flex;
  gap: 0.75rem;
}

.signup__success {
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
}

.signup__form .wpcf7-spinner {
  position: absolute;
  right: 0;
  top: 12px;
  background-color: #fff;
}

.signup__form .wpcf7-not-valid-tip {
  color: #f5bf29;
  position: absolute;
}

.signup__form .wpcf7-spinner::before {
  background-color: #0a2b50;
}

.signup__form {
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
}

.is-hidden {
  display: none;
}

/* ---------- footer ---------- */
.footer {
  background: var(--navy-deep);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.footer p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
}

@media (min-width: 640px) {
  .section {
    padding: 8rem 1.5rem;
  }
}

@media (max-width:991px) {

  .mission:after {
    font-size: 150px;
    bottom: -15px;
    /* right: 150px; */
  }

  .mission:before {
    font-size: 150px;
    /* top: -100px; */
    /* position: absolute; */
    line-height: normal;
    /* height: 40px; */
    /* display: inline-block; */
  }

  .mission {
    max-width: 550px;
  }

  .mission:before {
    left: -37px;
  }

  .mission:after {
    /* right: 15px; */
    /* bottom: -145px; */
  }

}

@media (max-width: 767px) {
  .signup__form .wpcf7-spinner {
    top: 12px;
    margin: 0 10px;
  }

  .signup-form-wrap p {
    flex-direction: column;
  }

  .signup__form input {
    width: 100%;
  }

  .signup-form-wrap {
    position: relative;
  }

  .mission {
    max-width: 350px;
  }

}