/* =========================================
   ROSADA BEACH & RESTAURANT — STYLESHEET
   Breezy Italian beach club aesthetic
   Sun-bleached, warm, coastal luxury
   ========================================= */

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

:root {
  --sand:        #F5EDD8;
  --sand-dark:   #EAD9B8;
  --sand-deep:   #D4BC8E;
  --ocean:       #1B6B8A;
  --ocean-dark:  #124D66;
  --ocean-light: #3A8FAD;
  --coral:       #D4614A;
  --coral-light: #E8866F;
  --white:       #FFFDF8;
  --deep:        #1A1208;
  --text:        #3A2E1E;
  --text-muted:  #7A6B52;
  --gold:        #C8923A;
  --shadow:      0 4px 30px rgba(26,18,8,0.12);
  --shadow-lg:   0 16px 60px rgba(26,18,8,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

/* ══════════════════════════════════
   LOADER
══════════════════════════════════ */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--ocean-dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-brand {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--sand);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
}

.loader-brand span {
  display: block;
  font-size: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.5);
  margin-top: 4px;
}

.loader-wave {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 32px;
}

.loader-wave span {
  display: block;
  width: 5px;
  border-radius: 3px;
  background: var(--sand-deep);
  animation: waveBar 1.1s ease-in-out infinite;
}

.loader-wave span:nth-child(1) { height: 10px; animation-delay: 0s; }
.loader-wave span:nth-child(2) { height: 20px; animation-delay: 0.1s; }
.loader-wave span:nth-child(3) { height: 30px; animation-delay: 0.2s; }
.loader-wave span:nth-child(4) { height: 18px; animation-delay: 0.3s; }
.loader-wave span:nth-child(5) { height: 26px; animation-delay: 0.4s; }
.loader-wave span:nth-child(6) { height: 12px; animation-delay: 0.5s; }
.loader-wave span:nth-child(7) { height: 22px; animation-delay: 0.4s; }
.loader-wave span:nth-child(8) { height: 16px; animation-delay: 0.3s; }
.loader-wave span:nth-child(9) { height: 28px; animation-delay: 0.2s; }
.loader-wave span:nth-child(10) { height: 10px; animation-delay: 0.1s; }

@keyframes waveBar {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50%       { transform: scaleY(1);   opacity: 1; }
}

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
.navbar {
  background: rgba(18, 77, 102, 0.96);
  backdrop-filter: blur(14px);
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(245,237,216,0.12);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--sand) !important;
  text-decoration: none;
  line-height: 1;
}

.navbar-brand small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.45);
  margin-top: 2px;
}

.navbar-nav .nav-link {
  color: rgba(245,237,216,0.75) !important;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem !important;
  transition: color 0.25s;
}

.navbar-nav .nav-link:hover { color: var(--sand) !important; }

.btn-nav-book {
  border: 1px solid rgba(212,97,74,0.8);
  color: var(--coral-light) !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.22em;
  padding: 0.38rem 1.1rem !important;
  transition: all 0.3s;
}

.btn-nav-book:hover {
  background: var(--coral);
  color: var(--white) !important;
  border-color: var(--coral);
}

.navbar-toggler {
  border-color: rgba(245,237,216,0.3);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(245,237,216,0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(175deg, #0D3D52 0%, #1B6B8A 45%, #2E5F45 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-sun {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,200,80,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  overflow: hidden;
  pointer-events: none;
}

.hero-waves svg { width: 100%; height: 100%; }

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23F5EDD8' fill-opacity='0.04'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

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

.hero-eyebrow {
  font-size: 0.66rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.6);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  color: var(--sand);
  line-height: 1.05;
  margin-bottom: 0.25rem;
}

.hero h1 em {
  font-style: italic;
  color: #FFD580;
}

.hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(245,237,216,0.6);
  margin-bottom: 2rem;
  margin-top: 0.5rem;
}

.hero-divider {
  width: 55px;
  height: 2px;
  background: linear-gradient(to right, var(--coral), transparent);
  margin: 1.5rem 0;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.hero-pill {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.55);
  border: 1px solid rgba(245,237,216,0.2);
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
}

.btn-hero-main {
  background: var(--coral);
  color: var(--white);
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.95rem 2.4rem;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
}

.btn-hero-main:hover {
  background: var(--coral-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,97,74,0.4);
}

.btn-hero-outline {
  background: transparent;
  color: rgba(245,237,216,0.75);
  border: 1px solid rgba(245,237,216,0.3);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.95rem 2.4rem;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  margin-bottom: 0.5rem;
}

.btn-hero-outline:hover {
  border-color: var(--sand);
  color: var(--sand);
}

/* floating card */
.hero-card {
  background: rgba(245,237,216,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245,237,216,0.18);
  padding: 2rem 1.75rem;
  text-align: center;
}

.hero-card-rating {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  color: #FFD580;
  line-height: 1;
  font-weight: 400;
}

.hero-card-stars { color: #FFD580; font-size: 0.9rem; letter-spacing: 0.15em; }
.hero-card-label { font-size: 0.58rem; letter-spacing: 0.38em; text-transform: uppercase; color: rgba(245,237,216,0.35); margin-top: 0.4rem; }
.hero-card-divider { width: 28px; height: 1px; background: rgba(245,237,216,0.2); margin: 1.2rem auto; }
.hero-card-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.88rem; color: rgba(245,237,216,0.55); line-height: 1.6; }

/* ══════════════════════════════════
   SECTION COMMONS
══════════════════════════════════ */
.section-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--coral);
  display: block;
  margin-bottom: 0.7rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.section-title em { font-style: italic; color: var(--ocean); }

.coral-divider {
  width: 48px;
  height: 2px;
  background: var(--coral);
  margin: 1.25rem 0;
}
.coral-divider.mx-auto { margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
.about-section {
  background: var(--white);
  padding: 7rem 0;
}

.about-img-wrap { position: relative; }

.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.about-img-accent {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 55%;
  height: 55%;
  border: 2px solid var(--coral);
  opacity: 0.25;
  z-index: -1;
}

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--ocean-dark);
  color: var(--sand);
  padding: 1rem 1.4rem;
  text-align: center;
}

.about-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #FFD580;
  line-height: 1;
}

.about-badge .lbl {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.5);
  margin-top: 2px;
}

.about-text p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.feature-list li {
  font-size: 0.86rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(200,146,58,0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
}

.feature-list li i { color: var(--coral); width: 18px; }

/* ══════════════════════════════════
   MENU
══════════════════════════════════ */
.menu-section {
  background: var(--sand);
  padding: 7rem 0;
  position: relative;
}

.menu-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8923A' fill-opacity='0.05'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.menu-tabs .nav-link {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  padding: 0.55rem 1.2rem;
  border-radius: 0;
  transition: all 0.25s;
}

.menu-tabs .nav-link:hover { color: var(--ocean); }

.menu-tabs .nav-link.active {
  color: var(--coral);
  border-bottom-color: var(--coral);
  background: none;
}

.menu-item {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(200,146,58,0.18);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--text);
}

.menu-item-desc {
  font-size: 0.77rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  line-height: 1.5;
}

.menu-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--ocean);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 1.75rem;
  font-style: italic;
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════
   BEACH CLUB
══════════════════════════════════ */
.beach-section {
  background: var(--ocean-dark);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.beach-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(18,77,102,0.4), transparent);
}

.beach-section .section-title { color: var(--sand); }
.beach-section .section-eyebrow { color: rgba(245,237,216,0.5); }

.beach-feature {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(245,237,216,0.1);
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.beach-feature:hover {
  background: rgba(245,237,216,0.05);
  border-color: rgba(245,237,216,0.2);
  transform: translateY(-4px);
}

.beach-feature-icon {
  font-size: 2rem;
  color: #FFD580;
  margin-bottom: 1rem;
  display: block;
}

.beach-feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--sand);
  margin-bottom: 0.5rem;
}

.beach-feature-text {
  font-size: 0.82rem;
  color: rgba(245,237,216,0.5);
  line-height: 1.7;
}

/* ══════════════════════════════════
   EVENTS
══════════════════════════════════ */
.events-section {
  background: var(--white);
  padding: 7rem 0;
}

.event-card {
  background: var(--sand);
  border: 1px solid rgba(200,146,58,0.2);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.event-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform 0.35s;
}

.event-card:hover::after { transform: scaleX(1); }
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.event-day {
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.5rem;
}

.event-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.event-desc {
  font-size: 0.84rem;
  line-height: 1.72;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.event-meta {
  list-style: none;
  padding: 0;
  border-top: 1px solid rgba(200,146,58,0.18);
  padding-top: 1rem;
}

.event-meta li {
  font-size: 0.77rem;
  color: var(--text-muted);
  padding: 0.2rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-meta li i { color: var(--coral); width: 16px; }

/* ══════════════════════════════════
   GALLERY
══════════════════════════════════ */
.gallery-section {
  background: var(--sand-dark);
  padding: 7rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 210px 210px;
  gap: 6px;
}

.g-wide { grid-column: span 2; }
.g-tall { grid-row: span 2; }

.gallery-item {
  overflow: hidden;
  position: relative;
  background: var(--sand-deep);
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,77,102,0.75), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-label {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--sand);
  font-size: 0.95rem;
}

/* ══════════════════════════════════
   REVIEWS
══════════════════════════════════ */
.reviews-section {
  background: var(--white);
  padding: 7rem 0;
}

.review-card {
  background: var(--sand);
  border: 1px solid rgba(200,146,58,0.15);
  padding: 2rem;
  height: 100%;
  position: relative;
}

.review-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--coral);
  opacity: 0.15;
  position: absolute;
  top: 0.5rem;
  right: 1.25rem;
  line-height: 1;
}

.review-stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.1em; margin-bottom: 0.75rem; }

.review-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.reviewer { font-size: 0.77rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); }
.reviewer-src { font-size: 0.68rem; color: var(--text-muted); margin-top: 2px; }

/* ══════════════════════════════════
   LOCATION
══════════════════════════════════ */
.location-section {
  background: var(--ocean-dark);
  padding: 7rem 0;
}

.location-section .section-title { color: var(--sand); }
.location-section .section-eyebrow { color: rgba(245,237,216,0.45); }

.contact-item {
  margin-bottom: 1.75rem;
}

.contact-label {
  font-size: 0.58rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.4);
  margin-bottom: 0.35rem;
  display: block;
}

.contact-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: rgba(245,237,216,0.85);
  line-height: 1.5;
}

.contact-value a { color: rgba(245,237,216,0.85); text-decoration: none; transition: color 0.2s; }
.contact-value a:hover { color: #FFD580; }

.map-wrap {
  position: relative;
}

.map-frame {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
  filter: saturate(0.6) contrast(1.1);
}

.social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.social-btn {
  width: 42px; height: 42px;
  border: 1px solid rgba(245,237,216,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,237,216,0.6);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s;
}

.social-btn:hover {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.site-footer {
  background: #0C2E3D;
  padding: 3.5rem 0 1.5rem;
  border-top: 1px solid rgba(245,237,216,0.08);
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--sand);
  font-weight: 400;
}

.footer-brand small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.3);
  margin-top: 3px;
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(245,237,216,0.35);
  margin-top: 0.6rem;
}

.footer-heading {
  font-size: 0.58rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.4);
  margin-bottom: 1.1rem;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(245,237,216,0.38);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--coral-light); }

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(245,237,216,0.08);
  font-size: 0.68rem;
  color: rgba(245,237,216,0.22);
  text-align: center;
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 991px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .g-wide { grid-column: span 1; }
  .g-tall { grid-row: span 1; }
  .gallery-item { height: 200px; }
}

@media (max-width: 767px) {
  .about-img-wrap img { height: 300px; }
  .map-frame { height: 240px; }
  .hero { min-height: auto; padding: 5rem 0 3rem; }
}
