* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #263238;
  background: #fffdf8;
  line-height: 1.55;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.container {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}
.container.narrow {
  width: min(100% - 32px, 820px);
}

.section {
  padding: 84px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 0 34px;
}
.section-heading span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #c8644a;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0;
}
.section-heading p {
  margin: 14px 0 0;
  color: #65717a;
  font-size: 1.08rem;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: #c8644a;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid #27735f;
  border-radius: 8px;
  background: #27735f;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.button:hover {
  background: #194d42;
  border-color: #194d42;
  transform: translateY(-1px);
}
.button.button-small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.92rem;
}
.button.button-ghost {
  background: transparent;
  color: #194d42;
}
.button.button-ghost:hover {
  background: #e5f1ec;
  color: #194d42;
}
.button.button-light {
  background: #fff;
  color: #194d42;
  border-color: #fff;
}
.button.button-light:hover {
  background: #e5f1ec;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #194d42;
  font-weight: 800;
}
.text-link i {
  font-size: 1rem;
}

.page-main {
  min-height: 50vh;
}

.notice-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid #ded8cd;
  border-radius: 8px;
  background: #fff;
  color: #65717a;
}
.notice-line i {
  margin-top: 3px;
  color: #c8644a;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid #ded8cd;
  backdrop-filter: blur(14px);
}
.site-header .header-top {
  padding: 14px 0;
}
.site-header .header-top-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}
.site-header .header-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.site-header .header-facts span {
  padding: 8px 10px;
  border-radius: 8px;
  background: #e5f1ec;
  color: #194d42;
  font-size: 0.88rem;
  font-weight: 700;
}
.site-header .header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-header .header-nav {
  border-top: 1px solid rgba(222, 216, 205, 0.75);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}
.brand .brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #27735f;
  color: #fff;
  font-size: 1.35rem;
}
.brand .brand-text {
  display: grid;
  gap: 1px;
}
.brand .brand-text strong {
  font-size: 1.08rem;
  line-height: 1.1;
}
.brand .brand-text small {
  color: #65717a;
  font-size: 0.82rem;
}
.brand.brand-light .brand-mark {
  background: #fff;
  color: #194d42;
}
.brand.brand-light small {
  color: rgba(255, 255, 255, 0.74);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #194d42;
  font-weight: 800;
  white-space: nowrap;
}
.phone-link.phone-light {
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #ded8cd;
  border-radius: 8px;
  background: #fff;
  color: #194d42;
  cursor: pointer;
}

.main-nav .nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
}
.main-nav .nav-item {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 8px;
}
.main-nav .nav-item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  height: 12px;
}
.main-nav .nav-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 10px;
  color: #65717a;
  font-size: 0.94rem;
  font-weight: 750;
}
.main-nav .nav-item.is-active, .main-nav .nav-item:hover, .main-nav .nav-item:focus-within, .main-nav .nav-item.is-open {
  background: #e5f1ec;
}
.main-nav .nav-item.is-active > a, .main-nav .nav-item:hover > a, .main-nav .nav-item:focus-within > a, .main-nav .nav-item.is-open > a {
  color: #194d42;
}
.main-nav .nav-item:hover::after, .main-nav .nav-item:focus-within::after, .main-nav .nav-item.is-open::after {
  display: block;
}
.main-nav .nav-item:hover .nav-trigger, .main-nav .nav-item:focus-within .nav-trigger, .main-nav .nav-item.is-open .nav-trigger {
  color: #194d42;
}
.main-nav .nav-item:hover .nav-dropdown, .main-nav .nav-item:focus-within .nav-dropdown, .main-nav .nav-item.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.main-nav .nav-trigger {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #65717a;
  cursor: pointer;
}
.main-nav .nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 5;
  display: grid;
  gap: 3px;
  width: 270px;
  margin: 0;
  padding: 10px;
  list-style: none;
  border: 1px solid #ded8cd;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(38, 50, 56, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.main-nav .nav-dropdown a {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  color: #65717a;
  font-size: 0.92rem;
  font-weight: 700;
}
.main-nav .nav-dropdown a:hover, .main-nav .nav-dropdown a.is-active {
  background: #e5f1ec;
  color: #194d42;
}

.breadcrumbs {
  padding: 16px 0 0;
  background: #fffdf8;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #65717a;
  font-size: 0.88rem;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: rgba(101, 113, 122, 0.55);
}
.breadcrumbs a {
  color: #194d42;
  font-weight: 700;
}

.site-footer {
  padding: 54px 0 28px;
  background: #194d42;
  color: #fff;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 34px;
}
.site-footer .footer-brand p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.76);
}
.site-footer .footer-column h2 {
  margin: 0 0 14px;
  font-size: 1rem;
}
.site-footer .footer-column ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer .footer-column a {
  color: rgba(255, 255, 255, 0.76);
}
.site-footer .footer-column a:hover {
  color: #fff;
}
.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}
.site-footer .footer-bottom p {
  margin: 0;
}
.site-footer .footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.entry-grid,
.price-grid,
.fact-grid,
.review-grid,
.article-grid,
.photo-grid,
.step-grid {
  display: grid;
  gap: 18px;
}

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

.price-grid,
.fact-grid,
.review-grid,
.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo-grid,
.step-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.entry-card,
.price-card,
.fact-card,
.review-card,
.article-card,
.included-card,
.detail-card,
.step-card,
.list-panel {
  border: 1px solid #ded8cd;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(38, 50, 56, 0.06);
}

.entry-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  min-height: 168px;
  padding: 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.entry-card:hover {
  border-color: rgba(39, 115, 95, 0.45);
  box-shadow: 0 18px 50px rgba(38, 50, 56, 0.12);
  transform: translateY(-2px);
}
.entry-card:hover .entry-arrow {
  transform: translateX(3px);
}
.entry-card .entry-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #e5f1ec;
  color: #194d42;
  font-size: 1.4rem;
}
.entry-card .entry-content {
  display: grid;
  gap: 8px;
}
.entry-card .entry-content strong {
  font-size: 1.1rem;
  line-height: 1.18;
}
.entry-card .entry-content span {
  color: #65717a;
  font-size: 0.95rem;
}
.entry-card .entry-content em {
  color: #c8644a;
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 800;
}
.entry-card .entry-arrow {
  align-self: end;
  color: #194d42;
  transition: transform 0.2s ease;
}

.price-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}
.price-card .price-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #f7e4dc;
  color: #c8644a;
  font-size: 1.45rem;
}
.price-card h3,
.price-card p {
  margin: 0;
}
.price-card p {
  color: #65717a;
}
.price-card .price-values {
  display: grid;
  gap: 2px;
}
.price-card .price-values strong {
  font-size: 1.85rem;
  line-height: 1.05;
  color: #194d42;
}
.price-card .price-values span {
  color: #65717a;
}

.fact-card {
  padding: 22px;
}
.fact-card .fact-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: #dcecf2;
  color: #194d42;
  font-size: 1.35rem;
}
.fact-card h3,
.fact-card p {
  margin: 0;
}
.fact-card p {
  margin-top: 9px;
  color: #65717a;
}

.photo-placeholder {
  margin: 0;
}
.photo-placeholder .photo-frame {
  display: grid;
  place-items: center;
  aspect-ratio: var(--photo-ratio, 16/9);
  min-height: 220px;
  padding: 24px;
  border: 1px dashed rgba(25, 77, 66, 0.45);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(229, 241, 236, 0.88), rgba(247, 228, 220, 0.65)), #f6f3ee;
  color: #194d42;
  text-align: center;
}
.photo-placeholder .photo-frame i {
  margin-bottom: 10px;
  font-size: 2rem;
}
.photo-placeholder .photo-frame span {
  max-width: 330px;
  font-weight: 800;
}
.photo-placeholder figcaption {
  margin-top: 10px;
  color: #65717a;
  font-size: 0.9rem;
}

.review-card {
  display: grid;
  gap: 16px;
  padding: 22px;
}
.review-card .review-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #c8644a;
  font-weight: 800;
  font-size: 0.9rem;
}
.review-card p {
  margin: 0;
  color: #263238;
}
.review-card footer {
  display: grid;
  gap: 4px;
  color: #65717a;
  font-size: 0.92rem;
}
.review-card footer strong {
  color: #194d42;
}

.article-card {
  display: grid;
  gap: 12px;
  padding: 22px;
}
.article-card .article-category {
  color: #c8644a;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}
.article-card h3,
.article-card p {
  margin: 0;
}
.article-card p {
  color: #65717a;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid #ded8cd;
  border-radius: 8px;
  background: #fff;
}
.contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: #65717a;
  font-size: 0.9rem;
  font-weight: 750;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ded8cd;
  border-radius: 8px;
  padding: 12px 13px;
  background: #fffdf8;
  color: #263238;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(39, 115, 95, 0.28);
  border-color: #27735f;
}
.contact-form .form-note {
  margin: 0;
  color: #65717a;
  font-size: 0.86rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill-list span {
  padding: 10px 14px;
  border-radius: 8px;
  background: #e5f1ec;
  color: #194d42;
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid #ded8cd;
  border-radius: 8px;
}
.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.table-wrap th,
.table-wrap td {
  padding: 14px;
  border-bottom: 1px solid #ded8cd;
  text-align: left;
  vertical-align: top;
}
.table-wrap th {
  background: #e5f1ec;
  color: #194d42;
}

.hero-section {
  padding: 58px 0 76px;
}
.hero-section .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 42px;
}
.hero-section .hero-content h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}
.hero-section .hero-content p {
  max-width: 690px;
  margin: 22px 0 0;
  color: #65717a;
  font-size: 1.17rem;
}
.hero-section .hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.hero-section .hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.hero-section .hero-points span {
  padding: 9px 12px;
  border: 1px solid #ded8cd;
  border-radius: 8px;
  background: #fff;
  color: #194d42;
  font-weight: 800;
  font-size: 0.92rem;
}

.page-hero {
  padding: 58px 0 42px;
  background: #fffdf8;
}
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.7rem);
  line-height: 1;
  letter-spacing: 0;
}
.page-hero p {
  margin: 20px 0 0;
  color: #65717a;
  font-size: 1.12rem;
}
.page-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.quick-entry {
  background: #f6f3ee;
}

.tabs .tab-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  padding: 6px;
  border: 1px solid #ded8cd;
  border-radius: 8px;
  background: #fff;
}
.tabs .tab-button {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #65717a;
  font-weight: 850;
  cursor: pointer;
}
.tabs .tab-button.is-active {
  background: #27735f;
  color: #fff;
}
.tabs .tab-panel {
  display: none;
}
.tabs .tab-panel.is-active {
  display: block;
}
.tabs .tab-lead {
  max-width: 760px;
  margin: 0 0 22px;
  color: #65717a;
}

.fit-section .fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.fit-section article {
  padding: 24px;
  border-radius: 8px;
  background: #e5f1ec;
}
.fit-section article:nth-child(2) {
  background: #dcecf2;
}
.fit-section article:nth-child(3) {
  background: #f7e4dc;
}
.fit-section h3 {
  margin: 0 0 12px;
}
.fit-section ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #65717a;
}

.included-section,
.prices-preview,
.day-section,
.review-section,
.article-section {
  background: #fffdf8;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.included-grid .included-card {
  padding: 24px;
}
.included-grid .included-card h3 {
  margin: 0 0 16px;
  color: #194d42;
}
.included-grid .included-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.included-grid .included-card li {
  display: flex;
  gap: 9px;
  color: #65717a;
}
.included-grid .included-card li i {
  margin-top: 4px;
  color: #27735f;
}

.photo-section,
.adaptation-section,
.safety-section {
  background: #f6f3ee;
}

.timeline {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.timeline li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid #ded8cd;
  border-radius: 8px;
  background: #fff;
}
.timeline time {
  color: #c8644a;
  font-weight: 900;
}

.step-card {
  padding: 24px;
}
.step-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #27735f;
  color: #fff;
  font-weight: 900;
}
.step-card h3 {
  margin: 16px 0 8px;
}
.step-card p {
  margin: 0;
  color: #65717a;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.process-list li {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid #ded8cd;
  border-radius: 8px;
  background: #fff;
}
.process-list span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #c8644a;
  color: #fff;
  font-weight: 900;
}
.process-list p {
  margin: 0;
  font-weight: 750;
}

.faq-section {
  background: #f6f3ee;
}
.faq-section .faq-list {
  display: grid;
  gap: 10px;
}
.faq-section .faq-item {
  border: 1px solid #ded8cd;
  border-radius: 8px;
  background: #fff;
}
.faq-section .faq-item summary {
  padding: 18px 20px;
  color: #194d42;
  font-weight: 850;
  cursor: pointer;
}
.faq-section .faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: #65717a;
}

.contact-strip {
  padding: 48px 0;
  background: #27735f;
  color: #fff;
}
.contact-strip .contact-strip-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.contact-strip span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.contact-strip h2,
.contact-strip p {
  margin: 0;
}
.contact-strip h2 {
  margin-top: 6px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.contact-strip p {
  max-width: 620px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
}
.contact-strip .contact-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-hero .detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 34px;
  align-items: center;
}

.detail-sections {
  display: grid;
  gap: 14px;
}
.detail-sections .detail-card {
  padding: 24px;
}
.detail-sections .detail-card h2,
.detail-sections .detail-card p {
  margin: 0;
}
.detail-sections .detail-card p {
  margin-top: 10px;
  color: #65717a;
}

.admission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.list-panel {
  padding: 24px;
}
.list-panel h2 {
  margin: 0 0 16px;
}
.list-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-panel li {
  display: flex;
  gap: 10px;
  color: #65717a;
}
.list-panel li i {
  margin-top: 4px;
  color: #c8644a;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}
.contact-grid .contact-form {
  grid-column: 1/-1;
}

.contact-details,
.contact-map {
  padding: 24px;
  border: 1px solid #ded8cd;
  border-radius: 8px;
  background: #fff;
}
.contact-details h2,
.contact-map h2 {
  margin: 0 0 16px;
}
.contact-details ul,
.contact-map ul {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.contact-details li,
.contact-map li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #65717a;
}
.contact-details li i,
.contact-map li i {
  margin-top: 4px;
  color: #27735f;
}
.contact-details p,
.contact-map p {
  margin: 8px 0 0;
  color: #65717a;
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 26px;
  border: 1px dashed rgba(25, 77, 66, 0.4);
  border-radius: 8px;
  background: #dcecf2;
  color: #194d42;
  text-align: center;
}
.map-placeholder i {
  margin-bottom: 12px;
  font-size: 2rem;
}

.route-list {
  margin-top: 16px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
  padding-bottom: 84px;
}

.article-content {
  display: grid;
  gap: 26px;
}

.article-block h2 {
  margin: 0 0 12px;
  font-size: 1.7rem;
}
.article-block p {
  margin: 0;
  color: #65717a;
}

.article-callout,
.article-cta {
  padding: 24px;
  border-radius: 8px;
  background: #e5f1ec;
}
.article-callout p,
.article-cta p {
  margin: 0;
  color: #194d42;
  font-size: 1.08rem;
  font-weight: 750;
}

.article-callout {
  display: flex;
  gap: 14px;
}
.article-callout i {
  margin-top: 4px;
  color: #27735f;
  font-size: 1.4rem;
}

.article-cta {
  display: grid;
  gap: 14px;
  background: #f7e4dc;
}
.article-cta h2,
.article-cta p {
  margin: 0;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: flex;
  gap: 10px;
  color: #65717a;
}
.check-list li i {
  margin-top: 4px;
  color: #27735f;
}

.article-sidebar {
  position: sticky;
  top: 150px;
  align-self: start;
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid #ded8cd;
  border-radius: 8px;
  background: #fff;
}
.article-sidebar h2 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}
.article-sidebar a {
  color: #194d42;
  font-weight: 750;
}

.sitemap-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.sitemap-list a {
  padding: 13px 14px;
  border: 1px solid #ded8cd;
  border-radius: 8px;
  background: #fff;
  color: #194d42;
  font-weight: 750;
}

.legal-content {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid #ded8cd;
  border-radius: 8px;
  background: #fff;
}
.legal-content p {
  margin: 0;
  color: #65717a;
}

@media (max-width: 1040px) {
  .site-header .header-top-wrap {
    grid-template-columns: 1fr auto;
  }
  .site-header .header-facts {
    grid-column: 1/-1;
    order: 3;
  }
  .entry-grid,
  .price-grid,
  .fact-grid,
  .review-grid,
  .article-grid,
  .included-grid,
  .process-list,
  .sitemap-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-section .hero-grid {
    grid-template-columns: 1fr;
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-layout .article-sidebar {
    position: static;
  }
}
@media (max-width: 780px) {
  .container {
    width: min(100% - 24px, 1180px);
  }
  .container.narrow {
    width: min(100% - 24px, 820px);
  }
  .section {
    padding: 58px 0;
  }
  .site-header {
    position: relative;
  }
  .site-header .header-top-wrap {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }
  .site-header .header-actions .phone-link,
  .site-header .header-actions .button {
    display: none;
  }
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }
  .main-nav {
    display: none;
    padding: 10px 0 16px;
  }
  .main-nav.is-open {
    display: block;
  }
  .main-nav .nav-list {
    display: grid;
  }
  .main-nav .nav-item {
    display: grid;
    grid-template-columns: 1fr auto;
  }
  .main-nav .nav-item:hover .nav-dropdown {
    opacity: 0;
    pointer-events: none;
  }
  .main-nav .nav-item.is-open .nav-dropdown {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .main-nav .nav-dropdown {
    position: static;
    grid-column: 1/-1;
    display: none;
    width: 100%;
    margin: 4px 0 8px;
    box-shadow: none;
    transform: none;
  }
  .hero-section {
    padding: 40px 0 58px;
  }
  .hero-section .hero-content h1 {
    font-size: clamp(2.4rem, 15vw, 4.2rem);
  }
  .entry-grid,
  .price-grid,
  .fact-grid,
  .review-grid,
  .article-grid,
  .photo-grid,
  .step-grid,
  .included-grid,
  .process-list,
  .sitemap-list,
  .fit-section .fit-grid,
  .admission-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-strip .contact-strip-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
  .detail-hero .detail-hero-grid {
    grid-template-columns: 1fr;
  }
  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
  .site-footer .footer-bottom {
    flex-direction: column;
  }
}
@media (max-width: 520px) {
  .button {
    width: 100%;
  }
  .hero-actions,
  .contact-strip-actions {
    width: 100%;
  }
  .entry-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .entry-card .entry-arrow {
    justify-self: start;
  }
  .timeline li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}