:root {
  --bg: #fff7fb;
  --surface: #ffffff;
  --rose-25: #fff1f7;
  --rose-50: #fbe0ec;
  --rose-100: #f4bfd4;
  --rose-200: #e68caf;
  --rose-300: #c95a87;
  --berry: #8f315f;
  --plum: #4a2737;
  --ink: #2c2025;
  --muted: #77626b;
  --soft-ink: #5b434d;
  --line: rgba(169, 92, 124, 0.22);
  --shadow: 0 24px 70px rgba(132, 55, 88, 0.13);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0 1px, transparent 1px 96px),
    linear-gradient(rgba(255, 255, 255, 0.62) 0 1px, transparent 1px 96px),
    linear-gradient(180deg, #fff9fc 0%, var(--bg) 48%, #ffffff 100%);
  font-family: Manrope, Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  overflow: hidden;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1;
}

h1 {
  max-width: 760px;
  font-size: clamp(43px, 5.6vw, 76px);
}

h2 {
  max-width: 820px;
  font-size: clamp(35px, 4.9vw, 68px);
}

h3 {
  font-size: 20px;
  line-height: 1.18;
}

p,
li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 32px), var(--max));
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(197, 115, 149, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 252, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(117, 57, 82, 0.08);
}

.brand,
.main-nav,
.hero-actions,
.hero-note,
.decision-section,
.signal-strip,
.site-footer-inner,
.legal-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark,
.button-icon,
.card-icon,
.step-dot,
.strip-icon,
.timeline-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
}

.brand-mark {
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--rose-300);
  font-size: 13px;
}

.main-nav {
  gap: 24px;
  color: var(--soft-ink);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  padding: 10px 0;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-icon {
  width: 32px;
  min-width: 32px;
  height: 32px;
  padding: 0;
  color: inherit;
  background: rgba(255, 255, 255, 0.22);
  font-size: 11px;
  text-align: center;
}

.nav-cta,
.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--rose-300), var(--berry));
  box-shadow: 0 16px 34px rgba(201, 90, 135, 0.2);
}

.button-soft {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--line);
  box-shadow: 0 14px 30px rgba(117, 57, 82, 0.08);
}

.button-dark {
  color: #fff;
  background: var(--plum);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(129, 60, 89, 0.18);
}

.button:focus-visible,
.nav-cta:focus-visible,
.main-nav a:focus-visible {
  outline: 3px solid rgba(201, 90, 135, 0.32);
  outline-offset: 3px;
}

.hero,
.media-ribbon,
.signal-strip,
.story-section,
.proof-section,
.method-section,
.visual-map,
.fit-section,
.gallery-section,
.change-section,
.program-section,
.packages-section,
.decision-section,
.about-section,
.faq-section,
.final-section,
.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin-left: auto;
  margin-right: auto;
}

.section-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 44px;
  min-height: 760px;
  margin-top: 18px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.eyebrow {
  color: var(--berry);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 640px;
  color: var(--soft-ink);
  font-size: clamp(20px, 1.9vw, 27px);
  line-height: 1.34;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.hero-note {
  align-items: flex-start;
  gap: 16px;
  max-width: 610px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-note strong {
  min-width: 152px;
  color: var(--berry);
}

.hero-note span {
  color: var(--muted);
  line-height: 1.5;
}

.hero-art {
  display: grid;
  min-height: 0;
}

.hero-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: var(--rose-50);
  box-shadow: 0 28px 70px rgba(106, 48, 74, 0.22);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  width: 100%;
  min-height: 640px;
  aspect-ratio: 4 / 5;
}

.media-ribbon {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr 0.8fr;
  gap: 14px;
  margin-top: 28px;
}

.ribbon-tile {
  position: relative;
  min-height: 240px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background: var(--rose-50);
  box-shadow: 0 22px 54px rgba(106, 48, 74, 0.12);
}

.ribbon-tile img,
.ribbon-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.ribbon-tile:hover img,
.ribbon-tile:hover video {
  transform: scale(1.04);
}

.ribbon-tile.is-wide {
  min-height: 320px;
}

.ribbon-tile.is-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 32, 37, 0), rgba(44, 32, 37, 0.42));
  pointer-events: none;
}

.ribbon-tile figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  min-height: 38px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  background: rgba(44, 32, 37, 0.52);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-strip {
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.signal-strip div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--rose-25);
  transition: background 180ms ease, border-color 180ms ease;
}

.signal-strip div:hover {
  background: #fff;
  border-color: rgba(201, 90, 135, 0.32);
}

.strip-icon,
.package-label {
  color: var(--berry);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.strip-icon {
  width: 36px;
  height: 36px;
  color: #fff;
  background: linear-gradient(145deg, var(--rose-300), var(--berry));
}

.section-copy {
  display: grid;
  gap: 18px;
  max-width: 820px;
}

.story-section,
.proof-section,
.visual-map,
.fit-section,
.program-section,
.faq-section {
  padding: clamp(72px, 9vw, 132px) 0;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  margin-top: 42px;
  align-items: stretch;
}

.story-grid,
.proof-cards,
.fit-list,
.change-board,
.timeline,
.package-grid,
.faq-list {
  display: grid;
  gap: 18px;
}

.story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-grid article,
.proof-cards article,
.fit-list p,
.change-board div,
.timeline article,
.package,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.story-grid article {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 26px;
}

.card-icon {
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--rose-300);
  font-size: 12px;
}

.proof-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  margin-top: 28px;
  padding: clamp(34px, 5vw, 58px);
  align-items: end;
}

.proof-copy {
  display: grid;
  gap: 18px;
}

.proof-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-cards article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 190px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 242, 248, 0.76)),
    var(--surface);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.proof-cards article:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 90, 135, 0.42);
  box-shadow: 0 22px 52px rgba(117, 57, 82, 0.14);
}

.proof-cards strong {
  color: var(--plum);
  font-size: 19px;
  line-height: 1.18;
}

.proof-cards p {
  font-size: 14px;
  line-height: 1.46;
}

.story-photo {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--rose-50);
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-note {
  max-width: 860px;
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(117, 57, 82, 0.08);
}

.founder-note p {
  color: var(--soft-ink);
}

.journey-section {
  width: min(calc(100% - 32px), var(--max));
  margin: 28px auto 0;
  padding: clamp(34px, 5vw, 58px);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.journey-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 243, 248, 0.82)),
    var(--surface);
}

.field-section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 132px) 0;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  align-items: stretch;
}

.field-grid figure {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--rose-50);
  box-shadow: 0 18px 44px rgba(117, 57, 82, 0.1);
}

.field-grid figure:nth-child(2) {
  margin-top: 0;
}

.field-grid figure:nth-child(3) {
  margin-top: 0;
}

.field-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.method-section,
.about-section,
.gallery-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  padding: clamp(34px, 5vw, 58px);
  align-items: center;
}

.method-media,
.about-media {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: var(--rose-50);
  box-shadow: 0 28px 70px rgba(106, 48, 74, 0.16);
}

.method-media img,
.about-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.method-media img {
  object-fit: contain;
  padding: 24px;
  background: #f8dce8;
}

.method-media {
  aspect-ratio: 16 / 9;
}

.about-media {
  aspect-ratio: 4 / 5;
}

.method-copy,
.about-copy,
.change-copy {
  display: grid;
  gap: 22px;
}

.formula {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.formula div {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
}

.formula p {
  font-size: 14px;
  line-height: 1.45;
}

.method-summary {
  padding: 16px 18px;
  border: 1px solid rgba(201, 90, 135, 0.28);
  border-radius: 8px;
  background: rgba(255, 241, 247, 0.82);
  color: var(--plum);
  font-weight: 800;
  line-height: 1.42;
}

.step-dot {
  width: 30px;
  height: 30px;
  color: #fff;
  background: var(--berry);
  font-size: 12px;
}

.map-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  margin-top: 42px;
}

.map-node {
  display: grid;
  gap: 12px;
  min-height: 180px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(117, 57, 82, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.map-node:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(117, 57, 82, 0.12);
}

.map-node span {
  color: var(--berry);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.map-node strong {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
}

.is-old {
  background: linear-gradient(145deg, #fff, #f9edf2);
}

.is-body {
  background: linear-gradient(145deg, #fff, #fff2f8);
}

.is-new {
  color: #fff;
  background: linear-gradient(145deg, var(--rose-300), var(--berry));
}

.is-new span,
.is-new strong {
  color: #fff;
}

.fit-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
}

.fit-list p {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 20px 22px;
  color: var(--soft-ink);
}

.gallery-section {
  grid-template-columns: 0.8fr 1.2fr;
}

.image-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.image-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--rose-50);
  box-shadow: 0 18px 44px rgba(117, 57, 82, 0.1);
}

.image-gallery img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.gallery-large {
  grid-row: span 2;
}

.change-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 44px;
  padding: clamp(44px, 6vw, 70px);
  align-items: center;
}

.change-board div {
  display: grid;
  gap: 10px;
  padding: 22px 24px;
}

.change-board strong {
  font-size: 23px;
}

.change-board p {
  font-size: 15px;
  line-height: 1.5;
}

.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
}

.timeline article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 250px;
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.timeline article:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 90, 135, 0.38);
  box-shadow: 0 22px 52px rgba(117, 57, 82, 0.12);
}

.timeline time {
  color: var(--berry);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline-icon {
  width: 42px;
  height: 42px;
  color: #fff;
  background: linear-gradient(145deg, var(--rose-300), var(--berry));
  font-size: 13px;
}

.packages-section {
  padding: clamp(44px, 6vw, 70px);
}

.package-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
}

.package {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: clamp(26px, 4vw, 38px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.package:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 90, 135, 0.42);
  box-shadow: 0 26px 60px rgba(117, 57, 82, 0.14);
}

.package-photo {
  height: 230px;
  margin: calc(clamp(26px, 4vw, 38px) * -1) calc(clamp(26px, 4vw, 38px) * -1) 4px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: var(--rose-50);
}

.package-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package:first-child .package-photo img {
  object-fit: contain;
  padding: 18px;
  background: #fff2f8;
}

.package-vip {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 240, 246, 0.94)),
    var(--surface);
  border-color: rgba(201, 90, 135, 0.36);
}

.price {
  color: var(--rose-300);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
}

ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  padding-left: 24px;
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose-200);
}

.gift {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--soft-ink);
}

.payment-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.payment-note a {
  color: var(--berry);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.decision-section {
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding: clamp(34px, 5vw, 58px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 238, 246, 0.84)),
    url("./assets/space-test.jpg") center / cover;
}

.decision-section h2 {
  max-width: 760px;
}

.decision-section p:not(.eyebrow):not(.payment-note) {
  max-width: 650px;
  margin-top: 18px;
}

.decision-note {
  flex-basis: 100%;
  max-width: 720px;
  margin-top: -10px;
}

.about-section {
  margin-top: 28px;
}

.faq-list {
  max-width: 860px;
  margin-top: 42px;
}

.faq-list details {
  padding: 22px 26px;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
}

details p {
  margin-top: 14px;
}

.final-section {
  display: grid;
  justify-items: center;
  gap: 24px;
  margin-bottom: 36px;
  padding: clamp(50px, 7vw, 86px);
  text-align: center;
}

.final-section p {
  max-width: 720px;
}

.site-footer {
  margin-top: 18px;
  margin-bottom: 32px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(117, 57, 82, 0.08);
}

.site-footer-inner {
  justify-content: space-between;
  gap: 18px 24px;
  flex-wrap: wrap;
}

.site-footer p {
  max-width: 560px;
  font-size: 14px;
}

.legal-links {
  gap: 14px 20px;
  flex-wrap: wrap;
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 800;
}

.legal-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(169, 92, 124, 0.35);
}

@media (max-width: 1060px) {
  .main-nav {
    display: none;
  }

  .hero,
  .media-ribbon,
  .proof-section,
  .method-section,
  .gallery-section,
  .change-section,
  .about-section,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .journey-grid,
  .proof-cards,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-section,
  .field-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .field-grid figure,
  .field-grid figure:nth-child(2),
  .field-grid figure:nth-child(3) {
    min-height: 420px;
    margin-top: 0;
  }

  .story-photo {
    max-height: 560px;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    gap: 10px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero,
  .media-ribbon,
  .signal-strip,
  .story-section,
  .proof-section,
  .method-section,
  .visual-map,
  .fit-section,
  .gallery-section,
  .change-section,
  .program-section,
  .packages-section,
  .decision-section,
  .about-section,
  .faq-section,
  .final-section,
  .site-footer {
    width: calc(100% - 20px);
  }

  .hero,
  .proof-section,
  .method-section,
  .gallery-section,
  .change-section,
  .packages-section,
  .about-section,
  .final-section {
    padding: 24px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.04;
  }

  h2 {
    font-size: 35px;
  }

  p,
  li {
    font-size: 15.5px;
  }

  .hero-note,
  .decision-section,
  .signal-strip {
    display: grid;
  }

  .hero-note strong {
    min-width: 0;
  }

  .hero-card-main {
    min-height: 430px;
    aspect-ratio: 3 / 4;
  }

  .story-grid,
  .journey-grid,
  .media-ribbon,
  .proof-cards,
  .fit-list,
  .timeline,
  .formula,
  .image-gallery {
    grid-template-columns: 1fr;
  }

  .journey-section,
  .field-section {
    width: calc(100% - 20px);
  }

  .journey-section {
    padding: 24px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .field-grid figure,
  .field-grid figure:nth-child(2),
  .field-grid figure:nth-child(3) {
    min-height: 360px;
    margin-top: 0;
  }

  .map-board {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fit-list p {
    min-height: 72px;
  }

  .gallery-large {
    grid-row: span 1;
  }

  .ribbon-tile,
  .ribbon-tile.is-wide {
    min-height: 260px;
  }

  .package-photo {
    height: 210px;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .site-header .nav-cta {
    flex: 1;
    width: auto;
    max-width: 128px;
    font-size: 0;
  }

  .site-header .nav-cta::after {
    content: "Тест";
    font-size: 13px;
  }

  .brand span:last-child {
    display: none;
  }
}
