@font-face {
  font-family: "GrosVentre";
  src: url("/static/GrosVentre-Regular.woff2.ttf") format("truetype");
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= BASE ================= */
html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: "GrosVentre", sans-serif;
  color: #4a4a4a;
  overflow-x: hidden;
}

/* ================= BACKGROUND ================= */
.background {
  position: fixed;
  inset: 0;
  background: url("/static/sand.gif.webp") center top / cover no-repeat;
  z-index: -2;
}

.about-background {
  position: fixed;
  inset: 0;
  background: url("/static/fon1.png") center center / cover no-repeat;
  z-index: -2;
}

.coverage-background {
  position: fixed;
  inset: 0;
  background: url("/static/fon2.png") center center / cover no-repeat;
  z-index: -2;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.35);
  z-index: -1;
}

/* ================= NAV ================= */
.header {
  padding-top: 32px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.nav a {
  font-size: 16px;
  letter-spacing: 0.3em;
  text-decoration: none;
  color: #5a5a5a;
}

.nav a.active {
  color: #2f2f2f;
}

/* ================= HOME ================= */
.home-hero {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero-logo {
  width: 560px;
  max-width: 92%;
  margin-bottom: 36px;
}

.hero-text {
  width: 560px;
  max-width: 92%;
  margin: 0 auto;
}

.hero-text,
.hero-text span {
  font-family: "GrosVentre", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 19px;
  line-height: 26px;
  letter-spacing: 0.26em;
  font-weight: 300;
  color: rgba(0,0,0,0.42);
}

.hero-text span {
  margin-top: 16px;
}

/* ================= ABOUT ================= */
.about-page {
  width: 100%;
  min-height: 100vh;
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  column-gap: 48px;
  align-items: start;

  padding-top: 120px;
}

.about-image {
  display: flex;
  justify-content: flex-end;
}

.about-image img {
  width: 100%;
  max-width: 360px;
  max-height: 520px;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.95;
}

.about-content {
  font-family: "Inter", sans-serif;
  padding-top: 6px;
}

.about-content h2 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
}

.about-content .role {
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  margin-bottom: 26px;
}

.about-content p {
  font-size: 18.5px;
  line-height: 32px;
  color: rgba(0,0,0,0.6);
  max-width: 760px;
  margin-bottom: 52px;
}

.about-content .closing {
  margin-top: 76px;
  font-size: 16px;
  letter-spacing: 0.18em;
  color: rgba(0,0,0,0.45);
}

/* ================= COVERAGE ================= */
.coverage-page {
  padding-top: 80px;
  padding-left: 250px;   /* ← ВАЖНО */
  padding-right: 0;
}


.coverage-content {
  width: 920px;        /* ← РЕАЛЬНАЯ ширина квадрата в PNG */
  max-width: 920px;

  font-family: "GrosVentre", "Inter", "Helvetica Neue", Arial, sans-serif;
}


.coverage-content p {
  font-size: 16px;
  line-height: 25px;
  color: rgba(0,0,0,0.65);
  margin-bottom: 26px;
}

.coverage-content h3 {
  margin-top: 16px;
  margin-bottom: 24px;

  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(0,0,0,0.75);
}

.coverage-list {
  list-style: none;
  padding: 0;
}

.coverage-list li {
  font-size: 16px;
  line-height: 28px;
  color: rgba(0,0,0,0.6);
  margin-bottom: 14px;
  padding-left: 14px;
  position: relative;
}

.coverage-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(0,0,0,0.35);
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .coverage-page {
    padding: 100px 24px;
  }
}

/* ================= CONTACT ================= */

.contact-background {
  position: fixed;
  inset: 0;
  background: url("/static/fon3.png") center center / cover no-repeat;
  z-index: -2;
  pointer-events: none; /* ← ВОТ ОНО */
}


.contact-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-left: 50%;
  transform: translateY(-2%);
}


/* текстовый блок */
.contact-content {
  font-family: "GrosVentre", "Inter", "Helvetica Neue", Arial, sans-serif;
  max-width: 700px;
  color: rgba(0, 0, 0, 0.55);
}


/* строки контактов */
.contact-content p {
  font-size: 50px;
  line-height: 50px;
  margin-bottom: 80px;
  font-weight: 400;
}

/* первая строка (адрес) — чуть акцентнее */
.contact-content p:first-child {
  font-size: 55px;
  line-height: 50px;
  margin-bottom: 50px;
}

/* ссылки без акцента */
.contact-content a {
  color: inherit;
  text-decoration: none;
}

/* футер */
.contact-footer {
  position: fixed;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);

  font-size: 14px;
  letter-spacing: 0.14em;
  color: rgba(0, 0, 0, 0.45);
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
  .contact-page {
    padding-left: 24px;
    padding-right: 24px;
    transform: none;
  }

  .contact-content {
    max-width: 100%;
  }

  .contact-content p {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 26px;
  }

  .contact-content p:first-child {
    font-size: 22px;
    line-height: 34px;
  }
}

.header {
  position: relative;
  z-index: 1000;
}

.contact-page {
  pointer-events: none;
}

.contact-content {
  pointer-events: auto;
}

/* =====================================================
   MOBILE ONLY — PHONE (DESKTOP НЕ ТРОГАЕМ)
   ===================================================== */
@media (max-width: 768px) {

  /* ---------- NAV ---------- */
  .header {
    padding-top: 20px;
  }

  .nav {
    gap: 22px;
    flex-wrap: wrap;
  }

  .nav a {
    font-size: 12px;
    letter-spacing: 0.22em;
  }

  /* ---------- GLOBAL TEXT CONTAINER ---------- */
  body {
    overflow-x: hidden;
  }

  main {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* =====================================================
     HOME
     ===================================================== */
  .home-hero {
    position: static;
    transform: none;
    margin-top: 120px;
    text-align: center;
  }

  .hero-logo {
    width: 88%;
    margin-bottom: 28px;
  }

  .hero-text,
  .hero-text span {
    width: 100%;
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0.18em;
  }

  /* =====================================================
     ABOUT — ФОТО СВЕРХУ, ТЕКСТ СНИЗУ
     ===================================================== */
  .about-page {
    display: flex;
    flex-direction: column;
    padding-top: 110px;
    gap: 36px;
  }

  .about-image {
    justify-content: center;
  }

  .about-image img {
    max-width: 85%;
    max-height: none;
  }

  .about-content {
    padding-top: 0;
  }

  .about-content h2 {
    font-size: 20px;
  }

  .about-content .role {
    font-size: 12px;
    letter-spacing: 0.18em;
    margin-bottom: 20px;
  }

  .about-content p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 36px;
    max-width: 36ch; /* КОРОЧЕ СТРОКИ */
  }

  .about-content .closing {
    margin-top: 48px;
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 0.14em;
  }

  /* =====================================================
     COVERAGE — УБИРАЕМ DESKTOP-СДВИГ
     ===================================================== */
  .coverage-page {
    padding: 110px 20px 80px;
  }

  .coverage-content {
    width: 100%;
    max-width: 38ch; /* аккуратная ширина */
  }

  .coverage-content p {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 28px;
  }

  .coverage-content h3 {
    font-size: 12px;
    letter-spacing: 0.18em;
    margin-bottom: 20px;
  }

  .coverage-list li {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 14px;
  }

  /* =====================================================
     CONTACT — ВЕРТИКАЛЬНО, ВОЗДУШНО
     ===================================================== */
  .contact-page {
    padding: 120px 20px 80px;
    align-items: flex-start;
  }

  .contact-content {
    max-width: 34ch;
  }

  .contact-content p {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 32px;
  }

  .contact-content p:first-child {
    font-size: 20px;
    line-height: 34px;
    margin-bottom: 40px;
  }

  .contact-footer {
    position: static;
    transform: none;
    margin-top: 60px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.12em;
  }
}

/* =========================================
   MOBILE ONLY — COVERAGE BACKGROUND
   ========================================= */
@media (max-width: 768px) {

  .coverage-background {
    background: url("/static/fon4.png") center center / cover no-repeat;
  }

}
