/* ==========================================================================
   СтартапДуха — Design System
   Modern pilgrimage editorial. Warm, refined, youth-forward.
   ========================================================================== */

:root {
  /* Palette */
  --cream: #FAF6EF;
  --cream-deep: #F0E8D6;
  --paper: #FFFDF7;
  --ink: #171310;
  --ink-soft: #3A322C;
  --ink-mute: #7A6F64;

  --teal: #1F7A85;
  --teal-deep: #0E4148;
  --teal-bright: #3FB8C4;
  --teal-wash: #E3F1F3;

  --gold: #BE9A4E;
  --gold-soft: #E8D5A5;
  --gold-wash: #F5EBD0;

  --sage: #8A9D7E;
  --clay: #C48A6B;

  /* Typography */
  --f-display: 'Fraunces', 'Times New Roman', serif;
  --f-body: 'Manrope', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Rhythm */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(5rem, 10vw, 10rem);
  --max-w: 1440px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle paper grain for warmth */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.06 0 0 0 0.15 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

main, header, footer, section, nav { position: relative; z-index: 2; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Display typography */
.display, h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 50, "WONK" 0;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

h1 { font-size: clamp(3rem, 9vw, 8rem); font-weight: 400; }
h2 { font-size: clamp(2.25rem, 5.5vw, 5rem); font-weight: 400; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.5rem); font-weight: 500; }

.serif-italic { font-style: italic; font-family: var(--f-display); font-variation-settings: "SOFT" 100; }

/* Eyebrow labels */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--teal);
}
.eyebrow.no-line::before { display: none; }
.eyebrow.gold { color: var(--gold); }
.eyebrow.gold::before { background: var(--gold); }

/* Container */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

/* Section base */
section { padding: var(--section-y) 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-2px); }

.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); }

.btn .arrow { transition: transform 0.3s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(250, 246, 239, 0.75);
  border-bottom: 1px solid rgba(23, 19, 16, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  gap: 2rem;
}
.nav-logo { color: var(--ink); width: 140px; }
.nav-logo svg { width: 100%; height: auto; display: block; }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { width: 100%; background: var(--ink); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-hamburger { display: none; }

/* Arch masks — Orthodox-inspired design motif */
.arch {
  border-radius: 50% 50% 0 0 / 20% 20% 0 0;
  overflow: hidden;
}
.arch-sharp {
  clip-path: path('M 0 100% L 0 45% Q 0 0, 50% 0 Q 100% 0, 100% 45% L 100% 100% Z');
}
.arch-top { border-radius: 50% 50% 0 0 / 35% 35% 0 0; overflow: hidden; }

/* Hero */
.hero {
  padding: 3rem 0 var(--section-y);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: end;
}
.hero-title {
  font-size: clamp(3.5rem, 11vw, 11rem);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 144;
}
.hero-title em {
  font-style: italic;
  color: var(--teal);
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  font-weight: 400;
}
.hero-title-mark {
  display: inline-block;
  position: relative;
}
.hero-title-mark::after {
  content: '';
  position: absolute;
  bottom: 0.12em;
  left: -0.05em;
  right: -0.05em;
  height: 0.15em;
  background: var(--gold);
  z-index: -1;
  opacity: 0.55;
}
.hero-sub {
  max-width: 38ch;
  font-size: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-top: 1.5rem;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(23, 19, 16, 0.12);
}
.hero-meta div { font-size: 0.88rem; color: var(--ink-mute); }
.hero-meta strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

/* Hero photo stack */
.hero-visual {
  position: relative;
  aspect-ratio: 3 / 4;
  max-height: 75vh;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, var(--teal-deep), var(--teal));
  overflow: hidden;
  border-radius: 50% 50% 8px 8px / 20% 20% 8px 8px;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.85;
  filter: saturate(0.7) contrast(1.05);
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, transparent, rgba(14, 65, 72, 0.4));
}
.hero-badge {
  position: absolute;
  background: var(--paper);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 40px -12px rgba(23, 19, 16, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-badge.top-right {
  top: 2rem;
  right: -1.5rem;
}
.hero-badge.bottom-left {
  bottom: 2rem;
  left: -1.5rem;
  background: var(--gold);
  color: var(--ink);
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-bright);
  animation: pulse 2s var(--ease-in-out) infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* Vertical ticker text near hero */
.vertical-label {
  position: absolute;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  left: -3rem;
  bottom: 0;
}

/* Section heading block */
.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 4rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(23, 19, 16, 0.15);
}
.section-num {
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--ink-mute);
  font-feature-settings: "tnum", "lnum";
  letter-spacing: 0;
}
.section-title { font-size: clamp(2rem, 5vw, 4.5rem); }
.section-aside {
  max-width: 32ch;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Formats (3 tour types) */
.formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.format-card {
  position: relative;
  background: var(--paper);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
  min-height: 540px;
}
.format-card:hover { transform: translateY(-8px); }
.format-card .image-frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--cream-deep);
}
.format-card .image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.format-card:hover .image-frame img { transform: scale(1.06); }
.format-card .image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(23, 19, 16, 0.25));
}
.format-card .body {
  padding: 2rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.format-card h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.format-card .duration {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.format-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 1.75rem;
}
.format-card .format-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(23, 19, 16, 0.08);
}
.format-card .price {
  font-family: var(--f-display);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.format-card .go {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: grid; place-items: center;
  transition: all 0.3s var(--ease-out);
}
.format-card:hover .go {
  background: var(--teal);
  transform: rotate(-45deg);
}

/* Large numeric stats block */
.stats-editorial {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.stat-cell {
  padding: 3rem 1.5rem 3rem 0;
  border-right: 1px solid rgba(23, 19, 16, 0.15);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: var(--f-display);
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  display: block;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.stat-num .unit {
  font-size: 0.4em;
  color: var(--teal);
  font-variation-settings: "opsz" 20;
  font-weight: 400;
  margin-left: 0.15em;
  vertical-align: baseline;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.4;
  max-width: 22ch;
}

/* Quote / testimonial */
.quote-block {
  position: relative;
  padding: var(--section-y) 0;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.quote-block::before {
  content: '"';
  position: absolute;
  top: -0.15em;
  left: var(--gutter);
  font-family: var(--f-display);
  font-size: 30vw;
  line-height: 1;
  color: var(--teal-deep);
  opacity: 0.35;
  font-weight: 400;
}
.quote-block .wrap { position: relative; z-index: 2; }
.quote-text {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 3.5vw, 3.25rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin-bottom: 2.5rem;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.quote-text em {
  color: var(--gold);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--cream);
}
.quote-author img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.quote-author div span {
  display: block;
  font-size: 0.85rem;
  color: var(--gold-soft);
  margin-top: 0.15rem;
}

/* Korzina doveriya (Trust Basket) section */
.trust {
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}
.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.trust-bubbles {
  position: relative;
  min-height: 500px;
}
.bubble {
  position: absolute;
  background: var(--paper);
  padding: 1rem 1.5rem;
  border-radius: 999px;
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  box-shadow: 0 8px 30px -10px rgba(23, 19, 16, 0.18);
  white-space: nowrap;
  font-variation-settings: "SOFT" 100;
  transition: transform 0.6s var(--ease-out);
}
.bubble:hover { transform: scale(1.05); }
.bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 25%;
  width: 16px; height: 16px;
  background: var(--paper);
  border-radius: 0 0 0 4px;
  transform: rotate(-45deg);
}
.bubble.b1 { top: 0%; left: 5%; animation: float 6s ease-in-out infinite; }
.bubble.b2 { top: 12%; right: 0; background: var(--teal); color: var(--cream); animation: float 7s ease-in-out infinite 0.5s; }
.bubble.b2::after { background: var(--teal); }
.bubble.b3 { top: 32%; left: 15%; animation: float 8s ease-in-out infinite 1s; }
.bubble.b4 { top: 46%; right: 8%; background: var(--gold); animation: float 6s ease-in-out infinite 1.5s; }
.bubble.b4::after { background: var(--gold); }
.bubble.b5 { top: 62%; left: 2%; animation: float 7s ease-in-out infinite 2s; }
.bubble.b6 { top: 78%; right: 15%; animation: float 8s ease-in-out infinite 2.5s; }
.bubble.b7 { bottom: 0; left: 25%; background: var(--ink); color: var(--cream); animation: float 6s ease-in-out infinite 3s; }
.bubble.b7::after { background: var(--ink); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Gallery grid — editorial masonry */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 1rem;
}
.gallery figure {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  background: var(--cream-deep);
}
.gallery figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.gallery figure:hover img { transform: scale(1.08); }
.gallery .g-1 { grid-column: span 5; grid-row: span 6; border-radius: 200px 200px 12px 12px; }
.gallery .g-2 { grid-column: span 4; grid-row: span 3; }
.gallery .g-3 { grid-column: span 3; grid-row: span 4; }
.gallery .g-4 { grid-column: span 4; grid-row: span 3; }
.gallery .g-5 { grid-column: span 3; grid-row: span 3; }
.gallery .g-6 { grid-column: span 5; grid-row: span 4; }
.gallery .g-7 { grid-column: span 4; grid-row: span 4; }

/* CTA big */
.cta-big {
  background: var(--teal-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding: var(--section-y) 0;
}
.cta-big::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal), transparent 70%);
  top: -300px;
  right: -200px;
  opacity: 0.6;
}
.cta-big::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  opacity: 0.25;
}
.cta-big .wrap { position: relative; z-index: 2; }
.cta-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cta-title {
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.cta-title em {
  color: var(--gold);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.cta-form {
  background: rgba(250, 246, 239, 0.08);
  backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(250, 246, 239, 0.15);
}
.cta-form label {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: block;
  margin-bottom: 0.5rem;
}
.cta-form input, .cta-form select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(250, 246, 239, 0.3);
  color: var(--cream);
  padding: 0.6rem 0;
  font-size: 1rem;
  font-family: var(--f-body);
  margin-bottom: 1.5rem;
  outline: none;
}
.cta-form input::placeholder { color: rgba(250, 246, 239, 0.4); }
.cta-form input:focus, .cta-form select:focus { border-bottom-color: var(--gold); }
.cta-form button {
  width: 100%;
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 1rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--f-body);
  margin-top: 0.5rem;
  transition: all 0.3s var(--ease-out);
}
.cta-form button:hover { background: var(--gold-soft); }

/* Footer */
.foot {
  background: var(--ink);
  color: var(--cream);
  padding: 5rem 0 2rem;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(250, 246, 239, 0.1);
}
.foot-logo {
  color: var(--cream);
  width: 180px;
  margin-bottom: 1.5rem;
}
.foot-logo svg { width: 100%; height: auto; }
.foot p.tagline {
  color: rgba(250, 246, 239, 0.65);
  font-size: 0.92rem;
  max-width: 28ch;
  line-height: 1.5;
}
.foot h4 {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.foot ul { list-style: none; }
.foot ul li { margin-bottom: 0.6rem; }
.foot ul a {
  color: rgba(250, 246, 239, 0.8);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.foot ul a:hover { color: var(--gold); }

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.82rem;
  color: rgba(250, 246, 239, 0.5);
}
.foot-bottom .big-name {
  position: absolute;
  left: 0; right: 0;
  bottom: -2rem;
  font-family: var(--f-display);
  font-size: clamp(6rem, 22vw, 22rem);
  color: rgba(250, 246, 239, 0.05);
  line-height: 0.8;
  text-align: center;
  font-weight: 300;
  letter-spacing: -0.04em;
  pointer-events: none;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  overflow: hidden;
  white-space: nowrap;
}
.foot { position: relative; overflow: hidden; }

/* Small utilities */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ink-mute), transparent);
  margin: 4rem 0;
}

.icon-round {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: var(--teal-wash);
  color: var(--teal-deep);
}
.tag.gold { background: var(--gold-wash); color: #8C6E2E; }
.tag.sage { background: #E3EADD; color: #4C5C40; }
.tag.clay { background: #F5E1D4; color: #8C553C; }

/* Program day timeline (tour page) */
.day-block {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(23, 19, 16, 0.12);
}
.day-label {
  position: sticky;
  top: 100px;
  align-self: flex-start;
}
.day-num {
  font-family: var(--f-display);
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--teal);
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.day-title {
  font-size: 0.88rem;
  color: var(--ink-mute);
  font-family: var(--f-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px dashed rgba(23, 19, 16, 0.15);
  align-items: start;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-time {
  font-family: var(--f-mono);
  font-size: 0.88rem;
  color: var(--teal);
  padding-top: 0.25rem;
  font-feature-settings: "tnum";
}
.timeline-item h4 {
  font-family: var(--f-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.timeline-item p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}
.timeline-item .tag { margin-top: 0.5rem; }

/* Sticky booking card */
.booking-card {
  background: var(--paper);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 24px 80px -40px rgba(23, 19, 16, 0.25);
  position: sticky;
  top: 100px;
}
.booking-card .price-line {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(23, 19, 16, 0.1);
}
.booking-card .price {
  font-family: var(--f-display);
  font-size: 2.75rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variation-settings: "opsz" 100;
}
.booking-card .price-note { color: var(--ink-mute); font-size: 0.9rem; }
.booking-card .feature-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(23, 19, 16, 0.06);
  font-size: 0.92rem;
}
.booking-card .feature-row span:first-child { color: var(--ink-mute); }
.booking-card .feature-row span:last-child { color: var(--ink); font-weight: 500; }
.booking-card .btn { width: 100%; justify-content: center; margin-top: 1.25rem; }

/* About page specifics */
.about-hero {
  padding-top: 5rem;
  padding-bottom: 3rem;
  text-align: center;
}
.about-hero h1 { max-width: 14ch; margin: 1rem auto; }

.manifest {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  padding: var(--section-y) 0;
}
.manifest-left p {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 80, "opsz" 100;
}
.manifest-left p em { color: var(--teal); font-style: italic; font-variation-settings: "SOFT" 100, "WONK" 1; }
.manifest-right p {
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.manifest-right p:first-letter {
  font-family: var(--f-display);
  font-size: 3.5rem;
  float: left;
  line-height: 0.85;
  padding: 0.15rem 0.5rem 0 0;
  color: var(--teal);
  font-weight: 500;
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card {
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: var(--paper);
  border: 1px solid rgba(23, 19, 16, 0.06);
  transition: all 0.4s var(--ease-out);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -30px rgba(23, 19, 16, 0.25);
}
.value-num {
  font-family: var(--f-display);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 400;
  display: block;
  margin-bottom: 0.75rem;
  font-variation-settings: "opsz" 100;
}
.value-card h4 {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.value-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Tours catalog specific */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(23, 19, 16, 0.1);
  border-bottom: 1px solid rgba(23, 19, 16, 0.1);
}
.filter-chip {
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(23, 19, 16, 0.2);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  color: var(--ink);
}
.filter-chip:hover { border-color: var(--ink); }
.filter-chip.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.filter-label {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 0.7rem 0.5rem 0.7rem 0;
  margin-right: 0.5rem;
}
.filter-sep { width: 1px; background: rgba(23, 19, 16, 0.15); margin: 0.3rem 0.75rem; }

.tour-row {
  display: grid;
  grid-template-columns: 380px 1fr auto;
  gap: 3rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(23, 19, 16, 0.12);
  align-items: center;
  transition: background 0.3s;
}
.tour-row:hover { background: rgba(255, 253, 247, 0.6); }
.tour-row:last-of-type { border-bottom: 1px solid rgba(23, 19, 16, 0.12); }
.tour-row .tour-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 200px 200px 8px 8px;
  background: var(--cream-deep);
}
.tour-row .tour-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.tour-row:hover .tour-img img { transform: scale(1.05); }
.tour-row h3 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.tour-row .tour-meta-line {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-family: var(--f-mono);
  font-size: 0.82rem;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tour-row p {
  color: var(--ink-soft);
  max-width: 50ch;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.tour-row .tags-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.tour-row .tour-price {
  text-align: right;
  border-left: 1px solid rgba(23, 19, 16, 0.12);
  padding-left: 3rem;
}
.tour-row .tour-price .num {
  font-family: var(--f-display);
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.tour-row .tour-price .per {
  color: var(--ink-mute);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1199px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-height: 60vh; aspect-ratio: 4/3; margin-top: 3rem; }
  .formats { grid-template-columns: repeat(2, 1fr); }
  .stats-editorial { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid rgba(23, 19, 16, 0.15); }
  .trust-inner { grid-template-columns: 1fr; gap: 3rem; }
  .cta-inner { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .manifest { grid-template-columns: 1fr; gap: 2.5rem; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .tour-row { grid-template-columns: 280px 1fr; }
  .tour-row .tour-price { grid-column: 2; border-left: none; padding-left: 0; text-align: left; }
  .section-head { grid-template-columns: 1fr; gap: 1rem; }
  .day-block { grid-template-columns: 1fr; gap: 1.5rem; }
  .day-label { position: static; }
}

@media (max-width: 767px) {
  :root { --gutter: 1.25rem; }
  .nav-links { display: none; }
  .nav-hamburger {
    display: grid;
    place-items: center;
    width: 44px; height: 44px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    cursor: pointer;
    background: transparent;
  }
  .nav-cta .btn { display: none; }
  .formats { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .stats-editorial { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid rgba(23, 19, 16, 0.15); padding: 2rem 0; }
  .stat-cell:last-child { border-bottom: none; }
  .hero-meta { grid-template-columns: 1fr; gap: 1.25rem; }
  .foot-top { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 3rem; }
  .foot-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .trust-bubbles { min-height: 400px; }
  .bubble { font-size: 0.95rem; padding: 0.7rem 1.1rem; }
  .tour-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .tour-row .tour-img { border-radius: 120px 120px 8px 8px; }
  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
  .gallery { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 60px; }
  .gallery .g-1 { grid-column: span 6; grid-row: span 4; border-radius: 120px 120px 12px 12px; }
  .gallery .g-2, .gallery .g-3, .gallery .g-4, .gallery .g-5, .gallery .g-6, .gallery .g-7 { grid-column: span 3; grid-row: span 3; }
  .filters { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding: 1rem 0; }
  .filters::-webkit-scrollbar { display: none; }
}

/* Large screen polish */
@media (min-width: 1920px) {
  :root { --gutter: 5rem; --max-w: 1680px; }
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
