:root {
  --brand: #00b4a6;
  --brand-hover: #00968a;
  --brand-deep: #007a71;
  --brand-soft: #e7f8f6;
  --ink: #1b1f24;
  --ink-2: #3a414b;
  --muted: #6d7580;
  --line: #e5e8ed;
  --bg: #f4f6f8;
  --bg-2: #eef1f4;
  --white: #fff;
  --star: #f5b400;
  --shadow: 0 10px 32px rgba(22, 36, 61, 0.08);
  --shadow-sm: 0 2px 10px rgba(22, 36, 61, 0.06);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1160px;
  --header: 72px;
  --font: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, p { margin: 0; }

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.social-row,
.header__messengers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 7px;
  overflow: hidden;
  flex-shrink: 0;
}
.social img { width: 25px; height: 25px; display: block; object-fit: cover; }
.social:hover { opacity: 0.85; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  height: var(--header);
}

.header__in {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
  flex-shrink: 1;
}
.logo__mark {
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 15px;
  color: var(--brand);
}
.logo__name {
  font-weight: 800;
  font-size: 15px;
}

.nav {
  display: flex;
  gap: 22px;
  font-weight: 600;
  font-size: 15px;
  flex: 1;
}
.nav a { color: var(--ink-2); }
.nav a:hover,
.nav a.is-active { color: var(--brand); }

.header__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
  flex-shrink: 0;
}
.header__phone {
  font-weight: 800;
  white-space: nowrap;
  font-size: 15px;
}
.header__hours {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}
.header__cta { white-space: nowrap; flex-shrink: 0; }
.nav .header__cta--menu { display: none; }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.burger span,
.burger span::before,
.burger span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

@media (max-width: 1140px) {
  .nav { gap: 14px; font-size: 14px; }
  .header__in { gap: 12px; }
}

.header__aside {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  :root { --header: 83px; }
  .nav,
  .header__in > .header__cta,
  .header__hours { display: none; }
  .header__aside {
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    margin-left: auto;
    margin-right: 10px;
    gap: 6px;
  }
  .header__contacts { display: flex; }
  .header__messengers { display: flex; }
  .header__phone { font-size: 13px; }
  .logo__mark,
  .logo__name { font-size: 13px; }
  .header__in { gap: 8px; }
  .burger {
    display: inline-flex;
  }
  .header.is-open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    z-index: 60;
    background: #fff;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    gap: 14px;
  }
  .header.is-open .nav .header__cta--menu {
    display: inline-flex;
    width: 100%;
    margin-top: 8px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: 0.15s background, 0.15s transform;
}
.btn:hover { background: var(--brand-hover); }
.btn--ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover { background: var(--bg); }
.btn--lg { height: 54px; padding: 0 26px; font-size: 16px; }
.btn--block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  background: #1c232c;
  color: #fff;
  padding: 56px 0 40px;
  overflow: hidden;
}
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero__slide.is-on { opacity: 1; }
.hero__dim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(12, 18, 24, 0.42) 0%, rgba(12, 18, 24, 0.16) 46%, rgba(12, 18, 24, 0.04) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero__cta { margin-bottom: 28px; }

.crumbs {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  margin-bottom: 22px;
}
.crumbs a:hover { color: #fff; }

.hero__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 18ch;
  margin-bottom: 12px;
}

.hero__lead {
  max-width: 46ch;
  font-size: 17px;
  color: rgba(255,255,255,.88);
  margin-bottom: 28px;
}

.lead {
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  min-width: 0;
  max-width: 100%;
}

.lead__row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.9fr);
  gap: 10px;
}

.lead__more {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}
.lead.is-step2 .lead__more { display: grid; }

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.field span {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 12px;
  background: var(--bg);
  outline: none;
}
.field textarea { height: 90px; padding: 10px 12px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.lead__actions {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.lead__alt {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}
.lead__alt a { color: var(--brand); font-weight: 700; }
.lead__consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 4px;
}
.lead__consent input { margin-top: 3px; accent-color: var(--brand); }
.lead__consent a { color: var(--brand); font-weight: 700; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }

.modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 80;
  background: rgba(12, 18, 24, 0.55);
  padding: 16px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.modal.is-open {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.modal--pd {
  z-index: 120;
}
.modal__box {
  position: relative;
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  padding: 24px;
  box-shadow: var(--shadow);
  margin: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.modal__box--lead {
  max-width: 920px;
  overflow: hidden;
}
.modal__box--lead .lead {
  padding: 0;
  box-shadow: none;
}
.modal__box--pd {
  max-width: 560px;
  max-height: 88%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 48px 20px 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.modal__box h3 { margin-bottom: 12px; }
.modal__box p { color: var(--ink-2); font-size: 14px; margin-bottom: 10px; }
.modal__close { margin-top: 16px; }
.modal__x {
  position: absolute;
  top: 12px;
  right: 12px;
  left: auto;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: var(--bg);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
}
.modal__pd-doc {
  display: block;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
}
.modal__pd-doc h3,
.modal__pd-doc p {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.modal__pd-doc h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--ink);
}
.modal__pd-downloads {
  margin-top: 18px;
  text-align: left;
}
.modal__pd-downloads a {
  display: inline-block;
  margin: 0 14px 6px 0;
  color: inherit;
  font-size: 13px;
  text-decoration: underline;
}

@media (max-width: 560px) {
  .modal { padding: 8px; }
  .modal__box--pd {
    max-height: 94%;
    padding: 44px 14px 16px;
    border-radius: 12px;
  }
}
.lead__status {
  display: none;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
}
.lead__status.is-ok { display: block; background: var(--brand-soft); color: var(--brand-deep); }
.lead__status.is-err { display: block; background: #fdecec; color: #b42318; }

.hp { position: absolute; left: -9999px; }

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: #1c232c;
  color: #c5cdd4;
  padding: 12px 16px;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.25);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.cookie-bar__in {
  max-width: var(--container);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 14px;
}
.cookie-bar p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  max-width: 72ch;
}
.cookie-bar a {
  color: #fff;
  text-decoration: underline;
}
.cookie-bar__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.cookie-bar .btn {
  height: 36px;
  padding: 0 14px;
  font-size: 13px;
}
.cookie-bar .btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid #5a6570;
}
.cookie-bar .btn--ghost:hover {
  background: #2a313a;
}
.cookie-bar__skip {
  background: none;
  border: 0;
  color: #9aa4ae;
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  padding: 8px 4px;
}
@media (max-width: 720px) {
  .cookie-bar__in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .cookie-bar__btns { -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; }
}

@media (max-width: 1100px) {
  .lead.is-step2 .lead__more { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .lead__row,
  .lead.is-step2 .lead__more { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .lead__actions { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .lead__row,
  .lead.is-step2 .lead__more { grid-template-columns: minmax(0, 1fr); }
}

/* Benefits */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

.benefit {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.benefit img { width: 100%; height: 150px; object-fit: cover; }
.benefit__body { padding: 16px 18px 20px; }
.benefit h3 { font-size: 18px; margin-bottom: 6px; }
.benefit p { color: var(--ink-2); font-size: 14px; }
.benefit a { color: var(--brand); font-weight: 700; font-size: 14px; }

@media (max-width: 800px) {
  .benefits { grid-template-columns: 1fr; margin-top: 20px; }
}

/* Section */
.section { padding: 64px 0; }
.section--gray { background: var(--bg); }
.section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 24px;
}
.section__title {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.filters select {
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 12px;
  background: #fff;
  min-width: 180px;
}

/* Offers */
.offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.offer {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.15s box-shadow, 0.15s transform;
  cursor: pointer;
}
.offer:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.offer__img { height: 180px; overflow: hidden; background: var(--bg-2); }
.offer__img img { width: 100%; height: 100%; object-fit: cover; }
.offer__body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.offer__title { font-size: 16px; font-weight: 700; line-height: 1.35; min-height: 44px; }
.offer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}
.offer__price { font-size: 22px; font-weight: 800; margin-top: auto; }
.offer__rating { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }
.offer__stars { color: var(--star); letter-spacing: 1px; }
.offer.is-hidden { display: none; }

@media (max-width: 960px) { .offers { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .offers { grid-template-columns: 1fr; } }

.offers__more { text-align: center; margin-top: 28px; }

/* Formats */
.formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.format {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 230px;
  color: #fff;
  display: flex;
  align-items: flex-end;
}
.format img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.format::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.72));
}
.format__body { position: relative; z-index: 1; padding: 18px; }
.format h3 { font-size: 20px; margin-bottom: 6px; }
.format p { font-size: 14px; color: rgba(255,255,255,.88); margin-bottom: 8px; }
.format strong { font-size: 14px; }

@media (max-width: 900px) { .formats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .formats { grid-template-columns: 1fr; } }

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}
.review__top { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.review__event { font-weight: 700; }
.review__scores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}
.review__text { color: var(--ink-2); }
.review__name { margin-top: 12px; font-weight: 700; }

@media (max-width: 720px) { .reviews { grid-template-columns: 1fr; } }

/* SEO */
.seo {
  display: grid;
  gap: 18px;
  max-width: 860px;
  color: var(--ink-2);
}
.seo h2 { color: var(--ink); font-size: 28px; }
.seo h3 { color: var(--ink); font-size: 20px; margin-top: 8px; }

/* FAQ */
.faq { display: grid; gap: 10px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px 16px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 14px 0;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p { padding-bottom: 14px; color: var(--ink-2); }

/* Footer */
.footer {
  margin-top: auto;
  background: #11161c;
  color: #c5ccd4;
  padding: 48px 0 24px;
  font-size: 14px;
}
.footer a:hover { color: #fff; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}
.footer__brand { color: #fff; font-weight: 800; font-size: 18px; margin-bottom: 8px; }
.footer h4 { color: #fff; margin-bottom: 12px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer__fineprint {
  margin: 0 0 12px;
  font-size: 10px;
  line-height: 1.45;
  color: #8b949e;
  max-width: 100%;
}
.footer__disclaimer {
  display: block;
  margin: 0 0 16px;
  max-width: 100%;
  font-size: 11px;
  line-height: 1.45;
  color: #9aa4ae;
}
.footer__disclaimer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__disclaimer a:hover { color: #d0d6dc; }
.footer__bottom {
  border-top: 1px solid #2a313a;
  padding-top: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-areas: "copy staff brand";
  align-items: center;
  column-gap: 12px;
  row-gap: 12px;
  color: #8b949e;
  font-size: 13px;
}
.footer__copy {
  grid-area: copy;
  white-space: nowrap;
  justify-self: start;
}
.footer__staff {
  grid-area: staff;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border: 1px solid #3a424c;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
}
.footer__branding {
  grid-area: brand;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}
.footer__studio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  line-height: 1.2;
  white-space: normal;
  max-width: 220px;
  font-size: 10px;
}
.footer__version {
  margin-bottom: 4px;
  font-weight: 600;
  color: #a8b0b8;
}
.footer__studio-logo {
  height: 2.3em;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.footer__staff:hover { background: #1c232c; }

@media (max-width: 800px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom {
    font-size: 11px;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "copy brand"
      "staff staff";
  }
}

/* Page hero */
.page-hero {
  background: var(--bg);
  padding: 36px 0 28px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -0.03em; }
.page-hero p { margin-top: 8px; color: var(--ink-2); max-width: 60ch; }

.layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 28px;
  padding: 40px 0 64px;
}
@media (max-width: 860px) { .layout { grid-template-columns: 1fr; } }

.package-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  padding: 36px 0 48px;
}
.package-hero img { width: 100%; height: 360px; object-fit: cover; border-radius: 16px; }
.package-hero__price { font-size: 32px; font-weight: 800; margin: 12px 0; }
.package-hero ul { padding-left: 18px; color: var(--ink-2); }

@media (max-width: 800px) {
  .package-hero { grid-template-columns: 1fr; }
  .package-hero img { height: 220px; }
}

.occasion__grid {
  display: grid;
  grid-template-columns: minmax(0, 72ch);
  gap: 28px;
  align-items: start;
}
.legal p { color: var(--ink-2); margin: 0 0 14px; }
.legal h2 { font-size: 20px; margin: 28px 0 10px; }
.legal ul { margin: 0 0 14px; padding-left: 20px; color: var(--ink-2); display: grid; gap: 6px; }
.legal a { color: var(--brand); font-weight: 700; }
.occasion__body { display: grid; gap: 14px; }
.occasion__body p { color: var(--ink-2); font-size: 16px; }
.occasion__accent { font-weight: 500; color: var(--ink) !important; }
.occasion__body ul { margin: 0; padding-left: 18px; color: var(--ink-2); display: grid; gap: 8px; }
.occasion__cta { justify-self: start; margin-top: 8px; }
