@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&family=Satisfy&display=swap');

:root {
  --text-color: #eeeeee;
  --dark-bg: #1a1a1a;
  --dark-surface: #2b2b2b;
  --light-bg: #f9f9f9;
  --light-surface: #ffffff;
  --light-muted: #666;
  --primary-font: 'Outfit', sans-serif;
  --logo-font: 'Satisfy', cursive;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.22);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--primary-font);
  color: var(--text-color);
  background: var(--dark-bg);
  overflow-x: hidden;
}

a {
  color: inherit;
}

.container {
  width: min(1400px, calc(100% - 80px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  pointer-events: none;
}

.header-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.header-row > * {
  pointer-events: auto;
}

.logo {
  font-family: var(--logo-font);
  font-size: 2.2rem;
  text-decoration: none;
  color: #fff;
}

.logo-mark {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px;
  border-radius: 50px;
}

.nav a {
  text-decoration: none;
  color: #eee;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.nav a.active,
.nav a:hover {
  background: #eee;
  color: #111;
}

.btn {
  text-decoration: none;
  border: none;
  font: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  justify-self: end;
  padding: 6px 6px 6px 18px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid var(--glass-border);
  font-weight: 500;
}

.btn-primary::after {
  content: '↗';
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.btn-primary:hover {
  background: #eee;
  color: #000;
}

.btn-ghost {
  padding: 11px 22px;
  background: #fff;
  color: #111;
  border: 1px solid #e3e3e3;
  font-weight: 600;
}

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

.hero,
.page-hero {
  position: relative;
  min-height: 70vh;
  padding: 150px 0 70px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.2) 46%, rgba(0, 0, 0, 0.56)),
    url('/images/3R7A5674111big.jpg') center/cover no-repeat;
  border-radius: 40px 40px 0 0;
  overflow: hidden;
}

.page-hero {
  min-height: auto;
  padding-bottom: 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 20px;
  align-items: end;
}

.hero-card,
.page-hero-card {
  background: rgba(20, 20, 20, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 28px;
  padding: 30px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.9rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 16px 0;
  color: #fff;
}

.lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.hero-actions,
.cta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-photo {
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.5));
}

.hero-stat {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  font-size: 0.9rem;
}

main section:not(.hero):not(.page-hero) {
  background: var(--light-bg);
  color: #111;
  padding: 86px 0;
}

main section:nth-of-type(odd):not(.hero):not(.page-hero) {
  background: #fff;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
}

.section-head p {
  margin: 0;
  color: var(--light-muted);
  line-height: 1.55;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.direction,
.tour-card,
.market-item,
.price-note,
.booking-shell,
.block {
  background: var(--light-surface);
  border: 1px solid #ededed;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.direction {
  padding: 22px;
}

.direction .kicker {
  background: #f2f2f2;
  border-color: #e2e2e2;
  color: #222;
}

.direction h3 {
  margin: 14px 0 10px;
  font-size: 1.28rem;
}

.direction p,
.tour-body p,
.price-note,
.market-item span,
.block .muted,
.block ul,
.block li,
.timeline-item p,
.form-note {
  color: #666;
  line-height: 1.58;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.tour-card {
  overflow: hidden;
}

.tour-thumb {
  height: 245px;
  background-size: cover;
  background-position: center;
}

.tour-body {
  padding: 22px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.tag {
  font-size: 0.83rem;
  padding: 6px 11px;
  border-radius: 999px;
  background: #f3f3f3;
  border: 1px solid #e5e5e5;
  color: #444;
}

.tour-body h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.tour-meta .btn-primary {
  background: #111;
  color: #fff;
  border-color: #111;
}

.tour-meta .btn-primary::after {
  background: #fff;
  color: #000;
}

.price {
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: #111;
}

.subprice {
  display: block;
  color: #777;
  font-size: 0.84rem;
  margin-top: 3px;
}

.market-list {
  display: grid;
  gap: 12px;
}

.market-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
}

.market-item strong {
  display: block;
  margin-bottom: 4px;
}

.market-price {
  font-weight: 700;
  color: #111;
  white-space: nowrap;
}

.price-note {
  margin-top: 14px;
  padding: 14px 16px;
}

.price-note a {
  color: #185f3f;
}

.two-col {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
}

.block,
.booking-shell {
  padding: 24px;
}

.block h3,
.booking-shell h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  border-left: 3px solid #d9d9d9;
  padding-left: 12px;
}

.timeline-item strong {
  display: block;
  margin-bottom: 4px;
}

.form {
  display: grid;
  gap: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #222;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
  color: #222;
  background: #fff;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.estimate {
  background: #f2f2f2;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  padding: 11px 12px;
  color: #222;
  font-weight: 600;
}

.footer {
  background: #111;
  color: #ddd;
  border-radius: 34px;
  margin: 22px 24px;
  padding: 24px 0;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .container {
    width: min(1400px, calc(100% - 42px));
  }

  .hero-grid,
  .two-col,
  .tour-grid {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 16px 0;
  }

  .header-row {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .btn-primary {
    justify-self: end;
  }

  .hero,
  .page-hero {
    border-radius: 24px 24px 0 0;
    padding-top: 108px;
  }

  .grid-3,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    margin: 18px 12px;
    border-radius: 24px;
  }
}
