/* ============================================================
   WE HATE TOURISM TOURS — v4
   White base · Near-black ink · Photos bleed · No decorative borders
   Inspired by: halsbury.com — space as separator, type as hero
   Fonts: Bebas Neue (headlines) · DM Sans (body)
   ============================================================ */


:root {
  --white:   #FFFFFF;
  --off:     #F5F4F2;
  --ink:     #111111;
  --mid:     #777777;
  --light:   #BBBBBB;
  --yellow:  #FCEC94;
  --navy:    #17325D;
  --sage:    #8FAF80;
  --teal:       #21484F;
  --border:     #eeeeee;
  --border-mid: #dddddd;
  --green:       #25D366;
  --green-dark:  #1aad56;
  --yellow-dark: #f0e07c;
  --navy-dark:   #112448;
  --red:         #cd2f46;
  --red-dark:    #a8243a;

  --sans:    'DM Sans', sans-serif;
  --display: 'Bebas Neue', sans-serif;

  --nav-h:  68px;
  --wrap:   1240px;
  --pad:    clamp(20px, 4vw, 48px);
  --ease:   cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

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

/* ─── LAYOUT ─── */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }

/* ─── NAV ─── */
.nav {
  position: fixed; inset: 0 0 auto;
  height: var(--nav-h); z-index: 200;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
}

.nav__inner {
  max-width: var(--wrap); margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}

.nav__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

/* Actual logo image — max height fits nav */
.nav__logo img {
  height: 40px;
  width: auto;
  display: block;
}

/* Text fallback shown only when image fails to load */
.nav__logo-fallback {
  display: none;
  flex-direction: column;
  gap: 2px;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: .06em;
  color: var(--ink);
  line-height: 1;
}

.nav__logo-fallback small {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--light);
}

.nav__links {
  display: flex; gap: 36px; list-style: none;
}

.nav__links a {
  font-size: 11px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; color: var(--mid);
  transition: color .2s;
}

.nav__links a:hover, .nav__links a.active { color: var(--ink); }

.nav__book {
  font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; color: var(--white);
  background: var(--red);
  padding: 10px 24px;
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.nav__book:hover { background: var(--red-dark); color: var(--white); }

.nav__burger {
  display: none; background: none; border: none;
  cursor: pointer; color: var(--ink); padding: 4px;
}

/* mobile nav */
.nav__mobile {
  display: none; position: fixed;
  top: var(--nav-h); inset-inline: 0;
  background: var(--white);
  padding: 32px var(--pad) 40px;
  z-index: 199;
  flex-direction: column; gap: 20px;
  border-top: 1px solid var(--border);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 14px; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; color: var(--mid); font-weight: 400;
  transition: color .2s;
}
.nav__mobile a:hover { color: var(--ink); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero__bg .ph { background: var(--ink); }
.hero__bg .ph svg { opacity: .25; }
.hero__bg .ph span { color: rgba(255,255,255,.3); }

.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.15) 0%,
    rgba(0,0,0,.32) 50%,
    rgba(0,0,0,.45) 100%
  );
}

.hero__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  padding: 80px var(--pad);
  max-width: 860px; width: 100%;
}

.hero__kicker {
  font-size: 11px; font-weight: 400;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 24px;
}

.hero__h1 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: .92; letter-spacing: .02em;
  color: var(--yellow); margin-bottom: 24px;
}

.hero__sub {
  font-size: 16px; font-weight: 300;
  line-height: 1.75; color: var(--yellow);
  max-width: 520px; margin-bottom: 44px;
}

/* CTAs */
.hero__ctas {
  display: flex; align-items: center;
  gap: 28px; flex-wrap: wrap; justify-content: center;
}

.btn {
  display: inline-block; text-decoration: none;
  font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.btn--dark { background: var(--red); color: var(--white); }
.btn--dark:hover { background: var(--red-dark); color: var(--white); }
.btn--white { background: var(--red); color: var(--white); }
.btn--white:hover { background: var(--red-dark); color: var(--white); }
.btn--sage { background: var(--red); color: var(--white); }
.btn--sage:hover { background: var(--red-dark); color: var(--white); }
.btn--yellow { background: var(--red); color: var(--white); }
.btn--yellow:hover { background: var(--red-dark); color: var(--white); }

.book-cta .btn--yellow,
.lt-book .btn--yellow,
.tour-cta .btn--yellow,
.ttk-art-cta .btn--yellow,
.kiss-final .btn--yellow { background: var(--red); color: var(--white); }

.book-cta .btn--yellow:hover,
.lt-book .btn--yellow:hover,
.tour-cta .btn--yellow:hover,
.ttk-art-cta .btn--yellow:hover,
.kiss-final .btn--yellow:hover { background: var(--red-dark); color: var(--white); }

.btn--ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; color: var(--mid);
  transition: color .2s;
}
.btn--ghost:hover { color: var(--ink); }
.btn--ghost svg { transition: transform .2s; }
.btn--ghost:hover svg { transform: translateX(4px); }

.btn--ghost-white {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; color: var(--yellow);
  transition: color .2s;
}
.btn--ghost-white:hover { color: var(--white); }
.btn--ghost-white svg { transition: transform .2s; }
.btn--ghost-white:hover svg { transform: translateX(4px); }

.hero__photo {
  position: relative; overflow: hidden; background: var(--off);
}
.hero__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.hero__photo:hover img { transform: scale(1.03); }


/* placeholder */
.ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  background: var(--off);
}
.ph svg { opacity: .18; }
.ph span {
  font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--light);
}

/* ─── TICKER ─── */
.ticker {
  overflow: hidden;
  background: var(--navy);
  padding: 14px 0;
}
.ticker__track {
  display: flex; white-space: nowrap;
  animation: tick 40s linear infinite;
}
.ticker__item {
  display: inline-flex; align-items: center; gap: 24px;
  font-size: 10px; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--white);
  padding: 0 24px;
}
.ticker__item::after { content: '·'; color: rgba(255,255,255,.4); }
@keyframes tick { to { transform: translateX(-50%); } }

/* ─── SECTION INTRO ─── */
.section-intro {
  padding: 100px 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}

.section-intro__label {
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--light); margin-bottom: 20px;
}

.section-intro__h {
  font-family: var(--display);
  font-size: clamp(52px, 5.5vw, 80px);
  line-height: .92; letter-spacing: .02em;
  color: var(--navy);
}

.section-intro__h em {
  font-style: normal;
  color: var(--navy);
}

.section-intro__body {
  font-size: 15px; font-weight: 300;
  line-height: 1.8; color: var(--mid);
  padding-bottom: 4px;
}

/* ─── TOUR CARDS ─── */
/* Row layout: alternating photo left / photo right */
.tours-list { padding-bottom: 100px; }

.tour-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  margin-bottom: 2px;        /* hair gap between rows */
}

.tour-row--flip { direction: rtl; }
.tour-row--flip > * { direction: ltr; }

.tour-row__photo {
  position: relative; overflow: hidden;
  background: var(--off);
}
.tour-row__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.tour-row:hover .tour-row__photo img { transform: scale(1.04); }

.tour-row__body {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 56px clamp(28px, 4vw, 72px);
  background: var(--white);
}

.tour-row__num {
  font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--light);
  margin-bottom: 20px;
}

.tour-row__title {
  font-family: var(--display);
  font-size: clamp(36px, 3.5vw, 54px);
  line-height: .95; letter-spacing: .02em;
  color: var(--ink); margin-bottom: 20px;
}

.tour-row__cut {
  font-size: 14px; font-weight: 300;
  line-height: 1.75; color: var(--mid);
  max-width: 400px; margin-bottom: 32px;
}

/* logistics pills */
.tour-row__pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
}

.pill {
  font-size: 10px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--mid); padding: 5px 12px;
  border: 1px solid var(--border-mid);
}

.pill--price { background: var(--navy); color: var(--white); border-color: var(--navy); }

.tour-row__link {
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start;
  font-size: 11px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; color: var(--white);
  background: var(--red);
  padding: 10px 20px;
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.tour-row__link:hover { background: var(--red-dark); color: var(--white); }

/* ─── STATEMENT ─── */
.statement {
  padding: 120px 0;
  text-align: center;
}

.statement__text {
  font-family: 'Bungee', cursive;
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: .92; letter-spacing: .02em;
  color: var(--navy);
  max-width: 960px; margin: 0 auto 40px;
}

.statement__sub {
  font-size: 16px; font-weight: 300;
  color: var(--mid); line-height: 1.75;
  max-width: 560px; margin: 0 auto 48px;
}

/* ─── MANIFESTO GRID ─── */
.manifesto {
  padding: 0 0 120px;
}

.manifesto__intro { margin-bottom: 56px; }

.manifesto__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}

.manifesto__item-n {
  font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--light);
  margin-bottom: 16px; display: block;
}

.manifesto__item-title {
  font-family: var(--display);
  font-size: 28px; letter-spacing: .03em;
  line-height: 1; color: var(--ink);
  margin-bottom: 14px;
}

.manifesto__item-text {
  font-size: 14px; font-weight: 300;
  line-height: 1.75; color: var(--mid);
}

/* ─── BOOK CTA ─── */
.book-cta {
  background: var(--white);
  padding: 100px var(--pad);
  text-align: center;
}

.book-cta__h {
  font-family: 'Bungee', cursive;
  font-size: clamp(40px, 6vw, 84px);
  line-height: .92; letter-spacing: .02em;
  color: var(--navy); margin-bottom: 28px;
}

.book-cta__sub {
  font-size: 16px; font-weight: 300;
  color: var(--navy); line-height: 1.7;
  max-width: 480px; margin: 0 auto 44px;
}

.book-cta__sub a { color: inherit; }

.bookeo-ph {
  margin-top: 40px;
  border: 1px dashed var(--border-mid);
  padding: 48px; background: var(--white);
  max-width: 760px; margin: 40px auto 0;
}
.bookeo-ph p {
  font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--light);
}

/* ─── MANIFESTO GRID WITH PHOTOS ─── */
.manifesto__item {
  display: flex;
  flex-direction: column;
}

.manifesto__item-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--off);
  margin-bottom: 24px;
}

.manifesto__item-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.manifesto__item:hover .manifesto__item-photo img {
  transform: scale(1.04);
}

/* ─── LOCAL OFFICE + MAP ─── */
.local-office {
  padding: 100px 0 0;
}

.local-office__label {
  font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--light);
  margin-bottom: 20px; display: block;
}

.local-office__h {
  font-family: var(--display);
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: .95; letter-spacing: .02em;
  color: var(--navy); margin-bottom: 24px;
}

.local-office__text {
  font-size: 15px; font-weight: 300;
  line-height: 1.8; color: var(--mid);
  max-width: 560px;
  margin-bottom: 64px;
}

.local-office__map {
  width: 100%;
  height: 420px;
}

#office-map {
  width: 100%;
  height: 420px;
  display: block;
}

/* ─── FOOTER ─── */
.footer {
  padding: 72px 0 40px;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__brand {
  font-family: var(--display);
  font-size: 22px; letter-spacing: .04em;
  color: var(--ink); margin-bottom: 14px;
}

.footer__desc {
  font-size: 13px; font-weight: 300;
  color: var(--mid); line-height: 1.7;
  max-width: 260px;
}

.footer__col h4 {
  font-size: 10px; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--light); margin-bottom: 20px;
}

.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer__col a {
  font-size: 13px; font-weight: 300;
  color: var(--mid); text-decoration: none;
  transition: color .2s;
}
.footer__col a:hover { color: var(--ink); }

.footer__bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--light);
}

/* ─── LT-BOOK (listing page CTA) ─── */
.lt-book {
  background: var(--white);
  padding: 96px var(--pad);
  text-align: center;
}

.lt-book__h {
  font-family: 'Bungee', cursive;
  font-size: clamp(40px, 6vw, 84px);
  line-height: .92; letter-spacing: .02em;
  color: var(--navy); margin-bottom: 24px;
}

.lt-book__sub {
  font-size: 15px; font-weight: 300;
  color: var(--navy); line-height: 1.75;
  max-width: 440px; margin: 0 auto 40px;
}

/* ─── FOCUS ─── */
:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

/* ─── FADE-UP ─── */
.fu {
  opacity: 0; transform: translateY(22px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.fu.in { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero { min-height: 85vh; }
  .hero__h1 { font-size: clamp(52px, 12vw, 90px); }
  .section-intro { grid-template-columns: 1fr; gap: 32px; }
  .tour-row { grid-template-columns: 1fr; min-height: auto; }
  .tour-row--flip { direction: ltr; }
  .tour-row__photo { height: 320px; }
  .manifesto__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .local-office__map { height: 320px; }
  #office-map { height: 320px; }
}

@media (max-width: 768px) {
  .nav__links, .nav__book { display: none; }
  .nav__burger { display: block; }
  .manifesto__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}
