/* ---------------------------------------------------------------
   Nomad Vive Travels — stylesheet
   Palette + type choices documented in ../../DECISIONS.md
--------------------------------------------------------------- */

:root {
  --navy: #0e3473;
  --navy-deep: #081c3f;
  --cream: #faf8f0;
  --white: #ffffff;
  --ink: #1c2333;
  --accent: #c96f43; /* warm terracotta, small accent only */
  --sand: #f2ede1;

  --font-display: "Fraunces", "Georgia", serif;
  --font-script: "Caveat", cursive;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  --nav-height: 76px;
  --max-width: 1240px;
  --gap: clamp(1.25rem, 3vw, 2.5rem);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  color: var(--accent);
  margin-bottom: 0.15rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 1rem;
}

.section {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: #454c5e;
}

.btn {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(201, 111, 67, 0.55);
}

.btn-outline {
  background: transparent;
  border-color: currentColor;
}

.btn-outline:hover {
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- Nav ---------------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 46px;
  width: auto;
  transition: opacity 0.3s ease;
}

.nav-logo .logo-navy { display: none; }

.nav-links {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-links a {
  position: relative;
  padding-bottom: 6px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: currentColor;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.nav-toggle {
  appearance: none;
  -webkit-appearance: none;
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: background-color 0.3s ease;
}

.nav.scrolled {
  background: rgba(250, 248, 240, 0.96);
  box-shadow: 0 6px 24px -12px rgba(14, 52, 115, 0.25);
}

.nav.scrolled .nav-logo .logo-cream { display: none; }
.nav.scrolled .nav-logo .logo-navy { display: block; }
.nav.scrolled .nav-links,
.nav.scrolled .nav-cta { color: var(--navy); }
.nav.scrolled .nav-cta { border-color: var(--navy); }
.nav.scrolled .nav-toggle span { background: var(--navy); }

@media (max-width: 780px) {
  .nav-links {
    position: fixed;
    inset: 0;
    top: var(--nav-height);
    flex-direction: column;
    background: var(--navy);
    color: var(--white);
    padding: 2.5rem 2rem;
    font-size: 1.4rem;
    gap: 1.75rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.scrolled .nav-links { color: var(--white); }
}

/* ---------------- Hero ---------------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,28,63,0.55) 0%, rgba(8,28,63,0.35) 45%, rgba(8,28,63,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--nav-height);
  text-align: center;
  width: 100%;
}

.hero-content .eyebrow {
  color: var(--sand);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  letter-spacing: -0.01em;
}

.hero-content p {
  max-width: 520px;
  margin: 1.25rem auto 2rem;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.9);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-ctas .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 999px;
}

.scroll-cue::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--white);
  border-radius: 999px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { opacity: 1; transform: translateY(0); }
  60% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ---------------- Instagram ticker ---------------- */

.ticker-band {
  background: var(--navy);
  color: var(--sand);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.85rem 0;
}

.ticker-track {
  display: inline-flex;
  gap: 3rem;
  animation: tickerScroll 32s linear infinite;
  font-family: var(--font-script);
  font-size: 1.4rem;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------------- Destinations ---------------- */

.dest-grid {
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.dest-grid::-webkit-scrollbar { height: 6px; }
.dest-grid::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 999px; }

.dest-card {
  position: relative;
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: clamp(240px, 30vw, 300px);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--sand);
  box-shadow: 0 20px 40px -24px rgba(14,52,115,0.35);
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dest-card:hover img {
  transform: scale(1.08);
}

.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,28,63,0) 35%, rgba(8,28,63,0.85) 100%);
}

.dest-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.4rem;
  color: var(--white);
}

.dest-copy h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 0.3rem;
}

.dest-copy p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  max-width: 90%;
}

/* ---------------- Services ---------------- */

.services-section {
  background: var(--sand);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(0.9rem, 1.5vw, 1.4rem);
}

/* Desktop: all five cards on a single line */
@media (min-width: 781px) {
  .services-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.6rem 1.25rem;
  box-shadow: 0 20px 45px -30px rgba(14,52,115,0.3);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -26px rgba(14,52,115,0.35);
}

.service-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 0.9rem;
  color: var(--accent);
}

.service-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #4a5164;
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ---------------- Pricing ---------------- */

.pricing-block {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid rgba(14,52,115,0.12);
}

.pricing-intro {
  text-align: center;
  color: #4a5164;
  font-size: 1.05rem;
  max-width: 42ch;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap);
}

.pricing-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  text-align: center;
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.pricing-scope {
  color: #4a5164;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.pricing-figure {
  color: var(--navy);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.pricing-figure span {
  display: block;
  color: #4a5164;
  font-weight: 400;
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

/* ---------------- Food philosophy ---------------- */

.culinary-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 860px) {
  .culinary-columns {
    grid-template-columns: 1fr 1.3fr;
  }
}

.manifesto h3,
.markets-block h3 {
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.manifesto-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.manifesto-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: baseline;
}

.manifesto-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent);
}

.manifesto-list p,
.manifesto-list div {
  color: #4a5164;
  font-size: 0.98rem;
}

.manifesto-list strong {
  color: var(--navy);
  display: block;
  margin-bottom: 0.15rem;
}

.markets-block {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid rgba(14,52,115,0.12);
}

.markets-block p {
  color: #4a5164;
  max-width: 62ch;
  margin-bottom: 1.75rem;
}

.markets-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.markets-grid::-webkit-scrollbar { height: 6px; }
.markets-grid::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 999px; }

.markets-grid img {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: clamp(160px, 24vw, 260px);
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 12px;
}

/* ---------------- Taste strip ---------------- */

.taste-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.taste-scroller {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.taste-scroller::-webkit-scrollbar { height: 6px; }
.taste-scroller::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 999px; }

.taste-scroller img {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: clamp(160px, 24vw, 260px);
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 12px;
}

/* ---------------- Brussels ---------------- */

.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.neighborhood-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 20px 45px -30px rgba(14,52,115,0.3);
  height: fit-content;
}

.neighborhood-card summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "eyebrow chevron"
    "title   chevron";
  align-items: center;
  column-gap: 0.75rem;
}

.neighborhood-card summary::-webkit-details-marker { display: none; }

.neighborhood-card .eyebrow {
  grid-area: eyebrow;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.neighborhood-card h3 {
  grid-area: title;
  font-size: 1.3rem;
}

.nb-chevron {
  grid-area: chevron;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.neighborhood-card[open] .nb-chevron {
  transform: rotate(-135deg);
}

.neighborhood-card p:last-child {
  color: #4a5164;
  font-size: 0.95rem;
  margin-top: 1rem;
}

.brussels-closing {
  max-width: 72ch;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  color: #4a5164;
  font-size: 1.05rem;
  text-align: center;
}

/* ---------------- A propos ---------------- */

.apropos {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.apropos-media {
  position: relative;
}

.apropos-media img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.apropos-media .tag {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-script);
  font-size: 1.3rem;
  padding: 0.9rem 1.4rem;
  border-radius: 12px;
  box-shadow: 0 15px 30px -15px rgba(14,52,115,0.5);
}

.apropos-text p {
  margin-bottom: 1.1rem;
  color: #454c5e;
}

.apropos-text .signoff {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--navy);
  margin-top: 1.5rem;
}

.stat-row {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.stat-row div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--navy);
}

.stat-row div span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7284;
}

@media (min-width: 860px) {
  .apropos { grid-template-columns: 0.85fr 1fr; }
}

/* ---------------- Contact ---------------- */

.contact-section {
  background: var(--navy);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

@media (min-width: 860px) {
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; }
}

.contact-section h2 { color: var(--white); }
.contact-section .lede { color: rgba(255,255,255,0.75); }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.contact-info-item a,
.contact-info-item p {
  font-size: 1.05rem;
}

form.contact-form {
  display: grid;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 560px) {
  .form-row.two { grid-template-columns: 1fr 1fr; }
}

.contact-form label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: rgba(255,255,255,0.7);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.1);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* ---------------- Footer ---------------- */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 2rem;
  margin-bottom: 1.5rem;
}

.footer-inner img { height: 34px; }

.footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social svg { width: 20px; height: 20px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
}
