@font-face {
  font-family: "Line Seed Jp";
  src: url("assets/fonts/LINESeedJP-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Line Seed Jp";
  src: url("assets/fonts/LINESeedJP-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Line Seed Jp";
  src: url("assets/fonts/LINESeedJP-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Century Gothic";
  src: url("assets/fonts/centurygothic.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Century Gothic";
  src: url("assets/fonts/centurygothic_bold.ttf") format("truetype");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-cream: #fbf7e7;
  --bg-sand: #efe6d6;
  --card: #d7b99f;
  --card-deep: #b68868;
  --text: #2e211d;
  --muted: #5e4d45;
  --white: #fff8ef;
  --button: #e8d4bb;
  --button-dark: #c18e63;
  --line: #bca792;
  --shadow: 0 20px 70px rgba(46, 33, 29, 0.18);
  --radius-lg: 30px;
  --radius-md: 20px;
  --font-heading: "Line Seed Jp", "Century Gothic", CenturyGothic, Arial, sans-serif;
  --font-body: "Century Gothic", CenturyGothic, Arial, sans-serif;
  --site-max: 1920px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-cream);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.icon-sprite {
  display: none;
}

.container {
  width: min(100% - 80px, 1360px);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

section[id] {
  scroll-margin-top: 92px;
}

.section--cream {
  background: var(--bg-cream);
}

.section--sand {
  background: var(--bg-sand);
}

.section-title,
.section-heading {
  text-align: center;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 800;
}

strong {
  font-weight: 800;
}

h2,
.section-heading h2 {
  margin-bottom: 18px;
  font-size: 50px;
  line-height: 1.08;
}

.section-heading p {
  margin-bottom: 42px;
  font-size: 30px;
  line-height: 1.25;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  padding: 0 28px;
  color: var(--text);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(46, 33, 29, 0.18);
}

.button:focus-visible,
.menu-toggle:focus-visible,
.modal__close:focus-visible,
.gallery-arrow:focus-visible,
.privacy-link:focus-visible,
.to-top:focus-visible {
  outline: 3px solid rgba(193, 142, 99, 0.65);
  outline-offset: 4px;
}

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

.button--muted {
  background: #d9c2aa;
  color: var(--white);
}

.button--accent {
  min-height: 58px;
  background: var(--button-dark);
  color: #6f4b35;
}

.button--small {
  min-height: 46px;
  padding: 0 26px;
  background: var(--white);
  font-size: 22px;
}

.button--form {
  width: 100%;
  background: var(--button-dark);
  color: var(--white);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--site-max);
  padding: 42px 40px 18px;
  color: var(--white);
  transform: translateX(-50%);
  transition: background-color 180ms ease, padding 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-top: 20px;
  background: rgba(46, 33, 29, 0.88);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.logo {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 24px;
}

.main-nav a {
  position: relative;
  padding-bottom: 6px;
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 7px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  width: min(100%, var(--site-max));
  min-height: clamp(760px, 54vw, 960px);
  margin: 0 auto;
  overflow: hidden;
  background: #3b322e;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center 14%;
}

.hero__shade {
  background: rgba(34, 28, 25, 0.56);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: calc(100% - 80px);
  max-width: none;
  min-height: clamp(760px, 54vw, 960px);
  padding-bottom: 28px;
}

.hero h1 {
  width: min(700px, 100%);
  margin-bottom: 12px;
  color: var(--button-dark);
  font-size: 52px;
  line-height: 1.06;
}

.hero p {
  width: min(560px, 100%);
  margin-bottom: 42px;
  color: #eee5dc;
  font-size: 20px;
  line-height: 1.25;
}

.hero__actions {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px 34px;
  width: min(820px, 100%);
}

.hero__actions .button {
  min-height: 50px;
  padding: 0 26px;
  font-size: 20px;
}

.hero__actions .button--accent {
  min-height: 46px;
}

.hero__line,
.action-line {
  position: relative;
  display: block;
  height: 1px;
  background: #e4ccb4;
}

.hero__line::after,
.action-line::after {
  position: absolute;
  right: 0;
  top: -5px;
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  color: #e4ccb4;
  content: "";
  transform: rotate(45deg);
}

.hero__actions .button--accent {
  grid-column: 1;
  width: max-content;
}

.hero__actions .hero__line {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}

.about {
  padding-top: 74px;
  padding-bottom: 72px;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 450px;
  gap: 56px;
  align-items: start;
}

.about h2 {
  text-align: left;
}

.about p {
  max-width: 900px;
  margin-bottom: 32px;
  font-size: 25px;
  line-height: 1.32;
}

.section-action {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 42px;
  align-items: center;
  width: min(850px, 100%);
  padding-top: 4px;
}

.section-action .button {
  color: var(--white);
}

.action-line {
  background: #c8b59f;
}

.action-line::after {
  color: #c8b59f;
}

.about__photo {
  margin: 0;
}

.about__photo img {
  width: 450px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
}

.experience {
  padding-top: 42px;
  padding-bottom: 56px;
}

.experience .section-title {
  margin-bottom: 38px;
}

.experience__grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 42px 46px;
  align-items: start;
}

.experience-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  grid-column: span 2;
  grid-template-rows: 64px minmax(54px, auto) auto;
  gap: 12px 18px;
  align-items: start;
  min-width: 0;
}

.experience-card:nth-child(5) {
  grid-column: 2 / span 2;
}

.experience-card:nth-child(6) {
  grid-column: 4 / span 2;
}

.experience-card:nth-child(7) {
  grid-column: 6 / span 2;
}

.experience-card h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.08;
  align-self: center;
}

.experience-card strong,
.experience-card p {
  grid-column: 1 / -1;
}

.experience-card strong {
  min-height: 50px;
  font-size: 18px;
  line-height: 1.18;
}

.experience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.3;
}

.round-icon,
.price-icon,
.trial-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d4bea6;
  color: var(--text);
}

.round-icon {
  width: 64px;
  height: 64px;
}

.round-icon svg,
.price-icon svg,
.trial-card__icon svg,
.terms-card svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.round-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.albums {
  padding-top: 78px;
  padding-bottom: 84px;
}

.albums .section-title {
  margin-bottom: 70px;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 52px;
}

.album-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--card);
}

.album-card img {
  width: calc(100% - 30px);
  height: 365px;
  margin: 15px 15px 0;
  border-radius: 18px;
  background: var(--bg-cream);
  object-fit: cover;
  object-position: center;
}

.album-card:nth-child(2) img {
  object-fit: contain;
}

.album-card__body {
  display: flex;
  min-height: 222px;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 30px 26px;
}

.album-card h3 {
  max-width: 360px;
  margin-bottom: 14px;
  font-size: 29px;
  line-height: 1.1;
}

.album-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.2;
}

.album-card .button {
  align-self: center;
  margin-top: auto;
}

.speech {
  padding-top: 38px;
  padding-bottom: 46px;
}

.speech .section-heading h2 {
  margin-bottom: 4px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.video-card {
  min-width: 0;
}

.video-card h3 {
  margin-bottom: 14px;
  text-align: center;
  font-size: 26px;
  line-height: 1.1;
}

.video-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--card);
  padding: 0;
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 300px;
  border: 0;
  background: #2e211d;
  object-fit: contain;
}

.video-link {
  display: block;
  width: max-content;
  margin: 18px auto 0;
  border-bottom: 1px solid currentColor;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.reviews {
  padding-top: 58px;
  padding-bottom: 62px;
}

.reviews h2 {
  margin-bottom: 34px;
  text-align: left;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
  align-items: stretch;
}

.review-card {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 260px;
  border-radius: 22px;
  background: var(--card);
  padding: 28px 30px 26px 72px;
}

.quote {
  position: absolute;
  top: 20px;
  left: 28px;
  font-size: 52px;
  line-height: 1;
}

.review-card p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.28;
}

.review-card strong {
  font-size: 16px;
}

.pricing {
  padding-top: 30px;
  padding-bottom: 58px;
}

.pricing .section-heading h2 {
  margin-bottom: 8px;
}

.pricing .section-heading p {
  margin-bottom: 34px;
}

.trial-card {
  display: grid;
  grid-template-columns: 230px minmax(300px, 1fr) minmax(320px, 0.82fr);
  gap: 40px;
  align-items: center;
  min-height: 330px;
  border-radius: 28px;
  background: var(--card-deep);
  padding: 52px;
}

.trial-card__icon {
  width: 230px;
  height: 230px;
  background: #36241e;
  color: var(--button);
}

.trial-card__icon svg {
  width: 105px;
  height: 105px;
}

.trial-card h3 {
  margin-bottom: 20px;
  font-size: 42px;
}

.trial-card__discount {
  margin: 0;
  font-size: 104px;
  font-weight: 300;
  line-height: 0.95;
}

.trial-card__note {
  margin: 0;
  border-left: 2px solid var(--text);
  padding-left: 86px;
  font-size: 30px;
  line-height: 1.24;
}

.price-group {
  margin-top: 36px;
}

.price-group__title {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 26px;
}

.price-group__title h3 {
  margin: 0;
  text-transform: uppercase;
  font-size: 34px;
  line-height: 1;
}

.price-group__title span {
  height: 1px;
  background: var(--line);
}

.price-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 230px;
  gap: 36px;
  align-items: center;
  margin-bottom: 36px;
}

.price-icon {
  width: 176px;
  height: 176px;
}

.price-icon svg {
  width: 82px;
  height: 82px;
}

.price-row__text h4 {
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1.1;
}

.price-row__text p {
  margin: 0;
  max-width: 700px;
  font-size: 27px;
  line-height: 1.28;
}

.price-row__cost {
  justify-self: end;
  text-align: right;
}

.price-row__cost strong {
  display: block;
  font-size: 54px;
  font-weight: 400;
  line-height: 1.04;
}

.price-row__cost span {
  display: block;
  font-size: 26px;
  line-height: 1.08;
}

.terms-card {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 48px;
  align-items: center;
  margin-top: 38px;
  border-radius: 26px;
  background: var(--card);
  padding: 34px 42px;
}

.terms-card h3 {
  margin-bottom: 24px;
  text-transform: uppercase;
  font-size: 34px;
}

.terms-card ul {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.terms-card li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 62px;
  font-size: 22px;
  line-height: 1.24;
}

.terms-card li svg {
  width: 58px;
  height: 58px;
  color: var(--white);
  fill: var(--white);
  stroke-width: 0;
}

.platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
}

.platform {
  display: inline-flex;
  align-items: center;
  min-height: 78px;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.platform--zoom {
  color: #4385ff;
}

.platform--zoom::before {
  width: 62px;
  height: 62px;
  margin-right: 14px;
  border-radius: 50%;
  background: #4385ff;
  color: #fff;
  content: "▶";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.platform--miro {
  color: #161616;
}

.platform--miro::before {
  width: 62px;
  height: 62px;
  margin-right: 14px;
  border-radius: 16px;
  background: #ffd82e;
  content: "M";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  font-weight: 900;
}

.platform-divider {
  width: 2px;
  height: 116px;
  background: var(--text);
}

.contacts {
  position: relative;
  overflow: hidden;
  padding-top: 64px;
  padding-bottom: 44px;
}

.contacts__inner {
  position: relative;
  min-height: 290px;
}

.contacts h2 {
  margin-bottom: 28px;
  text-align: left;
  font-size: 37px;
}

.english-watermark {
  position: absolute;
  z-index: 0;
  left: 40px;
  right: 40px;
  top: 78px;
  width: calc(100% - 80px);
  height: auto;
  opacity: 0.34;
  pointer-events: none;
}

.contact-list,
.schedule {
  position: relative;
  z-index: 1;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.contact-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: baseline;
}

.contact-list dt {
  font-size: 25px;
  font-weight: 800;
}

.contact-list dd {
  margin: 0;
  justify-self: end;
  font-size: 26px;
}

.contact-list a:hover,
.privacy-link:hover {
  text-decoration: underline;
}

.schedule {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  font-size: 30px;
}

.footer {
  background: var(--bg-cream);
  padding: 18px 0 28px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 42px;
  gap: 24px;
  align-items: center;
}

.logo--footer {
  color: var(--text);
  font-size: 16px;
}

.privacy-link,
.to-top {
  border: 0;
  background: transparent;
  color: var(--text);
}

.privacy-link {
  padding: 0;
  font-size: 18px;
}

.to-top {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--card);
  font-size: 28px;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease;
}

.to-top:hover {
  transform: translateY(-3px);
  background: var(--button-dark);
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 23, 20, 0.58);
  opacity: 0;
  transition: opacity 180ms ease;
}

.modal.is-open .modal__overlay {
  opacity: 1;
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-height: min(860px, calc(100vh - 48px));
  overflow: auto;
  border-radius: 26px;
  background: var(--bg-cream);
  box-shadow: var(--shadow);
  padding: 40px;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
}

.modal.is-open .modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal__dialog h2 {
  margin-bottom: 14px;
  font-size: 34px;
  text-align: left;
}

.modal__lead,
.modal__dialog p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: var(--card);
  color: var(--text);
  font-size: 34px;
  line-height: 1;
}

.modal__dialog--gallery {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  width: min(100%, 1060px);
  max-height: calc(100vh - 48px);
  overflow: hidden;
}

.gallery-modal__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding-right: 58px;
}

.gallery-modal__header p {
  margin-bottom: 22px;
}

.gallery-tools {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding-top: 4px;
}

.gallery-tools button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 38px;
  border: 1px solid rgba(46, 33, 29, 0.18);
  border-radius: 999px;
  background: #fff8ef;
  color: var(--text);
  padding: 0 12px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.gallery-view {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  height: min(58vh, 560px);
  overflow: hidden;
  border-radius: 18px;
  background: #efe2d4;
}

.gallery-view.is-zoomed {
  align-items: flex-start;
  justify-content: flex-start;
  overflow: auto;
}

.gallery-view img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  cursor: zoom-in;
  transform-origin: top left;
  transition: width 160ms ease, height 160ms ease;
}

.gallery-view.is-zoomed img {
  width: var(--gallery-zoom-width, 160%);
  height: auto;
  max-width: none;
  max-height: none;
  cursor: zoom-out;
}

.gallery-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(251, 247, 231, 0.86);
  color: var(--text);
  font-size: 42px;
  line-height: 1;
  transform: translateY(-50%);
}

.gallery-arrow--prev {
  left: 16px;
}

.gallery-arrow--next {
  right: 16px;
}

.gallery-counter {
  margin: 14px 0;
  text-align: center;
  color: var(--muted);
  font-size: 18px;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
  gap: 10px;
}

.gallery-thumbs button {
  overflow: hidden;
  height: 68px;
  border: 2px solid transparent;
  border-radius: 10px;
  background: var(--bg-sand);
  padding: 0;
}

.gallery-thumbs button.is-active {
  border-color: var(--button-dark);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid transparent;
  border-radius: 14px;
  background: #fffaf0;
  padding: 14px 16px;
  color: var(--text);
  font-size: 17px;
  outline: 0;
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--button-dark);
  box-shadow: 0 0 0 4px rgba(193, 142, 99, 0.18);
}

.contact-form .is-invalid input,
.contact-form .is-invalid textarea {
  border-color: #9e3e32;
}

.field-error {
  min-height: 18px;
  color: #9e3e32;
  font-size: 13px;
  font-weight: 700;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}

.modal-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .container {
    width: min(100% - 48px, 980px);
  }

  .site-header {
    padding: 30px 24px 16px;
  }

  .main-nav {
    gap: 22px;
    font-size: 19px;
  }

  .hero,
  .hero__content {
    min-height: 720px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 20px;
  }

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

  .about__photo img {
    width: 340px;
  }

  .experience__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 42px 42px;
  }

  .experience-card {
    grid-column: span 2;
  }

  .experience-card:nth-child(5),
  .experience-card:nth-child(6) {
    grid-column: span 2;
  }

  .experience-card:nth-child(7) {
    grid-column: 3 / span 2;
  }

  .album-grid,
  .reviews__grid {
    gap: 28px;
  }

  .album-card img {
    height: 280px;
  }

  .trial-card {
    grid-template-columns: 170px minmax(240px, 1fr) minmax(260px, 0.8fr);
    padding: 38px;
  }

  .trial-card__icon {
    width: 170px;
    height: 170px;
  }

  .trial-card__discount {
    font-size: 84px;
  }

  .trial-card__note {
    padding-left: 42px;
    font-size: 24px;
  }

  .price-row {
    grid-template-columns: 130px minmax(0, 1fr) 190px;
  }

  .price-icon {
    width: 126px;
    height: 126px;
  }

  .price-row__text h4 {
    font-size: 30px;
  }

  .price-row__text p {
    font-size: 23px;
  }

  .price-row__cost strong {
    font-size: 46px;
  }

  .terms-card {
    grid-template-columns: 1fr;
  }

  .english-watermark {
    left: 32px;
    right: 32px;
    width: calc(100% - 64px);
  }
}

@media (min-width: 821px) and (max-height: 780px) {
  .hero,
  .hero__content {
    min-height: clamp(760px, 54vw, 880px);
  }

  .hero__content {
    padding-bottom: 28px;
  }

  .hero h1 {
    margin-bottom: 12px;
    font-size: 52px;
  }

  .hero p {
    margin-bottom: 42px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, 680px);
  }

  .section {
    padding: 54px 0;
  }

  h2,
  .section-heading h2 {
    font-size: 38px;
  }

  .section-heading p {
    font-size: 22px;
  }

  .logo {
    font-size: 24px;
  }

  .menu-toggle {
    display: block;
    color: var(--white);
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(46, 33, 29, 0.95);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    padding: 18px 22px;
    font-size: 21px;
  }

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

  .hero,
  .hero__content {
    min-height: 650px;
  }

  .hero__image {
    object-position: 60% top;
  }

  .hero__content {
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero p {
    margin-bottom: 40px;
    font-size: 21px;
  }

  .hero__actions,
  .section-action {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero__actions .hero__line,
  .action-line {
    display: none;
  }

  .hero__actions .button,
  .section-action .button {
    width: max-content;
  }

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

  .about p {
    font-size: 21px;
  }

  .about__photo {
    justify-self: center;
  }

  .about__photo img {
    width: min(100%, 390px);
  }

  .experience__grid,
  .album-grid,
  .video-grid,
  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .experience-card strong {
    min-height: 0;
  }

  .experience-card {
    grid-column: 1 / -1;
  }

  .experience-card:nth-child(5),
  .experience-card:nth-child(6),
  .experience-card:nth-child(7) {
    grid-column: 1 / -1;
  }

  .album-card img {
    height: 330px;
  }

  .video-frame video {
    min-height: 240px;
    aspect-ratio: 16 / 9;
  }

  .trial-card {
    grid-template-columns: 1fr;
    min-height: 0;
    text-align: center;
  }

  .trial-card__icon {
    justify-self: center;
  }

  .trial-card__note {
    border-left: 0;
    border-top: 2px solid var(--text);
    padding: 28px 0 0;
  }

  .price-row {
    grid-template-columns: 92px 1fr;
    gap: 20px;
  }

  .price-icon {
    width: 92px;
    height: 92px;
  }

  .price-icon svg {
    width: 48px;
    height: 48px;
  }

  .price-row__cost {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }

  .price-group__title {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .terms-card li {
    grid-template-columns: 44px 1fr;
    font-size: 19px;
  }

  .terms-card li svg {
    width: 40px;
    height: 40px;
  }

  .platforms {
    gap: 22px;
  }

  .platform {
    min-height: 56px;
    font-size: 36px;
  }

  .platform--zoom::before,
  .platform--miro::before {
    width: 46px;
    height: 46px;
  }

  .platform-divider {
    height: 76px;
  }

  .contacts__inner {
    min-height: 360px;
  }

  .english-watermark {
    top: 104px;
    left: 24px;
    right: 24px;
    width: calc(100% - 48px);
  }

  .contact-list div,
  .schedule {
    grid-template-columns: 1fr;
  }

  .contact-list dd {
    justify-self: start;
    font-size: 22px;
  }

  .schedule {
    display: grid;
    font-size: 24px;
  }

  .footer__inner {
    grid-template-columns: 1fr 42px;
  }

  .privacy-link {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 420px);
  }

  .site-header {
    padding: 18px 16px 12px;
  }

  .button {
    min-height: 50px;
    padding: 0 22px;
    font-size: 19px;
  }

  .hero,
  .hero__content {
    min-height: 600px;
  }

  .hero__shade {
    background: rgba(34, 28, 25, 0.64);
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 18px;
  }

  h2,
  .section-heading h2 {
    font-size: 32px;
  }

  .section-heading p {
    font-size: 19px;
  }

  .about p,
  .price-row__text p {
    font-size: 18px;
  }

  .experience-card {
    grid-template-columns: 54px 1fr;
  }

  .round-icon {
    width: 54px;
    height: 54px;
  }

  .experience-card h3 {
    font-size: 22px;
  }

  .album-card img {
    height: 235px;
  }

  .album-card h3 {
    font-size: 24px;
  }

  .album-card p {
    font-size: 18px;
  }

  .review-card {
    padding: 24px 24px 24px 50px;
  }

  .trial-card {
    padding: 28px 20px;
  }

  .trial-card__icon {
    width: 132px;
    height: 132px;
  }

  .trial-card h3 {
    font-size: 29px;
  }

  .trial-card__discount {
    font-size: 70px;
  }

  .trial-card__note {
    font-size: 19px;
  }

  .price-row {
    grid-template-columns: 78px 1fr;
  }

  .price-icon {
    width: 78px;
    height: 78px;
  }

  .price-row__text h4 {
    font-size: 25px;
  }

  .price-row__cost strong {
    font-size: 38px;
  }

  .price-row__cost span {
    font-size: 20px;
  }

  .terms-card {
    padding: 28px 20px;
  }

  .platforms {
    flex-wrap: wrap;
  }

  .platform-divider {
    display: none;
  }

  .contacts h2 {
    font-size: 30px;
  }

  .english-watermark {
    top: 130px;
    left: 12px;
    right: 12px;
    width: calc(100% - 24px);
  }

  .modal {
    padding: 12px;
  }

  .modal__dialog {
    padding: 26px 18px;
  }

  .gallery-arrow {
    width: 40px;
    height: 40px;
    font-size: 34px;
  }
}

@media (max-width: 820px) {
  .site-header,
  .site-header.is-scrolled,
  .site-header.is-open {
    min-height: 62px;
    padding: 12px 16px;
    background: rgba(46, 33, 29, 0.9);
  }

  .logo {
    font-size: 21px;
  }

  .menu-toggle {
    width: 38px;
    height: 34px;
    padding: 4px;
  }

  .main-nav {
    right: 12px;
    left: 12px;
    border-radius: 16px;
  }

  .main-nav a {
    padding: 15px 18px;
    font-size: 18px;
  }

  .section {
    padding: 44px 0;
  }

  section[id] {
    scroll-margin-top: 74px;
  }

  h2,
  .section-heading h2 {
    margin-bottom: 12px;
    font-size: clamp(29px, 8vw, 38px);
    line-height: 1.08;
  }

  .section-heading p {
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.35;
  }

  .hero,
  .hero__content {
    min-height: 640px;
  }

  .hero__image {
    object-position: 58% top;
  }

  .hero__shade {
    background: rgba(34, 28, 25, 0.62);
  }

  .hero__content {
    width: calc(100% - 32px);
    padding-bottom: 28px;
  }

  .hero h1 {
    width: min(340px, 100%);
    margin-bottom: 14px;
    font-size: clamp(31px, 9vw, 40px);
    line-height: 1.08;
  }

  .hero p {
    width: min(340px, 100%);
    margin-bottom: 24px;
    font-size: 16.5px;
    line-height: 1.34;
  }

  .hero__actions {
    width: min(280px, 100%);
    gap: 12px;
  }

  .hero__actions .button {
    min-height: 44px;
    padding: 0 22px;
    font-size: 17px;
  }

  .about {
    padding-top: 46px;
  }

  .about__grid {
    gap: 28px;
  }

  .about p {
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.45;
  }

  .section-action {
    width: 100%;
    padding-top: 0;
  }

  .about__photo img {
    width: min(100%, 285px);
  }

  .experience {
    padding-top: 40px;
    padding-bottom: 42px;
  }

  .experience .section-title {
    margin-bottom: 28px;
  }

  .experience__grid {
    gap: 24px;
  }

  .experience-card {
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto;
    gap: 7px 14px;
  }

  .experience-card h3 {
    font-size: 23px;
  }

  .experience-card strong,
  .experience-card p {
    grid-column: 2;
  }

  .experience-card strong {
    min-height: 0;
    font-size: 16px;
    line-height: 1.2;
  }

  .experience-card p {
    font-size: 15.5px;
    line-height: 1.32;
  }

  .round-icon {
    width: 52px;
    height: 52px;
  }

  .round-icon svg {
    width: 26px;
    height: 26px;
  }

  .albums {
    padding-top: 48px;
    padding-bottom: 50px;
  }

  .albums .section-title {
    margin-bottom: 28px;
  }

  .album-grid {
    gap: 26px;
  }

  .album-card {
    border-radius: 24px;
  }

  .album-card img {
    width: calc(100% - 28px);
    height: auto;
    aspect-ratio: 1.22;
    margin: 14px 14px 0;
    border-radius: 16px;
  }

  .album-card:nth-child(2) img {
    aspect-ratio: 1.35;
  }

  .album-card__body {
    min-height: 0;
    padding: 20px 24px 24px;
  }

  .album-card h3 {
    font-size: 24px;
    line-height: 1.12;
  }

  .album-card p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.3;
  }

  .album-card .button {
    min-height: 46px;
    font-size: 18px;
  }

  .speech {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .video-grid {
    gap: 30px;
  }

  .video-card h3 {
    margin-bottom: 12px;
    font-size: 27px;
  }

  .video-frame {
    border-radius: 22px;
  }

  .video-frame video {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .video-link {
    width: 100%;
    max-width: 100%;
    margin-top: 12px;
    text-align: center;
    overflow-wrap: anywhere;
    font-size: 15.5px;
    line-height: 1.25;
  }

  .reviews {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .reviews h2 {
    margin-bottom: 24px;
    font-size: clamp(31px, 8vw, 38px);
  }

  .reviews__grid {
    gap: 18px;
  }

  .review-card {
    min-height: 0;
    border-radius: 20px;
    padding: 24px 22px 24px 52px;
  }

  .quote {
    top: 20px;
    left: 22px;
    font-size: 38px;
  }

  .review-card p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.36;
  }

  .pricing {
    padding-top: 42px;
    padding-bottom: 46px;
  }

  .trial-card {
    gap: 18px;
    border-radius: 24px;
    padding: 24px;
    text-align: center;
  }

  .trial-card__icon {
    width: 96px;
    height: 96px;
  }

  .trial-card__icon svg {
    width: 48px;
    height: 48px;
  }

  .trial-card h3 {
    margin-bottom: 8px;
    font-size: 28px;
  }

  .trial-card__discount {
    font-size: 58px;
  }

  .trial-card__note {
    padding-top: 18px;
    font-size: 17px;
    line-height: 1.36;
  }

  .price-group {
    margin-top: 28px;
  }

  .price-group__title {
    gap: 12px;
    margin-bottom: 20px;
  }

  .price-group__title h3 {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .price-row {
    grid-template-columns: 64px 1fr;
    gap: 12px 14px;
    margin-bottom: 26px;
  }

  .price-icon {
    width: 64px;
    height: 64px;
  }

  .price-icon svg {
    width: 34px;
    height: 34px;
  }

  .price-row__text h4 {
    margin-bottom: 6px;
    font-size: 22px;
    line-height: 1.12;
  }

  .price-row__text p {
    font-size: 15.5px;
    line-height: 1.32;
  }

  .price-row__cost {
    grid-column: 1 / -1;
    justify-self: end;
    text-align: right;
  }

  .price-row__cost strong {
    font-size: 34px;
  }

  .price-row__cost span {
    font-size: 16px;
  }

  .terms-card {
    gap: 24px;
    border-radius: 22px;
    padding: 24px 22px;
  }

  .terms-card h3 {
    margin-bottom: 18px;
    font-size: 26px;
  }

  .terms-card ul {
    gap: 16px;
  }

  .terms-card li {
    grid-template-columns: 32px 1fr;
    gap: 14px;
    min-height: 0;
    font-size: 16px;
    line-height: 1.34;
  }

  .terms-card li svg {
    width: 30px;
    height: 30px;
  }

  .platforms {
    gap: 14px;
  }

  .platform {
    min-height: 44px;
    font-size: 27px;
  }

  .platform--zoom::before,
  .platform--miro::before {
    width: 42px;
    height: 42px;
    margin-right: 8px;
    font-size: 22px;
  }

  .platform--miro::before {
    border-radius: 12px;
    font-size: 28px;
  }

  .contacts {
    padding-top: 46px;
    padding-bottom: 40px;
  }

  .contacts__inner {
    min-height: 0;
  }

  .contacts h2 {
    margin-bottom: 24px;
    font-size: 31px;
    line-height: 1.12;
  }

  .english-watermark {
    top: 136px;
    left: 12px;
    right: 12px;
    width: calc(100% - 24px);
    opacity: 0.2;
  }

  .contact-list {
    gap: 18px;
  }

  .contact-list div {
    display: block;
  }

  .contact-list dt {
    margin-bottom: 4px;
    font-size: 19px;
  }

  .contact-list dd {
    justify-self: start;
    font-size: 21px;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .schedule {
    display: grid;
    gap: 10px;
    margin-top: 24px;
    font-size: 19px;
    line-height: 1.25;
  }

  .modal__dialog--gallery {
    max-height: calc(100vh - 24px);
    padding: 22px 18px 18px;
  }

  .gallery-modal__header {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-right: 44px;
  }

  .modal__dialog--gallery h2 {
    margin-bottom: 8px;
    font-size: 23px;
    line-height: 1.08;
  }

  .gallery-modal__header p {
    margin-bottom: 0;
    font-size: 14.5px;
    line-height: 1.35;
  }

  .gallery-tools {
    padding-top: 0;
  }

  .gallery-tools button {
    min-width: 34px;
    height: 32px;
    padding: 0 10px;
    font-size: 15px;
  }

  .gallery-view {
    height: min(36vh, 290px);
    margin-top: 12px;
    border-radius: 14px;
  }

  .gallery-arrow {
    width: 38px;
    height: 38px;
    font-size: 32px;
  }

  .gallery-arrow--prev {
    left: 8px;
  }

  .gallery-arrow--next {
    right: 8px;
  }

  .gallery-counter {
    margin: 10px 0;
    font-size: 15px;
  }

  .gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .gallery-thumbs button {
    flex: 0 0 64px;
    height: 52px;
  }

  .modal__close {
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 28px, 420px);
  }

  .hero,
  .hero__content {
    min-height: 610px;
  }

  .hero h1 {
    font-size: clamp(29px, 9vw, 35px);
  }

  .hero p {
    font-size: 16px;
  }

  .button,
  .hero__actions .button {
    min-height: 44px;
    font-size: 17px;
  }

  .price-group__title h3 {
    font-size: 24px;
  }

  .platforms {
    justify-content: flex-start;
  }

  .platform {
    font-size: 25px;
  }
}
