:root {
  --navy: #050a2f;
  --navy-soft: #0b1248;
  --ink: #252733;
  --muted: #727789;
  --line: #e7e9f0;
  --paper: #ffffff;
  --mist: #f6f7fb;
  --accent: #2daaa0;
  --lavender: #eef0ff;
  --radius: 8px;
  --shadow: 0 18px 44px rgba(5, 10, 47, 0.12);
  --header: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--header);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 210px;
}

.brand img {
  width: 220px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #1e1f28;
  font-size: 15px;
  font-weight: 500;
}

.nav-list > li {
  position: relative;
}

.nav-link,
.dropdown-trigger,
.lang-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-link:hover,
.dropdown-trigger:hover,
.lang-link:hover {
  color: var(--navy);
}

.dropdown-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  width: 410px;
  margin: 0;
  padding: 34px 42px;
  list-style: none;
  color: #ffffff;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(5, 10, 47, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 11px 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.35;
}

.dropdown-menu a:hover {
  color: #dfe3ff;
}

.flag {
  font-size: 23px;
  line-height: 1;
}

.hero {
  min-height: calc(100svh - var(--header) - 92px);
  display: grid;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(5, 10, 47, 0.88), rgba(5, 10, 47, 0.58) 45%, rgba(5, 10, 47, 0.24)),
    url("../images/hero.jpg") center 28% / cover no-repeat;
}

.hero-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero-content {
  width: min(640px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 13px;
  color: var(--navy);
  background: #ffffff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 900;
}

.hero p {
  width: min(560px, 100%);
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(19px, 2.4vw, 30px);
  line-height: 1.35;
  font-weight: 300;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  color: #ffffff;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(5, 10, 47, 0.18);
}

.btn-light {
  color: var(--navy);
  background: #ffffff;
  border-color: #ffffff;
}

.btn-outline {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.56);
}

.section {
  padding: 86px 0;
}

.section-soft {
  background: var(--mist);
}

.section-head {
  width: min(760px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-head h2 {
  margin: 15px 0 12px;
  color: #2b2d38;
  font-size: clamp(31px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.visual-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--navy);
  border-radius: 11px;
  box-shadow: 0 16px 30px rgba(5, 10, 47, 0.12);
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.translated-title {
  position: absolute;
  top: 8%;
  right: 6%;
  display: none;
  align-items: center;
  justify-content: center;
  width: 50%;
  min-height: 22%;
  padding: 10px;
  color: #ffffff;
  background: var(--navy);
  border: 2px solid rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 2.1vw, 27px);
  line-height: 1.08;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.page-en .translated-title {
  display: flex;
}

.about-band {
  color: #ffffff;
  background: var(--navy);
}

.about-band-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 78px;
  align-items: center;
}

.strategy-frame {
  width: min(420px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.script-title {
  display: block;
  color: var(--accent);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
}

.about-band h2 {
  margin: 6px 0 18px;
  font-size: clamp(30px, 4vw, 43px);
  line-height: 1.16;
}

.about-band p {
  color: rgba(255, 255, 255, 0.78);
}

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

.feature-card,
.service-detail,
.training-card,
.contact-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(5, 10, 47, 0.05);
}

.feature-card {
  min-height: 132px;
  padding: 26px;
}

.feature-card h3,
.service-detail h3,
.training-copy h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
}

.feature-card p,
.service-detail p,
.training-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.service-detail {
  overflow: hidden;
}

.service-detail img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
}

.service-detail-body {
  padding: 26px;
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 24px;
  color: #555b6e;
  font-size: 14px;
  line-height: 1.45;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 0 4px var(--lavender);
}

.profile-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.profile-photo-wrap {
  position: relative;
  width: min(430px, 100%);
  margin: 0 auto;
  padding: 0 0 28px 28px;
}

.profile-photo-wrap::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 86px;
  background: var(--navy);
  border-radius: 9px;
}

.profile-photo-wrap img {
  position: relative;
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.profile-copy h2,
.long-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(31px, 4vw, 45px);
  line-height: 1.12;
}

.profile-copy p,
.long-copy p {
  color: #5e6475;
}

.pill-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3b4050;
  font-weight: 700;
}

.pill-list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  color: #ffffff;
  background: var(--navy);
  border-radius: 50%;
  font-size: 12px;
}

.long-copy {
  width: min(930px, 100%);
  margin: 0 auto;
}

.quote-box {
  margin-top: 30px;
  padding: 28px;
  color: #ffffff;
  background: var(--navy);
  border-radius: var(--radius);
}

.quote-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.quote-box strong {
  display: block;
  margin-top: 18px;
  color: #ffffff;
}

.training-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  align-items: start;
}

.training-visual {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.training-copy {
  display: grid;
  gap: 18px;
}

.training-card {
  padding: 24px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.video-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(5, 10, 47, 0.06);
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 13;
  background: var(--navy);
  object-fit: cover;
}

.video-card h3 {
  margin: 0;
  padding: 16px 18px 18px;
  font-size: 16px;
  line-height: 1.3;
}

.contact-section {
  background: var(--mist);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 58px;
  align-items: center;
}

.instagram-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 43px);
  line-height: 1.15;
}

.instagram-copy p {
  color: var(--muted);
}

.contact-links {
  display: grid;
  gap: 8px;
  margin: 18px 0 26px;
  color: var(--navy);
  font-weight: 700;
}

.instagram-frame {
  width: min(345px, 100%);
  margin-top: 24px;
  padding: 0 0 20px 24px;
  border-radius: 8px;
  background: linear-gradient(180deg, transparent 44%, var(--navy) 44%);
}

.instagram-frame img {
  width: 100%;
}

.contact-card {
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 22px 24px;
}

.form-group {
  display: grid;
  align-content: start;
  gap: 9px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label,
.field-title {
  color: #2f3342;
  font-size: 13px;
  font-weight: 800;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-control {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  color: var(--ink);
  background: #f8f9fc;
  border: 1px solid transparent;
  border-radius: 8px;
  outline: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

textarea.form-control {
  height: 225px;
  min-height: 225px;
  padding-top: 14px;
  resize: vertical;
}

.form-stack {
  gap: 13px;
}

.form-control:focus {
  background: #ffffff;
  border-color: var(--navy);
}

.check-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #656b7d;
  font-size: 13px;
  line-height: 1.45;
}

.check-line input {
  margin-top: 4px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.form-alert {
  margin: 0 0 20px;
  padding: 13px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.form-alert.success {
  color: #0d5f3d;
  background: #e8f7ef;
}

.form-alert.error {
  color: #8b1d1d;
  background: #fdeaea;
}

.site-footer {
  color: #ffffff;
  background: var(--navy);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 44px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-logo {
  width: 260px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.language-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 12px 0;
  color: #495067;
  background: #ffffff;
  font-size: 13px;
}

.language-row a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    inset: var(--header) 0 auto 0;
    max-height: calc(100svh - var(--header));
    overflow: auto;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 44px rgba(5, 10, 47, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .nav-open .nav-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-list {
    display: grid;
    gap: 0;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 22px 0 28px;
  }

  .nav-list > li {
    border-bottom: 1px solid var(--line);
  }

  .nav-link,
  .dropdown-trigger,
  .lang-link {
    width: 100%;
    justify-content: space-between;
    min-height: 54px;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    padding: 0 0 16px 18px;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown-menu a {
    color: var(--navy);
    font-size: 18px;
  }

  .visual-grid,
  .feature-grid,
  .services-detail-grid,
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-band-grid,
  .profile-grid,
  .training-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 720px) {
  :root {
    --header: 68px;
  }

  .container,
  .hero-inner {
    width: min(100% - 28px, 1120px);
  }

  .brand img {
    width: 176px;
  }

  .hero {
    min-height: calc(100svh - var(--header) - 72px);
    background:
      linear-gradient(180deg, rgba(5, 10, 47, 0.88), rgba(5, 10, 47, 0.45)),
      url("../images/hero.jpg") center top / cover no-repeat;
  }

  .hero-inner {
    padding: 64px 0;
  }

  .section {
    padding: 64px 0;
  }

  .visual-grid,
  .feature-grid,
  .services-detail-grid,
  .video-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .visual-grid {
    gap: 16px;
  }

  .translated-title {
    font-size: 23px;
  }

  .profile-photo-wrap {
    padding-left: 18px;
  }

  .contact-card {
    padding: 22px;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-contact {
    display: grid;
    gap: 8px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 36px;
  }

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

  .section-head h2,
  .profile-copy h2,
  .long-copy h2,
  .instagram-copy h2 {
    font-size: 30px;
  }

  .button-row,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
