/* YanaaTravels — Soft Horizon (fonts enqueued in WordPress) */

:root {
  --bg: #f6f8fa;
  --bg-soft: #eaf1f5;
  --surface: #ffffff;
  --ink: #1a2433;
  --muted: #5c6a7a;
  --line: rgba(26, 36, 51, 0.1);
  --accent: #c45b6e;
  --accent-deep: #9e3d52;
  --sea: #3d8b84;
  --sea-soft: #d7ebe8;
  --warm: #f4ebe3;
  --shadow: 0 18px 50px rgba(26, 36, 51, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1140px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, #ddeff3 0%, transparent 55%),
    radial-gradient(900px 500px at 100% 0%, #f3e4e7 0%, transparent 45%),
    var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sea);
}

.eyebrow::before {
  content: '';
  width: 1.6rem;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  font-size: 1.08rem;
  max-width: 36rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(246, 248, 250, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header.is-over-hero:not(.is-scrolled) .brand-mark,
.site-header.is-over-hero:not(.is-scrolled) .nav-link,
.site-header.is-over-hero:not(.is-scrolled) .menu-toggle {
  color: #fff;
}

.site-header.is-over-hero:not(.is-scrolled) .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.header-inner {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand .custom-logo-link {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}

.brand .custom-logo {
  width: auto;
  height: 42px;
}

.brand-mark-link {
  flex-shrink: 0;
  line-height: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--accent), #e08a78);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}

.brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.site-header.is-over-hero:not(.is-scrolled) .brand-tag {
  color: rgba(255, 255, 255, 0.75);
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list,
.nav-list--fallback {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list .menu-item {
  margin: 0;
}

.nav-list a,
.nav-link {
  font-size: 0.95rem;
  font-weight: 550;
  color: var(--ink);
  position: relative;
}

.nav-list a::after,
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-list a:hover::after,
.nav-list .current-menu-item > a::after,
.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.site-header.is-over-hero:not(.is-scrolled) .nav-list a {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  margin: auto;
  position: relative;
  transition: 0.25s var(--ease);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -5px;
}

.menu-toggle span::after {
  top: 5px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(196, 91, 110, 0.28);
}

.btn-primary:hover {
  background: var(--accent-deep);
}

.btn-secondary {
  background: var(--ink);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-soft {
  background: var(--sea-soft);
  color: var(--sea);
}

.btn-sm {
  min-height: 40px;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 0;
  display: grid;
  align-items: start;
  color: #fff;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 24, 34, 0.35) 0%, rgba(18, 24, 34, 0.28) 45%, rgba(18, 24, 34, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
  padding: calc(var(--header-h) + 1.25rem) 0 2rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 0.95;
  margin: 0 0 0.55rem;
  max-width: 12ch;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.1s forwards;
}

.hero h1 {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 500;
  max-width: 24ch;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.25s forwards;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 1rem;
  max-width: 34rem;
  font-size: 0.98rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.4s forwards;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.55s forwards;
}

.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 3rem;
  background:
    linear-gradient(180deg, rgba(234, 241, 245, 0.9), transparent),
    radial-gradient(700px 280px at 80% 0%, rgba(196, 91, 110, 0.12), transparent);
}

.page-hero .lead {
  margin-top: 0.85rem;
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.section-head p {
  max-width: 28rem;
}

.section-alt {
  background: linear-gradient(180deg, rgba(234, 241, 245, 0.65), rgba(246, 248, 250, 0));
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.split-visual {
  position: relative;
  min-height: 480px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy .eyebrow {
  margin-bottom: 1rem;
}

.split-copy h2 {
  margin-bottom: 1rem;
}

.split-copy .lead {
  margin-bottom: 1.75rem;
}

.feature-list {
  display: grid;
  gap: 1.1rem;
  margin: 2.25rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--warm);
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 0.85rem;
}

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

.feature-list span {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Tour cards — practical, not decorative cards clutter */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.tour-card {
  display: grid;
  grid-template-rows: 220px auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.tour-card-media {
  position: relative;
  overflow: hidden;
}

.tour-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.tour-card:hover .tour-card-media img {
  transform: scale(1.05);
}

.tour-meta-chip {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
}

.tour-card-body {
  padding: 1.25rem 1.3rem 1.4rem;
  display: grid;
  gap: 0.75rem;
}

.tour-card-body h3 {
  font-size: 1.55rem;
}

.tour-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.35rem;
}

.price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ink);
}

.price small {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: 0.2rem;
}

/* Guides catalog */
.country-nav {
  position: sticky;
  top: calc(var(--header-h) + 0.75rem);
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: -1rem 0 2.5rem;
  padding: 0.65rem;
  background: rgba(246, 248, 250, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
}

.country-nav a {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  transition: 0.25s var(--ease);
}

.country-nav a:hover,
.country-nav a.is-active {
  background: var(--ink);
  color: #fff;
}

.country-block {
  margin-bottom: 3.5rem;
  scroll-margin-top: calc(var(--header-h) + 5rem);
}

.country-block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.country-block-head span {
  font-size: 0.9rem;
  color: var(--muted);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.guide-card {
  text-align: center;
}

.guide-cover {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(26, 36, 51, 0.12);
  margin-bottom: 1rem;
  background: var(--bg-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.guide-card:hover .guide-cover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: 0 24px 48px rgba(26, 36, 51, 0.16);
}

.guide-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-cover-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    linear-gradient(160deg, #d9ece9, #f3e0e3 55%, #f4ebe3);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
}

.guide-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.guide-card p {
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

/* Ticket panel (Event Tickets inspired) */
.ticket-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.ticket-panel {
  position: sticky;
  top: calc(var(--header-h) + 1.25rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.ticket-panel h3 {
  margin-bottom: 0.35rem;
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.ticket-row:last-of-type {
  border-bottom: 0;
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.qty button {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
}

.qty span {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.ticket-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0 1.25rem;
  font-weight: 600;
}

.content-stack {
  display: grid;
  gap: 1.5rem;
}

.content-stack .prose {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.prose h2,
.prose h3 {
  margin-bottom: 0.75rem;
}

.prose p + p {
  margin-top: 0.9rem;
}

.prose ul,
.prose ol {
  color: var(--muted);
  padding-left: 1.2rem;
}

.prose a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.prose .alignwide,
.prose .alignfull {
  max-width: 100%;
}

.footer-col .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col .menu a {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--muted);
}

.meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.meta-pill {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 600;
}

/* About / CTA */
.cta-band {
  margin: 1rem 0 5rem;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(26, 36, 51, 0.88), rgba(61, 139, 132, 0.78)),
    url('https://images.unsplash.com/photo-1523906834658-6e24ef2386f9?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: #fff;
  padding: 3.5rem;
  display: grid;
  gap: 1rem;
  align-items: center;
  grid-template-columns: 1.4fr auto;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
}

.cta-band .btn-primary {
  box-shadow: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.stat {
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Footer */
.site-footer {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: #eef3f6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.site-footer .brand-name {
  font-size: 1.8rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col a,
.footer-col p {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.5%, -1%, 0);
  }
}

/* Mobile */
@media (max-width: 980px) {
  .tour-grid,
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .ticket-layout,
  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .ticket-panel {
    position: static;
  }

  .split-visual {
    min-height: 320px;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(246, 248, 250, 0.97);
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open {
    display: flex;
  }

  .nav-list,
  .nav-list--fallback {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .nav-list a,
  .nav-link {
    display: block;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink) !important;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .header-actions .btn {
    display: none;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .country-nav {
    border-radius: var(--radius-sm);
  }
}

@media (max-width: 640px) {
  .tour-grid,
  .guide-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: calc(var(--header-h) + 1rem) 0 1.5rem;
  }

  .cta-band {
    padding: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
