:root {
  --navy: #13233d;
  --orange: #ef7a1a;
  --ink: #1b2430;
  --mute: #5e6874;
  --line: #ddd7cd;
  --bg: #f4f1ea;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  padding-bottom: 88px;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }
button, input, select { font: inherit; }

.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.btn {
  display: inline-block;
  height: 46px;
  padding: 0 20px;
  border: 0;
  background: var(--orange);
  color: #fff;
  font-family: Inter, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 46px;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
}
.btn:hover { background: #d96b12; }
.btn-line {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.bar {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
}
.bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}
.bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
}
.bar a:hover { color: var(--orange); }
.bar svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo img { height: 34px; width: auto; }
.nav { display: flex; gap: 26px; }
.nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 72px;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 22px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.18s ease;
}
.nav a:hover { color: var(--orange); }
.nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
}
.menu-toggle i,
.menu-toggle i::before,
.menu-toggle i::after {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 0 auto;
  background: var(--navy);
  position: relative;
}
.menu-toggle i::before,
.menu-toggle i::after { content: ""; position: absolute; left: 0; }
.menu-toggle i::before { top: -5px; }
.menu-toggle i::after { top: 5px; }

.hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  min-height: calc(100vh - 112px);
  background: #fff;
}
.hero-copy {
  width: min(460px, calc(100vw - 80px));
  margin-left: max(20px, calc((100vw - 1180px) / 2));
  padding: 64px 56px 64px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-copy h1 {
  font-family: Syne, sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--navy);
}
.hero-copy .lead {
  max-width: 34ch;
  margin: 18px 0 26px;
  color: var(--mute);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 26px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-note { margin-top: 12px; font-size: 13px; color: var(--mute); }
.hero-visual { position: relative; min-height: 480px; }
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.band-inner { padding: 72px 0; }
h2 {
  font-family: Syne, sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--navy);
}

.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.trio article {
  padding: 24px 22px;
  background: #fff;
}
.trio b { display: block; margin-bottom: 14px; color: var(--orange); font-size: 13px; }
.trio h3 { font-size: 1.1rem; color: var(--navy); }
.trio p { margin-top: 8px; color: var(--mute); }

.why {
  background: var(--navy);
  color: #d5dce8;
}
.why h2 { color: #fff; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 28px; background: rgba(255,255,255,0.12); }
.why-list article { padding: 28px 26px; background: var(--navy); }
.why-list h3 { color: #fff; font-size: 1.05rem; }
.why-list p { margin-top: 8px; color: #b7c0cf; }

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}
.tile {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  color: #fff;
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.4s ease;
}
.tile:hover img { transform: scale(1.06); }
.tile > div {
  position: absolute;
  inset: 0;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(10, 16, 28, 0) 28%, rgba(10, 16, 28, 0.78) 78%, rgba(10, 16, 28, 0.94) 100%);
}
.tile h3 { font-size: 1.2rem; }
.swap {
  position: relative;
  height: 34px;
  margin-top: 8px;
}
.swap p,
.swap .go {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  transition: opacity 0.2s ease;
}
.swap p {
  font-size: 14px;
  line-height: 34px;
  color: #e8e2d8;
}
.swap .go {
  display: inline-block;
  height: 34px;
  padding: 0 14px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 34px;
  opacity: 0;
}
.tile:hover .swap p,
.tile:focus-visible .swap p { opacity: 0; }
.tile:hover .swap .go,
.tile:focus-visible .swap .go { opacity: 1; }

.price-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; }
.tabs { display: flex; gap: 8px; }
.tabs button {
  height: 40px;
  padding: 0 16px;
  border: 0;
  background: #fff;
  color: var(--navy);
  line-height: 40px;
  cursor: pointer;
}
.tabs button.is-active { background: var(--navy); color: #fff; }
.panel { display: none; margin-top: 24px; }
.panel.is-active { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.price {
  padding: 26px 22px;
  background: #fff;
}
.price span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.price b {
  display: block;
  margin: 10px 0 6px;
  font-family: Syne, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--navy);
}
.price p { font-size: 13px; color: var(--mute); }
.price.is-hot {
  background: var(--navy);
  color: #fff;
}
.price.is-hot span,
.price.is-hot b { color: #fff; }
.price.is-hot p { color: #c9d3e2; }
.note { margin-top: 16px; font-size: 13px; color: var(--mute); }

.places { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; }
.places article { background: #fff; overflow: hidden; }
.places img { width: 100%; height: 210px; object-fit: cover; }
.places div { padding: 20px 20px 22px; }
.places h3 { color: var(--navy); }
.places p { margin-top: 4px; color: var(--mute); font-size: 14px; }
.places ul { margin: 14px 0 0; padding: 0; list-style: none; }
.places li {
  position: relative;
  padding-left: 14px;
  margin-top: 6px;
  color: var(--ink);
  font-size: 14px;
}
.places li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.quotes-band { background: var(--navy); }
.quotes-band h2 { color: #fff; }
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.quotes blockquote {
  margin: 0;
  padding: 26px 24px;
  background: #2a466e;
  color: #fff;
}
.quotes p { color: #f3f6fb; }
.quotes footer { margin-top: 16px; font-size: 13px; color: #f39a2e; }
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.stars i {
  width: 14px;
  height: 14px;
  background: var(--orange);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.team {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.coach { background: #fff; }
.coach img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.coach h3 {
  padding: 12px 12px 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
}

.contact { background: var(--navy); }
.contact-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  padding: 72px 0;
  color: #d7deea;
}
.contact-copy h2 { color: #fff; }
.contact-copy p { margin-top: 12px; max-width: 32ch; }
.contact-copy a { color: #fff; font-weight: 600; }
.contact-meta { margin-top: 22px; }
form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
form[hidden] { display: none; }
.full { grid-column: 1 / -1; }
label { display: grid; gap: 6px; font-size: 12px; color: #c9d2e0; }
input, select {
  width: 100%;
  height: 48px;
  padding: 0 12px;
  border: 0;
  background: #fff;
  color: var(--ink);
  line-height: 48px;
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: #b7c0cf;
  font-weight: 400;
}
.consent input { width: 16px; height: 16px; }
.ok { display: none; color: #c8e6c4; }

.site-footer { padding: 36px 0; background: var(--bg); }
.foot { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 24px; font-size: 14px; color: var(--mute); }
.foot h3 { margin-bottom: 8px; font-size: 13px; color: var(--navy); }

.switch {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 30;
  display: flex;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(20, 35, 60, 0.12);
}
.switch a {
  display: inline-block;
  height: 42px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 600;
  line-height: 42px;
  color: var(--navy);
}
.switch a.is-active { background: var(--navy); color: #fff; }

body.nav-open { overflow: hidden; }

@media (max-width: 980px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  body.nav-open .nav {
    display: flex;
    position: fixed;
    inset: 112px 0 auto;
    flex-direction: column;
    gap: 0;
    padding: 8px 20px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }
  body.nav-open .nav a { line-height: 44px; }
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { width: auto; max-width: none; margin-left: 0; padding: 28px 20px; }
  .hero-visual { min-height: 260px; }
  .hero-visual img { position: relative; height: 260px; }
  .why-list, .tiles, .quotes, .places, .contact-inner, .foot, form, .price-head, .trio, .panel.is-active, .team {
    grid-template-columns: 1fr;
  }
  .tiles { grid-template-columns: 1fr 1fr; }
  .panel.is-active { grid-template-columns: 1fr 1fr; }
  .team { grid-template-columns: 1fr 1fr; }
  .swap p { opacity: 0; }
  .swap .go { opacity: 1; }
  .hero-cta .btn { width: 100%; }
}

@media (max-width: 720px) {
  .wrap { width: calc(100% - 32px); }
  .tiles, .panel.is-active, .places { grid-template-columns: 1fr; }
  .header-inner { height: 62px; }
  .band-inner, .contact-inner { padding: 52px 0; }
  .bar a { font-size: 12px; }
}
