/* ===== Variables & base ===== */
:root {
  --blue: hsl(230, 58%, 37%);
  --green: hsl(151, 62%, 44%);
  --blue-hover: hsl(230, 58%, 57%);
  --green-hover: hsl(151, 62%, 54%);
  --text: #111;
  --semi: #a2a2a2;
  --link: var(--blue-hover);
  --hover: var(--green);
  --bg: #fff;
  --bg-alt: #f5f6f8;
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --card-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.2s ease;
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--link);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--hover);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== Icon sprite (hidden) ===== */
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Base icon */
.icon {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
  stroke: currentColor;
  fill: none;
}

.icon--logo {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.4rem;
  color: #fff;
  vertical-align: -0.35em;
}

.icon--header {
  width: 1rem;
  height: 1rem;
  margin-right: 0.35rem;
  color: rgba(255, 255, 255, 0.95);
  vertical-align: -0.2em;
}

.header-phone:hover .icon--header {
  color: #fff;
}

.icon--badge {
  width: 1rem;
  height: 1rem;
  margin-right: 0.4rem;
  color: rgba(255, 255, 255, 0.95);
  vertical-align: -0.2em;
}

.icon--label {
  width: 1.1rem;
  height: 1.1rem;
  margin-right: 0.4rem;
  color: var(--blue);
  vertical-align: -0.25em;
}

.icon--btn {
  width: 1.15rem;
  height: 1.15rem;
  margin-right: 0.45rem;
  color: #fff;
}

.icon--btn-sm {
  width: 1rem;
  height: 1rem;
  margin-right: 0.35rem;
  color: currentColor;
  vertical-align: -0.15em;
}

.icon--facility {
  width: 1.35rem;
  height: 1.35rem;
  color: #fff;
}

.icon--cities {
  width: 1.1rem;
  height: 1.1rem;
  margin-right: 0.4rem;
  color: #fff;
  vertical-align: -0.2em;
}

.icon--contact-title {
  width: 1.1rem;
  height: 1.1rem;
  margin-right: 0.4rem;
  color: var(--blue);
  vertical-align: -0.2em;
}

.icon--contact-phone {
  width: 1rem;
  height: 1rem;
  margin-right: 0.35rem;
  color: var(--blue);
  vertical-align: -0.2em;
}

.contact-phone:hover .icon--contact-phone {
  color: var(--green);
}

.icon--footer-logo {
  width: 1.35rem;
  height: 1.35rem;
  margin-right: 0.4rem;
  color: #fff;
  vertical-align: -0.3em;
}

.icon--footer-phone {
  width: 1rem;
  height: 1rem;
  margin-right: 0.35rem;
  color: rgba(255, 255, 255, 0.9);
  vertical-align: -0.2em;
}

.footer-phones a:hover .icon--footer-phone {
  color: #fff;
}

/* Section headings */
.section-head {
  margin-bottom: 1.5rem;
}

.section-head--center {
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.35rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.section-head--center .section-eyebrow {
  margin-bottom: 0.5rem;
}

/* ===== Header ===== */
.header {
  background: var(--blue);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1.25rem;
  max-width: 1120px;
  margin: 0 auto;
}

.logo {
  display: inline-block;
  color: #fff;
}

.logo:hover {
  color: #fff;
  opacity: 0.92;
}

.logo-img {
  display: block;
  height: 2.25rem;
  width: auto;
  vertical-align: middle;
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.header-phone {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  white-space: nowrap;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.header-phone:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.25rem 4rem;
  background: var(--blue) url("gallery/hero.webp") center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(49, 79, 145, 0.92) 0%, rgba(49, 79, 145, 0.78) 50%, rgba(30, 55, 110, 0.9) 100%);
}

.hero-shape {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg-alt);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.2;
}

.hero-subtitle {
  margin: 0;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Booking ===== */
.booking {
  padding: 0 0 4rem;
  background: var(--bg-alt);
}

.booking-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 2rem 1.5rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.booking-form {
  display: grid;
  gap: 1.1rem;
  max-width: 100%;
}

.form-row label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
}

.form-row input,
.form-row select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid #e0e2e6;
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(49, 79, 145, 0.15);
}

/* Date picker */
.form-row--date .date-picker {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
}

.date-picker-input {
  flex: 1;
  min-width: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  cursor: pointer;
}

.date-picker-trigger {
  flex-shrink: 0;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f1f3;
  border: 1px solid #e0e2e6;
  border-left: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--blue);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.date-picker-trigger:hover {
  background: #e8eaee;
  color: var(--green);
}

.date-picker-trigger .icon--calendar-trigger {
  width: 1.2rem;
  height: 1.2rem;
}

/* Calendar dropdown */
.calendar {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  min-width: 280px;
  width: 100%;
  max-width: 320px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow-hover);
  border: 1px solid #e8eaee;
  padding: 1rem;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.calendar--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.calendar-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue);
}

.calendar-nav {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--blue);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.calendar-nav:hover {
  background: var(--blue);
  color: #fff;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 0.5rem;
}

.calendar-wd {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--semi);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day {
  aspect-ratio: 1;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: inherit;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.calendar-day:hover:not(:disabled) {
  background: var(--bg-alt);
  color: var(--blue);
}

.calendar-day--today {
  background: rgba(49, 79, 145, 0.12);
  color: var(--blue);
  font-weight: 600;
}

.calendar-day--today:hover:not(:disabled) {
  background: rgba(49, 79, 145, 0.2);
}

.calendar-day--selected {
  background: var(--green);
  color: #fff;
  font-weight: 600;
}

.calendar-day--selected:hover:not(:disabled) {
  background: var(--green-hover);
  color: #fff;
}

.calendar-day--other {
  color: var(--semi);
}

.calendar-day--past {
  color: var(--semi);
  cursor: not-allowed;
  opacity: 0.6;
}

.calendar-day:disabled {
  cursor: not-allowed;
}

/* ===== Gallery ===== */
.gallery {
  padding: 4rem 0;
  background: var(--bg-alt);
}

.gallery-intro {
  margin: 0.5rem auto 0;
  font-size: 1rem;
  color: var(--semi);
  max-width: 520px;
}

.gallery-grid {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery-grid li {
  margin: 0;
}

.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #e8eaee;
  aspect-ratio: 4 / 3;
  box-shadow: var(--card-shadow);
  transition: box-shadow var(--transition);
}

.gallery-grid figure:hover {
  box-shadow: var(--card-shadow-hover);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  text-align: center;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-hover);
  color: #fff;
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-message {
  margin: 0.75rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  line-height: 1.4;
  grid-column: 1 / -1;
}

.form-message--success {
  background: rgba(72, 187, 120, 0.15);
  color: #0d5c2e;
}

.form-message--error {
  background: rgba(220, 53, 69, 0.1);
  color: #b02a37;
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* Viber – brand purple */
.btn-viber {
  background: transparent;
  color: #7360f2;
  border: 2px solid #7360f2;
}

.btn-viber:hover {
  background: #7360f2;
  color: #fff;
  border-color: #7360f2;
}

.btn-viber .icon--btn-sm {
  color: currentColor;
}

/* WhatsApp – brand green */
.btn-whatsapp {
  background: transparent;
  color: #25d366;
  border: 2px solid #25d366;
}

.btn-whatsapp:hover {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.btn-whatsapp .icon--btn-sm {
  color: currentColor;
}

/* ===== Facilities ===== */
.facilities {
  padding: 4rem 0;
  background: var(--bg);
}

.facilities-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.facility-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.25rem;
  background: #fff;
  border: 1px solid #e8eaee;
  border-radius: var(--radius-sm);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.facility-card:hover {
  box-shadow: var(--card-shadow);
  border-color: rgba(49, 79, 145, 0.12);
}

.facility-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-hover) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.facility-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.facility-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.3;
}

.facility-desc {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.45;
}

/* ===== About ===== */
.about {
  padding: 4rem 0;
  background: var(--bg-alt);
}

.about-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--card-shadow);
  border-left: 4px solid var(--green);
}

/* ===== Success page ===== */
.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.25rem;
  background: var(--bg-alt);
}

.success-card {
  max-width: 480px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  text-align: center;
  border-top: 4px solid var(--green);
}

.success-title {
  margin: 0 0 1rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.02em;
}

.success-text {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.6;
}

.success-card .btn {
  display: inline-flex;
}

.about p {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
}

.about p:last-child {
  margin-bottom: 0;
}

/* ===== Cities ===== */
.cities {
  padding: 4rem 0;
  background: var(--bg);
}

.cities-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  align-items: start;
}

.cities-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid #e8eaee;
  transition: box-shadow var(--transition);
}

.cities-card:hover {
  box-shadow: var(--card-shadow-hover);
}

.cities-card-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0;
  padding: 0.85rem 1.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: -0.01em;
  color: #fff;
  background: var(--blue);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}

.cities-card-trigger:hover {
  background: var(--blue-hover);
}

.cities-card-trigger:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.cities-card-title {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
}

.cities-card-chevron {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -0.15rem;
  transition: transform var(--transition);
}

.cities-card.is-open .cities-card-chevron {
  transform: rotate(-135deg);
  margin-top: 0.2rem;
}

.cities-card-panel[hidden] {
  display: none;
}

.cities-card-panel ul {
  margin: 0;
  padding: 1rem 1.25rem 1.1rem;
  list-style: none;
}

.cities-card-panel li {
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid #f0f1f3;
  line-height: 1.4;
}

.cities-card-panel li:last-child {
  border-bottom: none;
}

/* ===== Contact ===== */
.contact {
  padding: 4rem 0;
  background: var(--bg-alt);
}

.contact-blocks {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--card-shadow);
  border: 1px solid #e8eaee;
  transition: box-shadow var(--transition);
}

.contact-card:hover {
  box-shadow: var(--card-shadow-hover);
}

.contact-card-title {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
}

.contact-card-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.contact-phone {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue);
}

.contact-phone:hover {
  color: var(--green);
}

.contact-card-messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-card-messengers .btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* ===== Footer ===== */
.footer {
  padding: 2rem 1.25rem;
  background: var(--blue);
  color: #fff;
  text-align: center;
}

.footer-inner {
  max-width: 1120px;
}

.footer-brand {
  margin-bottom: 0.5rem;
}

.footer-logo {
  display: inline-block;
}

.footer-logo-img {
  display: block;
  height: 1.75rem;
  width: auto;
}

.footer-tagline {
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition), opacity var(--transition);
}

.footer-social-link:hover {
  color: #fff;
  opacity: 0.95;
}

.icon--social {
  width: 1.35rem;
  height: 1.35rem;
}

.footer-phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-bottom: 0.5rem;
}

.footer-phones a {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.footer-phones a:hover {
  color: #fff;
}

.footer-copy {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ===== Responsive: tablet ===== */
@media (max-width: 639px) {
  .header-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .header-nav {
    justify-content: center;
  }
}

@media (min-width: 640px) {
  .hero {
    min-height: 380px;
    padding: 4rem 1.25rem 5rem;
  }

  .hero-shape {
    height: 100px;
    clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
  }

  .booking-card {
    margin-top: -3rem;
    padding: 2.25rem 2rem;
  }

  .booking-form {
    grid-template-columns: 1fr 1fr;
  }

  .booking-form .form-row:nth-child(5),
  .booking-form .form-row:nth-child(6) {
    grid-column: span 2;
  }

  .btn-primary {
    grid-column: span 2;
    justify-self: start;
    min-width: 200px;
  }

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

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

  .contact-blocks {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    display: block;
  }

  .footer-brand {
    margin: 0;
  }

  .footer-copy {
    margin: 0.75rem 0 0;
  }
}

/* ===== Responsive: desktop ===== */
@media (min-width: 900px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero {
    min-height: 420px;
    padding: 5rem 1.5rem 6rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .booking-card {
    padding: 2.5rem 2.5rem;
    margin-top: -3.5rem;
  }

  .booking-form {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .booking-form .form-row:nth-child(5),
  .booking-form .form-row:nth-child(6) {
    grid-column: span 1;
  }

  .btn-primary {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .facilities-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .cities-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
