:root, [data-theme="dark"] {
  --bg: #0c0b0a;
  --bg2: #141210;
  --surface: #1b1714;
  --ink: #f4eee6;
  --muted: #b7aa9c;
  --line: rgba(255,255,255,.08);
  --accent: #e31e24;
  --accent2: #ff4a50;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --hero-overlay: linear-gradient(180deg, rgba(12,11,10,.42) 0%, rgba(12,11,10,.38) 40%, rgba(12,11,10,.88) 100%);
  --ghost-line: rgba(22,19,16,.18);
}
[data-theme="light"] {
  --bg: #f6f1ea;
  --bg2: #efe7dc;
  --surface: #fffdf9;
  --ink: #161310;
  --muted: #6d645b;
  --line: rgba(22,19,16,.1);
  --accent: #c81a20;
  --accent2: #e31e24;
  --shadow: 0 16px 40px rgba(40,20,8,.1);
  --hero-overlay: linear-gradient(180deg, rgba(12,11,10,.4) 0%, rgba(12,11,10,.36) 42%, rgba(12,11,10,.82) 100%);
  --ghost-line: rgba(22,19,16,.2);
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body { overflow-x: hidden; }
a, a:link, a:visited {
  color: inherit;
  text-decoration: none;
}
html { color-scheme: dark; }
[data-theme="light"] { color-scheme: light; }
html { scroll-behavior: smooth; }
body {
  font-family: Manrope, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100%;
}
body.is-nav { overflow: hidden; }
.skip {
  position: absolute; left: 12px; top: -48px; z-index: 400;
  background: var(--accent); color: #fff; padding: 8px 14px; border-radius: 999px; font-weight: 800;
}
.skip:focus { top: 12px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }
.wrap { width: min(1200px, calc(100% - 32px)); margin-inline: auto; }
h1, h2, h3 { font-family: Syne, Manrope, sans-serif; line-height: 1.12; margin: 0 0 .4em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }

/* —— Header: transparent over media, glass on scroll —— */
.hd {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 88px;
  color: #fff;
  background: transparent;
  border-bottom: 1px solid transparent;
  overflow: visible;
  transition: background .28s ease, color .28s ease, border-color .28s ease;
}
.hd.is-scrolled {
  background: rgba(12,11,10,.88);
  backdrop-filter: blur(18px) saturate(1.15);
  border-bottom-color: rgba(255,255,255,.08);
  color: #fff;
}
.hd.is-open {
  background: #12100e;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  filter: none;
  border-bottom-color: rgba(255,255,255,.08);
  color: #fff;
  z-index: 400;
}
[data-theme="light"] .hd.is-scrolled {
  background: rgba(255,253,248,.92);
  border-bottom-color: rgba(22,19,16,.08);
  color: #161310;
}
[data-theme="light"] .hd.is-open {
  background: #fffdf9;
  backdrop-filter: none;
  border-bottom-color: rgba(22,19,16,.08);
  color: #161310;
}
.hd__bar {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hd__logo,
.hd__logo:link,
.hd__logo:visited,
.hd__logo:hover {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}
.hd__mark {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}
.hd__mark img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 0;
  display: block;
  background: transparent;
}
.hd__lang-bar { position: relative; z-index: 5; }
.lang { cursor: pointer; }
.hd__brand { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.hd__brand strong {
  font-family: Syne, sans-serif;
  font-size: .92rem;
  letter-spacing: .02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(280px, 58vw);
}
.hd__brand small { color: var(--accent2); font-weight: 700; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
[data-theme="light"] .hd.is-scrolled .hd__brand small,
[data-theme="light"] .hd.is-open .hd__brand small { color: var(--accent); }
.hd__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 600;
  font-size: .92rem;
}
.hd__nav-head,
.hd__nav-extra,
.hd__scrim { display: none; }
.hd__nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}
.hd__nav-links > a,
.hd__drop > a {
  position: relative;
  white-space: nowrap;
  opacity: .88;
  padding: 8px 10px;
}
.hd__nav-links > a:hover,
.hd__drop > a:hover,
.hd__nav-links > a.is-on,
.hd__drop > a.is-on {
  opacity: 1;
}
.hd__nav-links > a.is-on::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent2);
}
[data-theme="light"] .hd.is-scrolled .hd__nav-links > a:hover,
[data-theme="light"] .hd.is-scrolled .hd__drop > a:hover,
[data-theme="light"] .hd.is-scrolled .hd__nav-links > a.is-on,
[data-theme="light"] .hd.is-scrolled .hd__drop > a.is-on,
[data-theme="light"] .hd.is-open .hd__nav-links > a:hover,
[data-theme="light"] .hd.is-open .hd__drop > a:hover,
[data-theme="light"] .hd.is-open .hd__nav-links > a.is-on,
[data-theme="light"] .hd.is-open .hd__drop > a.is-on {
  color: var(--accent);
}
[data-theme="light"] .hd.is-scrolled .hd__nav-links > a.is-on::after,
[data-theme="light"] .hd.is-open .hd__nav-links > a.is-on::after {
  background: var(--accent);
}
.hd__drop { position: relative; flex: 0 0 auto; padding: 28px 0; margin: -28px 0; z-index: 2; }
.hd__sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  min-width: 240px;
  padding: 8px;
  border-radius: 14px;
  background: rgba(18,14,12,.94);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  z-index: 230;
  pointer-events: auto;
}
[data-theme="light"] .hd.is-scrolled .hd__sub,
[data-theme="light"] .hd.is-open .hd__sub {
  background: #fffdf9;
  border-color: rgba(22,19,16,.1);
  color: #161310;
}
.hd__drop:hover,
.hd__drop:focus-within { z-index: 40; }
.hd__drop:hover .hd__sub,
.hd__drop:focus-within .hd__sub { display: block; }
.hd__sub a { display: block; padding: 9px 12px; border-radius: 8px; white-space: nowrap; }
.hd__sub a:hover { background: rgba(255,255,255,.08); color: var(--accent2); }
[data-theme="light"] .hd.is-scrolled .hd__sub a:hover { background: var(--bg2); color: var(--accent); }
.prefs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.prefs__btn {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 6px 7px;
  margin: 0;
  opacity: .55;
  border-radius: 8px;
  font: inherit;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1;
  text-decoration: none;
}
.prefs__btn:hover,
.prefs__btn.is-on { opacity: 1; }
.prefs__theme { display: grid; place-items: center; padding: 6px; }
.prefs__sun, .prefs__moon { display: none; }
[data-theme="light"] .prefs__sun { display: block; }
[data-theme="dark"] .prefs__moon { display: block; }
.foot__copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.prefs--foot { opacity: .9; }
.hd__tools {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  flex-wrap: nowrap;
}
.hd__tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 12px 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  font-weight: 700;
  font-size: .82rem;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}
.hd__tel svg { flex: 0 0 auto; opacity: .95; }
[data-theme="light"] .hd.is-scrolled .hd__tel,
[data-theme="light"] .hd.is-open .hd__tel {
  background: rgba(22,19,16,.05);
  border-color: rgba(22,19,16,.14);
}

.mode, .lang {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.mode {
  cursor: pointer;
  color: inherit;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}
[data-theme="light"] .hd.is-scrolled .mode,
[data-theme="light"] .hd.is-scrolled .lang,
[data-theme="light"] .hd.is-open .mode,
[data-theme="light"] .hd.is-open .lang {
  background: rgba(22,19,16,.05);
  border-color: rgba(22,19,16,.14);
  box-shadow: none;
}
.mode__opt {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  opacity: .55;
  transition: background .2s, color .2s, opacity .2s;
}
.lang span {
  min-width: 36px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  opacity: .55;
  transition: background .2s, color .2s, opacity .2s;
  pointer-events: none;
}
[data-theme="dark"] .mode__moon,
[data-theme="light"] .mode__sun,
.lang span.is-on {
  opacity: 1;
  background: #fff;
  color: #161310;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
}
[data-theme="light"] .hd.is-scrolled .mode__sun,
[data-theme="light"] .hd.is-scrolled .lang span.is-on,
[data-theme="light"] .hd.is-open .mode__sun,
[data-theme="light"] .hd.is-open .lang span.is-on {
  background: var(--accent);
  color: #fff;
  box-shadow: none;
}

.hd__burger {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.1);
  color: inherit;
  cursor: pointer;
  display: none;
  place-items: center;
  padding: 0;
}
[data-theme="light"] .hd.is-scrolled .hd__burger,
[data-theme="light"] .hd.is-open .hd__burger {
  border-color: rgba(22,19,16,.14);
  background: rgba(22,19,16,.05);
}
.hd__burger span { display: block; width: 16px; height: 1.6px; background: currentColor; border-radius: 2px; }
.hd__burger span + span { margin-top: 4px; }
.hd.is-open .hd__burger span:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
.hd.is-open .hd__burger span:nth-child(2) { opacity: 0; }
.hd.is-open .hd__burger span:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }
.hd__burger span { transition: transform .2s ease, opacity .2s ease; }
.hd__close {
  width: 40px; height: 40px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: inherit; cursor: pointer;
  display: grid; place-items: center;
}
.hd__nav-label {
  margin: 14px 0 8px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .55;
}
.hd__tel--full { width: 100%; justify-content: center; height: 44px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent); color: #fff !important; font-weight: 800;
  border: 1.5px solid transparent; border-radius: 999px; padding: .72rem 1.2rem; cursor: pointer;
}
.btn:hover { filter: brightness(1.08); }
.btn--ghost {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--ghost-line);
}
.btn--sm { padding: .5rem .95rem; font-size: .85rem; }
.btn--wa {
  background: #25d366 !important;
  color: #fff !important;
  border-color: #13a34a;
  box-shadow: 0 8px 22px rgba(37,211,102,.32);
  text-shadow: 0 1px 1px rgba(0,0,0,.2);
}
.btn--wa:hover { filter: brightness(1.06); }
.hero .btn--wa,
.page-hero .btn--wa {
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.7);
  background: #25d366 !important;
}
.band .btn { background: #1a120c; border-color: #1a120c; }
.band .btn--ghost {
  background: rgba(255,255,255,.1);
  color: #fff !important;
  border-color: rgba(255,255,255,.55);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 150px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8,6,5,.55), transparent);
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center top; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: var(--hero-overlay); }
.hero__in { position: relative; z-index: 3; padding: 120px 0 64px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,.28); background: rgba(0,0,0,.28);
  border-radius: 999px; padding: .35rem .8rem; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.hero h1 .hero__accent {
  display: inline;
  font-style: normal;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  background-image: linear-gradient(90deg, #e31e24, #ff3b42);
  background-repeat: no-repeat;
  background-size: 100% .34em;
  background-position: 0 92%;
  padding: 0 .04em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.lead { max-width: 40rem; color: rgba(255,255,255,.9); font-size: 1.05rem; white-space: pre-line; }
.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}
.hero__points li {
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(0,0,0,.28);
  border-radius: 999px;
  padding: .4rem .9rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  backdrop-filter: blur(8px);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  margin-top: 36px; max-width: 760px;
}
.hero__stats div {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px; padding: 12px 14px; backdrop-filter: blur(8px);
}
.hero__stats b { display: block; font-size: 1.35rem; font-family: Syne, sans-serif; }
.hero__stats span { color: rgba(255,255,255,.72); font-size: .78rem; }

.section { padding: 84px 0; }
.section--alt { background: var(--bg2); }
.kicker { color: var(--accent); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .72rem; margin: 0 0 8px; }
.section__head { margin-bottom: 32px; max-width: 640px; }
.section__head p { color: var(--muted); margin: 0; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 22px;
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow);
  transition: box-shadow .28s ease;
}
@media (hover: hover) and (pointer: fine) {
  .card { transition: transform .28s ease, box-shadow .28s ease; }
  .card:hover { transform: translateY(-5px); }
}
.card__img {
  height: 240px; background: #1a120c; display: block; overflow: hidden;
}
.card__img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
}
.shot { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; overflow: visible; }
.strip img { width: 100%; height: 190px; object-fit: cover; object-position: center top; display: block; background: #1a120c; border-radius: 18px; }
.hl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: min(1280px, calc(100% - 36px));
  margin: 10px auto 0;
}
.hl__card {
  position: relative;
  min-height: 280px;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: #1a120c;
}
.hl__card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.faq-page { display: grid; grid-template-columns: .85fr 1.15fr; gap: 36px; align-items: start; }
.faq-page__shot { min-height: 280px; }
.faq { position: relative; z-index: 2; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 10px;
}
.faq__q {
  width: 100%;
  display: block;
  position: relative;
  padding: 16px 52px 16px 18px;
  font: inherit;
  font-weight: 800;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.faq__plus {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 22px; height: 22px;
  margin-top: -11px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  pointer-events: none;
}
.faq__plus::before,
.faq__plus::after {
  content: "";
  position: absolute;
  left: 5px; right: 5px; top: 9px;
  height: 1.5px;
  background: var(--accent);
}
.faq__plus::after { transform: rotate(90deg); }
.faq__item.is-open .faq__plus::after { transform: rotate(0deg); }
.faq__a[hidden] { display: none !important; }
.price { overflow: hidden; padding: 0; }
.price__img { height: 168px; background: #222 center/cover no-repeat; }
.price__body { padding: 22px; }
.quote { overflow: hidden; padding: 0; }
.quote img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center top;
  background: #1a120c;
}
.quote__body { padding: 18px 20px 20px; }
.band { position: relative; overflow: hidden; }
.band__bg { position: absolute; inset: 0; }
.band__bg img { width: 100%; height: 100%; object-fit: cover; }
.band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,11,10,.72), rgba(180,24,28,.42)); }
.band__in { position: relative; z-index: 1; }
.side-shot { min-height: 420px; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); background: #1a120c; }
.side-shot img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; object-position: center top; display: block; }
.book { display: grid; grid-template-columns: .95fr 1.05fr; gap: 40px; align-items: start; }
.map img { width: 100%; height: 280px; object-fit: cover; border-radius: 18px; display: block; }
.card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__body p { margin: 0; color: var(--muted); }
.card__foot { margin-top: auto; display: flex; align-items: center; gap: 10px; padding-top: 8px; }
.card__foot strong { color: var(--accent); font-size: 1.15rem; }
.card__foot span { color: var(--muted); font-size: .8rem; margin-right: auto; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.split__img { min-height: 420px; border-radius: 24px; background: #222 center/cover no-repeat; box-shadow: var(--shadow); }
.article { color: var(--muted); font-size: 1.05rem; }

.why { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.why li {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; font-weight: 700;
}
.why li::before { content: "▸ "; color: var(--accent); }

.prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; }
.price .amount { font-size: 1.7rem; font-family: Syne, sans-serif; color: var(--accent); margin: 0 0 14px; }
.price ul { list-style: none; margin: 0 0 18px; padding: 0; color: var(--muted); }
.price li { padding: 6px 0 6px 1.1em; position: relative; }
.price li::before { content: "•"; color: var(--accent); position: absolute; left: 0; }

.offer__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: stretch;
}
.offer__visual {
  margin: 0;
  position: relative;
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
  background: #1a120c;
  box-shadow: var(--shadow);
}
.offer__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offer__panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.offer__lead { color: var(--muted); margin: 0 0 8px; }
.offer__rates {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}
.offer__rates li + li { border-top: 1px solid var(--line); }
.offer__rates a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}
.offer__rates strong { display: block; font-size: 1.02rem; }
.offer__rates small { display: block; color: var(--muted); font-size: .82rem; font-weight: 600; margin-top: 2px; }
.offer__rates b {
  color: var(--accent);
  font-family: Syne, sans-serif;
  font-size: 1.12rem;
  white-space: nowrap;
}
.offer__note { color: var(--muted); font-size: .88rem; margin: 8px 0 18px; }
.offer__panel .btn { align-self: flex-start; }

.horse-spot {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px 18px 10px 10px;
  box-shadow: var(--shadow);
}
.horse-spot img {
  width: 140px;
  height: 110px;
  object-fit: cover;
  object-position: center top;
  background: #1a120c;
  border-radius: 12px;
}
.horse-spot h3 { margin: 0; font-size: 1.2rem; }
.horse-spot .kicker { margin: 0 0 4px; }
.horse-spot p { margin: 4px 0 0; color: var(--muted); font-size: .92rem; }
.horse-spot b { color: var(--accent); font-size: 1.25rem; white-space: nowrap; }

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; margin: 0; }
.quote b { color: var(--accent); }

.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 170px; gap: 14px; }
.mosaic figure {
  margin: 0; overflow: hidden; border-radius: 16px; background: #1a120c;
  position: relative; min-height: 150px;
}
.mosaic img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.mosaic figure.wide { grid-column: span 2; grid-row: span 2; }
.mosaic figure.tall { grid-row: span 2; }
.why-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-shots > figure {
  margin: 0;
  min-height: 170px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #1a120c;
  box-shadow: var(--shadow);
}
.why-shots img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.why-shots__wide {
  grid-column: 1 / -1;
  min-height: 210px;
}

.page-hero {
  position: relative; min-height: 58vh; min-height: 58svh; display: grid; align-items: end;
  color: #fff; overflow: hidden; background: #1a120c;
}
.page-hero--fit { min-height: 78vh; min-height: 78svh; }
.page-hero__media { position: absolute; inset: 0; overflow: hidden; }
.page-hero img,
.page-hero__media img {
  position: absolute; inset: 0; width: 100%; height: 100%; max-width: none;
  object-fit: cover; object-position: center; display: block;
}
.page-hero--fit img { object-position: center top; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: var(--hero-overlay); }
.page-hero .wrap { position: relative; z-index: 1; padding: 128px 0 48px; }
.crumbs { opacity: .8; font-size: .88rem; margin-bottom: 8px; }
.meta-row { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 16px; }
.meta-row b { display: block; color: var(--accent2); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }

.form-wrap { max-width: 560px; }
.book .form-wrap { max-width: none; }
.form { display: grid; gap: 12px; }
.form label { display: grid; gap: 6px; font-size: .88rem; font-weight: 700; }
.form input, .form select, .form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: .75rem .85rem;
  font: inherit; font-size: 16px; background: var(--surface); color: var(--ink);
}
.notice { background: var(--surface); border: 1px solid var(--accent); padding: 14px; border-radius: 12px; }
.map, .map--empty {
  min-height: 260px; border-radius: 18px; background: var(--surface); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--muted); overflow: hidden;
}
.map iframe { width: 100%; height: 280px; border: 0; border-radius: 18px; }
.contact-shot {
  min-height: 280px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.contact-shot img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; display: block; }

.findus { padding-top: 20px; }
.findus__head { max-width: 640px; margin-bottom: 22px; }
.findus__head p:last-child { color: var(--muted); font-weight: 600; }
.findus__grid {
  display: grid;
  grid-template-columns: 1.45fr .9fr;
  gap: 18px;
  align-items: stretch;
}
.findus__map {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  min-height: 340px;
}
.findus__map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}
.findus--page .findus__map,
.findus--page .findus__map iframe { min-height: 430px; }
.findus__map-link {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: .7rem 1rem;
  border-radius: 14px;
  background: rgba(12,10,8,.82);
  color: #fff !important;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}
.findus__map-link span { font-weight: 800; font-size: .92rem; }
.findus__map-link small { color: rgba(255,255,255,.72); font-size: .72rem; font-weight: 700; }
.findus__cards { display: grid; gap: 12px; }
.findus__card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 16px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: inherit;
}
.findus__card:hover { border-color: var(--accent); }
.findus__card b { display: block; font-size: .95rem; }
.findus__card small { color: var(--muted); font-weight: 700; }
.findus__card em {
  font-style: normal;
  font-size: .75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.findus__ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--bg2);
  color: var(--ink);
}
.findus__card--ig .findus__ico { background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af); color: #fff; }
.findus__card--wa .findus__ico { background: #25d366; color: #fff; }
.findus__card--maps .findus__ico { background: rgba(227,30,36,.16); color: var(--accent); }

.social { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.social__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .45rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  color: #fff !important;
  font-size: .8rem;
  font-weight: 800;
}
.social__btn:hover { border-color: var(--accent2); color: var(--accent2) !important; }
.social__ig { background: linear-gradient(135deg, rgba(245,133,41,.25), rgba(221,42,123,.22)); }
.social__maps { background: rgba(227,30,36,.16); }
.checks ul { list-style: none; margin: 0; padding: 0; }
.checks li { padding: 6px 0 6px 1.2em; position: relative; color: var(--muted); }
.checks li::before { content: "✓"; color: var(--accent); position: absolute; left: 0; }
.program { display: grid; gap: 10px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; }
.step b { color: var(--accent); }

.band { background: var(--accent); color: #fff; padding: 52px 0; }
.band .kicker { color: rgba(255,255,255,.8); }
.band h2 { margin: 0; color: #fff; }
.band__in { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 18px; align-items: center; flex-wrap: wrap; }

.foot { background: #090807; color: #c9bfb4; padding: 48px 0 18px; }
[data-theme="light"] .foot { background: #171310; }
.foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
.foot h4 { color: #fff; margin: 0 0 12px; }
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { margin: 7px 0; }
.foot a:hover { color: var(--accent2); }
.foot__copy { border-top: 1px solid rgba(255,255,255,.08); margin-top: 28px; padding-top: 14px; font-size: .85rem; }
.logo--foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: inherit;
  text-decoration: none;
}
.logo--foot img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
  background: transparent;
}
.logo--foot strong { color: #fff; display: block; font-family: Syne, sans-serif; }
.logo--foot small { color: var(--accent2); }

.wa {
  position: fixed; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); z-index: 70;
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff !important; font-weight: 800;
  border-radius: 999px; padding: .75rem 1.15rem; box-shadow: 0 10px 28px rgba(37,211,102,.35);
}
.wa svg { flex: 0 0 auto; }

.admin-body { padding-top: 0; }
.admin-wrap { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-side { background: var(--surface); border-right: 1px solid var(--line); padding: 22px 16px; }
.admin-side a { display: block; padding: .55rem .7rem; border-radius: 10px; color: var(--muted); font-weight: 700; }
.admin-side a:hover, .admin-side a.is-on { background: var(--bg2); color: var(--ink); }
.admin-main { padding: 28px; }
.admin-main table { width: 100%; border-collapse: collapse; }
.admin-main th, .admin-main td { text-align: left; padding: .6rem .4rem; border-bottom: 1px solid var(--line); }
.admin-login { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.admin-login form { width: min(380px, 92vw); background: var(--surface); border: 1px solid var(--line); padding: 28px; border-radius: 20px; display: grid; gap: 12px; }
.err { color: #ff8a7a; }
.preview { width: 100%; max-height: 160px; object-fit: cover; border-radius: 12px; margin-top: 6px; }

@media (max-width: 1120px) {
  .hd__tel.hd__desk span { display: none; }
  .hd__tel.hd__desk { width: 36px; padding: 0; justify-content: center; }
}
@media (max-width: 980px) {
  .cards, .prices, .quotes, .split, .foot__grid, .hero__stats, .book, .faq-page, .findus__grid { grid-template-columns: 1fr 1fr; }
  .offer__grid { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .hd__desk { display: none !important; }
  .hd__lang-bar { display: flex; }
  .hd__tools .lang span { min-width: 38px; height: 32px; font-size: .72rem; }
  .hd__burger { display: grid; }
  .hd__scrim {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(8,6,5,.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
    z-index: 450;
  }
  .hd.is-open .hd__scrim {
    opacity: 1;
    pointer-events: auto;
  }
  .hd__nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 90vw);
    padding: 18px 18px calc(24px + env(safe-area-inset-bottom, 0px));
    background: #12100e;
    color: #f4eee6;
    border-left: 1px solid rgba(255,255,255,.08);
    box-shadow: -18px 0 50px rgba(0,0,0,.35);
    transform: translateX(110%);
    transition: transform .32s ease;
    z-index: 500;
    overflow: auto;
    gap: 0;
    -webkit-overflow-scrolling: touch;
  }
  [data-theme="light"] .hd.is-open .hd__nav,
  [data-theme="light"] .hd__nav {
    background: #fffdf9;
    color: #161310;
    border-left-color: rgba(22,19,16,.08);
  }
  .hd__nav.is-open { transform: translateX(0); }
  .hd__nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
  }
  .hd__nav-head strong { font-family: Syne, sans-serif; font-size: 1.15rem; }
  .hd__nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .hd__nav-links > a,
  .hd__drop > a {
    padding: 12px 10px;
    font-size: 1.05rem;
    border-radius: 12px;
  }
  .hd__nav-links > a.is-on,
  .hd__drop > a.is-on { background: rgba(227,30,36,.14); color: var(--accent2); }
  .hd__nav-links > a.is-on::after { display: none; }
  .hd__drop { padding: 0; margin: 0; z-index: auto; }
  .hd__nav .hd__sub,
  .hd__nav .hd__drop:hover .hd__sub,
  .hd__nav .hd__drop:focus-within .hd__sub {
    display: block;
    position: static;
    margin: 0 0 6px;
    padding: 0 0 4px 10px;
    border: 0;
    box-shadow: none;
    background: transparent;
    min-width: 0;
    pointer-events: auto;
  }
  .hd__sub a { opacity: .8; font-size: .92rem; }
  .hd__nav-extra {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  [data-theme="light"] .hd__nav-extra { border-top-color: rgba(22,19,16,.1); }
  .hd__nav-extra .prefs { justify-self: start; }
  .hd__nav-extra .btn { width: 100%; }
  .hd__close {
    border-color: rgba(22,19,16,.14);
    background: rgba(22,19,16,.06);
  }
  [data-theme="dark"] .hd__close {
    border-color: rgba(255,255,255,.2);
    background: rgba(255,255,255,.08);
  }
}
@media (max-width: 640px) {
  .cards, .prices, .quotes, .split, .offer__grid, .foot__grid, .mosaic, .book, .findus__grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .mosaic figure.wide, .mosaic figure.tall { grid-column: 1 / -1; grid-row: auto; }
  .why-shots { grid-template-columns: 1fr; }
  .why-shots__wide, .why-shots > figure { min-height: 180px; }
  .faq-page { grid-template-columns: 1fr; }
  .hl { grid-template-columns: 1fr 1fr; }
  .hl__card { min-height: 200px; }
  .split__img, .side-shot, .side-shot img, .offer__visual { min-height: 220px; }
  h1 { font-size: 2.05rem; }
  .hd__brand small { display: none; }
  .hd__brand strong { max-width: min(148px, 38vw); }
  .hd__bar { width: calc(100% - 20px); gap: 10px; height: 76px; }
  .hd { height: 76px; }
  .hd__mark, .hd__mark img { width: 48px; height: 48px; }
  .hd__tools .mode { display: none; }
  .hero { min-height: 88svh; }
  .hero__in { padding: 108px 0 40px; }
  .horse-spot { grid-template-columns: 1fr; padding: 12px; }
  .horse-spot img { width: 100%; height: 220px; }
  .section { padding: 56px 0; }
  .card__foot { flex-wrap: wrap; }
  .wa span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .wa {
    width: 56px; height: 56px; padding: 0; justify-content: center;
    right: 14px;
  }
  .band__in { flex-direction: column; align-items: flex-start; }
  .quotes { gap: 14px; }
}
@media (max-width: 400px) {
  .hl { grid-template-columns: 1fr; }
  .hl__card { min-height: 180px; }
}
