:root {
  --bg: #f6f8f4;
  --surface: #ffffff;
  --ink: #1f2a1f;
  --muted: #5e665c;
  --brand: #9b9b4b;
  --brand-2: #b1af66;
  --accent: #85853a;
  --btn-light-olive-1: #b8b56e;
  --btn-light-olive-2: #a6a354;
  --border: #dce3d5;
  --shadow: 0 12px 30px rgba(37, 52, 28, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 248, 244, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(217, 226, 236, 0.9);
}

.nav-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: 78px;
  column-gap: clamp(10px, 1.5vw, 20px);
}

.lang-switcher {
  grid-column: 3;
  justify-self: end;
  align-self: center;
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  flex-shrink: 0;
  z-index: 2;
  padding: 2px;
  border-radius: 10px;
  border: 1px solid rgba(220, 227, 213, 0.95);
  background: linear-gradient(180deg, #eef1ea 0%, #e3e8de 100%);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(37, 52, 28, 0.06);
}

.lang-btn {
  margin: 0;
  padding: 4px 8px;
  min-width: 40px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.15s ease;
}

.lang-btn + .lang-btn {
  margin-left: 2px;
}

.lang-btn:hover:not(.is-active) {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.45);
}

.lang-flag-img {
  display: block;
  width: 27px;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 2px;
  pointer-events: none;
  box-shadow: 0 1px 2px rgba(31, 42, 31, 0.12);
}

.lang-btn.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 0 0 1px rgba(133, 133, 58, 0.35),
    0 1px 4px rgba(37, 52, 28, 0.07);
  position: relative;
  z-index: 1;
}

.lang-btn.is-active .lang-flag-img {
  box-shadow: 0 1px 3px rgba(31, 42, 31, 0.15);
}

.lang-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.brand {
  position: relative;
  display: inline-block;
  grid-column: 1;
  justify-self: start;
  width: 250px;
  height: 78px;
  z-index: 2;
}

.brand img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-47%);
  height: 130px;
  width: auto;
  display: block;
}

.nav {
  grid-column: 2;
  justify-self: center;
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 1.8vw, 28px);
  color: var(--muted);
  font-weight: 600;
  max-width: min(100%, calc(100vw - 40px));
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 700;
  padding: 12px 18px;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(
    125deg,
    var(--btn-light-olive-1),
    var(--btn-light-olive-2)
  );
}

.btn-light {
  color: var(--ink);
  border-color: var(--border);
  background: #fff;
}

.full {
  width: 100%;
}

.hero {
  position: relative;
  padding: 82px 0 60px;
  background:
    linear-gradient(
      180deg,
      rgba(16, 28, 20, 0.04) 0%,
      rgba(16, 28, 20, 0.18) 45%,
      rgba(16, 28, 20, 0.56) 100%
    ),
    url("assets/hero-kavala.png") center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 26, 38, 0.03);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.hero-copy {
  max-width: 760px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.hero-top-group {
  transform: translateY(-44px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin-bottom: 12px;
}

.hero-copy p {
  color: var(--muted);
  max-width: 62ch;
}

.hero-content-group {
  margin-top: auto;
  padding-top: 18px;
  transform: translateY(20px);
}

.hero-subtext-section {
  padding: 18px 0 8px;
}

.hero-subtext {
  margin: 0;
  max-width: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: #2f3b2b;
  white-space: normal;
}

@media (min-width: 1280px) {
  .hero-subtext {
    white-space: nowrap;
  }
}

.hero-cta {
  margin: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.highlights li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  color: #2f3d2a;
}

.hero-card {
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 26px;
}

.hero-card p {
  color: var(--muted);
}

.section {
  padding: 70px 0;
}

.muted {
  background: linear-gradient(180deg, #f1f5eb 0%, #eef3e7 100%);
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.accommodations-head {
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
}

.section-head .section-lead {
  margin-top: 12px;
  margin-bottom: 0;
  max-width: none;
  white-space: nowrap;
  color: #2f3a2d;
}

.stay-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 24px;
}

.reverse .stay-image {
  order: 2;
  border-radius: 0 16px 16px 0;
}

.reverse .stay-content {
  order: 1;
  border-radius: 16px 0 0 16px;
  margin-right: -1px;
}

.stay-image,
.stay-content {
  border-radius: 16px;
}

.stay-card:not(.reverse) .stay-image {
  border-radius: 16px 0 0 16px;
}

.stay-card:not(.reverse) .stay-content {
  border-radius: 0 16px 16px 0;
  margin-left: -1px;
}

.stay-image {
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  height: 100%;
  min-height: 340px;
}

.stay-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stay-content {
  background: #fff;
  border: 1px solid var(--border);
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.stay-content p {
  color: var(--muted);
  margin-top: 0;
}

.stay-specs {
  margin: 12px 0 16px;
  display: grid;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f6f9f3;
  border: 1px solid #dfe7d7;
}

.stay-specs p {
  margin: 0;
  color: #243224;
  font-size: 0.98rem;
  line-height: 1.35;
}

.stay-highlights {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.stay-highlights li {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #2d3b2c;
  background: #fff;
  text-align: left;
}

.placeholder {
  min-height: 250px;
  background: linear-gradient(145deg, #e6eddc, #f6f8f1);
  border: 1px dashed #b0bfa2;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #526248;
  font-weight: 700;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.amenity {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  font-weight: 600;
  text-align: center;
}

.amenities-overview {
  margin-bottom: 18px;
}

.amenities-accordion {
  display: grid;
  gap: 12px;
}

.amenity-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(36, 44, 20, 0.04);
  overflow: hidden;
}

.amenity-panel summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.amenity-panel summary::-webkit-details-marker {
  display: none;
}

.amenity-panel summary::after {
  content: "+";
  font-size: 1.3rem;
  line-height: 1;
  color: var(--accent);
}

.amenity-panel[open] summary::after {
  content: "−";
}

.amenity-panel ul {
  margin: 0;
  padding: 0 20px 18px 38px;
  color: var(--muted);
}

.amenity-panel li + li {
  margin-top: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-group {
  margin-bottom: 24px;
}

.gallery-group h3 {
  margin-bottom: 12px;
}

.gallery-grid .placeholder {
  min-height: 210px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  aspect-ratio: 4 / 3;
}

button.gallery-item {
  padding: 0;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-more {
  border: 0;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(125deg, var(--brand), var(--accent));
  text-decoration: none;
  padding: 12px;
  text-align: center;
}

.gallery-more::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: var(--more-bg) center / cover no-repeat;
  filter: blur(4px);
  transform: scale(1.08);
  opacity: 0.72;
}

.gallery-more::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(100, 118, 52, 0.45), rgba(70, 96, 46, 0.42));
}

.gallery-more span {
  position: relative;
  z-index: 1;
}

.gallery-more:hover {
  filter: brightness(1.03);
}

.modal-open {
  overflow: hidden;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 14, 12, 0.58);
}

.gallery-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1060px, 92%);
  max-height: 92vh;
  margin: 4vh auto;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: auto;
  padding: 16px;
}

.gallery-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.gallery-modal-close {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  width: 38px;
  height: 38px;
  font-size: 1.3rem;
  cursor: pointer;
}

.gallery-viewer {
  position: relative;
  background: #0d1410;
  border-radius: 12px;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#gallery-main-img {
  width: 100%;
  height: min(62vh, 640px);
  object-fit: contain;
  display: block;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  background: rgba(10, 18, 14, 0.52);
}

.gallery-nav-prev {
  left: 10px;
}

.gallery-nav-next {
  right: 10px;
}

.gallery-thumbs {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
}

.gallery-thumb-btn {
  border: 2px solid transparent;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery-thumb-btn.is-active {
  border-color: var(--brand);
}

.gallery-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 360;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 8, 0.82);
}

.image-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1200px, 95%);
  height: 92vh;
  margin: 4vh auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
}

#image-lightbox-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.pricing-card ul {
  margin: 0 0 16px;
  padding-left: 18px;
}

.pricing-card li {
  margin-bottom: 8px;
}

.maps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.map-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
}

.single-map {
  margin: 0;
}

.map-card iframe {
  border: 0;
  width: 100%;
  height: 320px;
  border-radius: 10px;
}

.map-card p {
  margin: 10px 2px 4px;
  color: var(--muted);
}

.map-card a {
  color: var(--accent);
  font-weight: 700;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.85fr);
  gap: 16px;
  align-items: stretch;
}

.location-layout .map-card {
  display: grid;
  grid-template-rows: auto minmax(280px, 1fr) auto;
  min-height: 0;
  height: 100%;
}

.location-layout .map-card iframe {
  height: 100%;
  min-height: 280px;
}

.location-info-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.location-info-card h3 {
  margin-bottom: 10px;
}

.location-info-card ul {
  margin: 0 0 16px;
  padding-left: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.location-info-card li {
  margin-bottom: 10px;
}

.location-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
}

.review-summary {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.review-score-box {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 12px;
  margin-bottom: 20px;
}

.score-value {
  min-width: 58px;
  height: 58px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(125deg, var(--brand), var(--accent));
  font-weight: 800;
  font-size: 1.3rem;
}

.review-score-box h3 {
  margin: 0 0 4px;
}

.review-score-box p {
  margin: 0;
  color: var(--muted);
}

.review-updated {
  margin-top: 4px !important;
  font-size: 0.84rem;
}

.review-updated time {
  margin-left: 0.35em;
}

.review-badge {
  margin-left: auto !important;
  text-align: right;
  font-weight: 700;
  color: var(--accent) !important;
  background: #f2f6ea;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.review-bars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 18px;
}

.review-item {
  min-width: 0;
}

.review-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #dfe7f1;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(125deg, var(--brand), var(--accent));
}

.contact-section {
  padding-top: 36px;
  padding-bottom: 30px;
}

.contact-grid {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 28px rgba(37, 52, 28, 0.045);
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  align-items: stretch;
  gap: 28px 36px;
  padding: 28px 32px;
}

.contact-intro {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: flex-start;
  min-height: 100%;
}

.contact-intro .eyebrow {
  margin: 0;
}

.contact-intro > h2 {
  margin: 0;
  line-height: 1.18;
}

.contact-intro-lead {
  margin: 0;
  max-width: 58ch;
}

.contact-lang-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
  max-width: min(100%, 46ch);
}

@media (min-width: 769px) {
  .contact-lang-line {
    margin-top: auto;
    padding-top: 10px;
  }
}

.contact-lang-line__kicker {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 700;
  color: var(--muted);
}

.contact-lang-line__sep {
  color: rgba(94, 102, 92, 0.45);
  font-weight: 600;
  font-size: clamp(0.92rem, 1.35vw, 1rem);
  user-select: none;
}

.contact-lang-line__text {
  font-size: clamp(0.92rem, 1.35vw, 1.02rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.contact-break-line {
  display: block;
  margin-top: 6px;
}

.contact-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 2px 0 0 28px;
  margin: 0;
  border-left: 1px solid rgba(220, 227, 213, 0.95);
}

.contact-card h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.contact-card ul {
  margin: 0 0 20px;
  padding-left: 18px;
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-apps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.contact-app {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 12px;
  width: 100%;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.contact-app:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(23, 31, 18, 0.08);
}

.contact-app-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.contact-app-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-app-whatsapp .contact-app-icon {
  background: linear-gradient(180deg, #25d366 0%, #128c7e 100%);
}

.contact-app-viber .contact-app-icon {
  background: linear-gradient(180deg, #7360f2 0%, #59267c 100%);
}

.contact-app-email .contact-app-icon {
  background: linear-gradient(180deg, #6d7d8a 0%, #41525f 100%);
}

@media (max-width: 768px) {
  .contact-card {
    border-left: none;
    padding-left: 0;
    padding-top: 8px;
    margin-top: 8px;
    border-top: 1px solid rgba(220, 227, 213, 0.95);
  }

  .contact-lang-line {
    margin-top: 4px;
  }

  .contact-apps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .contact-app-label {
    display: none;
  }

  .contact-app {
    padding: 12px;
    font-size: 0.82rem;
    gap: 0;
    justify-content: center;
    min-height: 48px;
  }

  .contact-app-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .contact-app-icon svg {
    width: 17px;
    height: 17px;
  }
}

.site-footer {
  padding: 24px 0 0;
  margin-bottom: -15px;
  color: var(--muted);
  text-align: center;
}

.site-footer .container > p {
  margin: 0;
  transform: translateY(12px);
}

.powered-by {
  margin-top: -20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  line-height: 1;
  transform: translateX(4px);
}

.powered-by span {
  font-size: clamp(0.96rem, 1.45vw, 1.3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #707972;
}

.powered-by img {
  height: 150px;
  width: auto;
  display: block;
  margin-left: -8px;
  transform: translateY(2px);
}

@media (max-width: 1100px) {
  .container {
    width: 94%;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .amenities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-subtext {
    max-width: 66ch;
    white-space: normal;
    font-size: 1.08rem;
  }
}

@media (max-width: 768px) {
  .section-head .section-lead {
    white-space: normal;
  }
}

@media (max-width: 980px) {
  .nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .brand {
    grid-column: auto;
    justify-self: auto;
  }

  .nav {
    display: none;
    grid-column: auto;
    justify-self: auto;
    max-width: none;
  }

  .lang-switcher {
    grid-column: auto;
    justify-self: auto;
    margin-left: auto;
  }

  .hero-grid,
  .stay-card,
  .contact-grid,
  .pricing-grid,
  .maps-grid,
  .review-bars,
  .location-layout,
  .amenities-columns {
    grid-template-columns: 1fr;
  }

  .stay-card {
    gap: 16px;
  }

  .stay-card:not(.reverse) .stay-image,
  .stay-card:not(.reverse) .stay-content,
  .reverse .stay-image,
  .reverse .stay-content {
    border-radius: 16px;
    margin-left: 0;
    margin-right: 0;
  }

  .stay-highlights {
    grid-template-columns: 1fr;
  }

  .review-badge {
    margin-left: auto !important;
  }

  .hero-subtext {
    white-space: normal;
  }

  .hero-top-group {
    transform: translateY(0);
  }

  .hero-content-group {
    transform: translateY(0);
    padding-top: 10px;
  }

  .reverse .stay-image,
  .reverse .stay-content {
    order: unset;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stay-image {
    min-height: 300px;
    height: auto;
  }
}

@media (max-width: 620px) {
  .container {
    width: 94%;
  }

  .nav-wrap {
    min-height: 64px;
  }

  .brand {
    width: min(240px, 52vw);
    height: 72px;
  }

  .brand img {
    top: 50%;
    transform: translateY(-47%);
    height: 108px;
  }

  .hero {
    padding: 36px 0 42px;
  }

  .hero-copy {
    min-height: unset;
  }

  h1 {
    font-size: clamp(1.75rem, 8.2vw, 2.35rem);
  }

  h2 {
    font-size: clamp(1.35rem, 6.2vw, 1.85rem);
  }

  .hero-cta {
    margin: 14px 0 0;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .amenities-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stay-image,
  .gallery-item {
    aspect-ratio: 16 / 10;
  }

  .stay-image {
    min-height: 220px;
    height: auto;
  }

  .stay-content {
    padding: 18px;
  }

  .stay-specs {
    padding: 10px 12px;
  }

  .pricing-card,
  .contact-grid {
    padding: 18px;
  }

  .amenities-toggle {
    min-width: 0;
    width: 100%;
  }

  .review-score-box {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .review-badge {
    margin-left: 0 !important;
    text-align: left;
    max-width: 100%;
  }

  .gallery-viewer {
    min-height: 250px;
  }

  #gallery-main-img {
    height: min(44vh, 340px);
  }

  .gallery-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-modal-panel {
    width: 96%;
    margin: 2vh auto;
    max-height: 96vh;
  }

  .gallery-nav {
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }

  .score-value {
    min-width: 48px;
    height: 48px;
    font-size: 1.05rem;
  }

  .review-badge {
    font-size: 0.8rem;
    padding: 6px 9px;
  }

  .contact-break-line {
    margin-top: 3px;
  }
}

@media (max-width: 420px) {
  html {
    font-size: 15px;
  }

  .container {
    width: 95%;
  }

  .section {
    padding: 44px 0;
  }

  .site-header .container {
    width: 96%;
  }

  .brand {
    width: min(228px, 56vw);
    height: 68px;
  }

  .brand img {
    height: 100px;
  }

  .btn {
    padding: 11px 14px;
  }

  .stay-content,
  .pricing-card,
  .contact-grid,
  .review-summary {
    padding: 14px;
  }

  .stay-image {
    min-height: 200px;
  }
}

@media (max-width: 360px) {
  html {
    font-size: 14px;
  }
}
