* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0b0b0b;
  color: #f5f3ef;
  font-family: "Cormorant Garamond", serif;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
}

.nav__line {
  width: 100%;
  height: 2px;
  background: rgba(212, 175, 55, 0.6);
}

.nav__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 60px;
}

.nav__left {
  font-size: 16px;
  letter-spacing: 1px;
}

.nav__center {
  display: flex;
  gap: 40px;
}

.nav__center a {
  text-decoration: none;
  color: #f5f3ef;
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.75;
  transition: 0.3s ease;
}

.nav__center a:hover {
  opacity: 1;
}

.nav a {
  color: #f5f3ef;
  margin-right: 25px;
  text-decoration: none;
  opacity: 0.7;
}

/* NAV TOGGLE (бургер) — скрыт на десктопе */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 200;
  padding: 0;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #f5f3ef;
  transition: 0.3s ease;
}

.nav__toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.btn {
  padding: 10px 20px;
  border: 1px solid #f5f3ef;
  background: transparent;
  color: #f5f3ef;
  cursor: pointer;
}

/* HERO */
.hero {
  height: 100vh;
  position: relative;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero__content {
  position: absolute;
  bottom: 120px;
  left: 80px;
}

.hero__content h1 {
  font-size: 90px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 25px;
  position: relative;
}

.hero__content h1::after {
  content: "";
  display: block;
  width: 600px;
  height: 2px;
  background: #d6b47a;
  margin: 25px auto 0;
}

.hero__content p {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.7;
}

/* BLOCKS */
.block {
  padding: 180px 120px;
}

.text-center {
  text-align: center;
}

.big-text {
  font-size: 38px;
  margin-top: 40px;
  line-height: 1.4;
}

.split {
  display: flex;
  gap: 100px;
  align-items: stretch;
  padding: 180px 120px;
}

.split img {
  width: 65%;
  height: 750px;
  object-fit: cover;
}

.split .text {
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split h2 {
  font-size: 42px;
  margin-bottom: 25px;
  font-weight: 400;
}

.split p {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.85;
}

.reverse {
  flex-direction: row-reverse;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-auto-rows: 300px;
  gap: 15px;
  padding: 80px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.big { grid-row: span 2; }
.tall { grid-row: span 2; }
.wide { grid-column: span 2; }

/* FULL HERO — текст по центру внизу */
.full-hero {
  position: relative;
  height: 100vh;
}

.full-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-hero .full-hero-text {
  position: absolute;
  bottom: 120px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 42px;
  color: #fff;
  z-index: 2;
}

/* MAP */
.map iframe {
  width: 100%;
  height: 500px;
  border: 0;
  filter: grayscale(1);
}

/* FOOTER */
.footer {
  padding: 120px;
}

.full-img {
  width: 100%;
  height: 85vh;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.95);
}

/* OVERLAY БЛОКИ (О доме, Собственный пляж) */
.overlay-block {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 400px;
}

.overlay-photo {
  position: relative;
  width: 60%;
  height: 600px;
  overflow: hidden;
}

.overlay-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 10%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.65) 65%,
    rgba(0, 0, 0, 0.92) 100%
  );
}

.overlay-block.reverse .overlay-photo::after {
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0) 10%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.65) 65%,
    rgba(0, 0, 0, 0.92) 100%
  );
}

.overlay-text {
  position: relative;
  width: 45%;
  color: #fff;
  padding: 20px;
  margin-left: -15%;
  z-index: 2;
  background: rgba(0,0,0,0);
  border-radius: 16px;
}

.overlay-block.reverse {
  flex-direction: row-reverse;
}

.overlay-block.reverse .overlay-text {
  margin-left: 0;
  margin-right: -15%;
}

.overlay-text h2 {
  font-size: 46px;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.overlay-text h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 1px;
  background: #c9a86a;
  margin-top: 18px;
}

.overlay-text p {
  font-size: 18px;
  line-height: 1.6;
}

/* БЛОК ВОЗМОЖНОСТЕЙ — КАРТОЧКИ С ИКОНКАМИ */
.features {
    padding: 100px 80px;
    background: #0b0b0b;
}

.features__header {
    text-align: center;
    margin-bottom: 60px;
}

.features__header h2 {
    font-size: 42px;
    font-weight: 400;
    color: #e6c88a;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.features__header p {
    font-size: 18px;
    color: #b0a87c;
    font-style: italic;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(230, 200, 138, 0.05);
    border: 1px solid rgba(230, 200, 138, 0.2);
    border-radius: 24px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #e6c88a;
    background: rgba(230, 200, 138, 0.1);
    box-shadow: 0 15px 30px -10px rgba(0,0,0,0.4);
}

.feature-card i {
    font-size: 38px;
    color: #e6c88a;
    margin-bottom: 15px;
    display: block;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #f5f3ef;
}

.features__footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(230, 200, 138, 0.2);
}

.features__footer p {
    font-size: 16px;
    color: #b0a87c;
}

.features__footer i {
    color: #e6c88a;
    margin-right: 8px;
}

/* ПРЕМИУМ-КОЛОНКИ */
.services {
    padding: 50px 80px;
    background: #0b0b0b;
}

.services__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.services__header {
    text-align: center;
    margin-bottom: 60px;
}

.services__header h2 {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 3px;
    color: #e6c88a;
    margin-bottom: 20px;
}

.services__line {
    width: 50px;
    height: 1px;
    background: #e6c88a;
    margin: 0 auto;
}

.services__grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.service-col {
    min-width: 180px;
}

.service-item {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(230,200,138,0.15);
}

.service-number {
    font-size: 14px;
    color: #e6c88a;
    font-weight: 300;
    width: 30px;
}

.service-name {
    font-size: 18px;
    color: #d4cfc0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.services__extra {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(230,200,138,0.15);
}

.services__extra p {
    font-size: 18px;
    color: #8a8268;
    letter-spacing: 0.5px;
}


.interior {
    padding: 120px 8%;
    background: #1b1713;
}

.interior-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.interior-header h2 {
    font-size: 46px;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
}

.interior-header h2::after {
    content: "";
    display: block;
    width: 90px;
    height: 1px;
    background: #d6b47a;
    margin: 18px auto 0;
}

.interior-header p {
    color: rgba(255,255,255,0.75);
}

.interior-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-auto-rows: 260px;
    gap: 18px;
}

.interior-item {
    overflow: hidden;
    border-radius: 24px;
}

.interior-item.big {
    grid-row: span 2;
}

.interior-item.tall {
    grid-row: span 2;
}

.interior-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.interior-item:hover img {
    transform: scale(1.05);
}


/* АКТИВНЫЙ ОТДЫХ — 3 ФОТО */
.activity-three {
    padding: 100px 80px;
    background: #0b0b0b;
}

.activity-three__header {
    text-align: center;
    margin-bottom: 60px;
}

.activity-three__header h2 {
    font-size: 46px;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.activity-three__line {
    width: 70px;
    height: 1px;
    background: #d6b47a;
    margin: 0 auto 20px;
}

.activity-three__header p {
    font-size: 18px;
    color: #b0a87c;
    font-style: italic;
}

.activity-three__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.activity-card {
    background: #1b1713;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-8px);
}

.activity-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.activity-card h3 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 20px 0 8px;
    padding: 0 20px;
}

.activity-card p {
    font-size: 15px;
    color: #b0a87c;
    padding: 0 20px 25px;
}



/* FOOTER — ПРЕЗЕНТАБЕЛЬНЫЙ БЛОК КОНТАКТОВ */
.footer {
    background: #0f0e0c;
    padding: 80px 80px 40px;
    border-top: 1px solid rgba(214, 180, 122, 0.15);
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__header {
    text-align: center;
    margin-bottom: 60px;
}

.footer__header h2 {
    font-size: 46px;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #f5f3ef;
}

.footer__line {
    width: 70px;
    height: 1px;
    background: #d6b47a;
    margin: 0 auto 20px;
}

.footer__header p {
    font-size: 18px;
    color: #b0a87c;
    font-style: italic;
}

.footer__grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 60px;
}

.footer__info {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

.footer__item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.footer__item i {
    font-size: 28px;
    color: #d6b47a;
    margin-top: 5px;
}

.footer__item h3 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #f5f3ef;
}

.footer__item p {
    font-size: 16px;
    color: #b0a87c;
    line-height: 1.5;
}

.footer__social {
    flex: 1;
    text-align: center;
    padding-left: 40px;
    border-left: 1px solid rgba(214, 180, 122, 0.2);
}

.footer__social h3 {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #f5f3ef;
}

.footer__social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(214, 180, 122, 0.1);
    color: #d6b47a;
    font-size: 22px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #d6b47a;
    color: #0f0e0c;
    transform: translateY(-3px);
}

.footer__copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(214, 180, 122, 0.1);
}

.footer__copyright p {
    font-size: 13px;
    color: #6a6452;
    letter-spacing: 1px;
}



/* ==================================================
   LARGE TABLET / LANDSCAPE — до 1200px
================================================== */

@media (max-width: 1200px) {

    .hero__content {
        left: 50px;
        bottom: 100px;
    }

    .hero__content h1 {
        font-size: clamp(56px, 8vw, 80px);
    }

    .hero__content h1::after {
        width: 420px;
    }

    .block {
        padding: 140px 70px;
    }

    .overlay-photo {
        width: 55%;
        height: 520px;
    }

    .overlay-text {
        width: 48%;
    }

    .overlay-block .overlay-text {
        margin-left: -12%;
    }

    .overlay-block.reverse .overlay-text {
        margin-right: -12%;
    }

    .overlay-text h2 {
        font-size: 38px;
        letter-spacing: 4px;
    }

    .overlay-text p {
        font-size: 16px;
    }

    .interior {
        padding: 100px 5%;
    }

    .interior-grid {
        grid-auto-rows: 220px;
    }

    .activity-three {
        padding: 80px 50px;
    }

    .activity-three__grid {
        gap: 20px;
    }

    .activity-card img {
        height: 240px;
    }

    .services {
        padding: 60px 50px;
    }

    .services__grid {
        gap: 50px;
    }

    .footer {
        padding: 70px 50px 40px;
    }
}


/* ==================================================
   TABLET — до 900px
================================================== */

@media (max-width: 900px) {

    /* Общие отступы */
    .block {
        padding: 100px 50px;
    }

    .split {
        padding: 90px 50px;
        gap: 40px;
    }

    /* Первый экран */
    .hero__content h1 {
        font-size: clamp(52px, 7vw, 70px);
    }

    .hero__content h1::after {
        width: 320px;
    }

    .hero__content p {
        font-size: 18px;
    }

    /* Галереи */
    .gallery {
        padding: 35px;
    }

    /* О доме / пляж / лес / баня */
    .overlay-photo {
        width: 58%;
        height: 460px;
    }

    .overlay-text {
        width: 50%;
    }

    .overlay-block .overlay-text {
        margin-left: -14%;
    }

    .overlay-block.reverse .overlay-text {
        margin-right: -14%;
    }

    .overlay-text h2 {
        font-size: 32px;
        letter-spacing: 3px;
    }

    .overlay-text p {
        font-size: 15px;
        line-height: 1.55;
    }

    /* Интерьеры */
    .interior {
        padding: 90px 5%;
    }

    .interior-grid {
        grid-auto-rows: 200px;
        gap: 14px;
    }

    .interior-header h2 {
        font-size: 36px;
    }

    /* Активный отдых — 3 фото */
    .activity-three {
        padding: 70px 40px;
    }

    .activity-three__header h2 {
        font-size: 36px;
    }

    .activity-three__grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .activity-card {
        flex: 1 1 calc(50% - 10px);
    }

    .activity-card img {
        height: 220px;
    }

    /* Возможности */
    .features {
        padding: 80px 40px;
    }

    .features__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* Услуги */
    .services {
        padding: 70px 40px;
    }

    .services__grid {
        gap: 30px;
    }

    .services__header h2 {
        font-size: 30px;
    }

    /* Контакты */
    .footer {
        padding: 70px 40px 30px;
    }

    .footer__header h2 {
        font-size: 36px;
    }

    .footer__info {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}


/* ==================================================
   MOBILE — до 768px
================================================== */

@media (max-width: 768px) {

    /* ==========================
       НАВИГАЦИЯ
    ========================== */

    .nav__content {
        padding: 16px 24px;
        background: rgba(11, 11, 11, 0.55);
        backdrop-filter: blur(8px);
    }

    .nav__toggle {
        display: flex;
    }

    .nav__center {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        margin: 0;
        background: #0b0b0b;
        border-left: 1px solid rgba(212, 175, 55, 0.25);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 35px;
        transition: right 0.35s ease;
    }

    .nav__center.active {
        right: 0;
    }

    .nav__center a {
        font-size: 18px;
        letter-spacing: 2px;
    }


    /* ==========================
       HERO
    ========================== */

    .hero {
        height: 100svh;
        min-height: 620px;
        position: relative;
        overflow: hidden;
    }

    .hero__img,
    .hero video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .hero__content {
        position: absolute;
        left: 50%;
        bottom: 10vh;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
        padding: 0 24px;
        z-index: 10;
    }

    .hero__content h1 {
        font-size: clamp(34px, 10vw, 56px);
        line-height: 0.95;
        letter-spacing: 3px;
        margin-bottom: 18px;
    }

    .hero__content h1::after {
        width: 200px;
        margin: 18px auto 0;
    }

    .hero__content p {
        font-size: 16px;
        line-height: 1.6;
        letter-spacing: 1px;
        max-width: 300px;
        margin: 0 auto;
    }


    /* ==========================
       ОБЩИЕ ОТСТУПЫ
    ========================== */

    .block {
        padding: 70px 20px;
    }

    .split {
        flex-direction: column;
        padding: 70px 20px;
        gap: 30px;
    }

    .split img,
    .split .text {
        width: 100%;
    }

    .split img {
        height: 380px;
    }

    .big-text {
        font-size: clamp(26px, 7vw, 38px);
        line-height: 1.2;
    }

    .full-img {
        height: 55vh;
    }


    /* =================================
       О ДОМЕ / ПЛЯЖ / ЛЕС / БАНЯ
    ================================= */

    .overlay-block,
    .overlay-block.reverse {
        display: flex;
        align-items: flex-start;
        margin: 60px 0;
        min-height: auto;
        overflow: visible;
    }

    .overlay-photo {
        width: 75%;
        height: 430px;
        flex-shrink: 0;
    }

    .overlay-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .overlay-text {
        width: 60%;
        padding: 0;
        position: relative;
        z-index: 3;
        background: transparent;
    }

    .overlay-block .overlay-text {
        margin-left: -25%;
        margin-top: 45px;
    }

    .overlay-block.reverse .overlay-text {
        margin-left: 0;
        margin-right: -25%;
        margin-top: 45px;
    }

    .overlay-text h2 {
        font-size: 26px;
        letter-spacing: 3px;
        margin-bottom: 15px;
    }

    .overlay-text h2::after {
        width: 60px;
        margin-top: 12px;
    }


    .overlay-text p {
        text-align: justify;
    }



    /* =========================
       ИНТЕРЬЕРЫ
    ========================= */

    .interior {
        padding: 70px 20px;
    }

    .interior-header {
        margin-bottom: 35px;
    }

    .interior-header h2 {
        font-size: 30px;
        letter-spacing: 3px;
    }

    .interior-header p {
        font-size: 16px;
    }

    .interior-grid {
        grid-template-columns: 1fr !important;
        grid-auto-rows: 260px;
        gap: 14px;
    }

    .interior-item.big,
    .interior-item.tall {
        grid-row: span 1 !important;
    }

    .interior-item {
        border-radius: 18px;
    }

    .interior-item img {
        object-fit: cover;
    }


    /* ==================================================
       АКТИВНЫЙ ОТДЫХ — 3 ФОТО
    ================================================== */

    .activity-three {
        padding: 80px 20px;
    }
    
    .activity-three__header h2 {
        font-size: 30px;
        letter-spacing: 3px;
    }
    
    .activity-three__header p {
        font-size: 16px;
    }
    
    .activity-three__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .activity-card img {
        height: 170px;
    }
    
    .activity-card h3 {
        font-size: 16px;
        padding: 0 12px;
    }
    
    .activity-card p {
        font-size: 13px;
        padding: 0 12px 18px;
        line-height: 1.5;
    }

    /* ==================================================
       ВОЗМОЖНОСТИ
    ================================================== */

    .features {
        padding: 60px 20px;
    }

    .features__header h2 {
        font-size: 30px;
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .feature-card {
        padding: 25px 15px;
        min-height: 120px;
    }

    .feature-card i {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .feature-card h3 {
        font-size: 14px;
        line-height: 1.4;
    }


    /* ==================================================
       УСЛУГИ
    ================================================== */

    .services {
        padding: 60px 20px;
    }

    .services__header h2 {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .services__grid {
        flex-direction: column;
        gap: 35px;
    }

    .service-col {
        min-width: auto;
        text-align: center;
    }

    .service-name {
        font-size: 17px;
    }

    .services__extra p {
        font-size: 16px;
    }


    /* ==================================================
       КАРТА
    ================================================== */

    #map {
        padding: 3em 0 !important;
    }

    .map-container iframe,
    iframe {
        width: 100%;
        height: 320px;
        border-radius: 16px !important;
    }


    /* ==================================================
       КОНТАКТЫ / FOOTER
    ================================================== */

    .footer {
        padding: 60px 20px 30px;
    }

    .footer__header h2 {
        font-size: 30px;
        letter-spacing: 3px;
    }

    .footer__header p {
        font-size: 16px;
    }

    .footer__grid {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer__info {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer__social {
        flex: none;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(214, 180, 122, 0.2);
        padding-top: 30px;
    }
}


/* ==================================================
   SMALL MOBILE — до 480px
================================================== */

@media (max-width: 480px) {

    .nav__left {
        font-size: 14px;
    }

    .hero__content h1 {
        font-size: clamp(30px, 11vw, 44px);
    }

    .hero__content h1::after {
        width: 150px;
    }

    .hero__content p {
        font-size: 14px;
        max-width: 260px;
    }

    .block {
        padding: 50px 16px;
    }

    .big-text {
        font-size: clamp(22px, 7vw, 30px);
    }

    .full-img {
        height: 45vh;
    }

    .overlay-photo {
        width: 85%;
        height: 360px;
    }

    .overlay-text {
        width: 90%;
    }

    .overlay-block .overlay-text {
        margin-left: -35%;
        margin-top: 35px;
    }

    .overlay-block.reverse .overlay-text {
        margin-right: -35%;
        margin-top: 35px;
    }

    .overlay-text h2 {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .overlay-text p {
        font-size: 13px;
        line-height: 1.6;
    }

    .interior-grid {
        grid-auto-rows: 220px;
    }

    .interior-header h2 {
        font-size: 26px;
    }

    .activity-card img {
        height: 200px;
    }

    .activity-card h3 {
        font-size: 18px;
        margin: 15px 0 6px;
        padding: 0 15px;
    }

    .activity-card p {
        font-size: 14px;
        padding: 0 15px 20px;
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .feature-card {
        padding: 20px 10px;
    }

    .footer__item i {
        font-size: 22px;
    }

    .social-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}


/* ==================================================
   SMALL MOBILE — до 375px
================================================== */

@media (max-width: 375px) {

    .hero__content {
        bottom: 8vh;
        padding: 0 18px;
    }

    .hero__content h1 {
        font-size: 30px;
        letter-spacing: 2px;
    }

    .hero__content p {
        font-size: 14px;
    }

    /* Overlay делаем чуть свободнее */
    .overlay-photo {
        width: 92%;
        height: 340px;
    }

    .overlay-block .overlay-text {
        margin-left: -52%;
    }

    .overlay-block.reverse .overlay-text {
        margin-right: -52%;
    }

    .overlay-text {
        width: 95%;
    }

    .overlay-text p {
        font-size: 13px;
        line-height: 1.7;
    }

    /* Карточки возможностей */
    .features__grid {
        gap: 10px;
    }

    .feature-card {
        padding: 20px 10px;
    }

    .activity-card h3 {
        font-size: 17px;
    }
}
