:root {
  --crh2-dark: #101828;
  --crh2-text: #364153;
  --crh2-muted: #5f6b7a;
  --crh2-green: #174f31;
  --crh2-orange: #e17100;
  --crh2-cream: #fbf5e6;
  --crh2-soft: #fffbeb;
  --crh2-white: #ffffff;
  --crh2-line: rgba(16, 24, 40, 0.12);
  --crh2-shadow: 0px 8px 10px -6px #0000001a, 0px 20px 25px -5px #0000001a;
  --crh2-radius: 16px;
  --crh2-final-bg: url('./images/final-bg.webp');
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--crh2-text);
  background: var(--crh2-white);
  font-size: 14px;
  line-height: 1.65;
}
body.crh2-menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crh2-container {
  width: min(100% - 56px, 1152px);
  margin: 0 auto;
}

.crh2-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 235, 0.96);
  border-bottom: 1px solid var(--crh2-line);
  backdrop-filter: blur(12px);
}
.crh2-header__inner {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.crh2-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: #292218;
  white-space: nowrap;
}
.crh2-logo__mark {
  width: 32px;
  height: 32px;

  display: inline-block;
}
.crh2-logo__text {
  font-size: 13px;
}
.crh2-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 600;
}
.crh2-nav__link {
  transition: color 0.2s ease;
}
.crh2-nav__link:hover {
  color: var(--crh2-orange);
}
.crh2-burger {
  width: 42px;
  height: 38px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.crh2-burger__line {
  width: 24px;
  height: 2px;
  background: var(--crh2-dark);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.crh2-burger.is-crh2-active .crh2-burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.crh2-burger.is-crh2-active .crh2-burger__line:nth-child(2) {
  opacity: 0;
}
.crh2-burger.is-crh2-active .crh2-burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.crh2-hero {
  background: var(--crh2-soft);
  padding: 28px 0 58px;
}
.crh2-section {
  padding: 86px 0;
  background: var(--crh2-white);
}
.crh2-section--cream {
  background: linear-gradient(180deg, #fffbeb 0%, #ffffff 100%);
}
.crh2-section--soft {
  background: linear-gradient(180deg, #ffffff 0%, #fef3c6 100%);
}
.crh2-section__lead {
  margin: 0 auto 34px;
  max-width: 650px;
  color: var(--crh2-muted);
  text-align: center;
}
.crh2-split {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}
.crh2-split--centered {
  align-items: center;
}
.crh2-split--hero {
  align-items: center;
}
.crh2-split--reverse {
  flex-direction: row;
}
.crh2-copy {
  flex: 1 1 0;
  min-width: 0;
}
.crh2-copy--wide {
  flex-basis: 45%;
}
.crh2-copy p {
  margin: 0 0 13px;
  color: var(--crh2-text);
}
.crh2-copy strong,
.crh2-center-block strong {
  color: var(--crh2-orange);
  font-weight: 800;
}
.crh2-copy--large-title .crh2-title {
  max-width: 460px;
}
.crh2-title {
  margin: 0 0 24px;
  color: var(--crh2-dark);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.crh2-title--hero {
  font-size: clamp(38px, 5.8vw, 64px);
}
.crh2-title--center {
  text-align: center;
}
.crh2-media {
  flex: 0 1 480px;
  height: 430px;
  border-radius: var(--crh2-radius);
  overflow: hidden;
  box-shadow: var(--crh2-shadow);
  background: #e9e0cc;
}
.crh2-media--tall {
  height: 545px;
}
.crh2-media--portrait {
  height: 560px;
  max-width: 430px;
}

.crh2-dot-list,
.crh2-card-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 18px;
}
.crh2-dot-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 9px;
}
.crh2-dot-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 5px;
  height: 5px;
  border: 1px solid var(--crh2-orange);
  background-color: var(--crh2-orange);
  border-radius: 50%;
  transform: translateY(-50%);
}
.crh2-card-list {
  padding: 18px 20px;
  background: #fff9ea;
  border-radius: var(--crh2-radius);
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
}
.crh2-card-list li {
  position: relative;
  padding-left: 27px;
  margin-bottom: 12px;
}
.crh2-card-list li:last-child {
  margin-bottom: 0;
}
.crh2-card-list li::before {
  content: '♡';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--crh2-orange);
  font-weight: 800;
}

.crh2-center-block {
  max-width: 960px;
  text-align: center;
}
.crh2-time-grid {
  display: flex;
  gap: 22px;
  justify-content: center;
}
.crh2-time-card {
  flex: 1 1 0;
  min-height: 190px;
  padding: 28px 24px;
  background: var(--crh2-white);
  border: 1px solid var(--crh2-line);
  border-radius: var(--crh2-radius);
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.1);
  text-align: left;
}
.crh2-time-card__icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: #e1a11a;
  background: #fff3c8;
  border-radius: 50%;
  padding: 15px;
}
.crh2-time-card__icon--purple {
  color: #ab45da;
  background: #f5e6ff;
}
.crh2-time-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--crh2-dark);
}
.crh2-time-card p {
  margin: 0;
  font-size: 13px;
  color: var(--crh2-muted);
  line-height: 1.5;
}
.crh2-note {
  max-width: 740px;
  margin: 34px auto 0;
  color: var(--crh2-muted);
}

.crh2-box {
  width: min(100%, 420px);
  margin: 24px 0;
  padding: 24px 28px;
  background: var(--crh2-white);
  border: 1px solid var(--crh2-line);
  box-shadow: 0 16px 32px rgba(16, 24, 40, 0.08);
}
.crh2-box h3 {
  margin: 0 0 12px;
  color: var(--crh2-dark);
}

.crh2-notes {
  padding-top: 58px;
}
.crh2-notes__icon,
.crh2-pin {
  display: inline-block;
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
}

.crh2-note-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 28px auto;
}
.crh2-note-card {
  flex: 1 1 0;
  max-width: 240px;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: #fff8df;
  color: var(--crh2-text);
  border-radius: 3px;
}

.crh2-final {
  background-image:
    linear-gradient(
      180deg,
      rgba(255, 131, 5, 0.8) 0%,
      rgba(213, 102, 1, 0.8) 100%
    ),
    var(--crh2-final-bg);
  background-size: cover;
  background-position: center;
  color: var(--crh2-white);
}
.crh2-final__overlay {
  padding: 88px 0;
}
.crh2-final__content {
  max-width: 760px;
  text-align: center;
}
.crh2-final h2 {
  margin: 0 0 24px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.crh2-final p {
  margin: 0 0 12px;
}
.crh2-final strong {
  display: block;
  margin: 14px 0;
  font-size: 19px;
}

.crh2-footer {
  background: #101828;
  color: #99a1af;
  padding: 42px 0 28px;
  font-size: 13px;
}
.crh2-footer__grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}
.crh2-logo--footer {
  color: var(--crh2-white);
}
.crh2-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 160px;
}
.crh2-footer__nav h3 {
  margin: 0 0 10px;
  color: var(--crh2-white);
  font-size: 13px;
}
.crh2-footer__nav a:hover {
  color: #fff;
}
.crh2-footer__bottom {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {
  .crh2-footer__grid {
    align-items: center;
  }

  .crh2-footer__nav {
    align-items: center;
  }

  .crh2-container {
    width: min(100% - 32px, 1120px);
  }
  .crh2-burger {
    display: flex;
  }
  .crh2-nav {
    position: fixed;
    inset: 58px 0 auto 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 24px 26px;
    background: #fff8df;
    border-bottom: 1px solid var(--crh2-line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.28s ease,
      opacity 0.28s ease;
  }
  .crh2-nav.is-crh2-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .crh2-nav__link {
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--crh2-line);
  }
  .crh2-split,
  .crh2-split--reverse {
    flex-direction: column;
    gap: 34px;
  }
  .crh2-split--reverse .crh2-media {
    order: -1;
  }
  .crh2-media,
  .crh2-media--tall,
  .crh2-media--portrait {
    width: 100%;
    max-width: none;
    flex-basis: auto;
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .crh2-hero,
  .crh2-section {
    padding: 54px 0;
  }
  .crh2-time-grid,
  .crh2-note-row,
  .crh2-footer__grid {
    flex-direction: column;
  }
  .crh2-time-card,
  .crh2-note-card {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 13px;
  }
  .crh2-header__inner {
    height: 54px;
  }
  .crh2-nav {
    inset-top: 54px;
  }
  .crh2-title {
    font-size: 30px;
  }
  .crh2-title--hero {
    font-size: 36px;
  }
  .crh2-final__overlay {
    padding: 58px 0;
  }
}

.cookie {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  justify-content: center;
}

.cookie__box {
  position: relative;
  max-width: 600px;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cookie__close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
}

.cookie__text {
  font-size: 14px;
  margin-bottom: 16px;
}

.cookie__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.cookie__btn {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}

.cookie__btn--accept {
  background: #0f172a;
  color: #fff;
  border: none;
}

.body-policies .crh2-section {
  background: linear-gradient(180deg, #fef3c6 0%, #ffffff 100%);
}
