:root {
  --bg: #001739;
  --surface: #ffffff;
  --primary: #ff6b00;
  --primary-dark: #d95400;
  --accent: #ff7a18;
  --text: #06142f;
  --muted: #536178;
  --border: #d7e0ec;
  --soft: #eef4fb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #f6f8fb;
  line-height: 1.6;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: var(--bg);
  border-bottom: 4px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 12px 34px rgba(0, 23, 57, 0.18);
}

.nav-wrap,
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
}

.site-nav a.active,
.site-nav a:hover {
  background: var(--primary);
  color: #ffffff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  color: inherit;
  text-decoration: none;
}

.brand:hover {
  opacity: 0.94;
}

.brand-logo {
  width: 210px;
  height: 210px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.brand h1 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.language-switch {
  display: inline-flex;
  padding: 0.25rem;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.78);
}

.lang-btn.active {
  background: white;
  color: var(--bg);
}

.hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, #001739 0%, #08234f 62%, #ff6b00 180%);
  color: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 3rem;
  align-items: center;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 1rem;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.two-column {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: bold;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.15rem;
  text-decoration: none;
  border-radius: 0.8rem;
  font-weight: 700;
}

.btn.primary {
  background: var(--primary);
  color: white;
}

.btn.secondary {
  background: white;
  color: var(--bg);
  border: 1px solid rgba(255, 107, 0, 0.28);
}

.contact-card,
.info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.section {
  padding: 4rem 0;
}

.photo-section {
  padding: 4rem 0;
  background: #ffffff;
}

.photo-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.photo-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.practice-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 1rem;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
}

.section.alt {
  background: #eaf1f8;
}

.section-title {
  font-size: 1.8rem;
  margin: 0 0 1.5rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.seo-block {
  max-width: 880px;
  margin-top: 1.4rem;
}

.seo-block h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.seo-block p {
  margin: 0;
  color: var(--muted);
}

.info-card,
.contact-card {
  padding: 1.25rem;
}

.check-list {
  padding-left: 1.1rem;
}

.contact-list {
  margin: 1rem 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.contact-list li + li {
  margin-top: 0.45rem;
}

.contact-link {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.contact-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

.contact-link-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.contact-link-icon img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: inline-block;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  margin: 0 0 1rem;
}

.form-success {
  display: none;
  margin: 0.2rem 0 0;
  padding: 0.85rem 1rem;
  border: 1px solid #9ad8b1;
  border-radius: 0.75rem;
  background: #e9f8ee;
  color: #176232;
  font-weight: 700;
}

.form-success:not([hidden]) {
  display: block;
}

.form-success.visible,
.form-success:target {
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.8rem 0.9rem;
  font: inherit;
  color: var(--text);
  background: #f8fbff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(255, 107, 0, 0.22);
  border-color: var(--primary);
}

.contact-form textarea {
  resize: vertical;
}

.page-hero {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(135deg, #001739 0%, #0a2858 72%, #ff6b00 185%);
  color: #ffffff;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.86);
}

.page-hero h2 {
  margin-bottom: 0.8rem;
}

.page-content {
  padding: 2rem 0 4rem;
}

.page-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  padding: 1.5rem;
}

.page-card p,
.page-card li {
  color: var(--muted);
}

.page-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 1rem;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.12);
}

.page-photo.wide {
  aspect-ratio: 16 / 7;
  margin-bottom: 1.5rem;
}

.page-photo.tall {
  aspect-ratio: 4 / 5;
}

.page-card .page-photo {
  margin-bottom: 1.25rem;
}

.privacy-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.site-footer {
  background: var(--bg);
  color: white;
  border-top: 4px solid var(--primary);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-link {
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.footer-link:hover,
.footer-link.active {
  text-decoration: underline;
}

@media (max-width: 800px) {
  .hero-grid,
  .two-column,
  .photo-feature,
  .cards,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrap,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .brand-logo {
    width: 170px;
    height: 170px;
  }

  .photo-stack {
    grid-template-columns: 1fr;
  }
}
