@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #e8c97a;
  --deep: #0a1628;
  --deep2: #112240;
  --teal: #1a6b6b;
  --teal-light: #2aafaf;
  --white: #ffffff;
  --offwhite: #f9f6f0;
  --text: #2c2c2c;
  --text-light: #666;
  --border: rgba(201,168,76,0.3);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--deep);
  color: #aaa;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--gold-light); text-decoration: none; }
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar-right a { font-size: 15px; }

/* ===== NAVBAR ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  transition: background 0.3s;
}
nav.scrolled { background: var(--deep); }
nav.scrolled .logo-light { filter: brightness(10); }
nav.scrolled .nav-links a { color: var(--offwhite); }
nav.scrolled .book-btn { background: var(--gold); color: var(--deep); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  position: relative;
  gap: 20px;
}
.logo img { height: 52px; object-fit: contain; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--deep);
  text-decoration: none;
  letter-spacing: 1px;
}
.logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  align-items: center;
  position: static;
  transform: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--deep);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 4px;
  transition: all 0.2s;
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.book-btn {
  background: var(--deep);
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 4px !important;
  transition: all 0.3s !important;
}
.book-btn:hover { background: var(--gold) !important; color: var(--deep) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--deep);
  transition: all 0.3s;
  border-radius: 2px;
}

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 700;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--deep);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-header p { color: var(--text-light); max-width: 600px; margin: 0 auto; line-height: 1.8; }
.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--deep) 0%, var(--deep2) 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/bg-breadcrumbs.jpg') center/cover no-repeat;
  opacity: 0.15;
}
.page-hero.page-hero-about::before { background-image: url('../images/about-us-4.jpg'); opacity: 0.3; }
.page-hero.page-hero-gallery::before { background-image: url('../images/gallery-fullwidth-02.jpg'); opacity: 0.3; }
.page-hero.page-hero-package::before { background-image: url('../images/package1.jpg'); opacity: 0.3; }
.page-hero.page-hero-contact::before { background-image: url('../images/bg-breadcrumbs7.jpg'); opacity: 0.3; }
.page-hero.page-hero-sightseeing::before { background-image: url('../images/bg-sightseeing.jpg'); opacity: 0.3; }
.page-hero.page-hero-rooms::before { background-image: url('../images/rooms-05.jpg'); opacity: 0.3; }
.page-hero.page-hero-entertainment::before { background-image: url('../images/entertainment1.jpg'); opacity: 0.3; }
.page-hero .container { position: relative; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  color: var(--white);
  margin-bottom: 14px;
}
.page-hero p { color: rgba(255,255,255,0.75); font-size: 16px; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--gold-light); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ===== FOOTER ===== */
footer {
  background: var(--deep);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}
.footer-logo span { color: var(--gold); }
footer p { line-height: 1.8; font-size: 14px; }
.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 14px; }
.footer-contact-item .icon { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--deep); }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.card-img { width: 100%; height: 220px; object-fit: cover; display: block; }
.card-body { padding: 22px; }
.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--deep);
  margin-bottom: 10px;
}
.card-body p { color: var(--text-light); font-size: 14px; line-height: 1.7; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.btn-gold { background: var(--gold); color: var(--deep); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--deep); }
.btn-dark { background: var(--deep); color: var(--white); }
.btn-dark:hover { background: var(--deep2); }

/* ===== SECTIONS ===== */
section { padding: 80px 0; }
.bg-offwhite { background: var(--offwhite); }
.bg-deep { background: var(--deep); }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.service-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: all 0.3s;
  border-top: 3px solid transparent;
}
.service-card:hover { border-top-color: var(--gold); transform: translateY(-4px); }
.service-icon { font-size: 36px; margin-bottom: 14px; }
.service-card h4 { font-family: 'Playfair Display', serif; color: var(--deep); font-size: 17px; }

/* ===== ROOMS GRID ===== */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.room-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  background: var(--white);
  transition: all 0.3s;
}
.room-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.15); }
.room-img { position: relative; overflow: hidden; height: 240px; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.room-card:hover .room-img img { transform: scale(1.06); }
.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--deep);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.room-info { padding: 24px; }
.room-info h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--deep); margin-bottom: 10px; }
.room-info p { color: var(--text-light); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.room-price { font-size: 22px; color: var(--gold); font-weight: 700; }
.room-price small { font-size: 13px; color: var(--text-light); font-weight: 400; }
.room-features { display: flex; gap: 16px; flex-wrap: wrap; margin: 14px 0; }
.room-feature { font-size: 13px; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
.room-feature::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}
.gallery-item.large { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 250px; object-fit: cover; display: block; transition: transform 0.4s; }
.gallery-item.large img { height: 250px; }
.gallery-item.tall img { height: 516px; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.5);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== PACKAGES ===== */
.package-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0,0,0,0.1);
  transition: all 0.3s;
  border: 1px solid var(--border);
}
.package-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(0,0,0,0.15); }
.package-img { height: 220px; overflow: hidden; }
.package-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.package-card:hover .package-img img { transform: scale(1.06); }
.package-body { padding: 26px; }
.package-body h3 { font-family: 'Playfair Display', serif; font-size: 21px; color: var(--deep); margin-bottom: 10px; }
.package-body p { color: var(--text-light); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.package-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.package-tag {
  font-size: 12px;
  padding: 4px 10px;
  background: var(--offwhite);
  border-radius: 20px;
  color: var(--deep);
  font-weight: 700;
}
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }

/* ===== BOOKING FORM ===== */
.booking-widget {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.booking-widget h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--deep);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--deep);
  margin-bottom: 8px;
}
.form-group input, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0d9cc;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--offwhite);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus { border-color: var(--gold); background: var(--white); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 30px; color: var(--deep); margin-bottom: 20px; }
.contact-info p { color: var(--text-light); line-height: 1.8; margin-bottom: 30px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item h5 { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-item p { color: var(--text); font-size: 15px; margin: 0; }
.map-embed { border-radius: 14px; overflow: hidden; height: 320px; margin-top: 30px; }
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ===== SIGHTSEEING ===== */
.sight-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.sight-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  background: var(--white);
  transition: all 0.3s;
}
.sight-card:hover { transform: translateY(-6px); box-shadow: 0 14px 44px rgba(0,0,0,0.14); }
.sight-img { height: 200px; overflow: hidden; }
.sight-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.sight-card:hover .sight-img img { transform: scale(1.07); }
.sight-body { padding: 22px; }
.sight-body h3 { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--deep); margin-bottom: 8px; }
.sight-body p { color: var(--text-light); font-size: 14px; line-height: 1.7; }
.sight-body .dist { font-size: 12px; color: var(--gold); font-weight: 700; margin-bottom: 8px; display: block; }

/* ===== ENTERTAINMENT ===== */
.entertain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.entertain-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
}
.entertain-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.13); }
.entertain-icon-wrap {
  height: 140px;
  background: linear-gradient(135deg, var(--deep) 0%, var(--deep2) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
}
.entertain-body { padding: 22px; }
.entertain-body h3 { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--deep); margin-bottom: 10px; }
.entertain-body p { color: var(--text-light); font-size: 14px; line-height: 1.7; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 14px;
}
.about-img-collage img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.about-img-collage img:first-child { grid-row: span 2; height: 100%; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--deep); margin-bottom: 20px; line-height: 1.2; }
.about-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 30px 0; }
.stat { text-align: center; padding: 20px; background: var(--offwhite); border-radius: 10px; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--gold); font-weight: 700; }
.stat-label { font-size: 13px; color: var(--text-light); margin-top: 4px; }

/* ===== HERO (home) ===== */
.hero {
  position: relative;
  height: 92vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.55) 0%, rgba(10,22,40,0.72) 45%, rgba(10,22,40,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  width: 100%;
  animation: fadeUp 0.9s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: block;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 7vw, 64px);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p { font-size: 18px; opacity: 0.9; margin-bottom: 30px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.hero-control {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.14);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.hero-control:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-1px);
}
.hero-dots {
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.hero-dot.active {
  background: var(--gold);
  transform: scale(1.15);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.testimonial-card {
  background: var(--white);
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  position: relative;
  border-left: 4px solid var(--gold);
}
.testimonial-stars { color: var(--gold); margin-bottom: 14px; font-size: 16px; }
.testimonial-card p { color: var(--text-light); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--deep);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.testimonial-author h5 { font-size: 15px; color: var(--deep); }
.testimonial-author span { font-size: 12px; color: var(--text-light); }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: white; font-size: 32px; cursor: pointer;
  background: none; border: none; line-height: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; transform: none; background: var(--white); padding: 20px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
  .nav-links.open { display: flex; }
  nav { position: relative; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .gallery-item img, .gallery-item.large img, .gallery-item.tall img { height: 200px; }
  .form-row { grid-template-columns: 1fr; }
  .about-img-collage { grid-template-columns: 1fr; grid-template-rows: auto; }
  .about-img-collage img:first-child { grid-row: auto; height: 250px; }
}
@media (max-width: 600px) {
  section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .topbar .container { flex-direction: column; text-align: center; }
}
