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

:root {
  --bg: #F7F3EC;
  --bg-warm: #F9F6F0;
  --text: #1C1C1E;
  --accent: #B88D56;
  --accent-soft: rgba(184, 141, 86, 0.08);
  --dark: #1E2329;
  --dark-warm: #22262B;
  --radius: 16px;
  --transition: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  --elegant: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 44px;
  min-height: 60px;
  min-width: 320px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  gap: 8px;
}

.btn::after {
  content: '→';
  display: inline-block;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.4s var(--elegant);
  font-size: 16px;
}

.btn:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 36px rgba(184, 141, 86, 0.3), 0 0 0 1px rgba(184, 141, 86, 0.08);
  position: relative;
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 52px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}



.btn--primary:hover {
  background: #a67a48;
  box-shadow: 0 20px 56px rgba(184, 141, 86, 0.4), 0 0 0 1px rgba(184, 141, 86, 0.2), 0 0 40px rgba(184, 141, 86, 0.25);
  transform: translateY(-3px) scale(1.01);
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--light {
  background: #fff;
  color: var(--dark);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.btn--light:hover {
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px) scale(1.01);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 100%);
  opacity: 0.6;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.navbar--scrolled {
  background: rgba(248, 247, 244, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar--scrolled::before {
  opacity: 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.4s ease;
}

.navbar--scrolled .navbar__logo {
  color: var(--text);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
  position: relative;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s ease;
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after {
  width: 100%;
}

.navbar--scrolled .nav-link {
  color: rgba(32, 32, 32, 0.7);
  text-shadow: none;
}

.navbar--scrolled .nav-link:hover {
  color: var(--text);
}

.nav-link--btn {
  padding: 10px 24px;
  background: var(--accent);
  color: #fff !important;
  border-radius: 50px;
  font-weight: 500;
  transition: all var(--transition);
}

.nav-link--btn::after {
  display: none;
}

.nav-link--btn:hover {
  background: #a67a48;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184, 141, 86, 0.3);
}

.navbar--scrolled .nav-link--btn {
  color: #fff !important;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar--scrolled .navbar__toggle span {
  background: var(--text);
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    background: var(--bg);
    transition: right 0.6s var(--elegant);
    z-index: 999;
  }

  .navbar__links.active {
    right: 0;
  }

  .nav-link {
    font-size: 24px;
    font-weight: 300;
    color: var(--text) !important;
  }

  .navbar__toggle {
    display: flex;
  }
}

.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(20,20,20,.58), rgba(20,20,20,.58));
}



.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  z-index: 1;
  pointer-events: none;
}

.hero__header {
  flex: 0 0 auto;
  position: relative;
  z-index: 5;
}

.hero__body {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 5;
  padding: 80px 40px 0;
  box-sizing: border-box;
  gap: 24px;
  margin-top: auto;
  margin-bottom: 60px;
}

.hero__body > * {
  max-width: 800px;
  width: 100%;
}

.hero__body .btn {
  width: auto;
  max-width: none;
  flex-shrink: 0;
  animation: heroReveal 1.2s var(--elegant) 0.9s both;
}

.hero__body .hero__meta {
  width: auto;
  max-width: none;
}

.hero__label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  animation: heroReveal 1.4s var(--elegant) 0.3s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  line-height: 2.2;
}

.hero__label-small {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #fff;
}

.hero-pretitle {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B88D56;
  margin-bottom: 20px;
  font-weight: 500;
  opacity: 0.9;
  animation: heroReveal 1.4s var(--elegant) 0.3s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 8vw, 95px);
  font-weight: 400;
  line-height: 1.02;
  color: #fff;
  letter-spacing: -0.03em;
  animation: heroReveal 1.4s var(--elegant) 0.5s both;
  text-shadow: 0 4px 40px rgba(0,0,0,0.25);
}

.hero__subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 37px);
  font-weight: 500;
  color: #D7B47A;
  letter-spacing: 0.08em;
  animation: heroReveal 1.4s var(--elegant) 0.7s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero__paragraph {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  font-style: normal;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  animation: heroReveal 1.2s var(--elegant) 0.8s both;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.hero__date {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.hero__meta {
  font-size: 22px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: heroReveal 1.2s var(--elegant) 1s both;
}

.hero__meta-divider {
  display: inline-block;
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

@keyframes heroReveal {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}




.section {
  padding: 160px 0;
}

.section--compact {
  padding: 80px 0;
}

#expect {
  padding: 120px 0 100px;
}

.expect__content {
  margin-top: 0;
}

.expect__header {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

.expect__title {
  color: #232323;
  font-size: 62px;
  letter-spacing: -0.01em;
}

.expect__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 21px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(35, 35, 35, 0.6);
  margin: 0;
  max-width: 600px;
}

.expect__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.expect__card {
  background: linear-gradient(180deg, #FFFCF8, #FFF9F2);
  border-radius: 32px;
  padding: 42px 38px;
  box-shadow: 0 45px 110px rgba(0,0,0,0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: left;
}

.expect__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.08);
}

.expect__card-icon {
  color: var(--accent);
  margin-bottom: 36px;
  width: 106px;
  height: 106px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: rgba(184, 141, 86, 0.12);
}

.expect__card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 35px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

.expect__card-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(28, 28, 30, 0.65);
}

@media (max-width: 768px) {
  .section--compact {
    padding: 56px 0;
  }
}

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

.section--dark {
  background: var(--dark-warm);
  position: relative;
}

.section--dark::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 141, 86, 0.12), transparent);
}

.section--dark::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 141, 86, 0.08), transparent);
}

.section--accent {
  background: linear-gradient(135deg, var(--accent) 0%, #a67a48 100%);
  position: relative;
}

.section--accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}

.section__header {
  margin-bottom: 88px;
}

.section__number {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
  opacity: 0.7;
}

.section__number--light {
  color: rgba(255, 255, 255, 0.35);
  opacity: 1;
}

.section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section__title--light {
  color: #fff;
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .section__header {
    margin-bottom: 48px;
  }

  #expect {
    padding-top: 40px;
  }

  .expect__content {
    margin-top: 0;
  }

  .expect__header {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 48px;
  }

  .expect__subtitle {
    font-size: 18px;
    max-width: 100%;
    margin: 0;
  }

  .expect__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .expect__card {
    padding: 36px 32px;
  }

  .expect__card-icon {
    margin-bottom: 24px;
    width: 82px;
    height: 82px;
  }
}

@media (max-width: 480px) {
  #expect {
    padding-top: 24px;
  }

  .expect__content {
    margin-top: 0;
  }

  .expect__header {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 36px;
  }

  .expect__subtitle {
    font-size: 16px;
    max-width: 100%;
    margin: 0;
  }

  .expect__grid {
    gap: 20px;
  }

  .expect__card {
    padding: 32px 28px;
  }

  .expect__card-icon {
    margin-bottom: 20px;
    width: 74px;
    height: 74px;
  }

  .expect__card-title {
    font-size: 22px;
  }
}

#problem {
  padding-top: 16px;
}

.problem__header {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.problem__header .section__title {
  font-size: clamp(36px, 4.5vw, 58px);
  padding-top: 5px;
}

.problem__lead-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 620px;
}

.problem__lead-accent {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(28, 28, 30, 0.8);
}

.problem__lead {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(28, 28, 30, 0.6);
}

.problem__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.problem__block {
  padding: 32px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.problem__block:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.problem__block--main {
  grid-column: 1 / -1;
  padding: 40px;
}

.problem__block--main .problem__text {
  max-width: 720px;
}

.problem__block--main::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.15;
  pointer-events: none;
}

.problem__block--accent {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--accent) 0%, #a67a48 100%);
  padding: 48px 64px;
  border-radius: 24px;
}

.problem__block--accent:hover {
  transform: none;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.04);
}

.problem__card-icon {
  margin-bottom: 24px;
  opacity: 0.75;
}

.problem__card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: rgba(28, 28, 30, 0.8);
  margin-bottom: 16px;
  line-height: 1.3;
}

.problem__text {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(28, 28, 30, 0.65);
}

.problem__block--accent .problem__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 21px;
  font-style: italic;
  margin-bottom: 10px;
}

.problem__text--accent-strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

@media (max-width: 768px) {
  #problem {
    padding-top: 12px;
  }

  .problem__header {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  .problem__header .section__title {
    font-size: 32px;
    padding-top: 0;
  }

  .problem__lead-wrapper {
    gap: 8px;
    max-width: none;
  }

  .problem__lead-accent {
    font-size: 20px;
  }

  .problem__lead {
    font-size: 17px;
  }

  .problem__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .problem__block {
    padding: 40px 32px;
  }

  .problem__block--main {
    padding: 40px 32px;
  }

  .problem__block--main .problem__text {
    max-width: none;
  }

  .problem__block--main::before {
    top: 12px;
    left: 20px;
    font-size: 56px;
  }

  .problem__block--accent {
    padding: 40px 36px;
  }

  .problem__card-icon {
    margin-bottom: 24px;
  }

  .problem__card-title {
    font-size: 19px;
    margin-bottom: 14px;
  }

  .problem__text {
    font-size: 17px;
    line-height: 1.6;
  }

  .problem__block--accent .problem__text {
    font-size: 19px;
  }

  .problem__text--accent-strong {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .problem__header {
    gap: 12px;
    margin-bottom: 32px;
  }

  .problem__header .section__title {
    font-size: 27px;
    padding-top: 0;
  }

  .problem__lead-wrapper {
    max-width: none;
  }

  .problem__lead-accent {
    font-size: 19px;
  }

  .problem__lead {
    font-size: 16px;
  }

  .problem__layout {
    gap: 24px;
  }

  .problem__block {
    padding: 36px 28px;
  }

  .problem__block--main {
    padding: 36px 28px;
  }

  .problem__block--accent {
    padding: 36px 28px;
  }

  .problem__card-icon {
    margin-bottom: 20px;
  }

  .problem__card-title {
    font-size: 18px;
  }

  .problem__text {
    font-size: 16px;
  }

  .problem__text--accent-strong {
    font-size: 22px;
  }
}


/* — Hide section number — */
#outcomes .section__number {
  display: none;
}

/* — Container — */
#outcomes .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px 0 72px;
}

/* — Section header — */
#outcomes .section__header {
  margin-bottom: 24px;
}

#outcomes .section__title {
  font-size: 48px;
  line-height: 1.0;
}

/* — Intro — */
.outcomes__intro {
  margin-bottom: 32px;
}

.outcomes__intro-text {
  max-width: 550px;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.65);
}

/* — Grid 2×2 — */
.outcomes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

/* — Cards — */
.outcome {
  padding: 4px 24px 14px;
  height: 190px;
  background: #35383d;
  border-radius: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 20px 60px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.outcome:hover {
  transform: translateY(-5px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 28px 72px rgba(0, 0, 0, 0.1);
}

/* — Icons — */
.outcome__icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  opacity: 0.9;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.outcome:hover .outcome__icon {
  opacity: 1;
}

.outcome__icon svg {
  width: 36px;
  height: 36px;
  display: block;
}

.outcome__icon svg path,
.outcome__icon svg circle,
.outcome__icon svg rect {
  stroke: #C49A5C;
  transition: stroke 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.outcome:hover .outcome__icon svg path,
.outcome:hover .outcome__icon svg circle,
.outcome:hover .outcome__icon svg rect {
  stroke: #D4A96A;
}

/* — Title — */
.outcome__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

/* — Text — */
.outcome__text {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
  max-width: 420px;
}

/* — Responsive — */
@media (max-width: 1260px) {
  #outcomes .container {
    padding: 0 40px;
  }
}

@media (max-width: 1024px) {
  #outcomes .container {
    padding: 0 32px;
  }

  .outcomes__grid {
    max-width: none;
    gap: 24px;
  }

  .outcome {
    height: auto;
    padding: 8px 24px 14px;
  }

  .outcome__title {
    font-size: 30px;
  }

  .outcome__text {
    max-width: none;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  #outcomes .container {
    padding: 0 24px;
  }

  #outcomes .section__header {
    margin-bottom: 18px;
  }

  #outcomes .section__title {
    font-size: 36px;
  }

  .outcomes__intro {
    margin-bottom: 28px;
  }

  .outcomes__intro-text {
    max-width: none;
    font-size: 16px;
  }

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

  .outcome {
    padding: 10px 22px 14px;
    height: auto;
  }

  .outcome__icon {
    width: 46px;
    height: 46px;
    margin-bottom: 10px;
  }

  .outcome__icon svg {
    width: 26px;
    height: 26px;
  }

  .outcome__title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .outcome__text {
    font-size: 15px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  #outcomes .container {
    padding: 0 16px;
  }

  #outcomes .section__title {
    font-size: 28px;
  }

  .outcomes__intro-text {
    font-size: 15px;
  }

  .outcome {
    padding: 8px 18px 12px;
    height: auto;
  }

  .outcome__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
  }

  .outcome__icon svg {
    width: 24px;
    height: 24px;
  }

  .outcome__title {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .outcome__text {
    font-size: 14px;
  }
}

/* — For whom section — */

#forwhom {
  padding-top: 120px;
  padding-bottom: 120px;
  background: #F5F3F0;
}

#forwhom .container {
  max-width: 1320px;
  padding-left: 40px;
  padding-right: 40px;
}

.forwhom__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.05;
  color: var(--text);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 28px;
}

.forwhom__desc {
  font-size: 22px;
  line-height: 1.7;
  color: #5F5B57;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}

.forwhom__bottom {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.forwhom__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.forwhom__card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 32px;
  min-height: 340px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.forwhom__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.forwhom__card-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B8945E;
}

.forwhom__card-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.forwhom__card-icon svg path,
.forwhom__card-icon svg circle,
.forwhom__card-icon svg rect {
  stroke: #B8945E;
  stroke-width: 1.8;
}

.forwhom__card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  margin-top: 18px;
  margin-bottom: 16px;
}

.forwhom__card-text {
  font-size: 18px;
  line-height: 1.8;
  color: #5F5B57;
}

.forwhom__photo-wrap {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
  height: 680px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.forwhom__photo-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 62% center !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.forwhom__quote {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  bottom: 42px !important;
  width: 68% !important;
  max-width: 420px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  color: #FFFFFF !important;
  padding: 30px 36px !important;
  border-radius: 16px !important;
  font-style: italic !important;
  font-size: 22px !important;
  line-height: 1.6 !important;
  text-align: center !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) !important;
}

@media (max-width: 1100px) {
  .forwhom__bottom {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .forwhom__title {
    font-size: 40px;
  }

  .forwhom__desc {
    margin-bottom: 48px;
  }

  .forwhom__photo-wrap {
    height: auto;
  }

  .forwhom__photo {
    height: 460px;
  }

  .forwhom__quote {
    font-size: 22px;
    padding: 18px 22px;
  }
}

@media (max-width: 768px) {
  #forwhom {
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .forwhom__bottom {
    gap: 36px;
  }

  .forwhom__title {
    font-size: 34px;
    margin-bottom: 20px;
  }

  .forwhom__desc {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .forwhom__cards {
    gap: 16px;
  }

  .forwhom__card {
    padding: 22px 18px 24px;
  }

  .forwhom__card-title {
    font-size: 20px;
  }

  .forwhom__photo-wrap {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    background: #333;
  }

  .forwhom__photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .forwhom__photo-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    z-index: 1;
  }

  .forwhom__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .forwhom__quote {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 40px 24px 30px;
    box-sizing: border-box;
    color: #fff;
    text-align: center;
    font-style: italic;
    font-size: 20px;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  }
}

@media (max-width: 480px) {
  #forwhom {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .forwhom__bottom {
    gap: 28px;
  }

  .forwhom__title {
    font-size: 28px;
  }

  .forwhom__desc {
    font-size: 17px;
  }

  .forwhom__cards {
    grid-template-columns: 1fr;
  gap: 12px;
  }

  .forwhom__card {
    padding: 20px 18px 24px;
  }

  .forwhom__card-icon {
    margin-bottom: 0;
  }

  .forwhom__card-title {
    font-size: 19px;
  }

  .forwhom__card-text {
    font-size: 16px;
  }

  .forwhom__photo-wrap {
    height: 380px;
  }

  .forwhom__photo-wrap img,
  .forwhom__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .forwhom__quote {
    padding: 36px 20px 26px;
    font-size: 18px;
  }
}

#program .section__title {
  font-size: clamp(56px, 7vw, 72px) !important;
  margin-bottom: 32px !important;
}

.program__intro {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 700px;
  margin: 0 auto 80px;
  text-align: center;
}

.program__header {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(184, 148, 94, 0.1) 0%,
    rgba(184, 148, 94, 0.55) 50%,
    rgba(184, 148, 94, 0.1) 100%
  );
  transform: translateX(-50%);
}

.timeline__step {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px !important;
  padding: 0 0 0 calc(50% + 32px) !important;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.timeline__step.revealed {
  opacity: 1;
  transform: translateY(0);
}

.timeline__step:nth-child(1) { transition-delay: 0s; }
.timeline__step:nth-child(2) { transition-delay: 0.15s; }
.timeline__step:nth-child(3) { transition-delay: 0.3s; }
.timeline__step:nth-child(4) { transition-delay: 0.45s; }
.timeline__step:nth-child(5) { transition-delay: 0.6s; }

.timeline__step--right {
  padding: 0 calc(50% + 32px) 0 0 !important;
  justify-content: flex-end;
}

.timeline__step:last-child {
  margin-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%);
  box-shadow:
    0 0 0 4px rgba(184, 141, 86, 0.12),
    0 0 16px rgba(184, 148, 94, 0.45);
  z-index: 1;
  transition: all 0.6s ease;
}

.timeline__step.revealed .timeline__dot {
  box-shadow:
    0 0 0 6px rgba(184, 141, 86, 0.15),
    0 0 24px rgba(184, 148, 94, 0.6);
}

.timeline__content {
  max-width: 340px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.timeline__step:hover .timeline__content {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(184, 141, 86, 0.15);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 40px rgba(0, 0, 0, 0.15);
}

.timeline__step:not(.timeline__step--right) .timeline__content::before {
  content: '';
  position: absolute;
  right: -40px;
  top: 50%;
  width: 40px;
  height: 1px;
  background: rgba(184, 148, 94, 0.25);
}

.timeline__step--right .timeline__content::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 50%;
  width: 40px;
  height: 1px;
  background: rgba(184, 148, 94, 0.25);
}

.timeline__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px !important;
  font-weight: 500;
  color: var(--accent);
  display: block;
  margin-bottom: 10px !important;
  opacity: 0.8 !important;
}

.timeline__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px !important;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px !important;
  letter-spacing: -0.01em;
}

.timeline__text {
  font-size: 16px !important;
  font-weight: 300;
  line-height: 1.75 !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

/* === ФИНАЛЬНАЯ КАРТОЧКА — кульминация === */
.timeline__step:last-child .timeline__content {
  max-width: 365px;
  padding: 32px 36px;
  background: rgba(184, 141, 86, 0.06);
  border-color: rgba(184, 141, 86, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 40px rgba(184, 141, 86, 0.08);
}

.timeline__step:last-child .timeline__number {
  font-size: 24px;
  opacity: 1;
}

.timeline__step:last-child .timeline__title {
  font-size: 24px;
  color: #D7B47A;
}

.timeline__step:last-child .timeline__text {
  color: rgba(255, 255, 255, 0.7);
}

.timeline__step:last-child .timeline__content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 141, 86, 0.5), transparent);
}

@media (max-width: 768px) {
  #program .section__title {
    font-size: 40px !important;
  }

  .program__intro {
    font-size: 16px !important;
    max-width: 100% !important;
    margin-bottom: 48px !important;
  }

  .timeline__content {
    max-width: 100% !important;
    padding: 24px 28px !important;
  }

  .timeline__step,
  .timeline__step--right {
    padding: 0 0 0 40px !important;
    margin-top: 0 !important;
  }

  .timeline__step:last-child .timeline__content {
    max-width: 100% !important;
    padding: 28px 32px !important;
  }

  .timeline__title {
    font-size: 22px !important;
  }

  .timeline__text {
    font-size: 15px !important;
  }

  .timeline__content::before {
    display: none !important;
  }

  .timeline__step:last-child .timeline__content {
    max-width: 100% !important;
    padding: 28px 32px !important;
  }

  .timeline__line {
    left: 20px;
  }

  .timeline__dot {
    left: 20px;
    box-shadow: 0 0 0 4px rgba(184, 141, 86, 0.12);
  }
}

/* === About section — финальная полировка === */

.about-new {
  padding: 160px 0;
  background: var(--bg);
}

.about-new__number {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 24px;
  opacity: 0.6;
}

.about-new__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 80px;
  max-width: 800px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.about-new__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-new__photo-col {
  position: sticky;
  top: 120px;
}

.about-new__photo-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  margin-top: 0;
}

.about-new__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.about-new__quote {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 28px 32px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.about-new__quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  font-weight: 500;
}

.about-new__quote-accent {
  font-weight: 600;
  font-size: 19px;
  color: var(--text);
  font-style: normal;
}

.about-new__quote p::before {
  content: '\201C';
  font-size: 32px;
  color: var(--accent);
  line-height: 0;
  vertical-align: -8px;
  margin-right: 4px;
  font-style: normal;
}

.about-new__identity {
  margin-bottom: 40px;
}

.about-new__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.about-new__role {
  font-size: 15px;
  font-weight: 400;
  color: var(--accent);
  margin-top: 8px;
  margin-bottom: 0;
  letter-spacing: 0.02em;
}

.about-new__text-block {
  margin-bottom: 48px;
}

.about-new__text-block p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(32, 32, 32, 0.75);
  margin-bottom: 16px;
}

.about-new__text-block p:last-child {
  margin-bottom: 0;
}

.about-new__principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 48px 0;
}

.principle-card {
  padding: 28px 24px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.principle-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border-color: rgba(184, 141, 86, 0.15);
}

.principle-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.principle-card__text {
  font-size: 15px;
  font-weight: 300;
  color: rgba(32, 32, 32, 0.55);
  line-height: 1.5;
  margin: 0;
}

.about-new__facts {
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.about-new__facts-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: rgba(32, 32, 32, 0.5);
  margin-bottom: 24px;
  line-height: 1.4;
}

.about-new__facts-row {
  display: flex;
  gap: 48px;
}

.about-new__fact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-new__fact-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}

.about-new__fact-label {
  font-size: 13px;
  font-weight: 400;
  color: rgba(32, 32, 32, 0.4);
  line-height: 1.4;
}

.about-new__closing {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.about-new__closing p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--accent);
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

.about-new .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-new .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.about-new .reveal:nth-child(1) { transition-delay: 0s; }
.about-new .reveal:nth-child(2) { transition-delay: 0.1s; }
.about-new .reveal:nth-child(3) { transition-delay: 0.2s; }
.about-new .reveal:nth-child(4) { transition-delay: 0.3s; }
.about-new .reveal:nth-child(5) { transition-delay: 0.4s; }
.about-new .reveal:nth-child(6) { transition-delay: 0.5s; }

@media (max-width: 1024px) {
  .about-new__layout {
    gap: 60px;
  }

  .about-new__photo-col {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .about-new {
    padding: 80px 0;
  }

  .about-new__title {
    font-size: 36px;
    margin-bottom: 48px;
    white-space: normal;
  }

  .about-new__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-new__photo-wrap {
    aspect-ratio: 4/5;
    min-height: 320px;
    border-radius: 20px;
    margin-top: 0;
  }

  .about-new__quote {
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 24px;
  }

  .about-new__quote p {
    font-size: clamp(16px, 4vw, 20px);
    line-height: 1.5;
  }

  .about-new__name {
    font-size: 32px;
  }

  .about-new__role {
    font-size: 14px;
    margin-top: 6px;
  }

  .about-new__text-block p {
    font-size: 17px;
  }

  .about-new__principles {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 36px 0;
  }

  .principle-card {
    padding: 24px 20px;
  }

  .principle-card__title {
    font-size: 20px;
  }

  .principle-card__text {
    font-size: 14px;
  }

  .about-new__facts-label {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .about-new__facts-row {
    flex-direction: column;
    gap: 24px;
  }

  .about-new__fact-number {
    font-size: 36px;
  }

  .about-new__quote-accent {
    font-size: 17px;
  }

  .about-new__closing {
    margin-top: 36px;
    padding-top: 24px;
  }

  .about-new__closing p {
    font-size: 19px;
  }
}

/* === Register section — финальная версия === */

.register-final {
  background: linear-gradient(180deg, #F0ECE4 0%, #EDE8DF 100%);
  padding-top: 200px;
  padding-bottom: 160px;
  text-align: center;
}

.register-final__number {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 24px;
  opacity: 0.6;
}

.register-final__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.02em;
}

.register-final__subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: rgba(32, 32, 32, 0.6);
  line-height: 1.6;
  margin-bottom: 64px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.register-final__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
  max-width: 900px;
  margin: 0 auto 64px;
}

@media (max-width: 899px) {
  .register-final__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
  }

  .detail-card {
    width: 100%;
    min-width: 0;
  }
}

.detail-card {
  min-height: 110px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  min-width: 200px;
}

.detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border-color: rgba(184, 141, 86, 0.15);
}

.detail-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #B8945B;
  opacity: 0;
  animation: iconReveal 0.25s ease forwards;
  animation-delay: 0.3s;
}

.detail-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.detail-card:hover .detail-card__icon svg {
  color: #A67A48;
  opacity: 0.85;
}

@keyframes iconReveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

.detail-card__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.detail-card__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.detail-card__label {
  font-size: 12px;
  font-weight: 300;
  color: rgba(32, 32, 32, 0.5);
  line-height: 1.4;
}


.register-final__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.register-final__input {
  width: 100%;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  outline: none;
  transition: all 0.3s ease;
}

.register-final__input::placeholder {
  color: rgba(32, 32, 32, 0.3);
  font-weight: 300;
}

.register-final__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(184, 141, 86, 0.08);
}

.register-final__btn {
  max-width: calc(100% - 40px);
  margin: 0 auto;
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 22px 44px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.register-final__btn:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 48px rgba(184, 141, 86, 0.35);
}

.register-final__confirm {
  font-size: 15px;
  font-weight: 300;
  color: rgba(32, 32, 32, 0.6);
  line-height: 1.6;
  margin: 10px 0 0;
  text-align: center;
}

.register-final__disclaimer {
  font-size: 14px;
  font-weight: 300;
  color: rgba(32, 32, 32, 0.55);
  margin: 8px 0 0;
  text-align: center;
  line-height: 1.5;
}

.register-final__closing {
  max-width: 600px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.register-final__closing p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: rgba(32, 32, 32, 0.6);
  margin: 0;
  text-align: center;
}

.register-final .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.register-final .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.register-final .reveal:nth-child(1) { transition-delay: 0s; }
.register-final .reveal:nth-child(2) { transition-delay: 0.1s; }
.register-final .reveal:nth-child(3) { transition-delay: 0.2s; }
.register-final .reveal:nth-child(4) { transition-delay: 0.3s; }
.register-final .reveal:nth-child(5) { transition-delay: 0.4s; }
.register-final .reveal:nth-child(6) { transition-delay: 0.5s; }

#register ~ .navbar,
body:has(#register:target) .navbar {
  opacity: 0;
  pointer-events: none;
}

/* === Блок согласий === */
.register-final__consents {
  width: 100%;
  background: #F8F6F2;
  border-radius: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
  text-align: left;
}

.consent-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  user-select: none;
  line-height: 1.55;
}

.consent-item__checkbox {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.consent-item__input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
}

.consent-item__checkbox::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(184, 148, 91, 0.45);
  border-radius: 6px;
  background: #fff;
  transition: all 0.25s ease;
}

.consent-item__input:checked + .consent-item__check {
  opacity: 1;
}

.consent-item__input:checked ~ .consent-item__checkbox::before,
.consent-item__checkbox:has(.consent-item__input:checked)::before {
  background: #B8945B;
  border-color: #B8945B;
}

.consent-item__check {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 2;
}

.consent-item__text {
  font-size: 15px;
  line-height: 1.6;
  color: #5F5B56;
  font-weight: 300;
  flex: 1;
  text-align: left;
}

.consent-item__link {
  color: #B8945B;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  font-weight: 400;
}

.consent-item__link:hover {
  color: #9F7E4A;
  border-bottom-color: #9F7E4A;
}



/* Кнопка неактивна */
.register-final__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.register-final__btn:not(:disabled) {
  opacity: 1;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* === Toast уведомление === */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 480px;
  max-width: 90vw;
  background: rgba(28, 28, 28, 0.96);
  color: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 2000;
}

.toast.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.toast__icon {
  flex-shrink: 0;
}

.toast__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

/* === Модальное окно === */
.modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal__content {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  max-width: 520px;
  width: calc(100% - 32px);
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.15);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal.active .modal__content {
  transform: scale(1);
}

.modal__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}

.modal__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.modal__text {
  font-size: 16px;
  font-weight: 300;
  color: rgba(32, 32, 32, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

.modal__pay-btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  min-height: 54px;
  background: var(--accent);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-sizing: border-box;
  transition: all var(--transition);
}

.modal__pay-btn:hover {
  background: #a67a48;
  box-shadow: 0 8px 36px rgba(184, 141, 86, 0.35);
}

/* === Success modal: переключение экранов === */
#successModal .modal__content {
  display: grid;
}

#successModal .modal__screen {
  grid-area: 1 / 1;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#successModal .modal__screen--2,
#successModal .modal__screen--3 {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

#successModal.is-promo .modal__screen--1 {
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
}

#successModal.is-promo .modal__screen--2 {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#successModal.is-promo-success .modal__screen--1,
#successModal.is-promo-success .modal__screen--2 {
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
}

#successModal.is-promo-success .modal__screen--3 {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.modal__promo-link {
  display: block;
  margin-top: 20px;
  padding: 0;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

.modal__promo-link:hover {
  text-decoration: underline;
}

.modal__input {
  width: 100%;
  padding: 16px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(32, 32, 32, 0.15);
  border-radius: 12px;
  box-sizing: border-box;
  text-align: center;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.modal__input::placeholder {
  color: rgba(32, 32, 32, 0.4);
}

.modal__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.modal__apply-btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  min-height: 54px;
  margin-top: 16px;
  background: var(--accent);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-sizing: border-box;
  transition: all var(--transition);
}

.modal__apply-btn:hover {
  background: #a67a48;
  box-shadow: 0 8px 36px rgba(184, 141, 86, 0.35);
}

.modal__skip-link {
  display: block;
  margin-top: 20px;
  padding: 0;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

.modal__skip-link:hover {
  text-decoration: underline;
}

.modal__error {
  display: none;
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #c0392b;
  text-align: center;
}

.modal__error.show {
  display: block;
}

.modal__event {
  margin: 0 0 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
}

@media (max-width: 480px) {
  .modal__content {
    padding: 28px;
  }

  .modal__title {
    font-size: 26px;
  }

  .modal__text {
    font-size: 15px;
  }

  .modal__pay-btn,
  .modal__apply-btn {
    font-size: 15px;
    padding: 14px 20px;
  }
}

/* === Модальные окна (Legal) === */
.modal--legal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal--legal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal--legal .modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 30, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal__content--scrollable {
  position: relative;
  background: #FFFFFF;
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  text-align: left;
}

.modal--legal.active .modal__content--scrollable {
  transform: translateY(0) scale(1);
}

/* Кастомный скроллбар для премиального вида */
.modal__content--scrollable::-webkit-scrollbar {
  width: 6px;
}
.modal__content--scrollable::-webkit-scrollbar-track {
  background: transparent;
}
.modal__content--scrollable::-webkit-scrollbar-thumb {
  background: rgba(184, 141, 86, 0.3);
  border-radius: 3px;
}
.modal__content--scrollable::-webkit-scrollbar-thumb:hover {
  background: rgba(184, 141, 86, 0.5);
}

.modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  border: none;
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal__close:hover {
  background: rgba(184, 141, 86, 0.1);
  color: var(--accent);
}

.modal__body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.modal__meta {
  font-size: 15px;
  color: rgba(32, 32, 32, 0.5);
  line-height: 1.6;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.modal__body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 16px;
}

.modal__body h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-top: 24px;
  margin-bottom: 8px;
}

.modal__body p,
.modal__body li {
  font-size: 15px;
  font-weight: 300;
  color: rgba(32, 32, 32, 0.7);
  line-height: 1.75;
  margin-bottom: 12px;
}

.modal__body ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.modal__body li {
  margin-bottom: 6px;
}

/* Адаптив для модального окна */
@media (max-width: 768px) {
  .modal__content--scrollable {
    width: 95%;
    max-height: 90vh;
    padding: 32px 24px;
    border-radius: 20px;
  }

  .modal__body h2 {
    font-size: 26px;
  }

  .modal__body h3 {
    font-size: 20px;
  }

  .modal__close {
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
  }
}
  .register-final__title {
    font-size: 34px;
  }

  .register-final__subtitle {
    font-size: 20px;
    margin-bottom: 48px;
  }
}

@media (max-width: 768px) {
  .register-final {
    padding: 80px 0 100px;
  }

  #register {
    padding-top: 100px !important;
    padding-bottom: 80px !important;
  }

  .register-final__title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .register-final__subtitle {
    font-size: 19px;
    margin-bottom: 48px;
  }

  .detail-card {
    padding: 24px 28px;
    min-width: auto;
  }

  .detail-card__value {
    font-size: 22px;
  }

  .register-final__form {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .register-final__input {
    padding: 20px 24px;
    font-size: 15px;
  }

  .register-final__btn {
    padding: 20px 36px;
    font-size: 15px;
  }

  .register-final__confirm {
    font-size: 14px;
  }

  .register-final__closing {
    padding-top: 36px;
  }

  .register-final__closing p {
    font-size: 20px;
  }

  .register-final__consents {
    padding: 18px 20px;
    gap: 16px;
  }

  .register-final__btn {
    max-width: 100%;
  }

  .register-final__details {
    max-width: 100%;
  }

  .detail-card {
    max-width: 100%;
  }
}

/* === FAQ обёртка — выравнивание по левому краю === */
.faq__wrapper {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.faq__wrapper .section__title {
  margin-bottom: 16px;
}

.faq__subtitle {
  font-size: 18px;
  font-weight: 300;
  color: rgba(32, 32, 32, 0.55);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
}

.faq__list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq__item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  text-align: left;
  transition: color 0.3s ease;
}

.faq__question:hover {
  color: var(--accent);
}

.faq__icon {
  flex-shrink: 0;
  transition: transform 0.4s ease;
  color: rgba(32, 32, 32, 0.4);
}

.faq__item.active .faq__icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 200px;
}

.faq__answer p {
  padding: 0 0 28px 0;
  font-size: 16px;
  font-weight: 300;
  color: rgba(32, 32, 32, 0.6);
  line-height: 1.75;
}

/* Финальный CTA */
.faq__closing {
  max-width: 700px;
  margin: 80px auto 0;
  text-align: center;
}

.faq__closing-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.faq__closing .btn {
  animation: none;
}

/* Анимация появления финального блока */
.faq__closing.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.faq__closing.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.faq__closing .btn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.faq__closing.revealed .btn {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .faq__subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .faq__closing {
    margin-top: 64px;
  }

  .faq__closing-text {
    font-size: 29px;
    margin-bottom: 28px;
  }
}

.footer {
  background: var(--dark);
  padding: 80px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer__col-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 16px;
}

.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
}

.footer__tagline {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  margin: 0 0 24px;
}

.footer__contacts-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 12px;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__contact-link {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__contact-link:hover {
  color: var(--accent);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__requisite {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 4px;
}

/* Юридические документы */
.footer__docs {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
}

.footer__docs-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 16px;
}

.footer__docs-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer__docs-links a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.footer__docs-links a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.footer__copy {
  padding-top: 0;
  border-top: none;
}

.footer__copy p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.25);
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s var(--elegant), transform 1s var(--elegant);
}

/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.08);
  padding: 24px 0;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cookie-banner__content {
  flex: 1;
  min-width: 0;
}

.cookie-banner__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.cookie-banner__text {
  font-size: 14px;
  font-weight: 300;
  color: rgba(32, 32, 32, 0.65);
  line-height: 1.6;
  margin: 0;
}

.cookie-banner__text--small {
  font-size: 13px;
  margin-top: 6px;
}

.cookie-banner__link {
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.cookie-banner__link:hover {
  border-bottom-color: var(--accent);
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 12px 22px;
  border-radius: 50px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cookie-banner__btn--accept {
  background: var(--accent);
  color: #fff;
}

.cookie-banner__btn--accept:hover {
  background: #a67a48;
  transform: translateY(-1px);
}

.cookie-banner__btn--necessary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.cookie-banner__btn--necessary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cookie-banner__btn--settings {
  background: transparent;
  color: rgba(32, 32, 32, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.cookie-banner__btn--settings:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.cookie-banner__btn--settings svg {
  width: 14px;
  height: 14px;
}

/* === Cookie Settings Modal === */
.cookie-settings__intro {
  font-size: 16px;
  color: rgba(32, 32, 32, 0.65);
  margin-bottom: 40px;
}

.cookie-settings__category {
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cookie-settings__category:first-of-type {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.cookie-settings__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.cookie-settings__title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: default;
}

.cookie-settings__label {
  cursor: pointer;
}

.cookie-settings__check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 6px;
  border: 1.5px solid rgba(184, 148, 91, 0.45);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.25s ease;
}

.cookie-settings__check--active {
  background: var(--accent);
  border-color: var(--accent);
}

.cookie-settings__input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
  margin: 0;
}

.cookie-settings__check-icon {
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.cookie-settings__input:checked + .cookie-settings__check-icon,
.cookie-settings__check--active .cookie-settings__check-icon {
  opacity: 1;
}

.cookie-settings__input:checked ~ .cookie-settings__check,
.cookie-settings__label:has(.cookie-settings__input:checked) .cookie-settings__check {
  background: var(--accent);
  border-color: var(--accent);
}

.cookie-settings__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.01em;
}

.cookie-settings__badge {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  padding: 4px 12px;
  background: rgba(184, 141, 86, 0.08);
  border-radius: 50px;
  letter-spacing: 0.02em;
}

.cookie-settings__desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(32, 32, 32, 0.6);
  line-height: 1.65;
  margin: 0;
  padding-left: 36px;
}

.cookie-settings__actions {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.cookie-settings__btn {
  width: 100%;
  max-width: 360px;
  padding: 18px 32px;
  font-size: 14px;
}

.cookie-settings__actions-secondary {
  display: flex;
  gap: 24px;
}

.cookie-settings__link-btn {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--accent);
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.2s ease;
}

.cookie-settings__link-btn:hover {
  background: rgba(184, 141, 86, 0.08);
}

.cookie-settings__link-btn--light {
  color: rgba(32, 32, 32, 0.5);
}

.cookie-settings__link-btn--light:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.04);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero__title {
    font-size: clamp(38px, 12vw, 56px);
  }

  .hero__subtitle {
    font-size: 20px;
  }

  .hero__body .btn {
    padding: 14px 32px;
    font-size: 14px;
  }

  .outcome {
    padding: 36px 28px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__docs-links {
    flex-direction: column;
    gap: 10px;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 0 20px;
  }

  .cookie-banner__actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cookie-banner__btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
  }

  .cookie-banner__title {
    font-size: 20px;
  }

  .cookie-settings__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .cookie-settings__desc {
    padding-left: 0;
  }

  .cookie-settings__actions-secondary {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .cookie-settings__link-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__body {
    padding: 60px 20px 0;
    gap: 16px;
    margin-bottom: 40px;
  }

  .section {
    padding: 72px 0;
  }

  .section__title {
  font-size: 27px;
  }

  .program__step {
    gap: 12px;
    padding: 32px 0;
  }

  .program__step-number {
    font-size: 28px;
    min-width: 40px;
  }

  .program__step-title {
    font-size: 20px;
  }
}

