:root {
  --color-primary: #D4763C;
  --color-primary-light: #E89A60;
  --color-primary-dark: #B8612C;
  --color-accent: #2E86AB;
  --color-accent-light: #4DA3C4;
  --color-bg: #FFFAF5;
  --color-bg-alt: #FFF3E8;
  --color-card: #FFFFFF;
  --color-text: #2D2D2D;
  --color-text-light: #5A5A5A;
  --color-text-muted: #8A8A8A;
  --color-border: #F0E6DC;
  --color-success: #3DAA6D;
  --color-danger: #C0392B;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Nunito', sans-serif;
  line-height: 1.2;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navbar ── */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 250, 245, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-primary);
  text-decoration: none;
}

.nav-logo span {
  color: var(--color-accent);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}

.nav-links a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.nav-cta {
  background: var(--color-primary) !important;
  color: #fff !important;
}

.nav-cta:hover {
  background: var(--color-primary-dark) !important;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #F5EDE6, #EDE3D9);
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(255,250,245,0.88) 0%,
      rgba(255,250,245,0.7) 45%,
      rgba(255,250,245,0.3) 70%,
      rgba(255,250,245,0.15) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(255,250,245,0.4) 0%,
      rgba(255,250,245,0.15) 40%,
      rgba(255,250,245,0.6) 80%,
      var(--color-bg) 100%
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  background: var(--color-success);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 20px;
  text-shadow: 0 1px 8px rgba(255,250,245,0.6);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text);
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.7;
  text-shadow: 0 1px 6px rgba(255,250,245,0.8);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--color-border);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  backdrop-filter: blur(4px);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  color: var(--color-text-muted);
  width: 32px;
  height: 32px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Buttons ── */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: rgba(255,255,255,0.3);
  color: var(--color-text);
  border-color: var(--color-text);
  backdrop-filter: blur(4px);
}

.btn-outline-light:hover {
  background: var(--color-text);
  color: #fff;
  transform: translateY(-2px);
}

.btn-room-cta {
  width: 100%;
  margin-top: 8px;
}

/* ── Sections ── */

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  color: var(--color-text);
}

.section-intro {
  text-align: center;
  color: var(--color-text-light);
  max-width: 640px;
  margin: 0 auto 56px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── Feature cards ── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--color-primary);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ── Rooms: přehledová tabulka ── */

.rooms-table-wrapper {
  overflow-x: auto;
  margin-bottom: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--color-card);
  box-shadow: var(--shadow-sm);
}

.rooms-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.rooms-table thead {
  background: var(--color-bg);
}

.rooms-table th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  white-space: nowrap;
  border-bottom: 2px solid var(--color-border);
}

.rooms-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.rooms-table tbody tr:last-child td {
  border-bottom: none;
}

.table-row-link {
  cursor: pointer;
  transition: background var(--transition);
}

.table-row-link:hover {
  background: var(--color-bg-alt);
}

.td-yes {
  color: var(--color-success);
  font-weight: 600;
}

.td-no {
  color: var(--color-text-muted);
}

.status-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.status-available {
  background: #E8F5E9;
  color: #2E7D32;
}

.status-reserved {
  background: #FFF3E0;
  color: #E65100;
}

.status-occupied {
  background: #FFEBEE;
  color: #C62828;
}

.table-hint {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-bottom: 48px;
}

/* ── Room detail ── */

.room-detail {
  margin-bottom: 48px;
  scroll-margin-top: 96px;
}

.room-detail:last-of-type {
  margin-bottom: 0;
}

.room-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.room-detail-inner:hover {
  box-shadow: var(--shadow-md);
}

/* ── Room gallery ── */

.room-gallery {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}

.gallery-main {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 300px;
  background: linear-gradient(135deg, #F5EDE6, #EDE3D9);
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.gallery-main-img:hover {
  transform: scale(1.03);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-thumb {
  aspect-ratio: 4/3;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition), opacity var(--transition);
  opacity: 0.6;
  width: 100%;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--color-primary);
  opacity: 1;
}

/* ── Room info panel ── */

.room-info {
  padding: 32px 32px 32px 0;
  display: flex;
  flex-direction: column;
}

.room-info-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 16px;
}

.room-type-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.room-info h3 {
  font-size: 1.6rem;
  font-weight: 800;
}

.room-price-tag {
  text-align: right;
  flex-shrink: 0;
}

.room-price-amount {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.room-price-period {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.room-description {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.room-specs {
  margin-bottom: 20px;
}

.room-specs h4,
.room-includes h4 {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.spec-list {
  list-style: none;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.92rem;
}

.spec-list li:last-child {
  border-bottom: none;
}

.spec-label {
  color: var(--color-text-light);
}

.spec-value {
  font-weight: 600;
}

.spec-yes {
  color: var(--color-success);
}

.spec-no {
  color: var(--color-text-muted);
  font-weight: 400;
  font-size: 0.85rem;
}

/* ── Info tooltip ── */

.info-tooltip {
  position: relative;
  display: inline-block;
  cursor: help;
  margin-left: 4px;
  vertical-align: middle;
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  font-style: italic;
  font-family: Georgia, serif;
  line-height: 1;
}

.info-text {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  right: -8px;
  width: 240px;
  padding: 10px 14px;
  background: var(--color-text);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.info-text::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 14px;
  border: 6px solid transparent;
  border-top-color: var(--color-text);
}

.info-tooltip:hover .info-text,
.info-tooltip:focus .info-text {
  display: block;
}

.room-includes {
  margin-bottom: 20px;
}

.includes-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.include-tag {
  display: inline-block;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-light);
}

.room-availability {
  margin-bottom: 16px;
}

/* ── Gallery grid ── */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item-wide {
  grid-column: span 3;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item-wide .gallery-img {
  aspect-ratio: 21/9;
}

.gallery-item:not(.gallery-item-wide) .gallery-img {
  aspect-ratio: 4/3;
}

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

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 16px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox-prev svg,
.lightbox-next svg {
  width: 28px;
  height: 28px;
}

.lightbox-img {
  max-width: 85vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}

/* ── Equipment ── */

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.equipment-category {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.equipment-category h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.equipment-category ul {
  list-style: none;
}

.equipment-category li {
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-border);
}

.equipment-category li:last-child {
  border-bottom: none;
}

/* ── Amenities ── */

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.amenity-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.amenity-icon {
  width: 40px;
  height: 40px;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.amenity-icon svg {
  width: 100%;
  height: 100%;
}

.amenity-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.amenity-card ul {
  list-style: none;
}

.amenity-card li {
  padding: 4px 0;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.amenity-detail {
  font-size: 0.82rem !important;
  color: var(--color-text-muted) !important;
}

/* ── Map ── */

.map-wrapper {
  text-align: center;
}

.map-wrapper h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-md);
  height: 480px;
  z-index: 1;
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--color-text-light);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.legend-dot-home { background: var(--color-primary); }
.legend-dot-shopping { background: #8E44AD; }
.legend-dot-health { background: #E74C3C; }
.legend-dot-transport { background: #2E86AB; }
.legend-dot-education { background: #F39C12; }
.legend-dot-leisure { background: #27AE60; }
.legend-dot-services { background: #7F8C8D; }

.map-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  border: 2px solid #fff;
}

.map-marker-home {
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  font-size: 16px;
}

.map-address {
  margin-top: 12px;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

/* ── Contact ── */

.section-contact {
  background: linear-gradient(135deg, #2D2D2D 0%, #3D3530 100%);
  color: #fff;
}

.section-contact .section-title {
  color: #fff;
}

.section-contact .section-intro {
  color: rgba(255,255,255,0.7);
}

.section-contact .section-intro strong {
  color: var(--color-primary-light);
}

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-card {
  display: block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 36px 48px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: all var(--transition);
  min-width: 260px;
}

.contact-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.contact-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
  color: var(--color-primary-light);
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-card h3 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 1.15rem;
  font-weight: 600;
}

.contact-name {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
}

/* ── Footer ── */

.footer {
  background: #222;
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 24px 0;
  font-size: 0.85rem;
}

/* ── Animations ── */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */

@media (max-width: 1024px) {
  .features-grid,
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .room-detail-inner {
    grid-template-columns: 1fr;
  }

  .room-info {
    padding: 0 24px 32px;
  }

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

  .gallery-item-wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

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

  .hero-scroll-hint {
    display: none;
  }

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

  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .rooms-table {
    font-size: 0.85rem;
  }

  .rooms-table th,
  .rooms-table td {
    padding: 10px 12px;
  }

  .room-info-header {
    flex-direction: column;
  }

  .room-price-tag {
    text-align: left;
  }

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

  .gallery-item-wide {
    grid-column: span 1;
  }

  .contact-cards {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    width: 100%;
    max-width: 360px;
    min-width: auto;
    padding: 28px 24px;
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .map-container {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .hero-highlights {
    gap: 8px;
  }

  .hero-tag {
    padding: 6px 12px;
    font-size: 0.82rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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