@font-face {
    font-family: 'Glacial Indifference';
    src: url('GlacialIndifference-Regular.woff2') format('woff2'),
        url('GlacialIndifference-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Glacial Indifference';
    src: url('GlacialIndifference-Bold.woff2') format('woff2'),
        url('GlacialIndifference-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
  --cream: #FFF6EE;
  --cocoa: #12332C;
  --teal: #066A5B;
  --teal-dark: #054F45;
  --coral: #F28D76;
  --coral-dark: #E27A61;
  --coral-tint: #FBE0D8;
  --max-width: 780px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Glacial Indifference', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--cocoa);
  background: var(--cream);
  line-height: 1.6;
  font-size: 1.05rem;
}

h1, h2 {
  font-family: 'Glacial Indifference', 'Poppins', sans-serif;
  font-weight: 600;
  margin: 0;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero,
.signup,
.location {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.hero .wrap,
.signup .wrap,
.location .wrap {
  width: 100%;
}

/* Header */
.site-header {
  padding: 1.5rem 0;
  background: var(--cream);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.header-social-row {
  gap: 0.6rem;
}

.header-social-row .social-pill {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.logobox {
  margin: 1rem auto;
  background: var(--cream);
  border-radius: 20px;
  padding: 1.5rem 1rem;
}

.logo {
  display: inline-flex;
  text-decoration: none;
}

.logo-img {
  height: 34px;
  width: auto;
  display: block;
}

/* Hero */
.hero {
  background: var(--teal);
  color: #fff;
  position: relative;
}

.hero-inner {
  padding: 3rem 1.5rem 4rem;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin: 0 0 0.75rem;
}

.eyebrow-light {
  color: var(--teal);
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-top: 1.1rem;
  margin-bottom: 1.1rem;
}

.hero-sub {
  font-size: 1.15rem;
  max-width: none;
  white-space: nowrap;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,0.92);
}

.button {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.button-primary {
  background: var(--coral);
  color: var(--cocoa);
}

.button-primary:hover {
  transform: translateY(-2px) rotate(-1deg);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Segment divider (like scored segments on an ice cream bar) */
.segment-divider {
  display: block;
  width: 100%;
  height: 28px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.segment-divider rect {
  fill: var(--cream);
}

.segment-flip {
  position: static;
  transform: scaleY(-1);
  margin-bottom: -1px;
}

.segment-flip rect {
  fill: var(--cream);
}

/* Follow section */
.follow {
  padding: 4rem 0 3rem;
  text-align: center;
}

.follow h2 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.section-sub {
  color: rgba(59,42,32,0.7);
  max-width: 40ch;
  margin: 0 auto 2rem;
}

.social-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 2px solid var(--coral);
  color: var(--cocoa);
  text-decoration: none;
  font-weight: 500;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  transition: background 0.15s ease, transform 0.15s ease;
}

.social-pill:hover {
  background: var(--coral-tint);
  transform: translateY(-2px);
}

.social-pill .icon {
  width: 18px;
  height: 18px;
}

/* Location */
.location {
  padding: 4rem 0;
  text-align: center;
  background: var(--teal);
  color: #fff;
}

.location .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.location h2 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.location .button {
  margin-top: 0.5rem;
}

.location .section-sub {
  color: rgba(255,255,255,0.85);
}

/* Signup */
.signup {
  background: var(--coral);
  position: relative;
  padding: 4rem 0;
}

.ticket {
  background: var(--cream);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

.ticket h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.signup-success {
  animation: fade-in 0.35s ease;
  text-align: center;
}
 
@keyframes fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.signup-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

.signup-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.signup-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  padding: 0.8rem 1rem;
  border: 2px solid var(--coral);
  border-radius: 999px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: var(--cocoa);
}

.signup-form input[type="email"]:focus {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.signup-form button {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.signup-form button:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  padding: 1.75rem 0;
  text-align: center;
  background: var(--cream);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .button-primary:hover,
  .social-pill:hover,
  .signup-form button:hover {
    transform: none;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero-inner {
    padding: 2.5rem 1.25rem 3rem;
  }
  .ticket {
    padding: 2rem 1.25rem;
  }
  .signup-form {
    flex-direction: column;
    align-items: stretch;
  }
  .signup-form input[type="email"] {
    max-width: none;
  }

.signup-error {
  color: #B3261E;
  margin-top: 1rem;
  font-size: 0.9rem;
}
  .site-header-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero,
  .signup,
  .location {
    min-height: auto;
  }
  .hero-sub {
    white-space: normal;
  }
}

.map-embed {
  width: 100%;
  max-width: 600px;
  margin: 1rem 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.map-embed iframe {
  display: block;
}
/* Contact */
.contact {
  padding: 4rem 0;
  text-align: center;
}

.contact h2 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hidden-frame {
  display: none;
}


