:root {
  --ink: #172124;
  --ink-2: #344044;
  --paper: #ffffff;
  --soft: #f4f2ec;
  --warm: #eee9dc;
  --line: #d8d7d1;
  --accent: #d8aa2d;
  --accent-dark: #a87900;
  --success: #146c43;
  --error: #a62424;
  --container: 1160px;
  --shadow: 0 18px 55px rgba(23, 33, 36, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.35rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 4vw, 3.55rem);
  line-height: 1.05;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.25;
}

.container {
  width: min(calc(100% - 44px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(76px, 8vw, 118px);
}

.section-soft {
  background: var(--soft);
}

.section-warm {
  background: var(--warm);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--accent-dark);
}

.lead {
  color: var(--ink-2);
  font-size: 1.08rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--accent);
  color: var(--ink);
  background: var(--accent);
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  border-color: #c39522;
  background: #c39522;
  transform: translateY(-1px);
}

.button-small {
  min-height: 40px;
  padding: 9px 16px;
  font-size: 0.86rem;
}

.button-outline {
  border-color: var(--ink);
  background: transparent;
}

.button-outline:hover {
  color: var(--paper);
  background: var(--ink);
}

.button-light {
  width: 100%;
  justify-content: space-between;
  border-color: var(--paper);
  color: var(--ink);
  background: var(--paper);
}

.button-light:hover {
  border-color: #eee;
  background: #eee;
}

.button:focus-visible,
.text-action:focus-visible,
.phone-link:focus-visible,
.navigation a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.faq-item button:focus-visible {
  outline: 3px solid #f1cf73;
  outline-offset: 3px;
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  text-decoration: none;
}

.text-action span {
  transition: transform 160ms ease;
}

.text-action:hover span {
  transform: translateX(4px);
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  color: var(--paper);
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(23, 33, 36, 0.1);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

 .logo-mark {
   display: block;
   width: 38px;
   height: 38px;
   object-fit: contain;
   flex: 0 0 auto;
 }

.logo-copy {
  display: grid;
  line-height: 1;
}

.logo-copy strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.logo-copy small {
  margin-top: 5px;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 23px;
}

.navigation > a:not(.button) {
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.navigation > a:not(.button):hover {
  text-decoration: underline;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-button span[aria-hidden="true"] {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: opacity 160ms ease, transform 160ms ease;
}

.menu-button[aria-expanded="true"] span[aria-hidden="true"]:nth-of-type(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span[aria-hidden="true"]:nth-of-type(3) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span[aria-hidden="true"]:nth-of-type(4) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  display: grid;
  min-height: min(790px, 100svh);
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 17, 19, 0.88) 0%, rgba(10, 17, 19, 0.67) 46%, rgba(10, 17, 19, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 17, 19, 0.72) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 44px;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 58px;
}

.phone-link {
  color: var(--paper);
  font-weight: 800;
  text-decoration: none;
}

.phone-link:hover {
  text-decoration: underline;
}

.hero-facts {
  display: grid;
  max-width: 860px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-facts div {
  padding: 18px 22px 0 0;
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 4px 0 0;
  font-size: 1rem;
  font-weight: 700;
}

/* Offer */

.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: center;
}

.offer-photo {
  min-height: 590px;
  overflow: hidden;
}

.offer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-copy {
    max-width: 570px;
  }
 
  .offer-details {
    margin: 25px 0 32px;
    color: var(--ink-2);
  }
 
  .offer-details p {
    margin-bottom: 12px;
  }
 
  .price-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
  }
 
  .price-block p {
    margin: 0;
  }
 
  .price-block strong {
    font-size: 1.35rem;
  }

/* Practical / interior */

.practical-layout,
.inside-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
}

.practical-photo,
.inside-photo {
  margin: 0;
}

.practical-photo {
  min-height: 540px;
}

.practical-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.practical-photo figcaption {
  margin-top: 10px;
  color: #626b6e;
  font-size: 0.75rem;
}

   .practical-copy > p:not(.practical-note):not(.eyebrow) {
    max-width: 610px;
    color: var(--ink-2);
    font-size: 1.05rem;
  }
  
   .practical-note {
     max-width: 610px;
     margin-top: 28px;
     padding-top: 22px;
     border-top: 1px solid #cac3b2;
     font-weight: 650;
   }

.inside-layout {
  grid-template-columns: minmax(280px, 0.72fr) minmax(350px, 1.28fr);
}

.inside-photo {
  min-height: 610px;
}

.inside-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inside-copy {
  max-width: 560px;
}

.inside-copy p:not(.eyebrow) {
  color: var(--ink-2);
  font-size: 1.05rem;
}



 .transport-layout {
   display: grid;
   grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
   gap: clamp(48px, 7vw, 100px);
   align-items: center;
 }

 .transport-photo {
   margin: 0;
 }

 .transport-photo img {
   display: block;
   width: 100%;
   aspect-ratio: 3 / 2;
   object-fit: cover;
 }

 .transport-copy {
   max-width: 560px;
 }

 .transport-copy h2 {
   margin: 14px 0 24px;
   max-width: 11ch;
   line-height: 1.02;
 }

 .transport-copy > p:last-child {
   max-width: 620px;
   margin: 0;
   line-height: 1.65;
 }

/* Shared heading */

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading > p {
  max-width: 430px;
  margin-bottom: 5px;
  color: var(--ink-2);
}

/* Gallery */
 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 18px;
   }
  
   .gallery-item,
   .gallery-item-wide {
     position: relative;
     margin: 0;
     overflow: hidden;
     background: #ddd;
     aspect-ratio: 16 / 10;
   }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.02);
}

.gallery-item figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 9px;
  color: var(--paper);
  background: rgba(23, 33, 36, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
}

/* FAQ */

.faq-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 9vw, 120px);
}

.faq-intro {
  align-self: start;
}

.faq-intro > p:not(.eyebrow) {
  color: var(--ink-2);
}

.accordion {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 28px;
  gap: 20px;
  align-items: center;
  padding: 23px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  position: relative;
  width: 26px;
  height: 26px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.faq-item button span::before,
.faq-item button span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 160ms ease;
}

.faq-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%);
}

.faq-answer {
  max-width: 700px;
  padding: 0 50px 23px 0;
  color: var(--ink-2);
}

.faq-answer p {
  margin: 0;
}

/* Location */
 .location-card {
     display: grid;
     grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
     margin-top: 42px;
     overflow: hidden;
     background: var(--paper);
     box-shadow: var(--shadow);
   }
    .location-map {
       display: grid;
       min-height: 540px;
       place-items: center;
       background: #e5e5e1;
     }
    
     .location-map iframe {
       display: block;
       width: 100%;
       height: 100%;
       min-height: 540px;
       border: 0;
     }
    
     .map-consent {
       max-width: 430px;
       padding: 36px;
       text-align: center;
     }
    
     .map-consent p {
       margin-bottom: 20px;
       color: var(--ink-2);
     }
    
     .map-direct-link {
       display: block;
       width: fit-content;
       margin: 16px auto 0;
       color: var(--ink-2);
       font-size: 0.82rem;
     }
  
   .location-details {
     display: flex;
     flex-direction: column;
     justify-content: center;
     padding: clamp(38px, 5vw, 68px);
   }
  
   .location-details h3 {
     margin-bottom: 20px;
     font-size: clamp(1.8rem, 3vw, 2.65rem);
     white-space: nowrap;
   }
  
   .location-address {
   margin: 20px 0 24px;
   line-height: 1.45;
 }

 .location-address span {
   display: block;
   font-size: 1rem;
   font-weight: 600;
   color: var(--ink);
 }

 .location-address small {
   display: block;
   margin-top: 3px;
   font-size: 0.9rem;
   font-weight: 400;
   color: var(--ink-2);
 }
   .location-coordinates {
     margin-bottom: 34px;
     color: var(--ink-2);
     font-size: 0.82rem;
   }
  
   .location-contact {
     display: grid;
     gap: 13px;
   }
  
    .location-contact a {
       display: flex;
       align-items: center;
       gap: 10px;
       width: fit-content;
       font-size: 1.08rem;
       font-weight: 800;
       text-decoration: none;
     }
    
     .location-contact a:hover {
       text-decoration: underline;
     }
    
     .location-contact-icon {
       width: 18px;
       height: 18px;
       flex: 0 0 auto;
       color: var(--accent-dark);
       fill: none;
       stroke: currentColor;
       stroke-width: 1.8;
       stroke-linecap: round;
       stroke-linejoin: round;
     }
  
   .location-access {
     margin: 34px 0 0;
     padding-top: 22px;
     border-top: 1px solid var(--line);
     color: var(--ink-2);
   }

/* Form */

.reservation {
  color: var(--paper);
  background: var(--ink);
}

.reservation-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(55px, 8vw, 105px);
  align-items: start;
}

.reservation-copy {
  padding-top: 20px;
}

.reservation-copy > p:not(.eyebrow) {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.direct-contact {
  display: grid;
  gap: 5px;
  margin-top: 36px;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 800;
}

.direct-contact a {
  width: fit-content;
  text-decoration: none;
}

.direct-contact a:hover {
  text-decoration: underline;
}

.form-card {
  padding: clamp(30px, 5vw, 55px);
  color: var(--ink);
  background: #223035;
}

.form-card form {
  color: var(--paper);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}

.field label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 49px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0;
  color: var(--paper);
  background: #223035;
}

 input,
 select {
   padding: 10px 12px;
 }

 #start_date {
   position: relative;
   padding-left: 48px;
   color: transparent;
   caret-color: transparent;
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='0' ry='0'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
   background-repeat: no-repeat;
   background-position: 16px center;
   background-size: 18px 18px;
 }

 #start_date.has-value {
   color: var(--paper);
   caret-color: var(--paper);
 }

 #start_date::-webkit-datetime-edit {
   color: transparent;
 }

 #start_date.has-value::-webkit-datetime-edit {
   color: var(--paper);
 }

 #start_date::-webkit-calendar-picker-indicator {
   opacity: 0;
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   cursor: pointer;
 }

select option {
  color: var(--ink);
  background: var(--paper);
}

textarea {
  min-height: 130px;
  padding: 12px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--paper);
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin-block: 3px 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.45;
}

.consent input {
  width: 17px;
  min-height: 17px;
  margin-top: 2px;
  accent-color: var(--accent);
}


 .privacy-note {
   margin: 0 0 22px;
   font-size: 0.84rem;
   line-height: 1.5;
   color: var(--paper);
   opacity: 0.82;
 }

 .privacy-note a {
   color: inherit;
   text-decoration: underline;
 }

 .honeypot {
   position: absolute;
   width: 1px;
   height: 1px;
   overflow: hidden;
   clip-path: inset(50%);
   white-space: nowrap;
 }
.form-status {
  display: none;
  margin-bottom: 22px;
  padding: 13px 15px;
  border-left: 4px solid;
  font-weight: 700;
}

.form-status.is-success {
  display: block;
  border-color: #7dd5a9;
  color: #c8f0dc;
  background: rgba(20, 108, 67, 0.25);
}

.form-status.is-error {
  display: block;
  border-color: #ff9a9a;
  color: #ffd2d2;
  background: rgba(166, 36, 36, 0.23);
}

/* Footer */

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #0d1518;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 80px;
  padding-block: 62px 48px;
}

.logo-footer {
  color: var(--paper);
}

.footer-brand p {
  max-width: 340px;
  margin-top: 23px;
}

.footer-top h2 {
  margin-bottom: 17px;
  color: var(--paper);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-top ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-top a {
  text-decoration: none;
}

.footer-top a:hover {
  color: var(--paper);
  text-decoration: underline;
}

 .footer-top address {
     font-style: normal;
   }
  
   .footer-contact-line {
     display: flex;
     gap: 8px;
     align-items: center;
     margin-top: 7px;
   }


    .footer-account {
    white-space: nowrap;
  }
  
   .footer-contact-icon {
     width: 15px;
     height: 15px;
     flex: 0 0 auto;
     color: var(--accent);
     fill: none;
     stroke: currentColor;
     stroke-width: 1.8;
     stroke-linecap: round;
     stroke-linejoin: round;
   }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

/* Legal pages */

.legal-body {
  background: var(--soft);
}

.legal-header {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

.legal-main {
  padding: 130px 0 80px;
}

.legal-document {
  max-width: 860px;
  padding: clamp(30px, 6vw, 70px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.legal-document h1 {
  max-width: none;
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.legal-document h2 {
  margin-top: 42px;
  margin-bottom: 14px;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}

.legal-document p,
.legal-document li {
  color: var(--ink-2);
} 




  .operator-details {
    margin: 34px 0 46px;
    text-align: center;
  }
 
  .operator-details p {
    margin-bottom: 18px;
  }
 
  .operator-details p:last-child {
    margin-bottom: 0;
  }



    .operator-register {
    font-size: 0.75rem;
  }
 
  .operator-details > p:first-child {
    margin-bottom: 6px;
  }

.notice {
  margin-block: 28px;
  padding: 17px 19px;
  border-left: 4px solid var(--accent);
  background: #fff8e5;
}

.back-link {
  display: inline-flex;
  margin-bottom: 25px;
  font-weight: 800;
}

/* Responsive */

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .navigation {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100svh - 78px);
    gap: 0;
    padding: 20px 22px 24px;
    overflow-y: auto;
    color: var(--ink);
    background: var(--paper);
    box-shadow: 0 18px 45px rgba(23, 33, 36, 0.15);
    transform: translateY(-125%);
    transition: transform 180ms ease;
  }

  .navigation.is-open {
    transform: translateY(0);
  }

  .navigation > a:not(.button) {
    padding: 14px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
  }

  .navigation .button {
    margin-top: 18px;
  }

     .offer-layout,
     .practical-layout,
     .inside-layout,
     .faq-layout,
     .reservation-layout,
     .location-card {
       grid-template-columns: 1fr;
     }

  .offer-copy,
  .inside-copy {
    max-width: none;
  }

  .offer-photo {
    min-height: 500px;
  }

  .practical-photo {
    min-height: 480px;
  }

  .inside-photo {
    min-height: 520px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .gallery-grid {
         grid-template-columns: repeat(2, minmax(0, 1fr));
         gap: 16px;
       }

     .location-map,
     .location-map iframe {
       min-height: 440px;
     }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .offer-photo,
  .practical-photo,
  .inside-photo {
    min-height: 0;
  }

  .offer-photo img,
  .practical-photo img,
  .inside-photo img {
    height: auto;
  }

  .header-inner {
    min-height: 72px;
  }

  .navigation {
    top: 72px;
    max-height: calc(100svh - 72px);
  }

  .hero {
    min-height: 710px;
  }

  .hero-content {
    padding-top: 120px;
    padding-bottom: 30px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
    margin-bottom: 38px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: baseline;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .section {
    padding-block: 44px;
  }

    .offer-layout,
  .practical-layout,
  .inside-layout {
    gap: 32px;
  }




  .price-block {
    align-items: flex-start;
    flex-direction: column;
  }


  
   .location-map,
   .location-map iframe {
     min-height: 360px;
   }

   .location-details {
     padding: 32px 24px;
   }

  .fact-lines div {
    grid-template-columns: 90px 1fr;
  }
     .gallery-grid {
         grid-template-columns: 1fr;
         gap: 14px;
       }
    
       .gallery-item,
       .gallery-item-wide {
         aspect-ratio: 16 / 10;
       }

        .transport-layout {
   grid-template-columns: 1fr;
   gap: 32px;
 }

 .transport-copy h2 {
   max-width: none;
 }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-card {
    padding: 25px 18px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

