/* ============================================================
   Гергерт SUP — prototype landing
   palette: calm light blue (water/sky) + warm coral accent
   ============================================================ */

:root {
  --blue-50:  #EFF6FF;
  --blue-100: #DBEAFE;
  --blue-200: #BFDBFE;
  --blue-300: #93C5FD;
  --blue-400: #60A5FA;
  --blue-500: #3B82F6;
  --blue-600: #2563EB;
  --blue-700: #1D4ED8;
  --ink:      #0F172A;
  --ink-2:    #334155;
  --ink-3:    #64748B;
  --ink-4:    #94A3B8;
  --line:     #E2E8F0;
  --bg:       #FFFFFF;
  --bg-soft:  #F8FAFC;
  --warm:     #FB923C;
  --warm-2:   #F97316;

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-sm: 0 4px 12px rgba(15,23,42,.06);
  --shadow-md: 0 10px 28px rgba(15,23,42,.08);
  --shadow-lg: 0 20px 50px rgba(15,23,42,.12);

  --max: 1180px;
  --gap: 28px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 500;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226,232,240,.7);
}
.header-row {
  display: flex; align-items: center;
  gap: 24px;
  height: 70px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 18px; letter-spacing: -.01em;
}
.brand-logo {
  height: 38px; width: auto;
  filter: drop-shadow(0 2px 4px rgba(59,130,246,.2));
}
.brand-text { color: var(--ink); }
.brand-text span { color: var(--blue-500); }
.nav {
  display: flex; gap: 28px;
  margin-left: auto;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
}
.nav a:hover { color: var(--blue-600); }
.header-cta {
  font-weight: 700;
  font-size: 15px;
  color: var(--blue-600);
  padding: 10px 18px;
  border: 1.5px solid var(--blue-200);
  border-radius: 999px;
  transition: all .2s ease;
}
.header-cta:hover {
  background: var(--blue-500); color: #fff;
  border-color: var(--blue-500);
  box-shadow: 0 6px 16px rgba(59,130,246,.3);
}
.burger {
  display: none;
  background: none; border: 0;
  width: 40px; height: 40px;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  margin-left: auto;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 12px 24px 22px;
  border-top: 1px solid var(--line);
  gap: 4px;
}
.mobile-nav a {
  padding: 12px 4px; font-weight: 600;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-call {
  margin-top: 10px;
  background: var(--blue-500); color: #fff !important;
  text-align: center;
  border-radius: 999px;
  padding: 14px !important;
  border: 0 !important;
}
.site-header.menu-open .mobile-nav { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 90px 0 60px;
  display: flex; align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,23,42,.05) 0%, rgba(15,23,42,.55) 100%),
    linear-gradient(135deg, rgba(37,99,235,.35) 0%, rgba(15,23,42,.15) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  padding: 7px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  margin: 0 0 24px;
}
.hero-title {
  margin: 0 0 20px;
  font-size: clamp(38px, 6.5vw, 72px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.02em;
  text-shadow: 0 4px 22px rgba(15,23,42,.35);
}
.hero-sub {
  margin: 0 0 36px;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 500;
  max-width: 540px;
  color: rgba(255,255,255,.92);
  text-shadow: 0 2px 10px rgba(15,23,42,.4);
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 50px;
}
.hero-meta {
  display: flex; gap: 36px;
  flex-wrap: wrap;
}
.hero-meta > div {
  display: flex; flex-direction: column;
}
.hero-meta strong {
  font-size: 28px; font-weight: 800;
  letter-spacing: -.01em;
}
.hero-meta span {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}
.hero-scroll {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px;
  z-index: 2;
  animation: float 2.5s ease-in-out infinite;
  backdrop-filter: blur(6px);
}
@keyframes float {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(7px); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700; font-size: 16px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 0;
  transition: all .2s ease;
  text-decoration: none;
  letter-spacing: -.005em;
}
.btn-primary {
  background: var(--warm-2);
  color: #fff;
  box-shadow: 0 8px 22px rgba(249,115,22,.35);
}
.btn-primary:hover {
  background: #EA580C;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(249,115,22,.45);
}
.btn-ghost {
  background: rgba(255,255,255,.18);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.28);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}
.btn-block { width: 100%; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 100px 0;
}
.section-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 60px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.section-eyebrow.light {
  color: #fff;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
}
.section-head h2,
.section h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.section-lead {
  font-size: 18px;
  color: var(--ink-3);
  margin: 0;
}

/* ============================================================
   TOURS GRID
   ============================================================ */
#tours {
  background: linear-gradient(180deg, var(--bg) 0%, var(--blue-50) 100%);
}
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.tour-card {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid var(--line);
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.tour-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--blue-100);
}
.tour-badge {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 12px; font-weight: 700;
  background: rgba(255,255,255,.95);
  color: var(--blue-700);
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.tour-badge-warm {
  background: var(--warm-2);
  color: #fff;
}
.tour-body {
  padding: 24px 24px 22px;
  display: flex; flex-direction: column;
  flex: 1;
}
.tour-body h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.tour-route {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-600);
  letter-spacing: .01em;
}
.tour-desc {
  margin: 0 0 16px;
  color: var(--ink-2);
  font-size: 15px;
}
.tour-incl {
  list-style: none; padding: 0; margin: 0 0 22px;
  font-size: 14px;
  color: var(--ink-2);
}
.tour-incl li {
  position: relative;
  padding: 5px 0 5px 22px;
}
.tour-incl li:before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 12px; height: 12px;
  background: var(--blue-100);
  border-radius: 50%;
}
.tour-incl li:after {
  content: '';
  position: absolute;
  left: 4px; top: 14px;
  width: 4px; height: 7px;
  border: solid var(--blue-600);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.tour-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.tour-price {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--ink);
}

/* ============================================================
   GIFT RECIPIENTS
   ============================================================ */
.gift-section {
  background: linear-gradient(180deg, #ffffff 0%, #EFF6FF 100%);
}
.gift-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.gift-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  padding: 28px 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.gift-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px -18px rgba(59, 130, 246, 0.35);
  border-color: #BFDBFE;
}
.gift-icon {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 14px;
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border-radius: 16px;
}
.gift-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.gift-card p {
  font-size: 15px;
  line-height: 1.55;
  color: #475569;
  margin: 0;
}
@media (max-width: 960px) {
  .gift-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 560px) {
  .gift-grid { grid-template-columns: 1fr; gap: 16px; }
  .gift-card { padding: 24px 20px; }
  .gift-icon { width: 56px; height: 56px; font-size: 32px; }
}

/* ============================================================
   CORPORATE
   ============================================================ */
.corporate {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.corp-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.corp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(29,78,216,.92) 0%, rgba(15,23,42,.85) 100%);
}
.corp-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.corp-text h2 {
  color: #fff;
}
.corp-text p {
  font-size: 17px;
  color: rgba(255,255,255,.88);
  margin: 0 0 20px;
  max-width: 540px;
}
.corp-bullets {
  list-style: none; padding: 0; margin: 0 0 30px;
}
.corp-bullets li {
  padding: 9px 0 9px 28px;
  position: relative;
  font-size: 15px;
  color: rgba(255,255,255,.94);
}
.corp-bullets li:before {
  content: '✓';
  position: absolute;
  left: 0; top: 10px;
  width: 20px; height: 20px;
  background: var(--warm-2);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.corp-price {
  font-size: 17px;
  color: rgba(255,255,255,.85);
}
.corp-price strong {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}
.corp-form {
  background: #fff;
  color: var(--ink);
  padding: 36px;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.corp-form h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.corp-form label {
  display: flex; flex-direction: column; gap: 6px;
}
.corp-form label > span {
  font-size: 13px; font-weight: 600;
  color: var(--ink-3);
  letter-spacing: .02em;
}
.corp-form input {
  font-family: inherit;
  font-size: 15px;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg-soft);
  transition: border-color .2s, background .2s;
  color: var(--ink);
}
.corp-form input:focus {
  outline: 0;
  border-color: var(--blue-500);
  background: #fff;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-note {
  margin: 0;
  font-size: 13px;
  color: var(--ink-3);
  text-align: center;
}
.form-success {
  background: var(--blue-50);
  border: 1.5px solid var(--blue-200);
  color: var(--blue-700);
  border-radius: var(--r-md);
  padding: 16px 20px;
  text-align: center;
}
.form-success p { margin: 4px 0 0; font-size: 14px; color: var(--ink-2); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--bg-soft); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.g-item {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
  background: var(--blue-100);
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.g-item:hover img { transform: scale(1.07); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 12px;
}
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.review-head strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
}
.review-head span {
  display: block;
  font-size: 13px;
  color: var(--ink-3);
}
.stars {
  color: var(--warm-2);
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 15px;
}
.review p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* ============================================================
   WHY
   ============================================================ */
.why {
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--bg) 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.why-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: inline-block;
  width: 64px; height: 64px;
  background: var(--blue-50);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.why-item h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.005em;
}
.why-item p {
  margin: 0;
  color: var(--ink-3);
  font-size: 15px;
}

/* ============================================================
   CONTACTS
   ============================================================ */
.contacts {
  background: var(--bg-soft);
}
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--gap);
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 {
  margin: 22px 0 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-3);
  font-weight: 700;
}
.contact-card h3:first-child { margin-top: 0; }
.contact-line {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
  transition: background .2s;
}
.contact-line:hover {
  background: var(--blue-50);
}
.contact-line span {
  margin-left: auto;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-3);
}
.contact-address {
  margin: 0;
  padding: 12px 14px;
  font-weight: 600;
  color: var(--ink-2);
}
.contact-map {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--blue-100);
  box-shadow: var(--shadow-sm);
  min-height: 480px;
}
.contact-map iframe { display: block; min-height: 480px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  padding: 50px 0 36px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
}
.footer-brand {
  display: flex; align-items: center; gap: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.footer-brand img { height: 36px; filter: brightness(1.1); }
.footer-brand strong { color: var(--blue-300); }
.footer-links {
  display: flex; gap: 24px;
  font-size: 14px; font-weight: 600;
}
.footer-links a:hover { color: #fff; }
.footer-meta {
  display: flex; gap: 18px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer-meta a:hover { color: #fff; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15,23,42,.95);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn .25s ease;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 100%; max-height: 100%;
  border-radius: var(--r-md);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  transition: background .2s;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,.3);
}
.lightbox-close { top: 20px; right: 20px; font-size: 32px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .tours-grid,
  .reviews-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .corp-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contacts-grid {
    grid-template-columns: 1fr;
  }
  .contact-map { min-height: 320px; }
  .contact-map iframe { min-height: 320px; }
}

@media (max-width: 720px) {
  .container { padding: 0 18px; }
  .nav, .header-cta { display: none; }
  .burger { display: flex; }
  .header-row { height: 62px; }

  .section { padding: 70px 0; }
  .section-head { margin-bottom: 40px; }

  .hero { padding: 100px 0 70px; min-height: 92vh; }
  .hero-title { font-size: 38px; line-height: 1.08; }
  .hero-sub { font-size: 17px; }
  .hero-actions { width: 100%; }
  .btn { width: 100%; padding: 16px 24px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-meta { gap: 22px; }
  .hero-meta strong { font-size: 22px; }
  .hero-meta span { font-size: 11px; }

  .tours-grid,
  .reviews-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .tour-body { padding: 22px 22px 20px; }
  .tour-body h3 { font-size: 20px; }
  .tour-foot { flex-direction: column; align-items: stretch; }
  .tour-foot .btn { width: 100%; }

  .corp-form { padding: 28px 24px; }
  .corp-form h3 { font-size: 22px; }

  .contact-card { padding: 26px 22px; }
  .contact-line { font-size: 15px; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 18px; }

  .lightbox-prev, .lightbox-next { width: 42px; height: 42px; font-size: 22px; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 32px; }
  .section h2, .section-head h2 { font-size: 28px; }
  .hero-meta { gap: 16px; }
}

/* keyboard a11y */
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 2px;
}

/* ============================================================
   TOUR CARD CLICKABLE (main page)
   ============================================================ */
.tour-card-link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.tour-card-link .tour-card {
  height: 100%;
}

/* ============================================================
   TOUR DETAIL PAGES
   ============================================================ */

/* offset for fixed header on tour pages */
.tour-page main { padding-top: 70px; }

/* Breadcrumbs */
.breadcrumbs {
  background: var(--bg-soft);
  padding: 18px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--ink-3);
  font-weight: 500;
}
.breadcrumbs li { display: flex; align-items: center; gap: 8px; }
.breadcrumbs li + li:before {
  content: '›';
  color: var(--ink-4);
  font-weight: 400;
}
.breadcrumbs a { color: var(--blue-600); font-weight: 600; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs li[aria-current="page"] {
  color: var(--ink-2);
  font-weight: 600;
}

/* Tour hero */
.tour-hero {
  padding: 50px 0 60px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--blue-50) 100%);
}
.tour-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 44px;
  align-items: start;
}
.tour-hero-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--blue-100);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.tour-hero-photo .tour-badge { font-size: 13px; padding: 8px 16px; }
.tour-hero-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  position: sticky;
  top: 92px;
}
.tour-hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin: 0 0 10px;
}
.tour-hero-card h1 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.tour-hero-lead {
  margin: 0 0 22px;
  color: var(--ink-2);
  font-size: 16px;
}
.tour-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 6px;
}
.tour-price-row .tour-price { font-size: 32px; }
.tour-price-old {
  font-size: 18px;
  color: var(--ink-4);
  text-decoration: line-through;
}
.tour-price-bonus {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ECFDF5;
  color: #047857;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  margin: 0 0 22px;
}
.tour-cta-block { display: flex; flex-direction: column; gap: 10px; }
.tour-cta-block .btn-primary { padding: 16px 22px; font-size: 16px; }
.tour-cta-note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-3);
  margin: 4px 0 0;
}

/* Quick params */
.tour-params {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.tour-param {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tour-param-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  color: var(--ink-3);
}
.tour-param-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

/* Guarantees badges */
.tour-guarantees {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.tour-guarantees-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  color: var(--ink-3);
  margin: 0 0 14px;
}
.tour-guarantees-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.tour-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-700);
  cursor: pointer;
  transition: background .2s, transform .2s;
  text-align: left;
  width: 100%;
  font-family: inherit;
}
.tour-guarantee:hover { background: var(--blue-100); transform: translateY(-1px); }
.tour-guarantee-icon {
  width: 28px; height: 28px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* Tabs */
.tour-tabs-section {
  padding: 70px 0;
}
.tour-tabs-nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
}
.tour-tab-btn {
  background: none;
  border: 0;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-3);
  letter-spacing: -.005em;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
  cursor: pointer;
}
.tour-tab-btn:hover { color: var(--blue-600); }
.tour-tab-btn.active {
  color: var(--blue-700);
  border-bottom-color: var(--blue-500);
}
.tour-tab-panel {
  display: none;
  animation: fadeIn .25s ease;
}
.tour-tab-panel.active { display: block; }

.tour-tab-panel h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.01em;
  margin: 0 0 16px;
}
.tour-tab-panel h4 {
  font-size: 17px;
  font-weight: 800;
  margin: 24px 0 12px;
}
.tour-tab-panel p {
  font-size: 16px;
  color: var(--ink-2);
  margin: 0 0 14px;
  line-height: 1.65;
}
.tour-tab-panel ul {
  margin: 0 0 14px;
  padding-left: 0;
  list-style: none;
}
.tour-tab-panel ul li {
  position: relative;
  padding: 6px 0 6px 28px;
  font-size: 15px;
  color: var(--ink-2);
}
.tour-tab-panel ul li:before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 14px; height: 14px;
  background: var(--blue-100);
  border-radius: 50%;
}
.tour-tab-panel ul li:after {
  content: '';
  position: absolute;
  left: 5px; top: 14px;
  width: 4px; height: 8px;
  border: solid var(--blue-600);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Programme timeline */
.tour-programme {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.tour-programme:before {
  content: '';
  position: absolute;
  left: 56px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--blue-100);
}
.tour-tab-panel ul.tour-programme li {
  position: relative;
  padding: 8px 0 18px 92px;
  min-height: 50px;
}
.tour-tab-panel ul.tour-programme li:before,
.tour-tab-panel ul.tour-programme li:after { display: none; }
.tour-programme-time {
  position: absolute;
  left: 0; top: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1.5px solid var(--blue-100);
  border-radius: 999px;
  padding: 6px 12px;
  width: 76px;
  text-align: center;
  z-index: 1;
}
.tour-programme-text {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}
.tour-programme-text strong {
  display: block;
  color: var(--ink);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 2px;
}

/* Two-column lists in panels */
.tour-list-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

/* Conditions box */
.tour-conditions {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  margin: 18px 0;
}
.tour-conditions h4 { margin-top: 0; }
.tour-conditions:last-child { margin-bottom: 0; }

/* Tour gallery */
.tour-gallery-section {
  padding: 70px 0;
  background: var(--bg-soft);
}
.tour-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.tour-gallery-grid .g-item { aspect-ratio: 1; }
.tour-gallery-grid .g-item:nth-child(1),
.tour-gallery-grid .g-item:nth-child(6) {
  grid-row: span 2;
  aspect-ratio: 1 / 2.07;
}

/* Tour reviews */
.tour-reviews-section { padding: 70px 0; }
.tour-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

/* Booking form */
.tour-form-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--ink) 100%);
  color: #fff;
}
.tour-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.tour-form-text h2 { color: #fff; margin: 0 0 16px; }
.tour-form-text p {
  color: rgba(255,255,255,.85);
  font-size: 17px;
  margin: 0 0 18px;
  max-width: 460px;
}
.tour-form-perks {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tour-form-perks li {
  padding: 7px 0 7px 28px;
  position: relative;
  color: rgba(255,255,255,.95);
  font-size: 15px;
  font-weight: 600;
}
.tour-form-perks li:before {
  content: '✓';
  position: absolute;
  left: 0; top: 7px;
  width: 20px; height: 20px;
  background: var(--warm-2);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

/* Cross-sell */
.tour-cross-sell {
  padding: 70px 0;
  background: var(--bg-soft);
}
.tour-cross-sell .tours-grid { gap: 20px; }
.tour-cross-sell .tour-card { box-shadow: var(--shadow-sm); }

/* Mobile / accordion mode for tabs */
@media (max-width: 720px) {
  .tour-page main { padding-top: 62px; }
  .tour-hero { padding: 30px 0 40px; }
  .tour-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tour-hero-card {
    padding: 24px 22px;
    position: static;
  }
  .tour-hero-card h1 { font-size: 26px; }
  .tour-price-row .tour-price { font-size: 28px; }

  .tour-params { grid-template-columns: 1fr 1fr; gap: 12px 14px; }
  .tour-guarantees-list { grid-template-columns: 1fr; }

  /* tabs become accordion */
  .tour-tabs-section { padding: 50px 0; }
  .tour-tabs-nav { display: none; }
  .tour-tab-panel {
    display: block !important;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    margin-bottom: 10px;
    background: #fff;
    overflow: hidden;
  }
  .tour-tab-panel-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #fff;
    border: 0;
    padding: 18px 20px;
    font-family: inherit;
    font-size: 17px;
    font-weight: 800;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
    border-bottom: 1px solid transparent;
  }
  .tour-tab-panel-mobile-head:after {
    content: '+';
    font-size: 24px;
    font-weight: 400;
    color: var(--blue-600);
    transition: transform .2s;
  }
  .tour-tab-panel.open .tour-tab-panel-mobile-head:after {
    content: '−';
  }
  .tour-tab-panel-body {
    display: none;
    padding: 0 20px 20px;
  }
  .tour-tab-panel.open .tour-tab-panel-body { display: block; }
  .tour-tab-panel.open .tour-tab-panel-mobile-head {
    border-bottom-color: var(--line);
  }

  .tour-programme:before { left: 32px; }
  .tour-tab-panel ul.tour-programme li { padding-left: 78px; }
  .tour-programme-time { width: 64px; font-size: 12px; padding: 5px 8px; }
  .tour-list-2col { grid-template-columns: 1fr; }

  .tour-gallery-section { padding: 50px 0; }
  .tour-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .tour-gallery-grid .g-item:nth-child(1),
  .tour-gallery-grid .g-item:nth-child(6) {
    grid-row: auto;
    aspect-ratio: 1;
  }

  .tour-reviews-section { padding: 50px 0; }
  .tour-reviews-grid { grid-template-columns: 1fr; }

  .tour-form-section { padding: 50px 0; }
  .tour-form-grid { grid-template-columns: 1fr; gap: 30px; }

  .tour-cross-sell { padding: 50px 0; }
}

/* Hide mobile-only accordion head on desktop */
@media (min-width: 721px) {
  .tour-tab-panel-mobile-head { display: none; }
  .tour-tab-panel-body { display: contents; }
}

@media (max-width: 380px) {
  .tour-params { grid-template-columns: 1fr; }
  .tour-hero-card h1 { font-size: 23px; }
}
