/* Avo Travels */
:root {
  --bg: #faf8f3;
  --bg-deep: #f3efe6;
  --ink: #2c2c28;
  --muted: #606057;
  --line: #e8e5da;
  --accent: #5f8a3a;
  --accent-hover: #4d7330;
  --accent-deep: #3d5230;
  --accent-soft: #eef5e6;
  --gold: #d9a441;
  --surface: rgba(255, 255, 255, 0.92);
  --shadow-sm: 0 2px 10px rgba(40, 50, 30, 0.06);
  --shadow: 0 10px 34px rgba(40, 50, 30, 0.10);
  --shadow-lg: 0 22px 60px rgba(40, 50, 30, 0.14);
  --radius: 16px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.25rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; scroll-padding-top: calc(var(--header-h) + 1rem); }
/* Yapışkan fiyat bandı olan sayfalarda çapa hedefleri bandın altına insin */
html:has(.pricebar) { scroll-padding-top: calc(var(--header-h) + 4.9rem); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
body {
  font-family: "Montserrat", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--accent-soft); color: var(--accent-deep); }

/* Sayfa yüzeyi */
.site {
  position: relative;
  z-index: 1;
}

/* ——— INTRO (sadece ana sayfa) ——— */
.intro {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: #f7f4ec;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
  animation: introAutoHide 0.4s var(--ease) 2.4s forwards;
}
.intro.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.intro__mark { width: min(220px, 72vw); aspect-ratio: 1; }
.intro__mark svg { width: 100%; height: 100%; display: block; overflow: visible; }
.intro__path { opacity: 0; animation: pathIn 0.9s var(--ease) 0.2s forwards; }
.intro__avo { animation: avoSettle 0.7s var(--ease) both; transform-origin: center; }
.intro__word {
  margin-top: 0.85rem; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent);
  opacity: 0; animation: fadeUp 0.5s var(--ease) 0.85s both;
}
.intro__skip {
  position: absolute; top: 1.1rem; right: 1.1rem;
  border: none; background: transparent;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); opacity: 0.75;
}
.intro__skip:hover { opacity: 1; color: var(--ink); }
@keyframes pathIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes avoSettle { from { transform: scale(0.88); opacity: 0.5; } to { transform: scale(1); opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes introAutoHide { to { opacity: 0; visibility: hidden; pointer-events: none; } }

/* ——— Reveal (kademeli) ——— */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: calc(var(--stagger, 0) * 70ms);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .intro { display: none; }
  .site { opacity: 1; }
  .hero__scroll::after { animation: none; }
  .acc__icon { transition: none; }
  .avo-rain { display: none; }
}

/* ——— Header ———
   Logo sol · menü (Ana Sayfa dahil) tam orta · CTA/geri sağ.
   İç sayfada Geri çıksa bile orta kolon kaymaz: 1fr / auto / 1fr. */
.header {
  position: sticky; top: 0; z-index: 100;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 1rem;
  height: var(--header-h);
  padding: 0 1.25rem;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.header.is-scrolled { border-color: var(--line); box-shadow: 0 4px 24px rgba(40,50,30,0.06); }
.header__logo { display: flex; align-items: center; justify-self: start; }
.header__logo img { height: 40px; }
.header > nav { justify-self: center; }
.header__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8rem;
  font-weight: 600;
}
.header__nav li { flex: 0 0 auto; }
.header__nav a { position: relative; padding: 0.25rem 0; white-space: nowrap; }
.header__nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px;
  background: var(--accent); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.header__nav a:hover::after, .header__nav a[aria-current="page"]::after { transform: scaleX(1); }
.header__right { display: flex; align-items: center; gap: 0.75rem; justify-self: end; }
.header__lang {
  display: inline-flex; align-items: center; gap: 0.1rem;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em;
  flex: 0 0 auto;
}
.header__lang a { padding: 0.32rem 0.42rem; color: var(--muted); border-radius: 6px; }
.header__lang a[aria-current="true"] { color: var(--accent-deep); background: var(--accent-soft); }
.header__lang span { color: var(--line); font-weight: 600; }

.seo-copy { max-width: 44rem; color: var(--muted); font-weight: 500; font-size: 0.96rem; line-height: 1.75; }
.seo-copy p + p { margin-top: 1rem; }
.seo-copy a { color: var(--accent); font-weight: 700; }
.seo-copy a:hover { color: var(--accent-hover); }
.seo-grid { display: grid; gap: 0.9rem; margin-top: 1.5rem; }
@media (min-width: 720px) { .seo-grid { grid-template-columns: 1fr 1fr; } }
.seo-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.25rem 1.2rem; box-shadow: var(--shadow-sm);
}
.seo-card h3 { font-size: 1rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.4rem; color: var(--ink); }
.seo-card p { font-size: 0.86rem; color: var(--muted); font-weight: 500; line-height: 1.6; margin: 0; }
.header__back {
  display: inline-flex; align-items: center;
  font-size: 0.78rem; font-weight: 700; color: var(--ink);
  border: 1px solid var(--line); border-radius: 10px;
  padding: 0.52rem 0.85rem; white-space: nowrap; background: transparent;
}
.header__back:hover { border-color: var(--accent); color: var(--accent); }
.header__cta {
  background: var(--accent); color: #fff;
  font-size: 0.74rem; font-weight: 700;
  padding: 0.68rem 1.05rem; border-radius: 9px;
  white-space: nowrap;
  transition: background 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}
.header__cta:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.header__burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 10px;
  background: transparent; border: 1px solid var(--line); border-radius: 10px;
}
.header__burger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
body.nav-open .header__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .header__burger span:nth-child(2) { opacity: 0; }
body.nav-open .header__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 939px) {
  .header__nav { gap: 0.85rem; }
  .header__nav li:not(:first-child) { display: none; }
  .header__cta { display: none; }
  .header__lang { display: inline-flex; }
}
@media (min-width: 940px) {
  .header { padding: 0 2.5rem; }
  .header__burger { display: none; }
}

/* Mobil menü */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 90;
  background: rgba(250, 248, 243, 0.98);
  backdrop-filter: blur(10px);
  padding: 2rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.25rem;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
body.nav-open .mobile-nav { opacity: 1; visibility: visible; transform: none; }
.mobile-nav { overflow-y: auto; }
.mobile-nav a {
  font-size: 1.15rem; font-weight: 700; padding: 0.85rem 0.25rem;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a span { color: var(--accent); margin-right: 0.5rem; font-size: 0.8rem; }
.mobile-nav__cta {
  margin-top: 1.25rem; background: var(--accent); color: #fff !important;
  text-align: center; border-radius: 12px; border: none !important;
  padding: 1rem !important; font-size: 1rem !important;
}
@media (min-width: 940px) { .mobile-nav { display: none; } }

/* ——— Bölümler ——— */
.section { padding: 4.25rem 1.25rem 0.75rem; max-width: 1160px; margin: 0 auto; }
.section--flush { padding-top: 3rem; }
.section__head { margin-bottom: 1.6rem; max-width: 44rem; }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__kicker {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.5rem;
}
.section__head h2 { font-size: clamp(1.45rem, 3vw, 2rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; }
.section__head p { margin-top: 0.5rem; color: var(--muted); font-size: 0.95rem; font-weight: 500; }

/* Avo ayırıcı */
.divider {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  max-width: 420px; margin: 2.5rem auto 0.25rem; padding: 0 1.25rem;
}
.divider__line { flex: 1; border-top: 1.5px dashed rgba(95, 138, 58, 0.4); }
.divider__mark { width: 22px; height: 28px; flex-shrink: 0; opacity: 0.85; }
.divider__mark svg { width: 100%; height: 100%; display: block; }

/* ——— Butonlar ——— */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 700;
  padding: 0.9rem 1.3rem; border-radius: 11px; border: none; cursor: pointer;
  transition: background 0.25s, transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s, color 0.25s;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--accent-deep); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--lg { padding: 1.05rem 1.6rem; font-size: 0.88rem; }

.pill {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.68rem; font-weight: 700;
  padding: 0.42rem 0.75rem; border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(6px);
}
.pill--solid { background: var(--accent-soft); border-color: transparent; color: var(--accent-deep); }

/* ——— Hero ——— */
.hero {
  position: relative; overflow: hidden;
  min-height: min(78vh, 640px);
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; padding: 4rem 1.5rem;
}
.hero--compact { min-height: max(360px, min(52vh, 440px)); align-items: flex-end; text-align: left; justify-content: flex-start; padding-bottom: 2.5rem; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-position: center; background-size: cover;
}
.hero__shade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(12, 18, 8, 0.42) 0%, rgba(12, 18, 8, 0.18) 45%, rgba(12, 18, 8, 0.6) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 46rem; }
.hero--compact .hero__inner { max-width: 1160px; width: 100%; margin: 0 auto; }
.hero__kicker {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  color: #d8e8be; margin-bottom: 0.85rem;
}
.hero h1 {
  font-size: clamp(1.9rem, 5vw, 3.15rem);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.12;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.35);
}
.hero__sub {
  margin-top: 0.9rem; font-size: clamp(0.92rem, 1.6vw, 1.05rem); font-weight: 500;
  opacity: 0.94; max-width: 34rem; margin-left: auto; margin-right: auto;
}
.hero--compact .hero__sub { margin-left: 0; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-top: 1.25rem; }
.hero--compact .hero__badges { justify-content: flex-start; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-top: 1.6rem; }
.hero__scroll {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.55); border-radius: 999px;
}
.hero__scroll::after {
  content: ""; position: absolute; top: 7px; left: 50%; width: 4px; height: 8px;
  background: #fff; border-radius: 3px; transform: translateX(-50%);
  animation: scrollHint 1.8s var(--ease) infinite;
}
@keyframes scrollHint { 0% { opacity: 1; transform: translate(-50%, 0); } 70% { opacity: 0; transform: translate(-50%, 12px); } 100% { opacity: 0; } }

/* ——— Talep kutusu ——— */
.request-wrap { margin: -2.4rem auto 0; position: relative; z-index: 5; width: min(940px, calc(100% - 2rem)); }
.request {
  background: var(--surface);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 1.25rem 1.3rem 1.35rem;
}
.request__title {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.85rem;
}
.request__grid { display: grid; gap: 0.7rem; }
.request__stack { display: grid; gap: 0.7rem; }
@media (min-width: 720px) {
  .request__grid { grid-template-columns: 1.1fr 1.1fr 0.8fr auto; align-items: end; }
}
.request label { display: block; font-size: 0.72rem; font-weight: 700; color: var(--muted); margin-bottom: 0.3rem; }
.request select, .request input, .request textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 11px;
  padding: 0.9rem 0.95rem; font: inherit; font-size: 0.88rem; font-weight: 500;
  background: #fff; color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.request textarea {
  height: 8rem;
  min-height: 8rem;
  max-height: 8rem;
  resize: none;
  overflow-y: auto;
  field-sizing: fixed;
}
.request select:focus, .request input:focus, .request textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(95, 138, 58, 0.18);
}
.request__hint { margin-top: 0.7rem; font-size: 0.75rem; color: var(--muted); font-weight: 500; }

/* ——— Flagship kart ——— */
.flagship {
  display: grid; gap: 0;
  background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.flagship:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
@media (min-width: 880px) { .flagship { grid-template-columns: 0.95fr 1.05fr; min-height: 460px; } }
.flagship__media { position: relative; min-height: 280px; overflow: hidden; }
.flagship__media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: center 72%;
  transition: transform 0.8s var(--ease);
}
.flagship:hover .flagship__media img { transform: scale(1.04); }
.flagship__badge {
  position: absolute; left: 0.9rem; top: 0.9rem; z-index: 1;
  background: rgba(15, 22, 10, 0.6); color: #fff; backdrop-filter: blur(4px);
  font-size: 0.68rem; font-weight: 700; padding: 0.45rem 0.7rem; border-radius: 999px;
}
.flagship__body { padding: 1.8rem 1.6rem; display: flex; flex-direction: column; justify-content: center; }
.flagship__tag { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.flagship h3 { font-size: clamp(1.5rem, 3vw, 1.95rem); font-weight: 800; margin-bottom: 0.45rem; letter-spacing: -0.02em; }
.flagship__price { font-size: 2.1rem; font-weight: 800; line-height: 1; margin: 0.4rem 0 0.3rem; }
.flagship__price small { font-size: 0.78rem; font-weight: 600; color: var(--muted); margin-left: 0.3rem; }
.flagship__note { font-size: 0.86rem; color: var(--muted); font-weight: 500; margin-bottom: 0.95rem; }
.dates { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; font-size: 0.9rem; font-weight: 600; }
.dates span { color: var(--accent); font-weight: 700; font-size: 0.72rem; }
.flagship__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* ——— Adımlar (nasıl çalışır) ——— */
.steps { display: grid; gap: 0.9rem; counter-reset: step; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.6rem; box-shadow: var(--shadow-sm); position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-deep);
  font-weight: 800; font-size: 1rem; margin-bottom: 0.9rem;
}
.step h3 { font-size: 1.02rem; font-weight: 800; margin-bottom: 0.35rem; }
.step p { font-size: 0.85rem; color: var(--muted); font-weight: 500; }

/* ——— Soft kartlar ——— */
.soft-grid { display: grid; gap: 0.95rem; grid-template-columns: 1fr; }
@media (min-width: 480px) { .soft-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 820px) { .soft-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 820px) { .soft-grid--4 { grid-template-columns: repeat(4, 1fr); } }
.soft {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.soft:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.soft__img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.soft__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.soft:hover .soft__img img { transform: scale(1.06); }
.soft__img .tag {
  position: absolute; left: 0.6rem; top: 0.6rem;
  background: rgba(15, 22, 10, 0.6); color: #fff; backdrop-filter: blur(4px);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 0.32rem 0.55rem; border-radius: 999px;
}
.soft__body { padding: 0.85rem 0.9rem 1.05rem; }
.soft__body h4 { font-size: 0.98rem; font-weight: 800; margin-bottom: 0.2rem; }
.soft__body p { font-size: 0.78rem; color: var(--muted); font-weight: 500; }

/* ——— Değer kartları ——— */
.values { display: grid; gap: 0.85rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .values { grid-template-columns: repeat(3, 1fr); } }
.value { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 230px; color: #fff; }
.value img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.value:hover img { transform: scale(1.05); }
.value::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 16, 6, 0.82), rgba(10, 16, 6, 0.12) 60%);
}
.value__text { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 1.2rem; }
.value__text strong { display: block; font-size: 1.05rem; font-weight: 800; margin-bottom: 0.25rem; }
.value__text span { font-size: 0.8rem; font-weight: 500; opacity: 0.92; }

/* ——— Galeri şeridi ——— */
.moments { margin-top: 1rem; overflow: hidden; position: relative; padding: 0.5rem 0 1rem; }
.moments::before, .moments::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 70px; z-index: 2; pointer-events: none;
}
.moments::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.moments::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.moments__track { display: flex; gap: 0.85rem; width: max-content; animation: marquee 46s linear infinite; }
.moments:hover .moments__track { animation-play-state: paused; }
.moments__track img {
  height: 210px; width: auto; border-radius: 14px; object-fit: cover;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 900px) { .moments__track img { height: 250px; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .moments__track { animation: none; } }

/* ——— Güven bandı ——— */
.trust { margin-top: 3rem; background: var(--bg-deep); padding: 3rem 1.25rem; }
.trust__inner { max-width: 1160px; margin: 0 auto; }
.trust__row { display: grid; gap: 1.5rem; }
@media (min-width: 820px) { .trust__row { grid-template-columns: 1fr 1.4fr; align-items: center; gap: 2.5rem; } }
.trust__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; }
.trust__photos img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 13px; }
.trust blockquote { font-size: 1.1rem; font-weight: 600; line-height: 1.45; margin: 0.8rem 0 0.55rem; }
.trust cite { font-style: normal; font-size: 0.8rem; color: var(--muted); font-weight: 600; }
.trust__gbp { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.9rem; font-size: 0.8rem; font-weight: 700; color: var(--accent); }

/* ——— Accordion (SSS / program) ——— */
.acc { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); overflow: hidden; }
.acc + .acc { margin-top: 0.65rem; }
.acc__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 1.2rem; background: transparent; border: none; text-align: left;
  font-weight: 700; font-size: 0.92rem;
}
.acc__btn:hover { color: var(--accent); }
.acc__icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent-deep);
  font-weight: 800; font-size: 0.95rem; line-height: 1;
  transition: transform 0.35s var(--ease), background 0.25s;
}
.acc.is-open .acc__icon { transform: rotate(45deg); background: var(--accent); color: #fff; }
.acc__panel { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.acc__content { padding: 0 1.2rem 1.2rem; font-size: 0.87rem; color: var(--muted); font-weight: 500; line-height: 1.6; }
.acc__content ul { padding-left: 1.1rem; margin-top: 0.4rem; }
.acc__content li { margin-bottom: 0.3rem; }
.acc__day { display: inline-block; color: var(--accent); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; margin-right: 0.65rem; }

/* ——— İçerik listeleri (dahil / hariç) ——— */
.inclist { display: grid; gap: 0.9rem; }
@media (min-width: 720px) { .inclist { grid-template-columns: 1fr 1fr; } }
.inclist__col {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem 1.35rem; box-shadow: var(--shadow-sm);
}
.inclist__col h3 { font-size: 0.95rem; font-weight: 800; margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.5rem; }
.inclist__col ul { list-style: none; }
.inclist__col li {
  position: relative; padding-left: 1.5rem; margin-bottom: 0.55rem;
  font-size: 0.87rem; color: var(--muted); font-weight: 500;
}
.inclist__col li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 800;
}
.inclist__col--out li::before { content: "—"; color: #b8ada0; }

/* ——— Fiyat bandı (ürün sayfası) ——— */
.pricebar {
  position: sticky; top: var(--header-h); z-index: 60;
  background: var(--accent-deep); color: #fff;
  padding: 0.8rem 1.25rem;
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.25rem; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow);
}
.pricebar strong { font-size: 1.25rem; font-weight: 800; }
.pricebar small { display: block; font-size: 0.72rem; opacity: 0.85; font-weight: 500; }
@media (max-width: 430px) { .pricebar small { display: none; } }
.pricebar__dates { font-size: 0.78rem; font-weight: 600; opacity: 0.9; display: none; flex: 1; }
@media (min-width: 720px) { .pricebar__dates { display: block; } }
.pricebar .btn {
  padding: 0.7rem 1.1rem; font-size: 0.75rem;
  margin-left: auto; flex-shrink: 0;
}

/* ——— CTA bandı ——— */
.cta-band {
  margin-top: 3.5rem; position: relative; overflow: hidden;
  background: var(--accent-deep); color: #fff;
  text-align: center; padding: 3.75rem 1.5rem;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; opacity: 0.14;
  background: radial-gradient(ellipse at 20% 20%, #b8d98a 0%, transparent 55%),
              radial-gradient(ellipse at 85% 80%, #5f8a3a 0%, transparent 50%);
}
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(1.45rem, 3vw, 1.9rem); font-weight: 800; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.cta-band p { opacity: 0.88; font-weight: 500; margin-bottom: 1.35rem; max-width: 30rem; margin-left: auto; margin-right: auto; font-size: 0.94rem; }

/* ——— Footer ——— */
.footer { background: #171a13; color: #b9b9ad; padding: 3rem 1.25rem 5.5rem; font-size: 0.85rem; }
.footer__inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; gap: 1.75rem;
}
@media (min-width: 820px) { .footer__inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer strong { color: #fff; display: block; margin-bottom: 0.5rem; font-size: 0.9rem; }
.footer a { color: #cfe0ae; font-weight: 600; }
.footer a:hover { color: #e6f2cf; }
.footer__nav { list-style: none; display: grid; gap: 0.4rem; }
.footer__nav a { color: #b9b9ad; font-weight: 500; }
.footer__nav a:hover { color: #fff; }
.footer__bottom {
  max-width: 1160px; margin: 2.25rem auto 0; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.72rem; color: #8a8a7e;
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between;
}
.footer__bottom a { color: #b9b9ad; font-weight: 600; }
.footer__bottom a:hover { color: #fff; }
@media (min-width: 900px) { .footer { padding-bottom: 3rem; } }

/* ——— Sticky WhatsApp ——— */
.sticky-wa {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  padding: 0.9rem 1.15rem calc(0.9rem + env(safe-area-inset-bottom, 0px));
  font-size: 0.82rem; font-weight: 700;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.14);
  transition: background 0.25s;
}
.sticky-wa:hover { background: var(--accent-hover); }
.sticky-wa__left { display: flex; align-items: center; gap: 0.65rem; }
.sticky-wa__icon { width: 28px; height: 28px; flex-shrink: 0; }
.sticky-wa__icon svg { width: 100%; height: 100%; display: block; }
.sticky-wa span { opacity: 0.9; font-weight: 600; font-size: 0.75rem; }
@media (min-width: 900px) {
  .sticky-wa {
    left: auto; right: 1.4rem; bottom: 1.4rem; width: auto;
    border-radius: 999px; gap: 1rem; padding: 0.78rem 1.3rem 0.78rem 0.9rem;
  }
}

/* ——— Breadcrumb / geri ——— */
.crumb { font-size: 0.75rem; font-weight: 700; color: var(--muted); }
.crumb a:hover { color: var(--accent); }

/* ——— Basit tablo ——— */
.dtable { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.dtable th {
  text-align: left; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); font-weight: 800; padding: 0.6rem 0.85rem; border-bottom: 2px solid var(--line);
}
.dtable td { padding: 0.85rem; border-bottom: 1px solid var(--line); font-weight: 500; }
.dtable .ok { color: var(--accent); font-weight: 700; }
.dtable .soon { color: #9c7118; font-weight: 700; }

/* ——— Not / bilgi kutusu ——— */
.note {
  background: var(--accent-soft); border: 1px solid #d5e5c0;
  border-radius: 12px; padding: 0.9rem 1.1rem;
  font-size: 0.82rem; color: var(--accent-deep); font-weight: 500;
  margin-top: 0.9rem;
}

.prose {
  max-width: 44rem; color: var(--muted); font-weight: 500;
  font-size: 0.96rem; line-height: 1.75; display: grid; gap: 1rem;
}
.prose a { color: var(--accent); font-weight: 700; }
.prose a:hover { color: var(--accent-hover); }
.narrow { max-width: 820px; }
.act-grid--related { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* Breadcrumb bar under compact heroes */
.crumbbar {
  max-width: 1160px; margin: 0 auto;
  padding: 1rem 1.25rem 0;
  font-size: 0.72rem; font-weight: 600; color: var(--muted);
}
.crumbbar a { font-weight: 700; }
.crumbbar a:hover { color: var(--accent); }
.crumbbar span { opacity: 0.55; margin: 0 0.35rem; }

/* Compact meta strip (replaces 8-card grids) */
.meta-strip {
  display: flex; flex-wrap: wrap; gap: 0.55rem 1.35rem;
  padding: 1.1rem 0 0.25rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.5rem;
}
.meta-strip__item { display: flex; flex-direction: column; gap: 0.12rem; min-width: 5.5rem; }
.meta-strip__item span {
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.meta-strip__item strong { font-size: 0.92rem; font-weight: 800; letter-spacing: -0.01em; }

/* Activity filters */
.act-filters {
  display: flex; flex-wrap: wrap; gap: 0.45rem;
  margin: 0.25rem 0 1.4rem;
}
.act-filters button {
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  font-size: 0.74rem; font-weight: 700;
  padding: 0.55rem 0.9rem; border-radius: 999px;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s var(--ease);
}
.act-filters button:hover { border-color: var(--accent); color: var(--accent-deep); }
.act-filters button.is-active {
  background: var(--accent-deep); color: #fff; border-color: var(--accent-deep);
}
.act-filters button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.act-count {
  font-size: 0.78rem; font-weight: 600; color: var(--muted);
  margin: -0.6rem 0 1.1rem;
}

/* Activity cards */
.act-grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .act-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .act-grid { grid-template-columns: repeat(3, 1fr); } }

.act-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.act-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.act-card.is-hidden { display: none; }

.act-card__media {
  position: relative; aspect-ratio: 5/4; overflow: hidden; background: var(--bg-deep);
}
.act-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.act-card:hover .act-card__media img { transform: scale(1.045); }
.act-card__cat {
  position: absolute; left: 0.7rem; top: 0.7rem;
  background: rgba(15, 22, 10, 0.58); color: #fff;
  backdrop-filter: blur(5px);
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.08em;
  padding: 0.35rem 0.6rem; border-radius: 999px;
}
.act-card__body {
  padding: 1rem 1.05rem 1.15rem;
  display: flex; flex-direction: column; flex: 1; gap: 0.35rem;
}
.act-card__rating { display: none; }
.act-card h3 { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.25; }
.act-card__desc {
  font-size: 0.8rem; color: var(--muted); font-weight: 500; line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.act-card__foot {
  margin-top: auto; padding-top: 0.85rem;
  display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem;
  border-top: 1px solid var(--line);
}
.act-card__meta { font-size: 0.72rem; font-weight: 600; color: var(--muted); }
.act-card__price { font-size: 1rem; font-weight: 800; letter-spacing: -0.02em; }
.act-card__price small { font-size: 0.68rem; font-weight: 600; color: var(--muted); margin-left: 0.15rem; }

/* Editorial featured band */
.feat-band {
  display: grid; gap: 0.9rem; margin-bottom: 2.5rem;
}
@media (min-width: 880px) {
  .feat-band { grid-template-columns: 1.35fr 1fr; min-height: 380px; }
}
.feat-band__main {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 280px; color: #fff;
}
.feat-band__main img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.feat-band__main::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,16,6,0.15) 20%, rgba(10,16,6,0.78) 100%);
}
.feat-band__copy {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 1.5rem 1.4rem 1.55rem;
}
.feat-band__copy .k {
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: #d8e8be; margin-bottom: 0.45rem;
}
.feat-band__copy h3 { font-size: clamp(1.35rem, 2.6vw, 1.75rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.feat-band__copy p { font-size: 0.88rem; font-weight: 500; opacity: 0.92; max-width: 28rem; margin-bottom: 0.95rem; }
.feat-band__price {
  display: inline-block; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.02em;
}
.feat-band__side { display: grid; gap: 0.9rem; }
.feat-mini {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 170px; color: #fff;
}
.feat-mini img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feat-mini::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,16,6,0.78), rgba(10,16,6,0.08) 70%);
}
.feat-mini__text {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 1rem 1.05rem;
}
.feat-mini__text strong { display: block; font-size: 1rem; font-weight: 800; margin-bottom: 0.15rem; }
.feat-mini__text span { font-size: 0.75rem; font-weight: 600; opacity: 0.9; }

/* Category tiles — one job: mood pick */
.mood-grid {
  display: grid; gap: 0.85rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 820px) { .mood-grid { grid-template-columns: repeat(4, 1fr); } }
.mood {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 200px; color: #fff; display: block;
}
.mood img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.mood:hover img { transform: scale(1.05); }
.mood::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,16,6,0.82), rgba(10,16,6,0.1) 55%);
}
.mood__text { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 1.1rem; }
.mood__text strong { display: block; font-size: 1.05rem; font-weight: 800; margin-bottom: 0.2rem; }
.mood__text span { font-size: 0.78rem; font-weight: 500; opacity: 0.9; }

/* Quiet trust line (not a stats dashboard) */
.quiet-trust {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.75rem;
  justify-content: center; text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.8rem; font-weight: 700; color: var(--accent-deep);
}
.quiet-trust span { color: var(--muted); font-weight: 600; }

/* Detail: about split */
.about-split {
  display: grid; gap: 1.5rem; align-items: center;
}
.about-split h2 + p {
  margin-top: 0.75rem; color: var(--muted); font-weight: 500; font-size: 0.95rem; line-height: 1.6;
}
.about-split__quote {
  margin-top: 1.1rem; padding-left: 0.9rem;
  border-left: 3px solid var(--accent);
  font-size: 0.95rem; font-weight: 600; line-height: 1.45; color: var(--ink);
}
.about-split__media {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; max-height: 520px;
}
.about-split__media img { width: 100%; height: 100%; object-fit: cover; }

/* Highlights as simple list, not icon cards */
.hl-list { display: grid; gap: 0.75rem; }
@media (min-width: 720px) { .hl-list { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
.hl-item {
  padding: 1.15rem 1.1rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius);
}
.hl-item strong { display: block; font-size: 0.95rem; font-weight: 800; margin-bottom: 0.3rem; }
.hl-item p { font-size: 0.8rem; color: var(--muted); font-weight: 500; }

/* Gallery */
.gallery {
  display: grid; gap: 0.65rem;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.gallery a, .gallery figure {
  margin: 0; border-radius: 14px; overflow: hidden; position: relative;
}
.gallery a:first-child, .gallery figure:first-child {
  grid-row: 1 / span 2;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.gallery a:first-child img, .gallery figure:first-child img { aspect-ratio: auto; min-height: 100%; }
@media (max-width: 640px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery a:first-child, .gallery figure:first-child { grid-row: auto; grid-column: 1 / -1; }
}

/* Day program timeline */
.timeline { list-style: none; max-width: 720px; }
.timeline li {
  display: grid; grid-template-columns: 4.5rem 1fr; gap: 1rem;
  padding: 0.95rem 0; border-top: 1px solid var(--line);
}
.timeline li:last-child { border-bottom: 1px solid var(--line); }
.timeline__t {
  font-size: 0.78rem; font-weight: 800; color: var(--accent);
  letter-spacing: 0.02em; padding-top: 0.15rem;
}
.timeline h4 { font-size: 0.95rem; font-weight: 800; margin-bottom: 0.2rem; }
.timeline p { font-size: 0.84rem; color: var(--muted); font-weight: 500; }

/* Prep chips */
.prep {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.prep span {
  display: inline-flex; align-items: center;
  background: var(--bg-deep); border: 1px solid var(--line);
  border-radius: 999px; padding: 0.5rem 0.85rem;
  font-size: 0.78rem; font-weight: 700;
}

/* Related */
.related-head {
  display: flex; align-items: end; justify-content: space-between; gap: 1rem;
  margin-bottom: 1.1rem;
}
.related-head h2 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); font-weight: 800; letter-spacing: -0.02em; }
.related-head a { font-size: 0.78rem; font-weight: 800; color: var(--accent); white-space: nowrap; }
.related-head a:hover { color: var(--accent-hover); }

/* Activity pricebar tweak: bottom sticky on mobile when .pricebar--dock */
@media (max-width: 899px) {
  .pricebar--dock {
    position: fixed; top: auto; bottom: 0; left: 0; right: 0;
    z-index: 85; padding-bottom: calc(0.8rem + env(safe-area-inset-bottom, 0px));
  }
  body:has(.pricebar--dock) .sticky-wa { display: none; }
  body:has(.pricebar--dock) .footer { padding-bottom: 7.5rem; }
}
@media (min-width: 900px) {
  .pricebar--dock { position: sticky; top: var(--header-h); bottom: auto; }
}

/* Bridge band: activities ↔ Bali Experience */
.bridge {
  margin-top: 2.5rem;
  display: grid; gap: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}
@media (min-width: 820px) { .bridge { grid-template-columns: 1.1fr 1fr; } }
.bridge__media { min-height: 220px; position: relative; }
.bridge__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bridge__body { padding: 1.7rem 1.5rem; display: flex; flex-direction: column; justify-content: center; }
.bridge__body .k {
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.45rem;
}
.bridge__body h3 { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.bridge__body p { font-size: 0.88rem; color: var(--muted); font-weight: 500; margin-bottom: 1rem; }
.bridge__actions { display: flex; flex-wrap: wrap; gap: 0.55rem; }

/* Empty filter state */
.act-empty {
  display: none; text-align: center; padding: 2.5rem 1rem;
  color: var(--muted); font-weight: 600; font-size: 0.92rem;
}
.act-empty.is-visible { display: block; }

.crumbbar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.65rem 1rem;
}
.crumbbar .crumb { margin: 0; font: inherit; color: inherit; }

.btn--sm {
  display: inline-flex; align-items: center;
  font-size: 0.72rem; font-weight: 700;
  padding: 0.45rem 0.85rem; border-radius: 8px;
  margin-top: 0.85rem;
}

.g-reviews {
  display: grid; gap: 1.25rem; align-items: center;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 720px) {
  .g-reviews { grid-template-columns: 1fr auto; gap: 1.5rem; padding: 1.7rem 1.6rem; }
}
.g-reviews h3 { font-size: 1.08rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.3rem; }
.g-reviews p { font-size: 0.86rem; color: var(--muted); font-weight: 500; max-width: 36rem; }
.g-reviews__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.act-card { transition: none; }
.flagship { transition: none; }

/* Avocado rain */
.avo-rain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.avo-rain span {
  position: absolute;
  top: -12%;
  left: var(--x);
  font-size: var(--size);
  opacity: var(--op);
  line-height: 1;
  animation: avoFall var(--dur) linear var(--delay) infinite;
  will-change: transform;
}
@keyframes avoFall {
  0% { transform: translate3d(0, -10vh, 0) rotate(-10deg); }
  100% { transform: translate3d(var(--drift), 118vh, 0) rotate(14deg); }
}

/* ——— Yasal metin + 404 ——— */
.legal-hero {
  max-width: 42rem; margin: 0 auto; padding: 2.75rem 1.25rem 0;
}
.legal-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.03em; line-height: 1.15; margin-top: 0.35rem;
}
.legal {
  max-width: 42rem; margin: 0 auto;
  padding: 1.25rem 1.25rem 4.5rem;
}
.legal__meta { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.1rem; }
.legal h2 { font-size: 1.02rem; margin: 1.85rem 0 0.55rem; letter-spacing: -0.02em; }
.legal p, .legal li { font-size: 0.92rem; color: var(--muted); font-weight: 500; line-height: 1.65; }
.legal ul { padding-left: 1.15rem; display: grid; gap: 0.45rem; margin: 0.4rem 0 0; }
.legal a { color: var(--accent); font-weight: 700; }
.legal a:hover { color: var(--accent-hover); }
.legal code { font-size: 0.82em; background: var(--bg-deep); padding: 0.08em 0.35em; border-radius: 4px; }
.e404 {
  text-align: center;
  padding: 5.5rem 1.25rem 5rem;
  max-width: 36rem; margin: 0 auto;
}
.e404 h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); letter-spacing: -0.03em; margin: 0.4rem 0 0.75rem; }
.e404 p { color: var(--muted); font-weight: 500; }
.e404__actions { display: flex; flex-wrap: wrap; gap: 0.55rem; justify-content: center; margin-top: 1.5rem; }


