/* Corneliu Scurtu Tours, design system */

:root {
  --c-parchment: #FAF6F1;
  --c-cream: #F3EDE2;
  --c-orange: #FF7101;
  --c-orange-hover: #E55F00;
  --c-wine: #6B1F2A;
  --c-wine-dark: #4A1219;
  --c-olive: #3A4731;
  --c-olive-dark: #2A352A;
  --c-text: #2A352A;
  --c-text-soft: #5C6755;
  --c-gold: #C39A4E;

  --f-display: 'Outfit', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, sans-serif;

  --r-card: 14px;
  --r-pill: 999px;

  --shadow-soft: 0 4px 24px rgba(42, 53, 42, 0.08);
  --shadow-card: 0 8px 32px rgba(42, 53, 42, 0.12);
  --shadow-strong: 0 12px 48px rgba(42, 53, 42, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-parchment);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--c-orange); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--c-orange-hover); }

h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 800; line-height: 1.1; letter-spacing: -0.01em; color: var(--c-olive); }

h1 { font-size: clamp(2rem, 4.2vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }

em { font-style: italic; color: var(--c-orange); font-weight: 500; }
h2 em, h3 em { color: var(--c-wine); }

p { margin-bottom: 1rem; }

ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* Eyebrow labels */
.eyebrow {
  font-family: var(--f-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-wine);
  margin-bottom: 1.5rem;
  display: inline-block;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 10px;
  opacity: 0.7;
}
.eyebrow-wine { color: var(--c-wine); }
.eyebrow-cream { color: var(--c-gold); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--f-body);
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  transition: all 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-orange);
  color: #fff;
}
.btn-primary:hover {
  background: var(--c-orange-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 113, 1, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--c-olive);
  border-color: var(--c-olive);
}
.btn-ghost:hover {
  background: var(--c-olive);
  color: #fff;
}
.btn-large { padding: 18px 36px; font-size: 1.1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 241, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(58, 71, 49, 0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 14px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-olive);
}
.logo:hover { color: var(--c-olive); }
.logo-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: var(--c-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.logo-text {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.logo-text small {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin-top: 2px;
}
.main-nav ul {
  display: flex;
  gap: 1.5rem;
}
.main-nav a {
  color: var(--c-olive);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
}
.main-nav a:hover { color: var(--c-orange); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.lang-switch {
  display: flex;
  gap: 4px;
  padding: 6px;
  background: rgba(58, 71, 49, 0.08);
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.lang-switch a {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  color: var(--c-text-soft);
}
.lang-switch a.lang-active {
  background: var(--c-olive);
  color: #fff;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--c-olive);
  margin: 5px 0;
  transition: 0.3s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: contrast(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42, 53, 42, 0.45) 0%, rgba(42, 53, 42, 0.6) 60%, rgba(42, 53, 42, 0.85) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}
.hero .eyebrow {
  color: var(--c-cream);
  opacity: 0.85;
}
.hero-title {
  color: #fff;
  margin-bottom: 1.2rem;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 3;
}
.hero-title em {
  color: #FFC089;
  font-style: italic;
  font-weight: 500;
  font-family: 'Outfit', system-ui, sans-serif;
}
.hero-lede {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 56ch;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.92);
}
.hero-lede strong { color: var(--c-orange); font-weight: 600; }
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-cta .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.hero-cta .btn-ghost:hover {
  background: #fff;
  color: var(--c-olive);
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.2rem 2rem;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  max-width: max-content;
  margin: 0 auto;
  flex-wrap: wrap;
}
html[lang="de"] .hero .hero-cta { margin-bottom: calc(2.5rem + 70px); }
.hero-stats > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.hero-stats strong {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-orange);
}
.hero-stats span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* Hero floating cards */
.hero-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-inner { z-index: 3; }
.hc {
  position: absolute;
  width: 140px;
  background: #fff;
  padding: 7px;
  border-radius: 10px;
  box-shadow: var(--shadow-strong);
  pointer-events: auto;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
  cursor: pointer;
}
.hc:hover {
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.35);
  z-index: 5;
}
.hc1:hover { transform: rotate(3deg) scale(1.06); }
.hc2:hover { transform: rotate(-4deg) scale(1.06); }
.hc3:hover { transform: rotate(-2deg) scale(1.06); }
.hc4:hover { transform: rotate(4deg) scale(1.06); }
.hc img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 5px;
}
.hc figcaption {
  font-family: var(--f-display);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-olive);
  padding: 7px 3px 1px;
  text-align: center;
  line-height: 1.3;
}
.hc1 { top: calc(7% - 30px); left: 1%; transform: rotate(-4deg); }
.hc2 { top: calc(7% - 30px); right: 1%; transform: rotate(4deg); }
.hc3 { bottom: calc(16% + 30px); right: 1%; transform: rotate(9.5deg); }
.hc4 { bottom: calc(16% + 30px); left: 1%; transform: rotate(-9.5deg); }

/* RU: cards move outward from center + slightly toward edges */
html[lang="ru"] .hc1 { top: calc(7% - 44px); left: calc(1% - 63px); }
html[lang="ru"] .hc2 { top: calc(7% - 44px); right: calc(1% - 62px); }
html[lang="ru"] .hc3 { bottom: calc(16% + 17px); right: calc(1% - 62px); }
html[lang="ru"] .hc4 { bottom: calc(16% + 18px); left: calc(1% - 62px); }

/* DE: cards move toward center + further from horizontal midline */
html[lang="de"] .hc1 { top: calc(7% - 28px); left: calc(1% + 80px); }
html[lang="de"] .hc2 { top: calc(7% - 29px); right: calc(1% + 80px); }
html[lang="de"] .hc3 { bottom: calc(16% + 31px); right: calc(1% + 80px); }
html[lang="de"] .hc4 { bottom: calc(16% + 31px); left: calc(1% + 81px); }

@media (max-width: 1500px) {
  .hero-cards { display: none; }
}

/* About */
.about {
  padding: 6rem 0;
  background: var(--c-parchment);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: var(--c-text-soft); margin-bottom: 1.2rem; }
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2rem 0;
}
.about-tags li {
  padding: 7px 14px;
  background: var(--c-cream);
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-olive);
}
.link-more {
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid var(--c-olive);
  border-radius: var(--r-pill);
  color: var(--c-olive);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.link-more:hover {
  background: var(--c-olive);
  color: #fff;
}
.about-photo {
  position: relative;
  margin: 0 0 40px;
}
.about-photo-frame {
  position: relative;
  border-radius: var(--r-card);
  box-shadow: var(--shadow-strong);
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-card);
  display: block;
}
.about-photo figcaption {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  border-radius: 6px;
  font-family: var(--f-display);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.about-id {
  position: absolute;
  bottom: -32px;
  left: 24px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 18px 12px 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
  z-index: 2;
}
.about-id .logo-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  background: var(--c-wine);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
}

.credentials { margin-top: 3.5rem; }
.credentials-label {
  font-family: var(--f-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-wine);
  margin: 0 0 0.9rem;
}
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}
.credential {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: zoom-in;
}
.credential:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.credential img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: var(--c-cream);
}
.credential-meta {
  display: block;
  padding: 7px 6px;
  font-size: 0.66rem;
  font-weight: 700;
  font-family: var(--f-display);
  color: var(--c-olive);
  text-align: center;
  background: var(--c-cream);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 18, 15, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 4rem 2rem 2rem;
  cursor: zoom-out;
  animation: lightboxIn 0.18s ease-out;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: default;
}
.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: block;
}
.lightbox-caption {
  color: rgba(255,255,255,0.88);
  font-family: var(--f-display);
  font-size: 0.95rem;
  text-align: center;
  margin: 1.2rem 0 0;
  letter-spacing: 0.04em;
}
.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
@keyframes lightboxIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 640px) {
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox { padding: 3rem 1rem 1rem; }
}
.about-id div { line-height: 1.25; }
.about-id strong { color: var(--c-wine); font-family: var(--f-display); font-weight: 700; font-size: 0.92rem; }
.about-id small { display: block; font-size: 0.72rem; color: var(--c-text-soft); margin-top: 1px; }

/* Tours */
.tours {
  padding: 6rem 0;
  background: var(--c-cream);
}
.tours h2 { margin-bottom: 1rem; max-width: 26ch; }
.section-lede {
  max-width: 60ch;
  color: var(--c-text-soft);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}
.tour-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.tour-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}
.tour-featured {
  background: var(--c-olive);
  color: var(--c-cream);
}
.tour-featured h3 { color: #fff; }
.tour-featured .tour-meta { color: rgba(255, 255, 255, 0.78); }
.tour-featured p,
.tour-featured .tour-body > p:nth-of-type(2) { color: rgba(255, 255, 255, 0.92); }
.tour-featured .tour-price a { color: var(--c-orange); }
.tour-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--c-orange);
  color: #fff;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  font-family: var(--f-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
}
.tour-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-label {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.9);
  padding: 5px 11px;
  border-radius: 6px;
  font-family: var(--f-display);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tour-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.tour-meta {
  font-family: var(--f-display);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin-bottom: 0.8rem;
}
.tour-body h3 { margin-bottom: 0.7rem; }
.tour-body > p:nth-of-type(2) {
  color: var(--c-text-soft);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 1.4rem;
}
.tour-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(58, 71, 49, 0.12);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-olive);
}
.tour-featured .tour-price { border-top-color: rgba(255, 255, 255, 0.15); color: var(--c-cream); }
.tour-price a { font-size: 0.88rem; font-weight: 600; }

/* Reviews */
.reviews {
  padding: 6rem 0;
  background: var(--c-parchment);
}
.reviews h2 { margin-bottom: 3rem; }
.review-featured {
  background: var(--c-wine);
  color: #fff;
  padding: 3rem 3rem 2.5rem;
  border-radius: var(--r-card);
  margin-bottom: 1.6rem;
  position: relative;
}
.review-featured::before {
  content: "”";
  position: absolute;
  top: 1.4rem;
  right: 2.5rem;
  font-size: 6rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
  font-family: Georgia, serif;
}
.review-featured p {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 1.5rem;
  max-width: 60ch;
}
.review-featured footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}
.review-featured footer strong { color: #fff; font-weight: 700; }
.review-featured .stars { color: var(--c-orange); letter-spacing: 0.08em; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 2rem;
}
.review-grid blockquote {
  background: #fff;
  border-radius: var(--r-card);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
}
.review-grid p {
  font-size: 0.95rem;
  color: var(--c-text);
  margin-bottom: 1rem;
  line-height: 1.55;
}
.review-grid footer {
  font-size: 0.82rem;
  color: var(--c-text-soft);
}
.review-grid footer strong {
  display: block;
  color: var(--c-wine);
  font-weight: 600;
  margin-bottom: 2px;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: #fff;
  border-radius: var(--r-card);
  box-shadow: var(--shadow-soft);
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--c-text-soft);
  flex-wrap: wrap;
}
.trust-badge strong {
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: var(--c-olive);
}
.trust-badge .stars { color: #FBBC05; letter-spacing: 1px; font-size: 1rem; }
.trust-badge .g-logo {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background: #fff;
  border: 1.5px solid #e0d8c8;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
}
.trust-badge .g-logo svg { width: 100%; height: 100%; display: block; }
.trust-badge .gom-logo {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background: #fff;
  border: 1.5px solid #e0d8c8;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  overflow: hidden;
}
.trust-badge .gom-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
a.trust-badge { text-decoration: none; color: inherit; }
a.trust-badge:hover .gom-logo { border-color: var(--c-olive); }
@media (max-width: 640px) {
  .trust-strip {
    flex-direction: column;
    align-items: stretch;
    padding: 1.4rem;
    gap: 1rem;
    text-align: center;
  }
  .trust-badge { justify-content: center; gap: 6px; }
  .trust-strip .btn { width: 100%; text-align: center; }
}

/* Destinations */
.destinations {
  padding: 6rem 0;
  background: var(--c-olive);
  color: var(--c-cream);
}
.destinations h2 { color: #fff; max-width: 22ch; }
.destinations .section-lede { color: rgba(255, 255, 255, 0.75); }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1.2rem;
}
.dest-card {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  transition: transform 0.2s;
  box-shadow: var(--shadow-card);
}
.dest-card:hover { transform: translateY(-4px); color: #fff; }
.dest-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.dest-card > * { position: relative; z-index: 1; }
.dest-num {
  align-self: flex-end;
  background: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.9);
  padding: 4px 9px;
  border-radius: 5px;
  font-family: var(--f-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.dest-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.55);
  padding: 4px 10px;
  border-radius: 5px;
  font-family: var(--f-display);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}
.dest-foot { margin-top: auto; }
.dest-loc {
  font-family: var(--f-display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  margin-bottom: 4px;
}
.dest-foot h3 { color: #fff; font-size: 1.2rem; }
.dest-large { grid-row: span 2; }

/* CTA band */
.cta-band {
  padding: 5rem 0;
  background: var(--c-wine);
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 0.8rem; }
.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 55ch;
  margin: 0 auto 2rem;
}

/* Footer */
.site-footer {
  background: var(--c-olive-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 1.5rem;
}
.site-footer .logo { color: #fff; }
.site-footer .logo-text small { color: rgba(255, 255, 255, 0.5); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 35ch;
}
.footer-links h4 {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-links ul li {
  margin-bottom: 0.7rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}
.footer-links a:hover { color: var(--c-orange); }
.footer-comark { text-align: right; }
.comark-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
  font-family: var(--f-display);
}
.footer-comark img {
  max-width: 160px;
  margin-left: auto;
  filter: brightness(1.1);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.7); }
.footer-bottom a:hover { color: var(--c-orange); }

/* Tablet */
@media (max-width: 980px) {
  .header-actions .btn { padding: 10px 18px; font-size: 0.88rem; }
  .main-nav { display: none; }
  .nav-toggle { display: block; }

  .hero-cards { display: none; }
  .hero { min-height: auto; padding: 5rem 0 4rem; }
  .hero-stats { gap: 1.5rem; padding: 1rem 1.5rem; }

  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo { max-width: 480px; margin: 0 auto 40px; }

  .tour-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-large { grid-row: span 1; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-comark { text-align: left; grid-column: 1 / -1; }
  .footer-comark img { margin-left: 0; }
}

/* Mobile */
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .header-actions { gap: 0.5rem; }
  .header-actions .btn { display: none; }
  .lang-switch { padding: 4px; font-size: 0.7rem; }
  .lang-switch a { padding: 3px 7px; }

  .hero { padding: 4rem 0 3rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-stats { flex-direction: column; gap: 0.8rem; align-items: flex-start; border-radius: 16px; }
  .hero-stats > div { width: 100%; justify-content: space-between; }

  .about, .tours, .reviews, .destinations, .cta-band { padding: 4rem 0; }
  .tour-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .review-featured { padding: 2rem 1.5rem; }
  .review-featured p { font-size: 1.1rem; }
  .trust-strip { flex-direction: column; align-items: stretch; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   LANDING PAGE STYLES (tour landings + partners)
============================================ */

/* Page hero (simpler than homepage hero, full photo background) */
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 6rem 0 3rem;
  overflow: hidden;
  color: #fff;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.15) 100%);
  z-index: 1;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 720px; }
.page-hero .eyebrow { color: var(--c-cream); opacity: 0.95; text-shadow: 0 1px 6px rgba(0,0,0,0.6); }
.page-hero h1 { color: #fff; margin-bottom: 1.5rem; text-shadow: 0 2px 16px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.8); font-size: clamp(2.2rem, 4.2vw, 3.2rem); line-height: 1.1; }
.page-hero h1 em { color: #FFC089; font-family: var(--f-display); font-weight: 500; }
.page-hero .hero-cta { justify-content: flex-start; margin-bottom: 0; gap: 1rem; }

.page-intro {
  background: var(--c-parchment);
  padding: 4rem 0 5rem;
}
.page-intro-inner { max-width: 820px; }
.page-intro .subtitle {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 500;
  color: var(--c-olive);
  margin-bottom: 1.4rem;
  line-height: 1.35;
}
.page-intro .lede {
  font-size: 1.05rem;
  color: var(--c-text-soft);
  margin-bottom: 2rem;
  max-width: 60ch;
  line-height: 1.6;
}
.page-intro .meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2rem;
}
.page-intro .meta-pills span {
  background: var(--c-cream);
  color: var(--c-olive);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 500;
}
.page-intro .meta-pills strong { color: var(--c-orange); }
.page-intro .hero-cta { justify-content: flex-start; margin-bottom: 0; }

/* Two-column checklist for "What's included" */
.section {
  padding: 5rem 0;
}
.section-title { margin-bottom: 3rem; max-width: 32ch; }
.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2.5rem;
  margin-bottom: 2rem;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
  font-size: 0.97rem;
  color: var(--c-text);
}
.checklist li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--c-cream);
  color: var(--c-orange);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
}
.note-soft {
  color: var(--c-text-soft);
  font-size: 0.92rem;
  font-style: italic;
  padding: 1rem 1.2rem;
  background: rgba(195, 154, 78, 0.08);
  border-left: 3px solid var(--c-gold);
  border-radius: 4px;
}

/* Vertical timeline */
.timeline {
  position: relative;
  padding-left: 0;
  margin: 2rem 0;
}
.tl-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(58,71,49,0.1);
}
.tl-row:last-child { border-bottom: none; }
.tl-time {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--c-wine);
  padding-top: 4px;
}
.tl-body h3 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-olive);
  margin-bottom: 0.5rem;
}
.tl-body p { color: var(--c-text-soft); margin: 0; line-height: 1.6; }

/* Why this section (dark olive band) */
.why-band {
  padding: 5rem 0;
  background: var(--c-olive);
  color: var(--c-cream);
}
.why-band h2 { color: #fff; max-width: 24ch; margin-bottom: 1.5rem; }
.why-band h2 em { color: #FFC089; }
.why-band p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 65ch;
}

/* FAQ accordion */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(58,71,49,0.15);
  padding: 1.2rem 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-olive);
  list-style: none;
}
.faq-q::after {
  content: "+";
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--c-orange);
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item.is-open .faq-q::after {
  content: "−";
}
.faq-a {
  padding-top: 1rem;
  color: var(--c-text-soft);
  display: none;
  line-height: 1.6;
}
.faq-item.is-open .faq-a { display: block; }

/* Booking CTA grid */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.booking-wa {
  background: var(--c-olive);
  color: var(--c-cream);
  border-radius: var(--r-card);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  top: 90px;
  align-self: start;
}
.booking-wa h3 { color: #fff; margin-bottom: 0.6rem; }
.booking-wa p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.booking-wa .phone {
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-orange);
  margin-bottom: 1.5rem;
  display: block;
}
.booking-form {
  background: #fff;
  border-radius: var(--r-card);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}
.booking-form h3 { margin-bottom: 1.5rem; }
.form-row { margin-bottom: 1.2rem; }
.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-olive);
  margin-bottom: 0.4rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(58,71,49,0.15);
  border-radius: 8px;
  background: var(--c-parchment);
  font-family: var(--f-body);
  font-size: 0.95rem;
  color: var(--c-text);
  transition: border-color 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--c-orange);
}
.form-row textarea { min-height: 100px; resize: vertical; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.booking-form button[type="submit"] {
  width: 100%;
  padding: 16px;
  background: var(--c-orange);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.booking-form button[type="submit"]:hover { background: var(--c-orange-hover); }

/* Other ways to travel (compact cross-sell) */
.other-ways {
  padding: 5rem 0;
  background: var(--c-cream);
}
.other-ways h2 { margin-bottom: 2rem; }
.other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.other-card {
  background: #fff;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s, box-shadow 0.2s;
}
.other-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-strong); }
.other-card-img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}
.other-card-body { padding: 1.2rem 1.4rem 1.4rem; }
.other-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.other-card p { font-size: 0.92rem; color: var(--c-text-soft); margin-bottom: 0.8rem; }
.other-card .price-line {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--c-olive);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(58,71,49,0.1);
  font-size: 0.95rem;
}
.price-line a { font-size: 0.85rem; }

/* Tablet for landings */
@media (max-width: 980px) {
  .checklist { grid-template-columns: 1fr; gap: 0.5rem; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-wa { position: static; }
  .other-grid { grid-template-columns: 1fr; }
  .tl-row { grid-template-columns: 90px 1fr; gap: 1rem; }
}

@media (max-width: 768px) {
  /* Override inline grids on partners page (which use inline styles) */
  section [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }
  section [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  section [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }
  /* Prevent horizontal page scroll */
  body { overflow-x: hidden; }
}

@media (max-width: 640px) {
  .page-hero { min-height: 60vh; padding: 4rem 0 2rem; }
  .page-hero .hero-cta { gap: 0.6rem; }
  .page-intro { padding: 2.5rem 0 3rem; }
  .page-intro .meta-pills { gap: 6px; }
  .tour-price, .other-card .price-line {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    text-align: left;
  }
  .tour-price { font-size: 1.15rem; }
  .other-card .price-line { font-size: 1.05rem; }
  .tour-price a,
  .other-card .price-line a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px 22px;
    background: var(--c-orange);
    color: #fff;
    border-radius: var(--r-pill);
    font-size: 0.95rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  }
  .tour-price a:hover, .tour-price a:active,
  .other-card .price-line a:hover, .other-card .price-line a:active {
    background: var(--c-orange-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 113, 1, 0.3);
  }
  .tour-featured .tour-price a { background: var(--c-orange); color: #fff; }
  .tour-featured .tour-price a:hover,
  .tour-featured .tour-price a:active { background: var(--c-orange-hover); color: #fff; }
  .booking-form, .booking-wa { padding: 1.6rem; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .tl-row { grid-template-columns: 1fr; gap: 0.3rem; }
  .tl-time { padding-top: 0; }
}

/* Mobile menu open */
/* Mobile side drawer */
@media (max-width: 980px) {
  .header-inner { padding: 12px 16px; gap: 0.5rem; }
  .logo-text { font-size: 0.92rem; }
  .logo-text small { display: none; }
  .lang-switch { font-size: 0.78rem; }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: max-content;
    min-width: 220px;
    max-width: 280px;
    height: 100vh;
    height: 100dvh;
    background: #FAF6F1;
    padding: 5rem 1.6rem 2rem 1.4rem;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    box-shadow: -8px 0 30px rgba(0,0,0,0.18);
    overflow-y: auto;
    visibility: hidden;
    display: block;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0.4rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .main-nav li {
    border-bottom: 1px solid rgba(58,71,49,0.08);
  }
  .main-nav a {
    display: block;
    padding: 1rem 0;
    color: var(--c-olive);
    font-weight: 600;
    font-size: 1.1rem;
  }

  /* Backdrop */
  .menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 18, 15, 0);
    z-index: 9998;
    pointer-events: none;
    transition: background 0.28s ease;
  }

  body.menu-open .site-header {
    z-index: 10000;
  }
  body.menu-open .main-nav {
    transform: translateX(0);
    visibility: visible;
  }
  body.menu-open .menu-backdrop {
    background: rgba(0, 0, 0, 0.18);
    pointer-events: auto;
  }
  body.menu-open { overflow: hidden; }
  body.menu-open .nav-toggle {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 10001;
  }
  body.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
