/* ================= Wrap (page container, like reference's .wrap) ================= */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 34px;
  padding-bottom: 40px;
}

/* ================= Corner controls (lang + theme, floating — copied position style, not a header bar) ================= */
.corner-controls {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-switch {
  display: flex;
  background: rgba(43,38,34,0.06);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
[data-theme="dark"] .lang-switch { background: rgba(255,255,255,0.08); }
.lang-switch button {
  padding: 5px 10px;
  border-radius: 999px;
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
}
.lang-switch button[aria-pressed="true"] {
  background: var(--accent-orange);
  color: #fff;
}

.theme-toggle {
  width: 30px; height: 30px;
  border-radius: 999px;
  background: rgba(43,38,34,0.06);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
[data-theme="dark"] .theme-toggle { background: rgba(255,255,255,0.08); }

/* ================= Brand block — copied from reference's .brand ================= */
.brand {
  text-align: center;
  margin-bottom: 26px;
}
.brand h1 {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 0.4px;
  color: var(--dark);
  text-transform: uppercase;
}
.brand .u {
  width: 74px; height: 4px;
  background: var(--accent-orange);
  border-radius: 3px;
  margin: 9px auto 7px;
}
.brand p {
  font-family: var(--fb);
  font-weight: 600;
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.3px;
}

/* ================= Floating contact widget ================= */
.contact-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.contact-toggle-btn {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--accent-orange);
  color: #fff;
  font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(40,30,20,0.30);
  transition: transform 0.2s;
}
.contact-toggle-btn:hover { transform: scale(1.06); }
.contact-panel {
  display: none;
  flex-direction: column;
  gap: 8px;
  width: 250px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-modal);
  padding: 14px;
}
.contact-panel.open { display: flex; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 11px;
  background: var(--chip-bg);
  border: 1px solid var(--border);
  font-family: var(--fb);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--text);
}
.contact-link .ico { font-size: 16px; }
.contact-lead-btn {
  margin-top: 4px;
  padding: 12px;
  border-radius: 13px;
  background: var(--dark);
  color: #F3ECE0;
  font-family: var(--fd);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ================= Skeletons ================= */
.skeleton {
  position: relative;
  overflow: hidden;
  background: var(--chip-bg);
  border-radius: var(--radius-md);
}
.skeleton::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(184,144,57,0.16), transparent);
  transform: translateX(-100%);
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer { 100% { transform: translateX(100%); } }
.skeleton-card { height: 260px; }

.data-error {
  border: 1px dashed var(--danger);
  background: var(--danger-light);
  color: var(--danger);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  font-family: var(--fb);
  font-size: 14px;
}
.data-error button {
  margin-top: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--danger);
  color: #fff;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 13px;
}

/* ================= Tariff tiles (level 1) — copied from reference's .tiles/.tile ================= */
.tiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 770px;
  margin: 6px auto 0;
}
.tile {
  flex: 0 1 340px;
  aspect-ratio: 1/1;
  border-radius: 26px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--c1, var(--dark));
  box-shadow: 0 14px 32px rgba(40,30,20,0.20);
  transition: transform 0.2s, box-shadow 0.2s;
  padding: 20px;
}
.tile:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(40,30,20,0.30); }
.tile .tname {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 1px;
  color: var(--ontitle, #fff);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
.tile .tsub {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ontitle, #fff);
  opacity: 0.9;
}
.tile .tsub-price {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 15px;
  color: var(--ontitle, #fff);
  text-align: center;
}
.tile .tsub-hotels {
  font-family: var(--fb);
  font-weight: 600;
  font-size: 11px;
  color: var(--ontitle, #fff);
  opacity: 0.85;
  text-align: center;
  line-height: 1.4;
  max-width: 90%;
}
.tile .tgo {
  margin-top: 6px;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 13px;
  color: var(--onc2, #fff);
  background: var(--c2, var(--amber));
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: 0 2px 0 var(--c2d, #8A6420);
}

/* ================= Tariff detail view (level 2) — copied from reference's .topbar/.back/.crumb ================= */
.topbar {
  max-width: 1180px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.back {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 9px 15px;
  cursor: pointer;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.15s;
}
.back:hover { background: var(--gold-pale); }
.crumb {
  font-family: var(--fb);
  font-weight: 600;
  color: var(--text-muted);
  font-size: 13.5px;
}
.crumb b { color: var(--dark); }

/* ================= Tariff cards (inside detail view) — copied 1:1 from reference's .cards/.col/.card ================= */
.detail-cards { text-align: center; font-size: 0; margin: 0 -24px; }
.col { display: inline-block; vertical-align: top; width: 360px; margin: 11px; font-size: 14px; text-align: left; }
.col .pkg-card { width: 100%; }

.pkg-card {
  background: var(--tbg, var(--card-bg));
  color: var(--ttxt, var(--text));
  border-radius: 22px;
  padding: 14px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: left;
}
.pkg-title-banner {
  background: var(--c1, var(--dark));
  color: var(--ontitle, #fff);
  border-radius: 13px;
  text-align: center;
  padding: 11px 8px;
  font-family: var(--fd);
  font-weight: 800;
  letter-spacing: 0.6px;
  font-size: 21px;
  text-transform: uppercase;
  box-shadow: 0 4px 0 var(--c1d, #000);
}

.days-badge {
  align-self: center;
  font-family: var(--fd);
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 999px;
  background: var(--c2, var(--amber));
  color: var(--onc2, #fff);
  box-shadow: 0 3px 0 var(--c2d, #8A6420);
}

.pkg-subtitle-price {
  text-align: center;
  font-family: var(--fd);
  font-weight: 800;
  font-size: 15px;
  color: var(--acc, var(--gold));
}
.pkg-subtitle-hotels {
  text-align: center;
  font-family: var(--fb);
  font-weight: 600;
  font-size: 11.5px;
  color: var(--ttxt2, var(--text-muted));
  line-height: 1.5;
  margin-top: -3px;
}

.season-toggle { display: flex; gap: 6px; justify-content: center; }
.season-toggle-btn {
  flex: 1;
  padding: 8px 6px;
  border-radius: 999px;
  background: var(--panel, var(--card-bg));
  border: 1px solid var(--line, var(--border));
  font-family: var(--fd);
  font-weight: 700;
  font-size: 10.5px;
  color: var(--ttxt2, var(--text-muted));
  cursor: pointer;
}
.season-toggle-btn.active {
  background: var(--c1, var(--dark));
  color: var(--ontitle, #fff);
  border-color: transparent;
}

.media-link {
  text-align: center;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 11px;
  color: var(--acc, var(--gold));
  text-decoration: underline;
  cursor: pointer;
  margin-top: -3px;
}
.media-link:hover { opacity: 0.8; }

.ico { display: inline-flex; align-items: center; justify-content: center; color: var(--acc, var(--gold)); flex: none; }
.ico svg { display: block; }

.airline {
  background: var(--panel, var(--card-bg));
  border: 1px solid var(--line, var(--border));
  border-radius: 12px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 11px;
  justify-content: center;
}
.al-name {
  font-family: var(--fd);
  font-weight: 700;
  color: var(--acc, var(--gold));
  font-size: 14px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
.al-route {
  font-size: 11px;
  color: var(--ttxt2, var(--text-muted));
  font-weight: 600;
  line-height: 1.35;
  margin-top: 2px;
}

.note {
  text-align: center;
  font-family: var(--fb);
  font-weight: 600;
  color: var(--ttxt2, var(--text-muted));
  font-size: 11.5px;
  letter-spacing: 0.2px;
}

.train {
  background: var(--c1, var(--dark));
  color: var(--ontitle, #fff);
  border-radius: 11px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--fd);
  font-weight: 800;
  letter-spacing: 0.3px;
  font-size: 13.5px;
  text-transform: uppercase;
}
.train .ico { color: var(--ontitle, #fff); }

.inc-head {
  text-align: center;
  font-family: var(--fb);
  font-weight: 800;
  color: var(--acc, var(--gold));
  font-size: 11.5px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-top: 2px;
}

.extra {
  background: var(--panel, var(--card-bg));
  border: 1px dashed var(--c2, var(--gold));
  border-radius: 11px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.extra span {
  font-family: var(--fb);
  font-weight: 800;
  color: var(--acc, var(--gold));
  font-size: 11.5px;
  line-height: 1.3;
  letter-spacing: 0.1px;
  text-transform: uppercase;
}
.addon-head {
  text-align: center;
  font-family: var(--fb);
  font-weight: 800;
  color: var(--acc, var(--gold));
  font-size: 11.5px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-top: 9px;
}
.addon-pr {
  margin-left: auto;
  font-family: var(--fd);
  font-weight: 800;
  color: var(--onc2, #fff);
  background: var(--c2, var(--amber));
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 12.5px;
  white-space: nowrap;
  box-shadow: 0 2px 0 var(--c2d, #8A6420);
}

.places-section { display: flex; flex-direction: column; gap: 4px; }
.places-line {
  font-family: var(--fb);
  font-weight: 500;
  font-size: 10.5px;
  color: var(--ttxt2, var(--text-muted));
  line-height: 1.5;
}
.places-line b {
  font-family: var(--fd);
  font-weight: 700;
  color: var(--ttxt, var(--text));
}

.inc-grid { text-align: center; font-size: 0; padding: 3px 0 0; }
.inc { display: inline-block; vertical-align: top; width: 25%; box-sizing: border-box; padding: 0 3px; margin-top: 9px; text-align: center; }
.inc .ib {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--panel, var(--card-bg));
  border: 1px solid var(--line, var(--border));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 4px;
  color: var(--acc, var(--gold));
}
.inc small {
  display: block;
  font-family: var(--fb);
  font-weight: 600;
  color: var(--ttxt2, var(--text-muted));
  font-size: 8.8px;
  line-height: 1.18;
}

@media (max-width: 820px) {
  .col { width: 100%; max-width: 380px; margin: 9px auto; display: block; }
}
/* ================= Date pills (one per departure-date card) ================= */
.date-strip { text-align: center; }
.date-label {
  font-family: var(--fb);
  font-weight: 700;
  color: var(--acc, var(--gold));
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.date-pills {
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
  margin-top: 6px;
}
.date-pill {
  background: var(--panel, var(--chip-bg));
  border: 1px solid var(--line, var(--border));
  border-radius: 9px;
  padding: 6px 13px;
  font-family: var(--fd);
  font-weight: 700;
  color: var(--ttxt, var(--text));
  font-size: 14px;
}
.date-dash {
  font-family: var(--fd);
  font-weight: 800;
  color: var(--acc, var(--gold));
  font-size: 22px;
  line-height: 1;
  letter-spacing: -1px;
  padding: 0 2px;
}

/* ================= Date picker (seasonal-tariff cards) ================= */
.date-picker { display: flex; flex-direction: column; gap: 8px; }
.date-picker-head {
  text-align: center;
  font-family: var(--fd);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.2px;
  color: var(--ttxt, var(--text));
}
.date-picker-sub {
  text-align: center;
  font-family: var(--fb);
  font-weight: 600;
  font-size: 11px;
  color: var(--ttxt2, var(--text-muted));
  margin-top: -6px;
}
.date-picker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.date-picker-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--panel, var(--card-bg));
  border: 1px solid var(--line, var(--border));
  border-radius: 9px;
  padding: 6px 4px;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 10.5px;
  color: var(--ttxt, var(--text));
  cursor: pointer;
}
.date-picker-item .arrow { color: var(--acc, var(--gold)); font-weight: 800; }
.date-picker-item.active {
  background: var(--c2, var(--amber));
  border-color: transparent;
  color: var(--onc2, #fff);
}
.date-picker-item.active .arrow { color: var(--onc2, #fff); }
.pkg-placeholder-badge {
  align-self: center;
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 800;
  color: var(--onc2, #fff);
  background: var(--c2, var(--blue));
  padding: 6px 16px;
  border-radius: 999px;
  text-transform: uppercase;
}
.pkg-cta {
  margin-top: auto;
  padding: 12px;
  border-radius: 13px;
  background: var(--c1, var(--dark));
  color: var(--ontitle, #fff);
  font-family: var(--fd);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.3px;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 3px 0 var(--c1d, #000);
}
.pkg-cta:hover { transform: translateY(-2px); }

/* ================= Modals (generic backdrop + box, used by lead form / media) ================= */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(20, 16, 10, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 16px;
}
.modal-backdrop.open { display: flex; }

.modal-box {
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  background: var(--card-bg);
  color: var(--text);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-modal);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal-box-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--dark);
  box-shadow: 0 4px 0 #000;
}
.modal-box-title {
  font-family: var(--fd);
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: clamp(16px, 2vw, 21px);
  color: #F3ECE0;
}
.modal-close {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  color: #F3ECE0;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

/* ================= Inline tariff-card details — copied 1:1 from reference's card sub-blocks ================= */
.hotel-gallery-caption {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--acc, var(--gold));
  text-align: center;
}
.tm-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.tm-gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--panel, var(--gold-pale));
  border: 1px solid var(--line, var(--border));
  cursor: pointer;
}
.tm-gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.tm-gallery-item .play-badge {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.28);
  color: #fff;
}

.prices { display: flex; flex-direction: column; gap: 7px; margin-top: 1px; }
.price-row {
  background: var(--panel, var(--card-bg));
  border: 1px solid var(--line, var(--border));
  border-radius: 11px;
  padding: 5px 6px 5px 12px;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.price-row .pl {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--fb); font-weight: 700; color: var(--ttxt, var(--text)); font-size: 12.5px;
  min-width: 0;
}
.price-tag {
  background: var(--c2, var(--amber));
  color: var(--onc2, #fff);
  border-radius: 9px;
  padding: 6px 14px;
  font-family: var(--fd);
  font-weight: 800;
  font-size: 16.5px;
  letter-spacing: 0.2px;
  min-width: 90px;
  text-align: center;
  box-shadow: 0 2px 0 var(--c2d, #8A6420);
}

.hotel {
  background: var(--panel, var(--card-bg));
  border: 1px solid var(--line, var(--border));
  border-radius: 13px;
  padding: 9px 11px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.hotel .ic { flex: none; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.hotel .h-body { flex: 1; min-width: 0; }
.hotel .h-city {
  font-family: var(--fd); font-weight: 800; color: var(--acc, var(--gold));
  font-size: 15px; letter-spacing: 0.2px; text-transform: uppercase; line-height: 1.05;
}
.hotel .h-city b { color: var(--c2, var(--amber)); font-size: 12.5px; font-weight: 800; }
.hotel .h-name { font-family: var(--fb); font-weight: 700; color: var(--ttxt, var(--text)); font-size: 13.5px; margin-top: 3px; line-height: 1.2; }
.hotel .h-meal {
  display: flex; align-items: center; gap: 6px; margin-top: 6px;
  font-family: var(--fb); font-weight: 700; color: var(--ttxt2, var(--text-muted)); font-size: 12px; line-height: 1;
}

/* ================= Media modal ================= */
.media-modal {
  width: 100%; max-width: 720px;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.media-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-family: var(--fb);
}
.media-modal-head .modal-close { background: rgba(255,255,255,0.15); color: #fff; }
.media-stage {
  position: relative;
  aspect-ratio: 16/10;
  background: #000;
  display: flex; align-items: center; justify-content: center;
}
.media-stage video, .media-stage img { width: 100%; height: 100%; object-fit: contain; }
.media-nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.media-nav-btn.prev { left: 10px; }
.media-nav-btn.next { right: 10px; }
.media-nav-btn.hidden { display: none; }
.media-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(0,0,0,0.6);
}
.media-label { color: #fff; font-family: var(--fb); font-size: 12px; opacity: 0.85; }
.media-share-btn {
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--accent-orange);
  color: #fff;
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.media-thumbs {
  display: none;
  gap: 6px;
  padding: 0 16px 12px;
  overflow-x: auto;
}
.media-thumbs button {
  flex: none;
  font-family: var(--fb);
  font-size: 11px;
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 6px 12px;
}
.media-thumbs button.active { background: var(--accent-orange); }

/* ================= FAQ ================= */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
}
.faq-icon { color: var(--accent-orange); font-size: 18px; transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 18px 16px; font-family: var(--fb); font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ================= Lead form ================= */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lead-form label {
  display: flex; flex-direction: column; gap: 5px;
  font-family: var(--fb);
  font-size: 12px; color: var(--text-muted); font-weight: 700;
}
.lead-form input {
  padding: 11px 13px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--panel, #fff);
  color: var(--text);
  font-family: var(--fb);
  font-size: 14px;
}
.lead-form input:focus { outline: 2px solid var(--accent-orange); outline-offset: 1px; }
.lead-form-honeypot { position: absolute; left: -9999px; opacity: 0; }
.lead-submit {
  margin-top: 4px;
  padding: 13px;
  border-radius: 13px;
  background: var(--dark);
  color: #F3ECE0;
  font-family: var(--fd);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.lead-submit:disabled { opacity: 0.6; cursor: default; }
.lead-status { font-family: var(--fb); font-size: 13px; text-align: center; }
.lead-status.ok { color: var(--green); }
.lead-status.err { color: var(--danger); }

/* ================= Contacts / Footer — styled like reference's .foot bar ================= */
.contacts-grid {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.contact-card {
  display: flex; gap: 12px; align-items: center;
}
.contact-card .ico { color: var(--accent-orange); font-size: 18px; }
.contact-card b {
  display: block;
  font-family: var(--fd);
  font-weight: 700;
  color: var(--accent-orange);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 2px;
}
.contact-card span { font-family: var(--fb); font-weight: 700; color: #F3ECE0; font-size: 14px; }

.site-footer {
  background: var(--dark);
  color: rgba(243,236,224,0.6);
  padding: 26px 0;
  text-align: center;
  font-family: var(--fb);
  font-size: 12px;
}
