:root {
  --primary: #1173d4;
  --gold: #c5a059;
  --bg: #101922;
  --navy: #0a1118;
  --white: #ffffff;
  --muted: rgba(148, 163, 184, 0.95);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  min-width: 0;
}

html {
  width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  width: 100%;
  min-height: 100dvh;
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family:
    "Public Sans",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.bg-background-dark.font-display.text-white.antialiased {
  overflow-y: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

main,
section,
.section,
.section-container,
.contact-grid,
.contact-info,
.contact-form-card,
.footer-container,
.site-footer {
  overflow: visible;
}

.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 300,
    "GRAD" 0,
    "opsz" 24;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 17, 24, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);

  &:hover {
    .header-logo {
      img {
        transform: rotate(360deg);
      }
    }
  }
}

.header-container {
  width: 100%;
  max-width: 1800px;
  height: 72px;
  margin: 0 auto;
  padding: 0 clamp(12px, 3vw, 24px);
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-logo {
  flex-shrink: 0;

  img {
    height: clamp(48px, 12vw, 70px);
    width: auto;
    margin-top: 0;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
    transition: transform 0.6s ease;
  }
}

.header-brand {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  margin: 0;
  font-size: clamp(0.82rem, 3vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-accent {
  color: var(--gold);
}

.brand-subtitle {
  margin: 4px 0 0;
  color: var(--gold);
  font-size: clamp(0.56rem, 2.3vw, 0.7rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-nav {
  display: none;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.nav-link {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s ease;

  &:hover {
    color: var(--gold);
  }
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s ease;

  &:hover {
    background: rgba(255, 255, 255, 0.95);
  }
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  &:hover {
    background: rgba(255, 255, 255, 0.06);
  }
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 18px 24px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 17, 24, 0.98);

  &.is-open {
    display: flex;
  }
}

.mobile-link {
  padding: 10px 0;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  &:hover {
    color: var(--gold);
  }
}

.mobile-cta {
  margin-top: 8px;
  padding: 14px;
  border-radius: 12px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.hero-section {
  position: relative;
  min-height: 480px;
  height: auto;
  padding: 54px 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 17, 24, 0.94) 0%,
    rgba(10, 17, 24, 0.72) 58%,
    rgba(10, 17, 24, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1215px;
  min-height: inherit;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-line {
  width: 80px;
  height: 4px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--gold);
}

.hero-title {
  margin: 0 0 20px;
  font-size: clamp(2.3rem, 10vw, 4.4rem);
  font-weight: 900;
  line-height: 1.05;
}

.hero-title-accent {
  color: var(--gold);
}

.hero-text {
  max-width: 680px;
  margin: 0 0 28px;
  color: rgba(203, 213, 225, 0.9);
  font-size: clamp(0.98rem, 2.2vw, 1.15rem);
  font-weight: 300;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  width: 100%;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    opacity 0.18s ease;

  &:active {
    transform: translateY(1px);
  }
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 18px 50px rgba(17, 115, 212, 0.22);

  &:hover {
    opacity: 0.95;
  }
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);

  &:hover {
    background: rgba(255, 255, 255, 0.08);
  }
}

.section {
  padding: 72px 0;
}

.section-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
}

.section-dark {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-base {
  background: var(--bg);
}

.section-header {
  margin-bottom: 38px;

  &.center {
    text-align: center;

    .section-divider {
      margin-left: auto;
      margin-right: auto;
    }
  }
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 7vw, 2.4rem);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.section-divider {
  width: 96px;
  height: 2px;
  margin: auto;
  border-radius: 999px;
  background: var(--gold);

  &.left {
    margin-left: 0;
  }
}

.section-subtitle {
  max-width: 720px;
  margin: 18px auto 0;
  color: rgba(148, 163, 184, 0.9);
  line-height: 1.7;
}

.cards-grid,
.areas-grid,
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.info-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;

  &:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
  }
}

.info-icon {
  margin-bottom: 18px;
  color: var(--gold);

  .material-symbols-outlined {
    font-size: 46px;
  }
}

.info-title {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 900;
}

.info-text {
  margin: 0;
  color: rgba(148, 163, 184, 0.92);
  font-size: 0.92rem;
  line-height: 1.7;
}

.area-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;

  &:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);

    .area-image {
      img {
        transform: scale(1.06);
        filter: grayscale(0%);
      }
    }
  }
}

.area-title {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 900;
}

.area-text {
  margin: 0;
  color: rgba(148, 163, 184, 0.92);
  font-size: 0.95rem;
  line-height: 1.7;
}

.area-image {
  width: 100%;
  height: clamp(170px, 52vw, 240px);
  margin-bottom: 16px;
  border-radius: 14px;
  overflow: hidden;
  object-position: center top;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.05);
    transition:
      transform 0.4s ease,
      filter 0.4s ease;
  }
}

.team-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.team-photo {
  height: 180px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.team-name {
  margin: 0 0 6px;
  font-weight: 900;
}

.team-role {
  margin: 0;
  color: rgba(148, 163, 184, 0.92);
  font-size: 0.95rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.about-text {
  .section-divider {
    margin-bottom: 16px;
  }

  p {
    margin: 0 0 14px;
    color: rgba(203, 213, 225, 0.9);
    font-size: 1rem;
    line-height: 1.75;
  }
}

.about-image {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);

  img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease;
  }

  &:hover {
    img {
      transform: scale(1.04);
    }
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.contact-text {
  margin: 16px 0 18px;
  color: rgba(203, 213, 225, 0.9);
  line-height: 1.7;
}

.contact-list {
  margin: 0;
  padding: 0;
  color: rgba(203, 213, 225, 0.9);
  line-height: 2;
  list-style: none;
}

.contact-form-card {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.contact-form {
  display: grid;
  gap: 12px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  outline: none;
  background: rgba(255, 255, 255, 0.95);
  color: #0a1118;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;

  &::placeholder {
    color: rgba(75, 85, 99, 0.85);
  }

  &:focus {
    border-color: rgba(197, 160, 89, 0.55);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.12);
  }
}

.form-textarea {
  min-height: 120px;
  max-height: 220px;
  resize: vertical;
  overflow-y: auto;
}

.form-submit {
  margin-top: 6px;
  padding: 14px;
  border: 0;
  border-radius: 12px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.18s ease,
    transform 0.18s ease;

  &:hover {
    background: rgba(255, 255, 255, 0.95);
  }

  &:active {
    transform: translateY(1px);
  }
}

.map-card {
  margin-top: 22px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.map-embed {
  width: 100%;
  height: 240px;
  border-radius: 14px;
  overflow: hidden;

  iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }
}

.site-footer {
  margin-top: 40px;
  padding: 64px 0 0;
  border-top: 1px solid rgba(197, 160, 89, 1);
  background: var(--navy);
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.footer-logo {
  width: auto;
  height: 130px;
  margin-bottom: 14px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.footer-title {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-text {
  margin: 0 0 10px;
  color: rgba(148, 163, 184, 0.85);
  line-height: 1.7;
}

.footer-link {
  display: block;
  margin: 10px 0;
  color: rgba(148, 163, 184, 0.85);
  transition: color 0.2s ease;

  &:hover {
    color: var(--gold);
  }
}

.footer-accent {
  margin: 10px 0 0;
  color: var(--gold);
  font-weight: 800;
}

.footer-contact-list {
  margin: 0;
  padding: 0;
  color: rgba(148, 163, 184, 0.85);
  font-size: 0.9rem;
  line-height: 1.8;
  list-style: none;

  li {
    margin-bottom: 12px;
  }

  strong {
    color: #ffffff;
    font-weight: 700;
  }
}

.footer-bottom {
  margin-top: 38px;
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #c39e58;
  font-size: 0.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.instagram-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;

  img {
    width: 16px;
    height: 16px;
  }

  &:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
  }

  &:active {
    transform: translateY(0);
  }
}

.footer-bottom {
  .instagram-btn {
    width: 42px;
    height: 42px;
  }
}

@media (min-width: 521px) {
  .btn {
    width: auto;
  }

  .hero-section {
    min-height: 540px;
  }

  .map-embed {
    height: 320px;
  }
}

@media (min-width: 701px) {
  .cards-grid,
  .areas-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 901px) {
  .header-container {
    height: 80px;
    gap: 18px;
  }

  .header-logo {
    img {
      height: 78px;
    }
  }

  .header-nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .brand-name {
    letter-spacing: 0.14em;
  }

  .brand-subtitle {
    letter-spacing: 0.3em;
  }

  .hero-section {
    height: min(85vh, 860px);
    min-height: 600px;
    padding: 0;
  }

  .hero-overlay {
    background: linear-gradient(
      to right,
      rgba(10, 17, 24, 0.92) 0%,
      rgba(10, 17, 24, 0.55) 55%,
      rgba(10, 17, 24, 0.1) 100%
    );
  }

  .section {
    padding: 96px 0;
  }

  .section-header {
    margin-bottom: 52px;
  }

  .about-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
  }

  .about-image {
    img {
      height: 520px;
    }
  }

  .contact-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .contact-form-card {
    margin-top: 84px;
    padding: 28px;
  }
}

@media (min-width: 1051px) {
  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .areas-grid,
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-container {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

@media (min-width: 1201px) {
  .cards-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-logo {
    height: 153px;
  }
}
message.txt
17 KB