:root {
  --ink: #17202a;
  --navy: #10283f;
  --navy-deep: #0a1b2a;
  --gold: #a77a36;
  --gold-light: #c69a53;
  --cream: #f5f1e9;
  --paper: #fffdf9;
  --line: #ded8cc;
  --muted: #66717a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
.container { width: min(1240px, calc(100% - 64px)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow.light { color: #e4c58d; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
h2 { margin: 0; font-size: clamp(38px, 4.4vw, 66px); line-height: 1.02; letter-spacing: -.035em; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid transparent;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); }
.button-gold:hover { background: #8d642c; }
.button-ghost { border-color: rgba(255,255,255,.55); background: rgba(0,0,0,.12); }
.button-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: 94px;
  display: grid;
  grid-template-columns: 210px 1fr 190px;
  align-items: center;
  gap: 24px;
  padding: 0 4vw;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.23);
}
.brand { display: inline-flex; flex-direction: column; width: max-content; }
.brand span { font-family: Georgia, serif; font-size: 25px; letter-spacing: .26em; line-height: 1; }
.brand small { margin-top: 7px; font-size: 8px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; opacity: .74; }
.nav { display: flex; align-items: center; justify-content: center; gap: clamp(15px, 2.2vw, 34px); }
.nav a { position: relative; font-size: 11px; font-weight: 700; letter-spacing: .04em; }
.nav a:after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: #fff; transition: right .2s; }
.nav a:hover:after { right: 0; }
.header-phone { display: flex; flex-direction: column; align-items: flex-end; }
.header-phone small { margin-bottom: 5px; font-size: 8px; letter-spacing: .14em; text-transform: uppercase; opacity: .68; }
.header-phone strong { font-size: 15px; }
.menu-toggle { display: none; }

.hero { position: relative; min-height: 820px; height: 94vh; color: #fff; overflow: hidden; background: var(--navy-deep); }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,18,27,.8) 0%, rgba(6,18,27,.32) 52%, rgba(6,18,27,.18) 100%); }
.hero-shade:after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(0deg, rgba(6,18,27,.72), transparent); }
.hero-content { position: relative; z-index: 2; padding-top: clamp(205px, 26vh, 280px); }
.hero h1 { max-width: 850px; margin: 0; font-size: clamp(64px, 8vw, 124px); line-height: .86; letter-spacing: -.055em; text-wrap: balance; }
.hero-copy { max-width: 600px; margin: 30px 0 0; font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.84); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-facts { position: absolute; z-index: 3; left: 50%; bottom: 38px; transform: translateX(-50%); display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.34); padding-top: 20px; }
.hero-facts div { display: flex; align-items: baseline; gap: 13px; }
.hero-facts strong { font: 28px Georgia, serif; }
.hero-facts span { max-width: 120px; color: rgba(255,255,255,.68); font-size: 10px; line-height: 1.4; text-transform: uppercase; letter-spacing: .09em; }

.booking-section { padding: 96px 0 108px; background: var(--cream); }
.section-heading { display: grid; grid-template-columns: 1fr minmax(280px, 430px); align-items: end; gap: 70px; margin-bottom: 48px; }
.section-heading > p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.booking-heading h2 { font-size: clamp(40px, 4.5vw, 62px); }

.intro-section { padding: 120px 0; background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: start; }
.intro-copy { padding-top: 34px; }
.intro-copy p { margin: 0 0 20px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.feature-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 90px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-strip article { min-height: 240px; padding: 34px 30px; border-right: 1px solid var(--line); }
.feature-strip article:first-child { border-left: 1px solid var(--line); }
.feature-strip span { color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.feature-strip h3 { margin: 44px 0 12px; font-size: 24px; }
.feature-strip p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.rooms-section { padding: 120px 0; background: var(--cream); }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.room-card { display: flex; flex-direction: column; min-width: 0; overflow: hidden; background: #fff; border: 1px solid #e6e0d5; }
.room-image { width: 100%; aspect-ratio: 4/2.55; padding: 0; border: 0; overflow: hidden; background: #ddd; }
.room-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.room-card:hover .room-image img { transform: scale(1.035); }
.room-body { flex: 1; display: flex; flex-direction: column; padding: 24px; }
.room-meta { display: flex; gap: 16px; color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.room-body h3 { margin: 16px 0 10px; font-size: 27px; line-height: 1.05; }
.room-body > p { margin: 0 0 24px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.room-footer { display: flex; justify-content: space-between; align-items: flex-end; gap: 14px; margin-top: auto; padding-top: 17px; border-top: 1px solid #ebe5db; }
.room-footer span { max-width: 135px; color: #7f898f; font-size: 10px; line-height: 1.4; }
.room-footer a { color: var(--gold); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }

.spa-section { display: grid; grid-template-columns: 58% 42%; min-height: 750px; background: var(--navy); color: #fff; }
.spa-visual { min-height: 650px; overflow: hidden; }
.spa-visual img { width: 100%; height: 100%; object-fit: cover; }
.spa-content { display: flex; flex-direction: column; justify-content: center; padding: 80px clamp(45px, 6vw, 110px); }
.spa-content h2 { max-width: 680px; }
.spa-content > p:not(.eyebrow):not(.note) { margin: 28px 0 24px; color: rgba(255,255,255,.73); font-size: 15px; line-height: 1.75; }
.spa-content ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.spa-content li { position: relative; padding-left: 22px; color: rgba(255,255,255,.9); font-size: 13px; line-height: 1.5; }
.spa-content li:before { content: ""; position: absolute; left: 0; top: .55em; width: 7px; height: 1px; background: #d1af71; }
.note { padding-left: 15px; border-left: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.58); font-size: 11px; line-height: 1.6; }
.spa-content .note { margin: 24px 0 0; }
.text-link { display: inline-flex; width: max-content; margin-top: 26px; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.light-link { color: #e4c58d; }
.spa-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding-block: 10px 110px; }
.spa-gallery button { aspect-ratio: 4/2.7; padding: 0; border: 0; overflow: hidden; background: #ddd; }
.spa-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.spa-gallery button:hover img { transform: scale(1.035); }

.restaurants-section { padding: 120px 0; background: var(--paper); }
.restaurant-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 16px; }
.restaurant-card { position: relative; min-height: 390px; overflow: hidden; color: #fff; background: var(--navy); }
.restaurant-card.large { grid-row: span 2; min-height: 796px; }
.restaurant-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.restaurant-card:after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(0deg, rgba(7,18,26,.86), transparent); }
.restaurant-card > div { position: absolute; z-index: 2; left: 34px; right: 34px; bottom: 30px; }
.restaurant-card h3 { margin: 0; font-size: 48px; }
.restaurant-card p:last-child { max-width: 600px; margin: 10px 0 0; color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.6; }

.family-section { padding: 130px 0; background: var(--cream); }
.family-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.family-image { position: relative; min-height: 600px; }
.family-image:before { content: ""; position: absolute; top: -24px; left: -24px; width: 55%; height: 55%; border: 1px solid var(--gold-light); }
.family-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.family-copy > p:not(.eyebrow) { margin: 28px 0 36px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.family-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.family-list div { display: flex; flex-direction: column; gap: 7px; min-height: 110px; padding: 23px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.family-list strong { font: 20px Georgia, serif; }
.family-list span { color: var(--muted); font-size: 11px; line-height: 1.45; }

.beach-section { padding: 0 0 120px; background: var(--cream); }
.beach-card { display: grid; grid-template-columns: 1fr .9fr; min-height: 530px; background: var(--navy); color: #fff; }
.beach-card > div { padding: 70px; }
.beach-card h2 { max-width: 620px; }
.beach-card > div > p:not(.eyebrow):not(.note) { margin: 28px 0 20px; color: rgba(255,255,255,.75); line-height: 1.75; }
.beach-card .light-note { color: rgba(255,255,255,.56); }
.beach-card .button { margin-top: 18px; }
.beach-card > img { width: 100%; height: 100%; object-fit: cover; }

.gallery-section { padding: 120px 0; background: var(--paper); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gallery-grid button { padding: 0; border: 0; aspect-ratio: 4/3; overflow: hidden; background: #ddd; }
.gallery-grid button:nth-child(9n + 1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-grid button:hover img { transform: scale(1.04); }

.reviews-section { padding: 120px 0; background: var(--cream); }
.reviews-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: start; }
.reviews-copy { position: sticky; top: 40px; padding-top: 40px; }
.reviews-copy > p:not(.eyebrow) { margin: 28px 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.rating-card { display: flex; align-items: center; gap: 18px; padding-top: 24px; border-top: 1px solid var(--line); }
.rating-card strong { color: var(--gold); font: 34px Georgia, serif; }
.rating-card span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.reviews-widget { position: relative; width: 100%; height: 800px; overflow: hidden; border: 1px solid #ded8cc; border-radius: 12px; background: #fff; }
.reviews-widget iframe { width: 100%; height: 100%; border: 0; pointer-events: none; }

.location-section { padding: 120px 0; background: var(--paper); }
.map-wrap { position: relative; height: 560px; overflow: hidden; border: 1px solid var(--line); background: #e8e5df; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; pointer-events: none; }
.map-controls { position: absolute; right: 22px; top: 22px; display: grid; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.14); }
.map-controls button { width: 48px; height: 48px; border: 0; border-bottom: 1px solid #ddd; color: var(--ink); background: #fff; font-size: 24px; }
.map-controls button:hover { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 18px; border-left: 1px solid var(--line); }
.contact-grid div { display: flex; flex-direction: column; gap: 10px; min-height: 115px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); }
.contact-grid span { color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.contact-grid a { font: 20px Georgia, serif; }

.final-cta { padding: 90px 0; color: #fff; background: var(--navy-deep); }
.final-cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.final-cta h2 { max-width: 800px; font-size: clamp(40px, 4.5vw, 68px); }
.final-actions { display: flex; flex-direction: column; gap: 10px; min-width: 260px; }

.site-footer { padding: 70px 0 34px; color: #fff; background: #07141f; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr auto; gap: 60px; align-items: start; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-contact, .footer-messengers { display: flex; flex-direction: column; gap: 12px; }
.footer-contact a:first-child { font: 24px Georgia, serif; }
.footer-contact a:last-child, .footer-messengers a { color: rgba(255,255,255,.68); font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px 24px; padding-block: 30px; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-links a { color: rgba(255,255,255,.62); font-size: 10px; line-height: 1.4; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 28px; color: rgba(255,255,255,.43); font-size: 9px; line-height: 1.5; }

.floating-actions { position: fixed; z-index: 40; right: 18px; bottom: 22px; display: grid; gap: 8px; }
.floating-actions a { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; color: #fff; box-shadow: 0 8px 26px rgba(0,0,0,.24); font-size: 13px; font-weight: 800; }
.float-telegram { background: #2997d6; }
.float-max { background: #6f4cd6; }
.float-phone { background: var(--gold); }
.lightbox { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 40px; background: rgba(3,10,16,.94); }
.lightbox img { max-width: min(1400px, 94vw); max-height: 88vh; object-fit: contain; box-shadow: 0 30px 80px #000; }
.lightbox button { position: absolute; top: 18px; right: 24px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; color: #fff; background: transparent; font-size: 30px; }
.cookie-banner { position: fixed; z-index: 90; left: 22px; right: 22px; bottom: 18px; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; max-width: 1040px; margin-inline: auto; padding: 22px 24px; color: #fff; background: #10283f; box-shadow: 0 18px 70px rgba(0,0,0,.36); }
.cookie-banner strong { font: 20px Georgia, serif; }
.cookie-banner p { margin: 7px 0 0; color: rgba(255,255,255,.67); font-size: 11px; line-height: 1.55; }
.cookie-banner p a { color: #e4c58d; text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button { min-height: 42px; padding: 0 16px; border: 1px solid rgba(255,255,255,.35); color: #fff; background: transparent; font-size: 10px; font-weight: 800; }
.cookie-actions .accept { border-color: var(--gold); background: var(--gold); }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 180px 1fr 170px; gap: 14px; padding-inline: 28px; }
  .nav { gap: 16px; }
  .nav a { font-size: 10px; }
  .hero { min-height: 760px; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .spa-section { grid-template-columns: 52% 48%; }
  .spa-content { padding: 62px 42px; }
  .restaurant-card.large { min-height: 720px; }
  .family-grid { gap: 55px; }
  .beach-card > div { padding: 54px; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .container { width: min(100% - 34px, 680px); }
  .site-header { position: absolute; height: 78px; grid-template-columns: 1fr auto; padding-inline: 18px; }
  .header-phone { display: none; }
  .menu-toggle { display: grid; place-content: center; gap: 7px; width: 48px; height: 48px; padding: 0; border: 1px solid rgba(255,255,255,.3); background: rgba(0,0,0,.12); }
  .menu-toggle span { width: 20px; height: 1px; background: #fff; }
  .nav { position: absolute; top: 78px; left: 0; right: 0; display: none; flex-direction: column; align-items: flex-start; padding: 24px; color: var(--ink); background: #fff; box-shadow: 0 20px 50px rgba(0,0,0,.2); }
  .nav.is-open { display: flex; }
  .nav a { width: 100%; padding: 8px 0; font-size: 13px; }
  .hero { min-height: 720px; height: 90vh; }
  .hero > img { object-position: 58% center; }
  .hero-content { padding-top: 175px; }
  .hero h1 { font-size: clamp(58px, 14vw, 86px); }
  .hero-facts { grid-template-columns: repeat(3, 1fr); gap: 14px; bottom: 24px; }
  .hero-facts div { align-items: flex-start; flex-direction: column; gap: 4px; }
  .hero-facts strong { font-size: 22px; }
  .booking-section, .intro-section, .rooms-section, .restaurants-section, .family-section, .gallery-section, .reviews-section, .location-section { padding-block: 78px; }
  .section-heading, .intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .section-heading { margin-bottom: 34px; }
  .intro-copy { padding-top: 0; }
  .feature-strip { grid-template-columns: 1fr 1fr; margin-top: 55px; }
  .spa-section { grid-template-columns: 1fr; }
  .spa-visual { min-height: 430px; }
  .spa-gallery { grid-template-columns: repeat(2, 1fr); padding-bottom: 78px; }
  .restaurant-grid { grid-template-columns: 1fr; }
  .restaurant-card, .restaurant-card.large { grid-row: auto; min-height: 520px; }
  .family-grid { grid-template-columns: 1fr; }
  .family-image { min-height: 480px; }
  .beach-section { padding-bottom: 78px; }
  .beach-card { grid-template-columns: 1fr; }
  .beach-card > img { height: 360px; order: -1; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; gap: 35px; }
  .reviews-copy { position: static; padding-top: 0; }
  .reviews-widget { height: 720px; }
  .final-cta-inner { grid-template-columns: 1fr; }
  .final-actions { flex-direction: row; min-width: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-messengers { grid-column: 2; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 26px); }
  h2 { font-size: 40px; }
  .brand span { font-size: 21px; }
  .hero { min-height: 690px; height: 92vh; }
  .hero-shade { background: linear-gradient(90deg, rgba(6,18,27,.82), rgba(6,18,27,.28)); }
  .hero-content { padding-top: 150px; }
  .hero h1 { font-size: 56px; line-height: .91; }
  .hero-copy { margin-top: 22px; font-size: 14px; line-height: 1.6; }
  .hero-actions { display: grid; grid-template-columns: 1fr; width: min(100%, 280px); margin-top: 25px; }
  .hero-facts { gap: 8px; }
  .hero-facts strong { font-size: 19px; }
  .hero-facts span { font-size: 7px; }
  .booking-section { padding-top: 65px; }
  .section-heading > p { font-size: 13px; }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-strip article { min-height: 190px; border-left: 1px solid var(--line); }
  .feature-strip h3 { margin-top: 25px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .room-body h3 { font-size: 25px; }
  .spa-visual { min-height: 320px; }
  .spa-content { padding: 55px 22px; }
  .spa-gallery { grid-template-columns: 1fr 1fr; gap: 6px; }
  .restaurant-card, .restaurant-card.large { min-height: 440px; }
  .restaurant-card > div { left: 22px; right: 22px; bottom: 22px; }
  .restaurant-card h3 { font-size: 40px; }
  .family-image { min-height: 360px; }
  .family-image:before { top: -12px; left: -12px; }
  .family-list { grid-template-columns: 1fr; }
  .beach-card > img { height: 280px; }
  .beach-card > div { padding: 42px 22px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 5px; }
  .gallery-grid button:nth-child(9n + 1) { grid-column: span 2; }
  .reviews-widget { height: 650px; }
  .map-wrap { height: 440px; }
  .contact-grid { grid-template-columns: 1fr; }
  .final-actions { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-messengers { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .floating-actions { right: 10px; bottom: 12px; }
  .floating-actions a { width: 46px; height: 46px; }
  .cookie-banner { left: 9px; right: 9px; bottom: 9px; grid-template-columns: 1fr; gap: 15px; padding: 18px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .lightbox { padding: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Исправление скрытых окон */
.lightbox[hidden], .cookie-banner[hidden] { display: none !important; }

/* Увеличенное верхнее меню */
.nav { gap: 30px !important; }
.nav a { padding: 14px 5px !important; font-size: 14px !important; font-weight: 700 !important; }
@media (max-width: 1100px) { .nav { gap: 18px !important; } .nav a { font-size: 12px !important; } }

/* Зазор между меню и нижней линией шапки */
.site-header { height: 112px !important; }
.nav a { padding: 10px 5px !important; }
.nav a::after { bottom: 1px !important; }
@media (max-width: 1100px) { .site-header { height: 104px !important; } }

/* Исправление линии на главном экране */
.site-header { height: 94px !important; }
.nav a::after { bottom: -8px !important; }
.hero-facts { border-top: none !important; }
