* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #050505;
  color: #fff;
  line-height: 1.45;
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

/* HEADER */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.12));
  backdrop-filter: blur(8px);
}

.header__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo__img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.logo__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  line-height: 1;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav__link {
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.nav__link:hover,
.nav__link:focus-visible {
  color: #cf9157;
  outline: none;
}

.lang-switcher,
.mobile-menu__langs {
  display: flex;
  gap: 6px;
}

.lang-btn {
  min-width: 42px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
}

.lang-btn:hover,
.lang-btn:focus-visible {
  background: rgba(207, 145, 87, 0.2);
  border-color: #cf9157;
  box-shadow: 0 0 0 3px rgba(207, 145, 87, 0.2);
  outline: none;
}

.lang-btn:active {
  transform: scale(0.96);
}

.lang-btn.active {
  background: #cf9157;
  border-color: #cf9157;
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 4px auto;
}

.mobile-menu {
  display: none;
}

/* UNIVERSAL INTERACTIVE */

.interactive-btn,
.hero__menu-btn,
.quote__btn,
.help__btn,
.rights__btn,
.contact__cta,
.contact__submit {
  transition:
    transform 0.18s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.interactive-btn:hover,
.hero__menu-btn:hover,
.quote__btn:hover,
.help__btn:hover,
.rights__btn:hover,
.contact__cta:hover,
.contact__submit:hover,
.interactive-btn:focus-visible,
.hero__menu-btn:focus-visible,
.quote__btn:focus-visible,
.help__btn:focus-visible,
.rights__btn:focus-visible,
.contact__cta:focus-visible,
.contact__submit:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  filter: brightness(1.05);
  outline: none;
}

.interactive-btn:active,
.hero__menu-btn:active,
.quote__btn:active,
.help__btn:active,
.rights__btn:active,
.contact__cta:active,
.contact__submit:active {
  transform: translateY(0) scale(0.98);
}

/* HERO */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero__left {
  background: #054c3b;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 56px 60px;
}

.hero__content {
  width: 100%;
  max-width: 430px;
  text-align: center;
}

.hero__year {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 24px;
  font-size: 18px;
  letter-spacing: 0.14em;
}

.shield {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 5vw, 76px);
  line-height: 0.9;
  font-weight: 600;
  margin-bottom: 14px;
}

.hero__subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: 0.18em;
  margin-bottom: 42px;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__menu-btn {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #cf9157;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hero__menu-btn:hover,
.hero__menu-btn:focus-visible {
  background: #dea26b;
}

.hero__right {
  position: relative;
}

.hero__statue {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

/* ABOUT */

.about {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.about__bg,
.about__bg img,
.about__overlay {
  position: absolute;
  inset: 0;
}

.about__bg img {
  object-fit: cover;
}

.about__overlay {
  background: rgba(0, 0, 0, 0.38);
}

.about__inner {
  position: relative;
  z-index: 2;
  padding: 86px 0 80px;
}

.about__heading {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 34px;
}

.about__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 4vw, 64px);
  line-height: 0.95;
  font-weight: 500;
}

.about__num {
  min-width: 34px;
  height: 34px;
  background: #cf9157;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.about__num--main {
  margin-top: 8px;
}

.about__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 52px;
}

.about__col {
  font-size: 18px;
  line-height: 1.5;
  max-width: 320px;
}

.about__col--with-num {
  padding-top: 124px;
}

/* QUOTE */

.quote {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #000;
}

.quote__left {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 56px;
}

.quote__content {
  max-width: 520px;
  text-align: center;
}

.quote__text {
  font-size: clamp(28px, 2.6vw, 48px);
  line-height: 1.28;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.quote__author {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  text-transform: uppercase;
  margin-bottom: 34px;
}

.quote__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: #fff;
}

.quote__btn:hover,
.quote__btn:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.quote__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HELP */

.help {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

.help__half {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
}

.help__half--left {
  left: 0;
}

.help__half--right {
  right: 0;
}

.help__half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.help__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.16);
}

.help__content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  max-width: 760px;
  margin: 0 auto;
  padding: 110px 24px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.help__title {
  font-size: clamp(58px, 6vw, 88px);
  line-height: 0.95;
  font-weight: 400;
  margin-bottom: 20px;
}

.help__text {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
  text-transform: uppercase;
  max-width: 690px;
}

.help__actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.help__btn {
  min-width: 250px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.help__btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.05);
}

.help__btn--outline:hover,
.help__btn--outline:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.help__btn--solid {
  background: #dce9ff;
  color: #1e2b54;
  border: 2px solid #3f4da0;
  font-weight: 600;
}

.help__btn--solid:hover,
.help__btn--solid:focus-visible {
  background: #eef5ff;
}

/* RIGHTS */

.rights {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.rights__bg,
.rights__bg img,
.rights__overlay {
  position: absolute;
  inset: 0;
}

.rights__bg img {
  object-fit: cover;
}

.rights__overlay {
  background: rgba(0, 0, 0, 0.46);
}

.rights__content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 110px;
  padding-bottom: 60px;
}

.rights__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.rights__logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.rights__title {
  font-size: clamp(60px, 6vw, 86px);
  line-height: 0.96;
  font-weight: 400;
  margin-bottom: 18px;
  max-width: 720px;
}

.rights__subtitle {
  font-size: 22px;
  line-height: 1.4;
  max-width: 680px;
}

.rights__actions {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rights__btn {
  min-width: 320px;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rights__btn--outline {
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  border-radius: 999px;
}

.rights__btn--outline:hover,
.rights__btn--outline:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.rights__btn--solid {
  background: #cfe4ff;
  color: #102347;
  border: 2px solid #29489f;
  font-weight: 700;
  border-radius: 16px;
}

.rights__btn--solid:hover,
.rights__btn--solid:focus-visible {
  background: #e8f2ff;
}

/* CONTACT */

.contact {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.contact__bg,
.contact__bg img,
.contact__overlay {
  position: absolute;
  inset: 0;
}

.contact__bg img {
  object-fit: cover;
  filter: grayscale(1);
}

.contact__overlay {
  background: rgba(0, 0, 0, 0.26);
}

.contact__content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding-top: 110px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}

.contact__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 5vw, 78px);
  line-height: 0.95;
  max-width: 430px;
  margin-bottom: 44px;
}

.contact__details {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  margin-bottom: 40px;
  max-width: 760px;
}

.contact__col h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.contact__col p {
  font-size: 18px;
  line-height: 1.55;
}

.contact__buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.contact__cta {
  min-width: 244px;
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact__cta--yellow {
  background: #ffd400;
  color: #111;
}

.contact__cta--yellow:hover,
.contact__cta--yellow:focus-visible {
  background: #ffe14a;
}

.contact__cta--orange {
  background: #ff6a00;
  color: #fff;
  border: 2px solid #284bb0;
}

.contact__cta--orange:hover,
.contact__cta--orange:focus-visible {
  background: #ff7e26;
}

.contact__right {
  background: rgba(0, 0, 0, 0.42);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
}

.contact__form-title {
  font-size: 30px;
  margin-bottom: 18px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 15px;
}

.form-group input {
  height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 15, 15, 0.92);
  color: #fff;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-group textarea {
  min-height: 120px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 15, 15, 0.92);
  color: #fff;
  outline: none;
  resize: vertical;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group textarea:focus {
  border-color: #cf9157;
  box-shadow: 0 0 0 3px rgba(207, 145, 87, 0.2);
}

.form-group input:focus {
  border-color: #cf9157;
  box-shadow: 0 0 0 3px rgba(207, 145, 87, 0.2);
}

.contact__submit {
  min-height: 56px;
  border: 0;
  background: #cf9157;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 220px;
}

.contact__submit:hover,
.contact__submit:focus-visible {
  background: #dea26b;
}

.form-message {
  min-height: 22px;
  font-size: 14px;
  color: #cf9157;
}

/* MOBILE */

@media (max-width: 1100px) {
  .about__cols,
  .quote,
  .contact__content,
  .contact__details {
    grid-template-columns: 1fr;
  }

  .about__col,
  .contact__title {
    max-width: none;
  }

  .quote__right {
    min-height: 480px;
  }

  .contact__right {
    max-width: 520px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, 1200px);
  }

  .nav,
  .header .lang-switcher {
    display: none;
  }

  .burger {
    display: block;
  }

  .mobile-menu {
    display: none;
    padding: 0 16px 20px;
    background: rgba(0, 0, 0, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-menu.active {
    display: block;
  }

  .mobile-menu__link {
    display: block;
    padding: 14px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-menu__langs {
    margin-top: 16px;
  }

  .hero,
  .quote {
    grid-template-columns: 1fr;
  }

  .hero__left {
    padding: 104px 30px 54px;
  }

  .hero__right {
    min-height: 420px;
  }

  .about__inner {
    padding: 84px 0 72px;
  }

  .about__heading {
    align-items: center;
    margin-bottom: 28px;
  }

  .about__cols {
    gap: 34px;
  }

  .about__col--with-num {
    padding-top: 0;
  }

  .about__num--main {
    margin-top: 0;
  }

  .quote__left {
    padding: 70px 28px 46px;
  }

  .quote__text {
    font-size: 34px;
  }

  .quote__right {
    min-height: 420px;
  }

  .help__content,
  .rights__content,
  .contact__content {
    padding-top: 100px;
  }
}

@media (max-width: 560px) {
  .header__inner {
    min-height: 74px;
  }

  .logo__img {
    width: 30px;
    height: 30px;
  }

  .logo__text {
    font-size: 18px;
  }

  .hero__year {
    font-size: 15px;
    gap: 12px;
  }

  .shield {
    width: 44px;
    height: 44px;
  }

  .hero__menu-btn {
    min-height: 56px;
    font-size: 18px;
  }

  .about__heading {
    gap: 12px;
  }

  .about__num,
  .about__num--main {
    min-width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .about__col {
    font-size: 16px;
  }

  .quote__author {
    font-size: 18px;
  }

  .help__text {
    font-size: 18px;
  }

  .help__actions,
  .contact__buttons {
    width: 100%;
    flex-direction: column;
  }

  .help__btn,
  .contact__cta,
  .rights__btn {
    width: 100%;
    min-width: 0;
  }

  .rights__title {
    font-size: 54px;
  }

  .rights__subtitle,
  .contact__col p {
    font-size: 17px;
  }

  .contact__right {
    padding: 22px;
  }

  .contact__submit {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .about {
    min-height: auto;
  }

  .about__bg {
    position: absolute;
    inset: 0;
  }

  .about__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .about__overlay {
    background: rgba(0, 0, 0, 0.48);
  }

  .about__inner {
    padding: 88px 0 40px;
  }

  .about__heading {
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
  }

  .about__num--main {
    margin-top: 0;
  }

  .about__title {
    font-size: 28px;
    line-height: 1;
  }

  .about__cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about__col {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.45;
  }

  .about__col--with-num {
    padding-top: 0;
  }

  .about__num {
    min-width: 28px;
    height: 28px;
    font-size: 15px;
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .quote {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .quote__left {
    padding: 72px 20px 28px;
  }

  .quote__content {
    max-width: 100%;
  }

  .quote__text {
    font-size: 22px;
    line-height: 1.28;
    margin-bottom: 18px;
  }

  .quote__author {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .quote__btn {
    min-width: 200px;
    min-height: 44px;
    font-size: 14px;
  }

  .quote__right {
    min-height: auto;
  }

  .quote__right img {
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: cover;
    object-position: center top;
  }
}
@media (max-width: 768px) {
  .help {
    min-height: 78vh;
  }

  .help__half {
    width: 50%;
  }

  .help__half img {
    object-fit: cover;
    object-position: center top;
  }

  .help__overlay {
    background: rgba(0, 0, 0, 0.28);
  }

  .help__content {
    min-height: 78vh;
    max-width: 100%;
    padding: 82px 18px 24px;
    justify-content: center;
  }

  .help__title {
    font-size: 30px;
    line-height: 1.02;
    margin-bottom: 14px;
    max-width: 320px;
  }

  .help__text {
    font-size: 13px;
    line-height: 1.3;
    max-width: 92%;
  }
}

@media (max-width: 480px) {
  .help {
    min-height: 72vh;
  }

  .help__content {
    min-height: 72vh;
    padding: 76px 14px 20px;
  }

  .help__title {
    font-size: 26px;
    max-width: 280px;
  }

  .help__text {
    font-size: 12px;
    line-height: 1.28;
    max-width: 95%;
  }
}
@media (max-width: 768px) {
  .rights {
    min-height: 70vh;
    text-align: center;
  }

  .rights__inner {
    padding: 90px 20px 40px;
    align-items: center;
  }

  .rights__title {
    font-size: 30px;
    line-height: 1.05;
    margin-bottom: 12px;
  }

  .rights__text {
    font-size: 14px;
    line-height: 1.4;
    max-width: 320px;
    margin: 0 auto 20px;
  }

  .rights__actions {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .rights__btn {
    width: 100%;
    max-width: 260px;
    height: 46px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .rights {
    position: relative;
    min-height: 100vh;
  }

  .rights__bg,
  .rights__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .rights__bg img {
    object-fit: cover;
    object-position: center center;
  }

  .rights__inner {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .contact {
    min-height: auto;
    position: relative;
  }

  .contact__bg,
  .contact__bg img,
  .contact__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .contact__bg img {
    object-fit: cover;
    object-position: center center;
  }

  .contact__overlay {
    background: rgba(0, 0, 0, 0.42);
  }

  .contact__content {
    position: relative;
    z-index: 2;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 88px;
    padding-bottom: 32px;
    align-items: start;
  }

  .contact__title {
    font-size: 30px;
    line-height: 1.02;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .contact__details {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 0;
    max-width: 100%;
  }

  .contact__col h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .contact__col p {
    font-size: 14px;
    line-height: 1.45;
  }

  .contact__right {
    width: 100%;
    max-width: 100%;
    padding: 18px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .contact__form-title {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .contact-form {
    gap: 12px;
  }

  .form-group {
    gap: 6px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group input {
    height: 44px;
    font-size: 14px;
  }

  .form-group textarea {
    min-height: 84px;
    font-size: 14px;
  }

  .contact__submit {
    width: 100%;
    min-height: 46px;
    font-size: 15px;
  }

  .form-message {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .contact__title {
    font-size: 26px;
  }

  .contact__right {
    padding: 16px;
  }

  .form-group input {
    height: 42px;
  }

  .form-group textarea {
    min-height: 76px;
  }
}
@media (max-width: 768px) {
  .contact__right {
    max-width: 420px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .contact__content {
    padding-top: 100px;
  }
}
.contact__submit {
  transition: all 0.2s ease;
}

.contact__submit:active {
  transform: scale(0.97);
}

.contact__submit:hover {
  background: #d89b5a;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}