html {
  scroll-behavior: smooth;
  background: var(--voyage-paper);
}

:root {
  --voyage-paper: #f4f1eb;
  --voyage-paper-soft: #fbf9f5;
  --voyage-paper-warm: #e7e0d6;
  --voyage-ink: #111111;
}

html, body, #root { min-height: 100%; }
body {
  position: relative;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--voyage-paper);
  color: var(--voyage-ink);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("assets/voyage_cafe_background_exact.svg") center top / cover no-repeat;
  opacity: 0.35;
  filter: contrast(0.9) saturate(0.94);
  mix-blend-mode: multiply;
}

#root {
  position: relative;
  z-index: 1;
}

::selection {
  background: rgba(17, 17, 17, 0.12);
  color: #111111;
}

:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  transform: translateY(-150%);
  background: #1c1917;
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.font-serif-display { font-family: 'Instrument Serif', serif; font-weight: 400; letter-spacing: 0; color: var(--voyage-ink); }
.dark-scope .font-serif-display { color: #ffffff; }

.voyage-logo {
  color: currentColor;
  width: clamp(11.25rem, 18vw, 16.5rem);
  transition: width 500ms cubic-bezier(0.22, 1, 0.36, 1), color 220ms ease;
}

.voyage-logo-mark {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.voyage-logo-title {
  font-family: 'Instrument Serif', 'Bodoni 72', Didot, 'Times New Roman', serif;
  font-size: 116px;
  font-weight: 400;
  letter-spacing: -0.01em;
  dominant-baseline: alphabetic;
}

.voyage-logo-slogan {
  font-family: 'Instrument Serif', 'Bodoni 72', Didot, 'Times New Roman', serif;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0;
}

.voyage-logo-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}

.voyage-logo-ink {
  color: var(--voyage-ink);
  fill: currentColor;
}

.voyage-logo-ink-inverted {
  color: #ffffff;
  fill: currentColor;
}

.logo-paper-bg,
.light-theme {
  background: transparent;
}

.copy-square {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.74), rgba(251,249,245,0.90) 42%, rgba(239,233,224,0.82)),
    rgba(251,249,245,0.90);
  border: 1px solid rgba(17,17,17,0.09);
  border-radius: clamp(1.25rem, 2.4vw, 2rem);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 18px 48px rgba(28,25,23,0.10);
  backdrop-filter: blur(14px) saturate(135%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
}

.copy-square::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 12%, rgba(255,255,255,0.86), rgba(255,255,255,0) 17rem),
    radial-gradient(circle at 88% 84%, rgba(231,224,214,0.42), rgba(231,224,214,0) 16rem);
  pointer-events: none;
}

.copy-square::after {
  content: "";
  position: absolute;
  inset: 0.65rem;
  z-index: -1;
  border: 1px solid rgba(17,17,17,0.035);
  border-radius: calc(clamp(1.25rem, 2.4vw, 2rem) - 0.35rem);
  pointer-events: none;
}

.copy-square > * {
  position: relative;
  z-index: 1;
}

.copy-square h1,
.copy-square h2 {
  text-wrap: balance;
}

.hero-copy-square {
  width: min(100%, 66rem);
  padding: clamp(2rem, 4.5vw, 4.5rem);
}

.hero-copy-square h1,
.hero-copy-square p {
  margin-left: auto;
  margin-right: auto;
}

.hero-copy-square > .mt-10 {
  margin-top: clamp(1.75rem, 3vw, 2.75rem);
}

.page-copy-square {
  padding: clamp(2rem, 4vw, 3.75rem);
}

.section-copy-square {
  padding: clamp(1.75rem, 3vw, 3rem);
  row-gap: 1.25rem;
}

.section-copy-square h2 {
  max-width: min(100%, 48rem);
}

.cta-copy-square {
  padding: clamp(3.5rem, 6vw, 6.5rem);
}

.cta-copy-square .subtle-grid {
  opacity: 0.16 !important;
}

.copy-square a {
  box-shadow: none;
}

.voyage-navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: padding 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.voyage-navbar-shell {
  width: 100%;
  max-width: 80rem;
  height: 5rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition:
    max-width 500ms cubic-bezier(0.22, 1, 0.36, 1),
    height 500ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 500ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease,
    border-radius 500ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 260ms ease,
    box-shadow 260ms ease;
}

.voyage-navbar.is-scrolled {
  padding: 0.75rem 0.75rem 0;
}

.voyage-navbar.is-scrolled .voyage-navbar-shell {
  max-width: 68rem;
  height: 4rem;
  padding: 0 1rem;
  border-color: rgba(17,17,17,0.10);
  border-radius: 999px;
  background-color: rgba(244,241,235,0.88);
  box-shadow: 0 16px 40px rgba(28,25,23,0.12);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.voyage-navbar.is-scrolled .voyage-logo {
  width: clamp(9.25rem, 14vw, 12.25rem);
}

@media (min-width: 768px) {
  .voyage-navbar-shell {
    padding: 0 2.5rem;
  }

  .voyage-navbar.is-scrolled {
    padding: 1rem 1.5rem 0;
  }

  .voyage-navbar.is-scrolled .voyage-navbar-shell {
    padding: 0 1.25rem;
  }
}

/* Glass — neutral, works on dark video and on light bg */
.voyage-footer {
  position: relative;
  z-index: 10;
  margin-top: 5.5rem;
  overflow: hidden;
  border-top: 1px solid rgba(17,17,17,0.10);
  background:
    linear-gradient(180deg, rgba(251,249,245,0.76), rgba(234,226,215,0.88)),
    rgba(244,241,235,0.92);
}

.voyage-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 8%, rgba(255,255,255,0.82), rgba(255,255,255,0) 20rem),
    radial-gradient(circle at 92% 18%, rgba(17,17,17,0.055), rgba(17,17,17,0) 18rem);
}

.voyage-footer-inner {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 4vw, 3.75rem) 1.5rem 1.35rem;
}

.voyage-footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.75rem;
  padding-bottom: clamp(1.75rem, 3vw, 2.35rem);
  border-bottom: 1px solid rgba(17,17,17,0.10);
}

.voyage-footer-intro {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  max-width: 31rem;
}

.voyage-footer-intro .voyage-logo {
  width: clamp(11rem, 17vw, 14.75rem);
}

.voyage-footer-intro p {
  max-width: 32rem;
  color: rgba(28,25,23,0.66);
  font-size: clamp(0.98rem, 1.35vw, 1.06rem);
  line-height: 1.65;
}

.voyage-footer-label {
  display: block;
  color: rgba(28,25,23,0.48);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.voyage-footer-column {
  min-width: 0;
}

.voyage-footer-links,
.voyage-footer-socials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: 1rem;
}

.voyage-footer-links a,
.voyage-footer-links span {
  color: rgba(28,25,23,0.66);
  font-size: 0.96rem;
  line-height: 1.5;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.voyage-footer-links a {
  transition: color 180ms ease, transform 180ms ease;
}

.voyage-footer-links a:hover {
  color: var(--voyage-ink);
  transform: translateX(3px);
}

.voyage-footer-socials {
  width: 100%;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.55rem;
}

.voyage-footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 2.55rem;
  width: min(100%, 11rem);
  border: 1px solid rgba(17,17,17,0.10);
  border-radius: 999px;
  background: rgba(255,255,255,0.46);
  color: rgba(28,25,23,0.72);
  padding: 0 1rem;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.voyage-footer-socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(17,17,17,0.18);
  background: rgba(255,255,255,0.72);
  color: var(--voyage-ink);
}

.voyage-footer-bottom {
  display: flex;
  flex-direction: column;
  padding-top: clamp(1.5rem, 3vw, 2.15rem);
}

.voyage-footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: rgba(28,25,23,0.46);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-transform: uppercase;
}

.voyage-footer-meta a {
  color: inherit;
  text-decoration: none;
}

.voyage-footer-meta a:hover {
  color: var(--voyage-ink);
}

.contact-section {
  padding-top: clamp(5.5rem, 8vw, 7.5rem);
}

.contact-layout {
  align-items: start;
}

.contact-form-card,
.contact-side-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(17,17,17,0.085);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.72), rgba(251,249,245,0.94) 42%, rgba(236,229,218,0.78)),
    rgba(251,249,245,0.92);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 16px 42px rgba(28,25,23,0.085);
  backdrop-filter: blur(14px) saturate(135%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
}

.contact-form-card::before,
.contact-side-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 8%, rgba(255,255,255,0.78), rgba(255,255,255,0) 17rem),
    radial-gradient(circle at 92% 96%, rgba(207,195,177,0.30), rgba(207,195,177,0) 15rem);
}

.contact-form-card > *,
.contact-side-card > * {
  position: relative;
  z-index: 1;
}

.contact-form-intro {
  margin-bottom: clamp(1.75rem, 3vw, 2.35rem);
  padding-bottom: clamp(1.45rem, 2.4vw, 1.95rem);
  border-bottom: 1px solid rgba(17,17,17,0.09);
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  border: 1px solid rgba(17,17,17,0.10);
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  color: rgba(28,25,23,0.62);
  padding: 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-form-intro h2 {
  margin-top: 1rem;
  color: var(--voyage-ink);
  font-size: clamp(2.65rem, 5vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.contact-form-intro p {
  max-width: 36rem;
  margin-top: 1rem;
  color: rgba(28,25,23,0.62);
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  line-height: 1.65;
}

.field {
  width: 100%;
  border: 1px solid rgba(28,25,23,0.115);
  border-radius: 14px;
  background: rgba(255,255,255,0.46);
  color: #1c1917;
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  line-height: 1.4;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.field::placeholder {
  color: rgba(28,25,23,0.40);
}

.field:focus {
  outline: none;
  border-color: rgba(28,25,23,0.34);
  background: rgba(255,255,255,0.68);
  box-shadow: 0 0 0 4px rgba(180,166,145,0.12);
}

.field-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(28,25,23,0.55);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.chip {
  appearance: none;
  border: 1px solid rgba(28,25,23,0.15);
  border-radius: 999px;
  background: rgba(255,255,255,0.42);
  color: #1c1917;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  line-height: 1;
  padding: 10px 16px;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.chip:hover {
  transform: translateY(-1px);
  border-color: rgba(28,25,23,0.28);
  background: rgba(255,255,255,0.70);
}

.chip.active {
  border-color: #2b2621;
  background: #2b2621;
  color: #ffffff;
}

.contact-side-stack {
  align-self: stretch;
}

.contact-side-card h3 {
  color: var(--voyage-ink);
}

.contact-detail-list {
  display: grid;
  gap: 0.85rem;
}

.contact-detail-row {
  border: 1px solid rgba(17,17,17,0.075);
  border-radius: 1.1rem;
  background: rgba(255,255,255,0.36);
  padding: 1rem;
}

.contact-detail-row a,
.contact-detail-row span {
  overflow-wrap: anywhere;
}

.contact-hours-list {
  display: grid;
  gap: 0.55rem;
}

.contact-hours-list li {
  border: 1px solid rgba(17,17,17,0.075);
  border-radius: 999px;
  background: rgba(255,255,255,0.34);
  padding: 0.8rem 1rem;
}

.contact-social-list {
  display: grid;
  gap: 0.75rem;
}

.contact-social-link {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  min-height: 4.05rem;
  border: 1px solid rgba(17,17,17,0.085);
  border-radius: 1.25rem;
  background: rgba(255,255,255,0.42);
  color: rgba(28,25,23,0.72);
  padding: 0.62rem 0.85rem 0.62rem 0.65rem;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.contact-social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(17,17,17,0.16);
  background: rgba(255,255,255,0.72);
  color: var(--voyage-ink);
  box-shadow: 0 10px 24px rgba(28,25,23,0.08);
}

.contact-social-icon,
.contact-social-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.contact-social-icon {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.86), rgba(230,222,210,0.74)),
    var(--voyage-paper-soft);
  color: #2b2621;
}

.contact-social-copy {
  display: grid;
  min-width: 0;
  gap: 0.16rem;
}

.contact-social-copy span {
  color: #1c1917;
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.25;
}

.contact-social-copy small {
  color: rgba(28,25,23,0.48);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

.contact-social-arrow {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(28,25,23,0.06);
  color: rgba(28,25,23,0.56);
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.contact-social-link:hover .contact-social-arrow {
  transform: translate(2px, -2px);
  background: #2b2621;
  color: #ffffff;
}

.trap-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 768px) {
  .voyage-footer-inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .voyage-footer-main {
    grid-template-columns: minmax(18rem, 1.25fr) minmax(9rem, 0.55fr) minmax(15rem, 0.85fr) minmax(11rem, auto);
    align-items: start;
  }

  .voyage-footer-social-column {
    justify-self: end;
  }

  .voyage-footer-social-column .voyage-footer-label {
    text-align: right;
  }

  .voyage-footer-socials {
    align-items: flex-end;
  }

  .voyage-footer-bottom {
    display: block;
  }

  .voyage-footer-meta {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}

.glass {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 8px 32px rgba(0,0,0,0.18);
}

/* Default (light) tokens */
.hairline { border-color: rgba(17,17,17,0.12); }
.subtle-grid {
  background-image:
    radial-gradient(circle at 30% 20%, rgba(17,17,17,0.035), rgba(17,17,17,0) 18rem),
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0));
  background-size: auto, auto;
}
.placeholder-img {
  background:
    repeating-linear-gradient(45deg, rgba(28,25,23,0.05) 0 12px, rgba(28,25,23,0.02) 12px 24px);
  border: 1px solid rgba(28,25,23,0.10);
}
.media-placeholder {
  background: var(--voyage-paper-soft);
  border: 1px solid rgba(17,17,17,0.10);
}
.card {
  background:
    linear-gradient(180deg, rgba(251,249,245,0.96), rgba(251,249,245,0.88)),
    var(--voyage-paper-soft);
  border: 1px solid rgba(17,17,17,0.10);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(17,17,17,0.04), 0 18px 44px -36px rgba(17,17,17,0.42);
}
.accent-rule {
  background: linear-gradient(90deg, #111111, rgba(17,17,17,0.18), rgba(17,17,17,0));
  height: 1px;
  width: 100%;
}
.soft-panel {
  background:
    linear-gradient(135deg, rgba(17,17,17,0.045), rgba(255,255,255,0.42)),
    rgba(255,255,255,0.72);
  border: 1px solid rgba(17,17,17,0.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.70);
}

@keyframes offerRise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes offerFade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideFromLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideFromRight {
  from { opacity: 0; transform: translateX(32px); }
  to { opacity: 1; transform: translateX(0); }
}

.offer-reveal,
.offer-heading,
.reveal-left,
.reveal-right {
  opacity: 0;
}

.offer-reveal.is-visible {
  animation: offerRise 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.offer-heading.is-visible {
  animation: offerFade 800ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal-left.is-visible {
  animation: slideFromLeft 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal-right.is-visible {
  animation: slideFromRight 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.offer-reveal.is-visible.delay-1 { animation-delay: 120ms; }
.offer-reveal.is-visible.delay-2 { animation-delay: 260ms; }
.offer-reveal.is-visible.delay-3 { animation-delay: 400ms; }
.offer-reveal.is-visible.delay-4 { animation-delay: 540ms; }
.reveal-right.is-visible.delay-1 { animation-delay: 200ms; }
.reveal-right.is-visible.delay-2 { animation-delay: 340ms; }
.reveal-right.is-visible.delay-3 { animation-delay: 480ms; }
.reveal-right.is-visible.delay-4 { animation-delay: 620ms; }

@media (prefers-reduced-motion: reduce) {
  .offer-reveal,
  .offer-heading,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    animation: none;
  }
}

/* Dark scope - used by hero with video */
.dark-scope {
  background: #0a0a0a;
  color: #ffffff;
}
.dark-scope .hairline { border-color: rgba(255,255,255,0.10); }
.dark-scope .subtle-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
}
.dark-scope .placeholder-img {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 12px, rgba(255,255,255,0.02) 12px 24px);
  border: 1px solid rgba(255,255,255,0.10);
}
.dark-scope .card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
}
