@charset "UTF-8";

:root {
  --cream: #f7f2e8;
  --cream-deep: #eee5d6;
  --paper: #fffdf8;
  --ink: #24221f;
  --muted: #6f6a62;
  --green: #17362d;
  --green-soft: #295246;
  --gold: #d4a62a;
  --gold-light: #f4d879;
  --blue: #8ba8b8;
  --coral: #c96852;
  --line: rgba(36, 34, 31, 0.14);
  --shadow: 0 24px 70px rgba(37, 31, 22, 0.12);
  --radius-xl: 38px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

::selection {
  background: var(--gold-light);
  color: var(--ink);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--paper);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: relative;
  z-index: 50;
  background: var(--green);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
}

.topbar a {
  color: white;
  font-weight: 700;
}

.header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(247, 242, 232, 0.9);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(36, 34, 31, 0.06);
}

.header__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.brand__star {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  color: var(--gold);
  font-size: 24px;
  transform: rotate(-8deg);
}

.brand strong {
  display: block;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 24px;
}

.nav a {
  position: relative;
  color: #46413b;
  font-size: 14px;
  font-weight: 600;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: white;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  background: #224a3e;
  box-shadow: 0 12px 30px rgba(23, 54, 45, 0.2);
  transform: translateY(-2px);
}

.button:focus-visible,
.card-link:focus-visible,
.filter:focus-visible,
.choice-group button:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(212, 166, 42, 0.5);
  outline-offset: 3px;
}

.button--small {
  min-height: 44px;
  padding-inline: 20px;
}

.button--light {
  border-color: white;
  background: white;
  color: var(--green);
}

.button--light:hover,
.button--light:focus-visible {
  background: var(--gold-light);
  color: var(--green);
}

.button--outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button--outline:hover,
.button--outline:focus-visible {
  background: var(--cream);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 750;
  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--coral);
}

.eyebrow {
  display: flex;
  margin: 0 0 20px;
  align-items: center;
  gap: 10px;
  color: var(--green-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-grid;
  min-width: 25px;
  height: 25px;
  padding-inline: 6px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green);
  font-size: 10px;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.66);
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--coral);
  font-weight: 400;
}

.hero {
  position: relative;
  min-height: 730px;
  padding: 76px 0 102px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: -360px;
  right: -250px;
  width: 800px;
  height: 800px;
  border: 1px solid rgba(23, 54, 45, 0.13);
  border-radius: 50%;
  content: "";
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero__orb--one {
  right: 5%;
  bottom: 6%;
  width: 160px;
  height: 160px;
  background: rgba(212, 166, 42, 0.18);
}

.hero__orb--two {
  top: 18%;
  left: -70px;
  width: 150px;
  height: 150px;
  border: 28px solid rgba(139, 168, 184, 0.18);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: 74px;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(56px, 6.2vw, 88px);
}

.hero__lead {
  max-width: 610px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  margin-bottom: 34px;
  align-items: center;
  gap: 26px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #4d4943;
  font-size: 13px;
  font-weight: 650;
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__meta i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(23, 54, 45, 0.1);
  color: var(--green);
  font-style: normal;
  font-size: 11px;
}

.hero__visual {
  position: relative;
  min-height: 560px;
}

.hero__image-frame {
  position: absolute;
  inset: 0 20px 0 0;
  overflow: hidden;
  border-radius: 48% 48% 30px 30px;
  background: var(--cream-deep);
  box-shadow: var(--shadow);
}

.hero__image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(15, 32, 27, 0.22));
  content: "";
}

.hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 0.8s ease;
}

.hero__visual:hover .hero__image-frame img {
  transform: scale(1.025);
}

.hero__note {
  position: absolute;
  z-index: 2;
  top: 72px;
  right: -28px;
  display: flex;
  width: 172px;
  height: 172px;
  padding: 24px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 8px solid var(--cream);
  border-radius: 50%;
  background: var(--gold);
  color: var(--green);
  transform: rotate(7deg);
}

.hero__note strong {
  font-family: Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
}

.hero__note span {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero__spark {
  position: absolute;
  z-index: 3;
  bottom: 34px;
  left: -33px;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 38px;
  box-shadow: 0 14px 35px rgba(81, 112, 129, 0.25);
}

.hero__caption {
  position: absolute;
  z-index: 3;
  right: 48px;
  bottom: 26px;
  display: flex;
  padding: 12px 17px;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--green);
  font-size: 12px;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.hero__caption-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.facts {
  position: relative;
  z-index: 3;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--green);
  color: white;
}

.facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.facts article {
  position: relative;
  padding: 31px 25px;
}

.facts article:not(:last-child)::after {
  position: absolute;
  top: 26%;
  right: 0;
  width: 1px;
  height: 48%;
  background: rgba(255, 255, 255, 0.14);
  content: "";
}

.facts strong,
.facts span {
  display: block;
}

.facts strong {
  margin-bottom: 4px;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 400;
}

.facts span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.section {
  padding: 116px 0;
}

.section-heading {
  display: flex;
  margin-bottom: 52px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading > div {
  max-width: 700px;
}

.section-heading h2,
.about h2,
.contacts h2,
.picker h2,
.faq__heading h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 5vw, 68px);
}

.section-heading > p {
  max-width: 405px;
  margin-bottom: 5px;
  color: var(--muted);
  line-height: 1.75;
}

.section-heading--center {
  justify-content: center;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.filters {
  display: flex;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 9px;
}

.filter {
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter.is-active,
.filter:hover {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.program-card {
  display: flex;
  min-height: 360px;
  padding: 30px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.72);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card[hidden] {
  display: none;
}

.program-card:hover {
  box-shadow: 0 24px 55px rgba(40, 35, 28, 0.1);
  transform: translateY(-7px);
}

.program-card--featured {
  border-color: var(--coral);
  background: var(--coral);
  color: white;
}

.program-card--blue {
  border-color: transparent;
  background: var(--blue);
  color: #102c31;
}

.program-card--dark {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

.program-card--sun {
  border-color: transparent;
  background: var(--gold-light);
  color: var(--green);
}

.program-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.program-card__code {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 20px;
}

.program-card__tag {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: inherit;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.program-card--featured .program-card__tag,
.program-card--dark .program-card__tag {
  background: rgba(255, 255, 255, 0.13);
}

.program-card h3 {
  margin-bottom: 12px;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.program-card p {
  margin-bottom: 0;
  color: inherit;
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.76;
}

.card-link {
  display: flex;
  width: 100%;
  padding: 16px 0 0;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-top: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  opacity: 0.8;
  text-transform: uppercase;
}

.card-link span {
  font-size: 20px;
  transition: transform 0.2s ease;
}

.program-card:hover .card-link span {
  transform: translate(3px, -3px);
}

.about {
  overflow: hidden;
  background: var(--green);
  color: white;
}

.about__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 88px;
}

.about__visual {
  position: relative;
  min-height: 650px;
}

.about__visual::before {
  position: absolute;
  inset: -25px 35px 25px -25px;
  border: 1px solid rgba(244, 216, 121, 0.28);
  border-radius: 46% 46% 24px 24px;
  content: "";
}

.about__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 46% 46% 24px 24px;
  object-fit: cover;
  object-position: center;
}

.about__label {
  position: absolute;
  right: -38px;
  bottom: 42px;
  display: flex;
  padding: 20px 24px;
  align-items: center;
  gap: 14px;
  border-radius: 18px;
  background: var(--gold-light);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(5, 20, 16, 0.26);
}

.about__label span {
  font-size: 28px;
}

.about h2 em {
  color: var(--gold-light);
}

.about__lead {
  margin: 30px 0 42px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.8;
}

.advantages {
  display: grid;
  gap: 0;
}

.advantages article {
  display: grid;
  padding: 23px 0;
  grid-template-columns: 46px 1fr;
  gap: 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.advantages article > span {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 10px;
}

.advantages h3 {
  margin-bottom: 4px;
  font-size: 17px;
}

.advantages p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.65;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 330px 330px;
  gap: 18px;
}

.gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.gallery__item--wide {
  grid-row: 1 / 3;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery__item--wide img {
  object-position: center;
}

.gallery__item:hover img {
  transform: scale(1.035);
}

.gallery__item::after {
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(15, 26, 22, 0.58));
  content: "";
}

.gallery__item figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  left: 22px;
  color: white;
  font-family: Georgia, serif;
  font-size: 20px;
}

.gallery__quote {
  display: flex;
  padding: 34px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-lg);
  background: var(--gold-light);
  color: var(--green);
}

.gallery__quote > span {
  height: 42px;
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: 0.8;
}

.gallery__quote p {
  max-width: 390px;
  margin-bottom: 24px;
  font-family: Georgia, serif;
  font-size: clamp(24px, 3vw, 35px);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.gallery__quote small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.picker {
  padding-top: 0;
}

.picker__box {
  display: grid;
  padding: 64px;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  border-radius: var(--radius-xl);
  background: var(--green);
  color: white;
  box-shadow: 0 30px 80px rgba(23, 54, 45, 0.2);
}

.picker__intro p:last-child {
  max-width: 380px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.58);
}

.picker__form {
  display: grid;
  gap: 26px;
}

.picker__step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
}

.picker__number {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 11px;
}

.picker__step strong {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
}

.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice-group button {
  min-height: 39px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.choice-group button:hover,
.choice-group button.is-selected {
  border-color: var(--gold-light);
  background: var(--gold-light);
  color: var(--green);
}

.picker__result {
  min-height: 85px;
  padding: 18px 20px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.picker__result.is-ready {
  border-style: solid;
  border-color: rgba(244, 216, 121, 0.4);
  background: rgba(244, 216, 121, 0.09);
  color: white;
}

.picker__result strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 400;
}

.picker__result button {
  margin-top: 10px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.steps {
  padding-top: 0;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.steps__grid article {
  min-height: 280px;
  padding: 30px;
  border-top: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.18);
}

.steps__grid article > span {
  display: block;
  margin-bottom: 75px;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 14px;
}

.steps__grid h3 {
  margin-bottom: 12px;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.steps__grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.faq {
  border-top: 1px solid var(--line);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.faq__heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq__heading > p {
  max-width: 390px;
  margin: 28px 0 24px;
  color: var(--muted);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  min-height: 88px;
  padding: 20px 4px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 21px;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  font-family: Arial, sans-serif;
  font-size: 20px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.accordion details[open] summary::after {
  background: var(--gold);
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 700px;
  padding: 0 60px 26px 4px;
  color: var(--muted);
  line-height: 1.75;
}

.contacts {
  padding: 104px 0;
  overflow: hidden;
  background: var(--green);
  color: white;
}

.contacts__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 75px;
}

.contacts__content > p:not(.eyebrow) {
  max-width: 480px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.62);
}

.contact-list {
  display: grid;
  margin-bottom: 34px;
}

.contact-list a {
  display: flex;
  padding: 16px 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-list a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-list span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list strong {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  text-align: right;
}

.contacts__map {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background: var(--cream-deep);
}

.contacts__map iframe {
  width: 100%;
  height: 590px;
  border: 0;
  filter: saturate(0.65) sepia(0.08);
}

.map-card {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  min-width: 260px;
  padding: 17px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 14px;
  background: var(--paper);
  color: var(--green);
  box-shadow: 0 12px 40px rgba(19, 37, 31, 0.2);
}

.map-card span {
  font-family: Georgia, serif;
  font-size: 18px;
}

.map-card strong {
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer {
  background: #10271f;
  color: white;
}

.footer__top {
  display: flex;
  min-height: 150px;
  align-items: center;
  gap: 30px;
}

.brand--footer small {
  color: rgba(255, 255, 255, 0.48);
}

.footer__top > p {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.footer__links {
  display: flex;
  gap: 18px;
}

.footer__links a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 12px;
}

.footer__bottom {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.floating-cta {
  position: fixed;
  z-index: 30;
  right: 24px;
  bottom: 24px;
  display: none;
  height: 52px;
  padding: 0 18px;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--green);
  box-shadow: 0 14px 35px rgba(25, 42, 35, 0.25);
  font-size: 12px;
  font-weight: 800;
}

.floating-cta span:first-child {
  font-size: 20px;
}

.modal {
  width: min(92vw, 560px);
  max-height: 90vh;
  padding: 48px;
  overflow: auto;
  border: 0;
  border-radius: 28px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(12, 24, 20, 0.35);
}

.modal::backdrop {
  background: rgba(13, 29, 24, 0.74);
  backdrop-filter: blur(6px);
}

.modal[open] {
  animation: modal-in 0.25s ease both;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
}

.modal__star {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green);
  font-size: 28px;
}

.modal h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 6vw, 54px);
}

.modal > p:not(.eyebrow) {
  color: var(--muted);
}

.modal__actions {
  display: grid;
  margin: 30px 0 22px;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.modal > small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.program-modal__code {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 20px;
}

.modal--program ul {
  display: grid;
  margin: 28px 0;
  padding: 0;
  gap: 11px;
  list-style: none;
}

.modal--program li {
  position: relative;
  padding-left: 26px;
  color: #4e4a44;
  font-size: 13px;
}

.modal--program li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold);
  content: "✦";
}

.program-modal__footer {
  display: flex;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.program-modal__footer > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--delay {
  transition-delay: 0.12s;
}

.reveal--delay-2 {
  transition-delay: 0.22s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1050px) {
  .nav {
    gap: 16px;
  }

  .nav a {
    font-size: 13px;
  }

  .hero__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 45px;
  }

  .hero__note {
    right: -12px;
    width: 145px;
    height: 145px;
  }

  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid {
    gap: 55px;
  }

  .picker__box {
    padding: 50px;
    gap: 40px;
  }
}

@media (max-width: 880px) {
  .header__inner {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 18px 24px 26px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    box-shadow: 0 20px 30px rgba(36, 34, 31, 0.08);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav a::after {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .hero {
    padding-top: 58px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero__content {
    max-width: 700px;
  }

  .hero__visual {
    min-height: 620px;
  }

  .hero__image-frame {
    right: 0;
  }

  .hero__note {
    right: -5px;
  }

  .facts__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facts article:nth-child(2)::after {
    display: none;
  }

  .facts article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .about__visual {
    min-height: 600px;
  }

  .about__content {
    max-width: 700px;
  }

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

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

  .steps__grid article {
    min-height: auto;
  }

  .steps__grid article > span {
    margin-bottom: 44px;
  }

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq__heading {
    position: static;
  }

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

  .footer__top {
    padding: 40px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__top > p {
    margin: 0;
  }

  .floating-cta {
    display: flex;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .topbar__inner {
    min-height: 31px;
  }

  .topbar__inner span {
    display: none;
  }

  .topbar__inner a {
    margin-left: auto;
  }

  .brand strong {
    font-size: 21px;
  }

  .brand__star {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: auto;
    padding: 48px 0 76px;
  }

  .hero::before {
    width: 600px;
    height: 600px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .text-link {
    align-self: flex-start;
  }

  .hero__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero__visual {
    min-height: 480px;
  }

  .hero__image-frame {
    inset: 0;
    border-radius: 44% 44% 24px 24px;
  }

  .hero__note {
    top: 30px;
    right: -7px;
    width: 120px;
    height: 120px;
    border-width: 6px;
    padding: 14px;
  }

  .hero__note strong {
    font-size: 40px;
  }

  .hero__note span {
    font-size: 9px;
  }

  .hero__spark {
    bottom: 22px;
    left: -8px;
    width: 68px;
    height: 68px;
    font-size: 28px;
  }

  .hero__caption {
    right: 14px;
    bottom: 18px;
  }

  .facts article {
    padding: 24px 14px;
  }

  .facts strong {
    font-size: 16px;
  }

  .facts span {
    font-size: 10px;
    line-height: 1.4;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .about h2,
  .contacts h2,
  .picker h2,
  .faq__heading h2 {
    font-size: 44px;
  }

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

  .program-card {
    min-height: 330px;
  }

  .about__grid {
    gap: 55px;
  }

  .about__visual {
    min-height: 440px;
  }

  .about__label {
    right: -4px;
    bottom: 22px;
  }

  .gallery__grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 470px auto 300px;
  }

  .gallery__item--wide {
    grid-row: auto;
  }

  .gallery__quote {
    min-height: 300px;
  }

  .picker {
    padding-top: 0;
  }

  .picker__box {
    width: 100%;
    padding: 45px 20px;
    border-radius: 0;
    gap: 45px;
  }

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

  .choice-group {
    align-items: stretch;
    flex-direction: column;
  }

  .choice-group button {
    width: 100%;
  }

  .accordion summary {
    font-size: 18px;
  }

  .contacts {
    padding: 82px 0;
  }

  .contact-list a {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .contact-list strong {
    text-align: left;
  }

  .contacts__map,
  .contacts__map iframe {
    min-height: 430px;
    height: 430px;
  }

  .map-card {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-width: 0;
  }

  .footer__bottom {
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .modal {
    width: calc(100vw - 20px);
    padding: 38px 22px 28px;
    border-radius: 22px;
  }

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

  .program-modal__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .floating-cta {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Goose Cat School theme */
:root {
  --cream: #fff6e8;
  --cream-deep: #f6e6d6;
  --paper: #fffdf7;
  --ink: #2b202b;
  --muted: #756873;
  --green: #4a1647;
  --green-soft: #7b2f70;
  --gold: #ffd12f;
  --gold-light: #ffe88d;
  --blue: #8069bd;
  --coral: #e90078;
  --line: rgba(74, 22, 71, 0.15);
  --shadow: 0 28px 75px rgba(74, 22, 71, 0.17);
}

.topbar {
  background: var(--gold);
  color: rgba(43, 32, 43, 0.72);
}

.topbar a {
  color: var(--green);
}

.brand__star--goose {
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--gold);
  color: var(--coral);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.08em;
  box-shadow: inset -5px -5px 0 rgba(233, 0, 120, 0.12);
  transform: rotate(-7deg);
}

.brand strong {
  font-family: "Arial Black", "Segoe UI", Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.brand small {
  color: var(--coral);
  letter-spacing: 0.19em;
}

.header {
  background: rgba(255, 246, 232, 0.92);
}

.goose-hero::before {
  border-color: rgba(233, 0, 120, 0.14);
}

.goose-doodle {
  position: absolute;
  z-index: 0;
  color: rgba(74, 22, 71, 0.06);
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  transform: rotate(-8deg);
}

.goose-doodle--one {
  top: 14%;
  right: 2%;
  font-size: clamp(84px, 12vw, 180px);
}

.goose-doodle--two {
  right: 41%;
  bottom: 4%;
  font-size: clamp(48px, 7vw, 100px);
  transform: rotate(5deg);
}

.goose-hero__frame {
  border: 8px solid rgba(255, 255, 255, 0.58);
  border-radius: 42% 42% 34px 34px;
  background: #e8d2db;
}

.goose-hero__frame img {
  object-position: center 34%;
}

.goose-rating {
  border-color: var(--cream);
  background: var(--gold);
  color: var(--green);
}

.goose-rating strong {
  font-size: 38px;
}

.goose-spark {
  background: var(--coral);
  font-family: Georgia, serif;
  font-size: 30px;
}

.hero__caption-dot {
  background: var(--coral);
}

.facts {
  background: var(--green);
}

.facts strong {
  color: var(--gold-light);
}

.goose-program-grid {
  grid-template-columns: repeat(2, 1fr);
}

.program-card--featured {
  border-color: var(--coral);
  background: var(--coral);
}

.program-card--sun {
  background: var(--gold);
}

.program-card--blue {
  background: #a998d5;
  color: #2c1531;
}

.program-card--dark {
  background: var(--green);
}

.goose-about {
  background:
    radial-gradient(circle at 85% 15%, rgba(233, 0, 120, 0.22), transparent 27%),
    var(--green);
}

.goose-about h2 em {
  color: var(--gold);
}

.goose-about .about__visual {
  min-height: 680px;
}

.goose-about .about__visual img {
  object-position: center 35%;
}

.goose-about__label {
  background: var(--gold);
}

.goose-about__label span {
  font-family: Georgia, serif;
  font-size: 21px;
}

.goose-quote {
  background: var(--coral);
  color: white;
}

.goose-gallery .gallery__item--wide img {
  object-position: center;
}

.goose-picker .picker__box {
  background:
    linear-gradient(135deg, rgba(233, 0, 120, 0.18), transparent 45%),
    var(--green);
}

.choice-group button:hover,
.choice-group button.is-selected {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--green);
}

.picker__result.is-ready {
  border-color: rgba(255, 209, 47, 0.5);
  background: rgba(255, 209, 47, 0.1);
}

.picker__result strong {
  color: var(--gold);
}

.goose-contacts {
  background:
    radial-gradient(circle at 15% 85%, rgba(233, 0, 120, 0.18), transparent 30%),
    var(--green);
}

.footer {
  background: #32102f;
}

.goose-modal__star {
  background: var(--gold);
  color: var(--coral);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 14px;
}

.modal--program li::before {
  color: var(--coral);
}

.floating-cta {
  background: var(--gold);
}

.floating-cta span:first-child {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 11px;
}

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

  .goose-doodle {
    display: none;
  }

  .goose-about .about__visual {
    min-height: 500px;
  }
}
