/* =============================================
   Reset & Base
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-cream:    #faf7f2;
  --color-warm:     #f0e8d8;
  --color-gold:     #c8a96e;
  --color-gold-dk:  #a8863f;
  --color-charcoal: #1a1a18;
  --color-muted:    rgba(250, 247, 242, 0.65);
  --font-serif:     'Cormorant Garamond', Georgia, serif;
  --font-sans:      'Jost', system-ui, sans-serif;
  --transition:     0.3s ease;
}

html, body {
  height: 100%;
  font-family: var(--font-sans);
  background: var(--color-charcoal);
  color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
}

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =============================================
   Hero Layout
   ============================================= */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* Background image + overlay */
.hero__image-wrap {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 18, 14, 0.45) 0%,
    rgba(20, 18, 14, 0.65) 40%,
    rgba(20, 18, 14, 0.82) 100%
  );
}

/* Foreground content */
.hero__content {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.5rem, 6vw, 5rem);
}

/* =============================================
   Header / Wordmark
   ============================================= */
.hero__header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2rem;
}

.wordmark {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* =============================================
   Main Content
   ============================================= */
.hero__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
}

.headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--color-cream);
}

.headline em {
  font-style: italic;
  color: var(--color-gold);
}

.subline {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 42ch;
}

/* =============================================
   Next Stop(s)
   ============================================= */
.stops {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  max-width: 480px;
}

.stops__heading {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.stops__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
  text-align: center;
}

.stops__item {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 300;
  color: var(--color-cream);
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.stops__date {
  color: var(--color-gold);
  font-style: italic;
  min-width: 3.5ch;
}

/* =============================================
   Notify / Email Form
   ============================================= */
.notify {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 480px;
}

.notify__label {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--color-cream);
  opacity: 0.9;
}

.notify__form {
  width: 100%;
}

.notify__field {
  display: flex;
  border: 1px solid rgba(200, 169, 110, 0.45);
  border-radius: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color var(--transition);
}

.notify__field:focus-within {
  border-color: var(--color-gold);
}

.notify__field input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-cream);
  min-width: 0;
}

.notify__field input[type="email"]::placeholder {
  color: rgba(250, 247, 242, 0.4);
}

.notify__field button {
  flex-shrink: 0;
  background: var(--color-gold);
  border: none;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  cursor: pointer;
  transition: background-color var(--transition);
  white-space: nowrap;
}

.notify__field button:hover,
.notify__field button:focus-visible {
  background: var(--color-gold-dk);
  color: var(--color-cream);
  outline: 2px solid var(--color-gold);
  outline-offset: -2px;
}

.notify__error {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #e07070;
  min-height: 1.2em;
  text-align: left;
  padding-left: 0.25rem;
}

.notify__success {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-gold);
  min-height: 1.2em;
  text-align: center;
}

/* =============================================
   Footer
   ============================================= */
.hero__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--color-muted);
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  color: var(--color-muted);
  display: flex;
  align-items: center;
  transition: color var(--transition);
  text-decoration: none;
}

.footer__social a:hover,
.footer__social a:focus-visible {
  color: var(--color-gold);
  outline: none;
}

.footer__social a:focus-visible {
  outline: 2px solid var(--color-gold);
  border-radius: 2px;
}

/* =============================================
   Responsive tweaks
   ============================================= */
@media (max-width: 600px) {
  .br-desktop {
    display: none;
  }

  .hero__footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .notify__field {
    flex-direction: column;
  }

  .notify__field input[type="email"] {
    width: 100%;
    border-bottom: 1px solid rgba(200, 169, 110, 0.3);
  }

  .notify__field button {
    width: 100%;
    padding: 0.9rem;
  }
}

/* =============================================
   Fade-in animation
   ============================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__header,
.headline,
.subline,
.stops,
.notify {
  animation: fadeUp 0.9s ease both;
}

.hero__header  { animation-delay: 0.1s; }
.headline      { animation-delay: 0.25s; }
.subline       { animation-delay: 0.45s; }
.stops         { animation-delay: 0.55s; }
.notify        { animation-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  .hero__header,
  .headline,
  .subline,
  .stops,
  .notify {
    animation: none;
  }
}
