/* =========================================================
   WYBICIE COMFORT TRANSPORT — comfort.css
   Matrix #29 | Blueprint Technical | Monospace
   Colors: #0a1628 (navy) · #e8f4ff (blueprint white) · #ffd60a (yellow)
   Classes: .BL-01/.BL-02 (blocks) · .EL-01/.EL-02 (elements) · .WR-01/.WR-02 (wrappers)
   ========================================================= */

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-navy:    #0a1628;
  --c-navy2:   #0f2040;
  --c-navy3:   #162d52;
  --c-blue:    #e8f4ff;
  --c-blue2:   #c5dff5;
  --c-yellow:  #ffd60a;
  --c-yellow2: #e6c000;
  --c-white:   #ffffff;
  --c-dim:     rgba(232, 244, 255, 0.08);

  --ff-mono: 'Courier New', Courier, monospace;
  --fs-xs:   0.72rem;
  --fs-sm:   0.85rem;
  --fs-base: 1rem;
  --fs-md:   1.15rem;
  --fs-lg:   1.5rem;
  --fs-xl:   2rem;
  --fs-2xl:  3rem;
  --fs-3xl:  4.5rem;
  --fs-4xl:  6rem;

  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-6: 3rem;
  --sp-8: 4rem;
  --sp-12: 6rem;

  --border-dash: 1px dashed rgba(232, 244, 255, 0.3);
  --border-solid: 1px solid rgba(232, 244, 255, 0.2);
  --radius: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-mono);
  background: var(--c-navy);
  color: var(--c-blue);
  line-height: 1.7;
  font-size: var(--fs-base);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Blueprint grid background on body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(232, 244, 255, 0.04) 39px,
      rgba(232, 244, 255, 0.04) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(232, 244, 255, 0.04) 39px,
      rgba(232, 244, 255, 0.04) 40px
    );
  pointer-events: none;
  z-index: 0;
}

body > * { position: relative; z-index: 1; }

a { color: var(--c-yellow); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ─── COOKIE BANNER ────────────────────────────────────────── */
.BL-cookie-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.85);
  z-index: 9000;
}
.BL-cookie-overlay.active { display: block; }

.BL-cookie {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-navy2);
  border-top: 2px solid var(--c-yellow);
  z-index: 9001;
  padding: var(--sp-4);
}
.BL-cookie.active { display: block; }

.BL-cookie__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  flex-wrap: wrap;
}

.BL-cookie__label {
  display: block;
  color: var(--c-yellow);
  font-size: var(--fs-xs);
  margin-bottom: var(--sp-1);
  letter-spacing: 0.1em;
}

.BL-cookie__text { flex: 1; min-width: 240px; font-size: var(--fs-sm); }
.BL-cookie__text p { color: var(--c-blue2); }
.BL-cookie__actions { display: flex; gap: var(--sp-2); align-items: center; flex-shrink: 0; padding-top: 1.6rem; }

/* ─── BUTTONS: EL-01 ──────────────────────────────────────── */
.EL-01 {
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  cursor: pointer;
  border: 1px solid var(--c-yellow);
  padding: 0.6rem 1.4rem;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}

.EL-01--primary {
  background: var(--c-yellow);
  color: var(--c-navy);
  font-weight: bold;
}
.EL-01--primary:hover {
  background: var(--c-yellow2);
  text-decoration: none;
}

.EL-01--outline {
  background: transparent;
  color: var(--c-yellow);
}
.EL-01--outline:hover {
  background: var(--c-yellow);
  color: var(--c-navy);
  text-decoration: none;
}

.EL-01--accept {
  background: var(--c-yellow);
  color: var(--c-navy);
  font-weight: bold;
}
.EL-01--accept:hover { background: var(--c-yellow2); }

.EL-01--reject {
  background: transparent;
  color: var(--c-blue);
  border-color: var(--c-blue2);
}
.EL-01--reject:hover { background: var(--c-dim); }

.EL-01--topbar {
  background: var(--c-yellow);
  color: var(--c-navy);
  font-weight: bold;
  padding: 0.5rem 1.2rem;
}
.EL-01--topbar:hover { background: var(--c-yellow2); text-decoration: none; }

.EL-01--copy {
  background: transparent;
  color: var(--c-yellow);
  border-color: var(--c-yellow);
  font-size: var(--fs-xs);
  padding: 0.4rem 0.9rem;
}
.EL-01--copy:hover { background: var(--c-yellow); color: var(--c-navy); text-decoration: none; }

/* ─── LABELS: EL-02 ──────────────────────────────────────── */
.EL-02__label {
  display: inline-block;
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  color: var(--c-yellow);
  margin-bottom: var(--sp-2);
}

/* ─── OFF-CANVAS NAV ──────────────────────────────────────── */
.BL-canvas-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.7);
  z-index: 800;
  transition: opacity 0.3s;
}
.BL-canvas-overlay.open { display: block; }

.BL-offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  background: var(--c-navy2);
  border-right: var(--border-dash);
  border-right-width: 2px;
  border-right-color: var(--c-yellow);
  z-index: 900;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  padding: var(--sp-4);
  overflow-y: auto;
}
.BL-offcanvas.open { transform: translateX(0); }

.BL-offcanvas__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-2);
  border-bottom: var(--border-dash);
}

.BL-offcanvas__label {
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  color: var(--c-yellow);
}

.BL-offcanvas__close {
  background: none;
  border: 1px solid var(--c-blue2);
  color: var(--c-blue);
  font-family: var(--ff-mono);
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  font-size: var(--fs-base);
  transition: background 0.2s;
}
.BL-offcanvas__close:hover { background: var(--c-yellow); color: var(--c-navy); border-color: var(--c-yellow); }

.BL-offcanvas__list {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.BL-offcanvas__link {
  display: block;
  padding: var(--sp-2) var(--sp-1);
  font-size: var(--fs-sm);
  letter-spacing: 0.1em;
  color: var(--c-blue2);
  border-bottom: var(--border-dash);
  transition: color 0.2s, padding-left 0.2s;
}
.BL-offcanvas__link:hover,
.BL-offcanvas__link--active {
  color: var(--c-yellow);
  padding-left: var(--sp-2);
  text-decoration: none;
}

.BL-offcanvas__contact {
  margin-top: var(--sp-4);
  padding-top: var(--sp-3);
  border-top: var(--border-dash);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.BL-offcanvas__phone,
.BL-offcanvas__email {
  font-size: var(--fs-sm);
  color: var(--c-blue);
}
.BL-offcanvas__phone:hover,
.BL-offcanvas__email:hover { color: var(--c-yellow); }

/* ─── TOPBAR ─────────────────────────────────────────────── */
.BL-topbar {
  position: sticky;
  top: 0;
  z-index: 700;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-2) var(--sp-6);
  background: var(--c-navy);
  border-bottom: var(--border-dash);
}

.BL-topbar__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid rgba(232,244,255,0.3);
  cursor: pointer;
  padding: 0.5rem 0.7rem;
  flex-shrink: 0;
}
.BL-topbar__burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-blue);
  transition: background 0.2s;
}
.BL-topbar__burger:hover span { background: var(--c-yellow); }

.BL-topbar__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--c-yellow);
  flex: 1;
}
.BL-topbar__logo:hover { text-decoration: none; }
.BL-topbar__logo-img { height: 32px; width: auto; }
.BL-topbar__logo-text {
  font-size: var(--fs-md);
  font-weight: bold;
  letter-spacing: 0.25em;
  color: var(--c-yellow);
}

/* ─── HERO: BL-01 ─────────────────────────────────────────── */
.BL-01 {
  padding: var(--sp-12) var(--sp-6);
  min-height: 90vh;
  position: relative;
  overflow: hidden;
}

/* Blueprint grid overlay in hero */
.BL-01__blueprint-grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 59px,
      rgba(232, 244, 255, 0.07) 59px,
      rgba(232, 244, 255, 0.07) 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      rgba(232, 244, 255, 0.07) 59px,
      rgba(232, 244, 255, 0.07) 60px
    );
  pointer-events: none;
}

.BL-01__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.BL-01__availability {
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-6);
  border-bottom: var(--border-dash);
}
.BL-01__avail-label {
  display: block;
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  color: var(--c-yellow);
  margin-bottom: var(--sp-3);
}
.BL-01__counters {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.BL-01__counter {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
}
.BL-01__counter-num {
  font-size: var(--fs-4xl);
  font-weight: bold;
  color: var(--c-yellow);
  line-height: 1;
  font-feature-settings: "tnum";
}
.BL-01__counter-unit {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  color: var(--c-blue2);
  line-height: 1.3;
}
.BL-01__counter-sep {
  font-size: var(--fs-4xl);
  color: rgba(232,244,255,0.2);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.BL-01__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}

.BL-01__eyebrow {
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  color: var(--c-yellow);
  margin-bottom: var(--sp-3);
}
.BL-01__h1 {
  font-size: var(--fs-3xl);
  font-weight: bold;
  line-height: 1.1;
  color: var(--c-white);
  margin-bottom: var(--sp-4);
}
.BL-01__sub {
  font-size: var(--fs-md);
  color: var(--c-blue2);
  max-width: 480px;
  margin-bottom: var(--sp-4);
  line-height: 1.7;
}
.BL-01__contact-line {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  flex-wrap: wrap;
  color: var(--c-blue2);
}
.BL-01__contact-line a { color: var(--c-yellow); }

/* ─── TRIP BRIEF FORM: WR-01 ─────────────────────────────── */
.WR-01 {
  border: var(--border-dash);
  border-width: 2px;
  padding: var(--sp-4);
  background: rgba(15, 32, 64, 0.7);
  position: relative;
}
/* Corner annotations (blueprint style) */
.WR-01::before {
  content: '▲ FORM-01';
  position: absolute;
  top: -1px;
  left: var(--sp-2);
  font-size: var(--fs-xs);
  color: var(--c-yellow);
  background: var(--c-navy2);
  padding: 0 var(--sp-1);
  letter-spacing: 0.1em;
}

.WR-01__header {
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-2);
  border-bottom: var(--border-dash);
}
.WR-01__label {
  display: block;
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  color: var(--c-yellow);
  margin-bottom: var(--sp-1);
}
.WR-01__sub { font-size: var(--fs-sm); color: var(--c-blue2); }

.WR-01__form { display: flex; flex-direction: column; gap: var(--sp-3); }
.WR-01__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }

.WR-01__field { display: flex; flex-direction: column; gap: var(--sp-1); }
.WR-01__field--full { grid-column: 1/-1; }

.WR-01__label-field {
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  color: var(--c-blue2);
}

.WR-01__input {
  font-family: var(--ff-mono);
  font-size: var(--fs-sm);
  background: rgba(10, 22, 40, 0.8);
  border: 1px dashed rgba(232, 244, 255, 0.4);
  color: var(--c-blue);
  padding: 0.6rem 0.8rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}
.WR-01__input:focus { border-color: var(--c-yellow); }
.WR-01__input option { background: var(--c-navy2); }

.WR-01__textarea { min-height: 80px; resize: vertical; }

.WR-01__actions { display: flex; justify-content: flex-end; }

/* BRIEF OUTPUT */
.WR-01__output {
  margin-top: var(--sp-4);
  padding: var(--sp-3);
  border: var(--border-dash);
  background: rgba(255, 214, 10, 0.04);
}
.WR-01__output-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-2);
}
.WR-01__brief-text {
  font-family: var(--ff-mono);
  font-size: var(--fs-xs);
  color: var(--c-blue);
  white-space: pre-wrap;
  line-height: 1.6;
  background: rgba(10,22,40,0.6);
  padding: var(--sp-2);
  border: 1px dashed rgba(232,244,255,0.15);
  max-height: 300px;
  overflow-y: auto;
}
.WR-01__output-note {
  margin-top: var(--sp-2);
  font-size: var(--fs-xs);
  color: var(--c-yellow);
  letter-spacing: 0.05em;
}

/* TOAST */
.WR-01__toast {
  margin-top: var(--sp-2);
  font-size: var(--fs-sm);
  padding: var(--sp-2) var(--sp-3);
  border-left: 3px solid var(--c-yellow);
  display: none;
}
.WR-01__toast.visible { display: block; }
.WR-01__toast.success { background: rgba(255,214,10,0.08); color: var(--c-yellow); }
.WR-01__toast.error { background: rgba(255, 80, 80, 0.08); color: #ff8080; border-color: #ff8080; }

/* ─── SERVICES TREE: BL-02 ──────────────────────────────── */
.BL-02 { padding: var(--sp-12) var(--sp-6); }
.BL-02__inner { max-width: 900px; margin: 0 auto; }
.BL-02__header { margin-bottom: var(--sp-6); }
.BL-02__h2 {
  font-size: var(--fs-2xl);
  color: var(--c-white);
  margin-top: var(--sp-1);
}

.BL-02__tree {
  border-left: 2px solid var(--c-yellow);
  padding-left: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.BL-02__branch {
  border-bottom: var(--border-dash);
}

.BL-02__branch-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: none;
  border: none;
  color: var(--c-blue);
  font-family: var(--ff-mono);
  font-size: var(--fs-sm);
  cursor: pointer;
  padding: var(--sp-2) var(--sp-1);
  text-align: left;
  transition: color 0.2s;
  letter-spacing: 0.05em;
}
.BL-02__branch-toggle:hover { color: var(--c-yellow); }
.BL-02__branch-toggle[aria-expanded="true"] .BL-02__branch-arrow { transform: rotate(90deg); color: var(--c-yellow); }

.BL-02__branch-arrow {
  font-size: var(--fs-xs);
  transition: transform 0.25s;
  color: var(--c-yellow);
  width: 1rem;
}
.BL-02__branch-code {
  font-size: var(--fs-xs);
  color: var(--c-yellow);
  letter-spacing: 0.1em;
  width: 60px;
  flex-shrink: 0;
}
.BL-02__branch-name {
  font-weight: bold;
  color: var(--c-white);
}

.BL-02__branch-body {
  padding: var(--sp-2) 0 var(--sp-2) var(--sp-4);
  border-left: 1px dashed rgba(232,244,255,0.15);
  margin-left: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.BL-02__leaf {
  display: grid;
  grid-template-columns: 50px 180px 1fr;
  gap: var(--sp-2);
  align-items: baseline;
  padding: var(--sp-1) 0;
  border-bottom: 1px dashed rgba(232,244,255,0.07);
}
.BL-02__leaf-code { font-size: var(--fs-xs); color: rgba(232,244,255,0.4); }
.BL-02__leaf-name { font-size: var(--fs-sm); color: var(--c-blue); font-weight: bold; }
.BL-02__leaf-desc { font-size: var(--fs-sm); color: rgba(232,244,255,0.7); }

/* ─── METRICS: BL-03 ──────────────────────────────────────── */
.BL-03 {
  padding: var(--sp-6) var(--sp-6);
  border-top: var(--border-dash);
  border-bottom: var(--border-dash);
  background: var(--c-navy2);
}
.BL-03__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.BL-03__metric { text-align: center; }
.BL-03__num {
  display: block;
  font-size: var(--fs-2xl);
  font-weight: bold;
  color: var(--c-yellow);
  line-height: 1;
  font-feature-settings: "tnum";
}
.BL-03__desc { font-size: var(--fs-xs); color: var(--c-blue2); line-height: 1.4; margin-top: var(--sp-1); letter-spacing: 0.05em; }
.BL-03__sep { font-size: var(--fs-xl); color: rgba(232,244,255,0.15); }

/* ─── WHY: BL-04 ──────────────────────────────────────────── */
.BL-04 { padding: var(--sp-12) var(--sp-6); }
.BL-04__inner { max-width: 1100px; margin: 0 auto; }
.BL-04__header { margin-bottom: var(--sp-6); }
.BL-04__h2 { font-size: var(--fs-2xl); color: var(--c-white); margin-top: var(--sp-1); }

.BL-04__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}
.BL-04__item {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-3);
  border: var(--border-dash);
  background: var(--c-dim);
}
.BL-04__arrow { font-size: var(--fs-lg); color: var(--c-yellow); flex-shrink: 0; line-height: 1.2; }
.BL-04__item-h3 { font-size: var(--fs-base); color: var(--c-white); margin-bottom: var(--sp-1); }
.BL-04__item-content p { font-size: var(--fs-sm); color: var(--c-blue2); line-height: 1.7; }

.BL-04__img-wrap { border: var(--border-dash); overflow: hidden; }
.BL-04__img { width: 100%; height: 360px; object-fit: cover; }

/* ─── PROCESS: BL-05 ─────────────────────────────────────── */
.BL-05 { padding: var(--sp-12) var(--sp-6); background: var(--c-navy2); }
.BL-05__inner { max-width: 900px; margin: 0 auto; }
.BL-05__h2 { font-size: var(--fs-2xl); color: var(--c-white); margin-bottom: var(--sp-8); margin-top: var(--sp-1); }

.BL-05__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.BL-05__step {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-3) 0;
  position: relative;
}
.BL-05__num {
  font-size: var(--fs-xl);
  font-weight: bold;
  color: var(--c-yellow);
  width: 3rem;
  flex-shrink: 0;
  line-height: 1;
}
.BL-05__step-body h3 { font-size: var(--fs-md); color: var(--c-white); margin-bottom: var(--sp-1); }
.BL-05__step-body p { font-size: var(--fs-sm); color: var(--c-blue2); line-height: 1.7; }
.BL-05__connector {
  width: 2px;
  height: 2rem;
  background: linear-gradient(to bottom, var(--c-yellow), transparent);
  margin-left: 1.4rem;
}

/* ─── ABOUT PHOTO: BL-06 ─────────────────────────────────── */
.BL-06 { padding: var(--sp-12) var(--sp-6); }
.BL-06__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.BL-06__img-wrap { border: var(--border-dash); overflow: hidden; }
.BL-06__img { width: 100%; height: 420px; object-fit: cover; }
.BL-06__h2 { font-size: var(--fs-xl); color: var(--c-white); margin-bottom: var(--sp-3); margin-top: var(--sp-1); }
.BL-06__text p { font-size: var(--fs-sm); color: var(--c-blue2); line-height: 1.8; margin-bottom: var(--sp-3); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.BL-footer {
  background: var(--c-navy);
  border-top: 2px solid var(--c-yellow);
  padding: var(--sp-8) var(--sp-6) var(--sp-4);
}
.BL-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.BL-footer__brand { display: flex; flex-direction: column; gap: 2px; }
.BL-footer__name { font-size: var(--fs-xl); font-weight: bold; color: var(--c-yellow); letter-spacing: 0.2em; }
.BL-footer__tagline { font-size: var(--fs-xs); color: var(--c-blue2); letter-spacing: 0.1em; }

.BL-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-top: var(--border-dash);
  border-bottom: var(--border-dash);
}
.BL-footer__nav a { font-size: var(--fs-xs); color: var(--c-blue2); letter-spacing: 0.1em; }
.BL-footer__nav a:hover { color: var(--c-yellow); }

.BL-footer__legal { display: flex; gap: var(--sp-3); }
.BL-footer__legal a { font-size: var(--fs-xs); color: rgba(232,244,255,0.5); }
.BL-footer__legal a:hover { color: var(--c-yellow); }

.BL-footer__contact {
  display: flex;
  gap: var(--sp-2);
  align-items: center;
  font-size: var(--fs-sm);
}
.BL-footer__contact a { color: var(--c-blue2); }
.BL-footer__contact a:hover { color: var(--c-yellow); }
.BL-footer__contact span { color: rgba(232,244,255,0.3); }

.BL-footer__copy { font-size: var(--fs-xs); color: rgba(232,244,255,0.3); border-top: var(--border-dash); padding-top: var(--sp-2); }

/* ─── PAGE HERO (inner pages) ────────────────────────────── */
.BL-page-hero {
  padding: var(--sp-8) var(--sp-6);
  border-bottom: var(--border-dash);
  background: var(--c-navy2);
  position: relative;
}
.BL-page-hero__inner { max-width: 900px; margin: 0 auto; }
.BL-page-hero__label {
  display: block;
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  color: var(--c-yellow);
  margin-bottom: var(--sp-2);
}
.BL-page-hero__h1 { font-size: var(--fs-3xl); color: var(--c-white); line-height: 1.1; margin-bottom: var(--sp-3); }
.BL-page-hero__sub { font-size: var(--fs-md); color: var(--c-blue2); max-width: 600px; line-height: 1.7; }

/* ─── CONTENT SECTIONS ───────────────────────────────────── */
.BL-content {
  padding: var(--sp-8) var(--sp-6);
}
.BL-content__inner { max-width: 900px; margin: 0 auto; }

.BL-section-label {
  display: block;
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  color: var(--c-yellow);
  margin-bottom: var(--sp-2);
}

.BL-section-h2 { font-size: var(--fs-xl); color: var(--c-white); margin-bottom: var(--sp-4); }
.BL-section-h3 { font-size: var(--fs-lg); color: var(--c-white); margin-bottom: var(--sp-2); margin-top: var(--sp-4); }

.BL-prose {
  font-size: var(--fs-sm);
  color: var(--c-blue2);
  line-height: 1.9;
  max-width: 700px;
}
.BL-prose p { margin-bottom: var(--sp-3); }
.BL-prose ul { padding-left: var(--sp-3); margin-bottom: var(--sp-3); }
.BL-prose ul li { margin-bottom: var(--sp-1); }
.BL-prose ul li::marker { color: var(--c-yellow); }
.BL-prose a { color: var(--c-yellow); }
.BL-prose strong { color: var(--c-white); }

/* Contact page specific */
.BL-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--sp-8) var(--sp-6);
}
.BL-contact-form { padding: var(--sp-4); border: var(--border-dash); background: var(--c-dim); }
.BL-contact-info { padding: var(--sp-4); }

/* FAQ items */
.BL-faq-list { display: flex; flex-direction: column; gap: var(--sp-2); }
.BL-faq-item { border: var(--border-dash); }
.BL-faq-item summary {
  padding: var(--sp-2) var(--sp-3);
  cursor: pointer;
  color: var(--c-white);
  font-size: var(--fs-sm);
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.BL-faq-item summary::before { content: '▶'; color: var(--c-yellow); font-size: var(--fs-xs); }
.BL-faq-item[open] summary::before { content: '▼'; }
.BL-faq-item__body { padding: var(--sp-2) var(--sp-3) var(--sp-3); font-size: var(--fs-sm); color: var(--c-blue2); line-height: 1.8; }

/* Completed trips tree */
.BL-trips-tree {
  border-left: 2px solid rgba(255,214,10,0.4);
  padding-left: var(--sp-3);
}
.BL-trips-year {
  margin-bottom: var(--sp-4);
}
.BL-trips-year__label {
  font-size: var(--fs-lg);
  color: var(--c-yellow);
  margin-bottom: var(--sp-2);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.BL-trips-year__label::before { content: '─'; }
.BL-trips-list { display: flex; flex-direction: column; gap: 1px; padding-left: var(--sp-3); border-left: 1px dashed rgba(232,244,255,0.1); }
.BL-trips-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: var(--sp-2);
  padding: var(--sp-1) var(--sp-2);
  font-size: var(--fs-xs);
  border-bottom: 1px dashed rgba(232,244,255,0.06);
}
.BL-trips-item__code { color: rgba(232,244,255,0.4); }
.BL-trips-item__route { color: var(--c-blue2); }
.BL-trips-item__status { color: var(--c-yellow); }

/* Destinations grid */
.BL-dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}
.BL-dest-card {
  border: var(--border-dash);
  padding: var(--sp-3);
  background: var(--c-dim);
}
.BL-dest-card__code { font-size: var(--fs-xs); color: var(--c-yellow); margin-bottom: var(--sp-1); }
.BL-dest-card__name { font-size: var(--fs-md); color: var(--c-white); margin-bottom: var(--sp-1); }
.BL-dest-card__desc { font-size: var(--fs-sm); color: var(--c-blue2); line-height: 1.6; }

/* Table (privacy policy) */
.BL-table-wrap { overflow-x: auto; margin: var(--sp-4) 0; }
.BL-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-xs);
}
.BL-table th, .BL-table td {
  padding: 0.6rem var(--sp-2);
  text-align: left;
  border: 1px dashed rgba(232,244,255,0.2);
}
.BL-table th { background: var(--c-navy2); color: var(--c-yellow); letter-spacing: 0.1em; }
.BL-table td { color: var(--c-blue2); }
.BL-table tr:hover td { background: rgba(255,214,10,0.03); }

/* 404 */
.BL-404 { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: var(--sp-6); }
.BL-404__code { font-size: 10rem; color: var(--c-yellow); font-weight: bold; line-height: 1; display: block; }
.BL-404__msg { font-size: var(--fs-xl); color: var(--c-white); margin: var(--sp-3) 0; }
.BL-404__sub { color: var(--c-blue2); margin-bottom: var(--sp-4); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .BL-01__content { grid-template-columns: 1fr; }
  .BL-01__counters { gap: var(--sp-3); }
  .BL-01__counter-num { font-size: var(--fs-3xl); }
  .BL-01__h1 { font-size: var(--fs-2xl); }
  .BL-04__grid { grid-template-columns: 1fr; }
  .BL-06__inner { grid-template-columns: 1fr; }
  .BL-contact-grid { grid-template-columns: 1fr; }
  .BL-02__leaf { grid-template-columns: 50px 1fr; }
  .BL-02__leaf-desc { grid-column: 1/-1; padding-left: 50px; }
  .WR-01__row { grid-template-columns: 1fr; }
  .BL-trips-item { grid-template-columns: 1fr; gap: 2px; }
}

@media (max-width: 600px) {
  .BL-topbar { padding: var(--sp-2) var(--sp-3); }
  .BL-01 { padding: var(--sp-6) var(--sp-3); }
  .BL-01__h1 { font-size: var(--fs-xl); }
  .BL-01__counter-num { font-size: var(--fs-2xl); }
  .BL-01__counter-sep { font-size: var(--fs-2xl); }
  .BL-02, .BL-04, .BL-05, .BL-06 { padding: var(--sp-8) var(--sp-3); }
  .BL-03 { padding: var(--sp-4) var(--sp-3); }
  .BL-footer { padding: var(--sp-6) var(--sp-3) var(--sp-4); }
  .BL-page-hero { padding: var(--sp-6) var(--sp-3); }
  .BL-page-hero__h1 { font-size: var(--fs-xl); }
  .BL-content { padding: var(--sp-6) var(--sp-3); }
  .BL-contact-grid { padding: var(--sp-6) var(--sp-3); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
