/* ========== CSS RESET & NORMALIZE ========== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, textarea, input, button,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,  
figure, figcaption, footer, header, hgroup,  
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  height: 100%;
  box-sizing: border-box;
}

body {
  min-height: 100%;
  font-family: 'Roboto', Arial, sans-serif;
  background: #f7fafc;
  color: #21374B;
  font-size: 16px;
  line-height: 1.55;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

a {
  color: #176DFF;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #2BD7B7;
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
}

/* ========== VARIABLE SYSTEM ========== */
:root {
  --color-primary: #21374B;
  --color-secondary: #5F6D7C;
  --color-accent: #DDE6EF;
  --color-white: #fff;
  --color-black: #111;
  --color-electric: #176DFF;
  --color-electric-2: #2BD7B7;
  --color-vibrant-magenta: #F42E81;
  --color-vibrant-yellow: #FFE86B;
  --color-bg-neutral: #f7fafc;
  --color-btn-hover: #2BD7B7;
  --color-border: #e3eaf1;
  --color-box-shadow: 0 2px 12px 0 rgba(33,55,75,.11), 0 1.5px 3px #DDE6EF;
  --font-display: 'Montserrat', 'Roboto', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ========== TYPOGRAPHY & HEADINGS ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 12px;
  color: #21374B;
  letter-spacing: -.03em;
  text-shadow: 0 1.5px 0 rgba(33, 55, 75, 0.02);
}
h1 {
  font-size: 2.5rem;
  line-height: 1.12;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.375rem;
}
h4 {
  font-size: 1.125rem;
}

p, .text-section p, blockquote {
  font-size: 1rem;
  color: var(--color-secondary);
  margin-bottom: 14px;
}

strong {
  color: var(--color-primary);
  font-weight: 700;
}

blockquote {
  background: #fff;
  border-left: 4px solid var(--color-electric);
  margin: 0 0 14px 0;
  padding: 18px 22px 14px 20px;
  font-size: 1.125rem;
  color: var(--color-primary);
  border-radius: 8px 0 0 8px;
  font-style: italic;
  box-shadow: 0 1px 10px 0 rgba(23, 109, 255, 0.06);
}

/* ========== BUTTONS ========== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.02em;
  padding: 13px 30px;
  border-radius: 30px;
  border: none;
  font-size: 1.08rem;
  text-decoration: none;
  box-shadow: 0 2px 12px 0 rgba(33, 55, 75, 0.06);
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  margin: 5px 10px 5px 0;
}
.button.primary {
  background: linear-gradient(90deg, #176DFF 0%, #2BD7B7 80%);
  color: #fff;
  border: none;
  font-size: 1.08rem;
  text-shadow: 0 2px 8px rgba(23, 109, 255, 0.10);
}
.button.primary:hover, .button.primary:focus {
  background: linear-gradient(90deg, #2BD7B7 0%, #176DFF 80%);
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
  filter: brightness(1.11);
  box-shadow: 0 4px 20px 0 rgba(23, 109, 255, 0.16);
}
.button.secondary {
  background: #FFE86B;
  color: #111;
  border: none;
  font-weight: 900;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px 0 rgba(255,212,20,0.15);
}
.button.secondary:hover, .button.secondary:focus {
  background: #FFD600;
  color: #176DFF;
  transform: translateY(-2px) scale(1.04) rotate(1.5deg);
  box-shadow: 0 4px 16px 0 rgba(255,212,20,0.18);
}
.button:active {
  opacity: .89;
}

/* ========== CONTAINER UTILITIES ========== */
.container {
  width: 100%;
  max-width: 1172px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* ============ LAYOUT & SPACING PATTERNS ============ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(33,55,75,0.08);
  padding: 32px 24px;
  min-width: 260px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover, .card:focus-within {
  transform: translateY(-4px) scale(1.02) rotate(-2deg);
  box-shadow: 0 8px 32px 0 rgba(33,55,75,0.16);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 20px 20px 18px 20px;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(33, 55, 75, 0.13);
  margin-right: 18px;
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 360px;
  flex: 1 1 280px;
}
.testimonial-meta {
  color: #5F6D7C;
  font-style: italic;
  font-size: .99rem;
  text-align: right;
  margin: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(33, 55, 75, 0.07);
  padding: 24px 18px 20px 18px;
  flex: 1 1 220px;
  min-width: 170px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.16s, transform 0.16s;
}
.feature-item:hover {
  box-shadow: 0 8px 32px 0 rgba(23,109,255,0.16);
  transform: translateY(-2px) scale(1.04);
  z-index: 2;
}

/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(90deg, #176DFF 0%, #2BD7B7 45%, #FFE86B 100%);
  color: #21374B;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 4px 32px 0 rgba(33,55,75, 0.10);
  padding: 60px 0 48px 0;
  margin-bottom: 48px;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 4px 16px rgba(23,109,255,0.22), 0 1.5px 0 rgba(255,255,255,0.11);
  font-size: 2.8rem;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.25rem;
  color: #F7F8FA;
  margin-bottom: 24px;
}
.hero .button.primary {
  font-size: 1.13rem;
  box-shadow: 0 2px 12px 0 rgba(23,109,255,0.11);
  margin-top: 10px;
}

/* ========== FEATURES, BENEFITS, CARDS, LISTS ========== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  margin-top: 12px;
}
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1.5px 10px 0 rgba(33, 55, 75, 0.10);
  padding: 20px 18px 18px 18px;
  min-width: 160px;
  flex: 1 1 200px;
  margin-bottom: 20px;
}

ul, ol {
  padding-left: 24px;
  margin-bottom: 15px;
  color: #5F6D7C;
  font-size: 1rem;
}
ul li, ol li {
  margin-bottom: 12px;
  line-height: 1.55;
}
.price {
  display: inline-block;
  font-weight: 900;
  color: #F42E81;
  margin-left: 10px;
  font-size: 1.04rem;
}

/* ========== TESTIMONIALS & SLIDERS ========== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}

/* ========== FOOTER ========== */
footer {
  background: #21374B;
  color: #DDE6EF;
  padding: 40px 0 0 0;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -4px 24px 0 rgba(33,55,75,0.06);
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-logo-contact {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-menu a {
  color: #DDE6EF;
  font-size: 1rem;
  margin-bottom: 6px;
  transition: color 0.17s, text-decoration 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #FFE86B;
  text-decoration: underline;
}
.footer-social {
  display: flex;
  gap: 13px;
  align-items: center;
}
.contact-info {
  color: #fff;
  font-size: .97rem;
  margin-top: 8px;
  line-height: 1.5;
}
.contact-info a {
  color: #F42E81;
  text-decoration: underline;
  font-weight: 700;
}
.copyright {
  color: #90A0B7;
  font-size: .93rem;
  margin: 26px 0 0 0;
  text-align: center;
}

/* ================= MOBILE NAVIGATION BURGER ================== */
.mobile-menu-toggle {
  display: inline-block;
  font-size: 2.1rem;
  background: none;
  color: #176DFF;
  border: none;
  margin-left: auto;
  padding: 7px 12px 7px 12px;
  border-radius: 50%;
  transition: background 0.15s;
  z-index: 2001;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #e4f2ff;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 1.05rem;
}
.main-nav a {
  color: #21374B;
  font-family: var(--font-body);
  padding: 7px 12px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
  font-weight: 700;
}
.main-nav a:hover, .main-nav a:focus {
  background: #2bd7b717;
  color: #176DFF;
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #21374B;
  color: #fff;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(0.7, 0, 0.35, 1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 23px 0 0;
  font-size: 2.1rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2110;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #176DFF;
  color: #FFE86B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 56px 0 0 40px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.24rem;
  font-family: var(--font-display);
  letter-spacing: .015em;
  padding: 11px 0px 11px 6px;
  border-radius: 9px;
  font-weight: 800;
  background: none;
  transition: background 0.13s, color .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #176DFF;
  color: #FFE86B;
  text-decoration: none;
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 18px 0;
}
.logo-link img {
  height: 44px;
  width: auto;
  display: block;
}

/* Hide elements for mobile/responsive */
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* ========== FORMS AND INPUTS ========== */
input, textarea {
  font-family: var(--font-body);
  border: 1.5px solid #c4d6ed;
  border-radius: 7px;
  padding: 12px 14px;
  font-size: 1rem;
  margin-bottom: 14px;
  background: #fff;
  width: 100%;
  transition: border-color 0.16s;
}
input:focus, textarea:focus {
  border-color: #176DFF;
  outline: none;
}

label {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 5px;
  color: #21374B;
}

/* ========== SPECIAL COMPONENTS ========== */
.short-guides {
  background: #F7F8FA;
  border-left: 5px solid #176DFF;
  border-radius: 8px 0 0 8px;
  padding: 20px;
  margin: 14px 0 10px 0;
}
.short-guides h3 {
  color: #176DFF;
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.tips-list {
  margin-bottom: 18px;
}
.tips-list li {
  border-left: 3.5px solid #2BD7B7;
  padding-left: 12px;
  margin-bottom: 12px;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 1px 7px 0 rgba(42,219,183,0.07);
}
.callout-box {
  background: #FFE86B;
  color: #111;
  padding: 26px 18px 22px 18px;
  border-radius: 13px;
  font-family: var(--font-display);
  font-size: 1.13rem;
  box-shadow: 0 1px 8px 0 rgba(255,232,107,0.14);
  margin: 18px 0 0 0;
}
.callout-box strong {
  color: #F42E81;
}

.featured-products {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 14px;
}
.product-info {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.5px 7px 0 rgba(33,55,75,0.08);
  padding: 16px 14px 12px 14px;
  flex: 1 1 220px;
  min-width: 170px;
}
.quick-reservation-info {
  margin-top: 8px;
  font-size: .99rem;
  background: #e1f8fc;
  border-radius: 7px;
  padding: 10px 13px;
  color: #176DFF;
  box-shadow: 0 1px 2px 0 #176dff11;
}

.filter-options {
  margin-top: 10px;
  background: #e6f2ff;
  border-radius: 7px;
  padding: 12px 15px 8px 15px;
}
.filter-options ul {
  margin-bottom: 0;
}
.filter-options li {
  color: #176DFF;
  margin-bottom: 5px;
}

.map-embed {
  background: #ACCEF2;
  border-radius: 8px;
  padding: 22px;
  margin-bottom: 17px;
}

/* ========== TEXT SECTION ========== */
.text-section {
  margin-top: 9px;
  margin-bottom: 12px;
}
.text-section p {
  font-size: 1.04rem;
  margin-bottom: 14px;
}

/* ========== RESPONSIVE MEDIA QUERIES ========== */
@media (max-width: 1190px) {
  .container {
    max-width: 99vw;
  }
}
@media (max-width: 900px) {
  .content-wrapper {
    max-width: 95vw;
    padding-left: 0;
    padding-right: 0;
  }
  .footer-wrapper {
    flex-wrap: wrap;
    gap: 16px;
  }
  .hero {
    padding: 42px 0 32px 0;
  }
  .section {
    padding: 27px 6px;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 18px;
  }
  .feature-grid, .benefits-list, .featured-products, .card-container, .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .hero {
    padding: 35px 0 24px 0;
    border-radius: 0 0 22px 22px;
  }
  .footer-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-menu {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .footer-logo-contact {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }
  .mobile-menu {
    /* already covers full screen in default styles */
  }
}
@media (max-width: 600px) {
  .section {
    padding: 24px 4px;
    margin-bottom: 36px;
  }
  .hero h1 {
    font-size: 2.0rem;
  }
  footer {
    border-radius: 0;
  }
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .footer-wrapper {
    padding: 0 3px;
    gap: 6px;
  }
}

/* ========== COOKIES BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4000;
  background: linear-gradient(92deg, #fff 51%, #e1f8fc 100%);
  color: #21374B;
  box-shadow: 0 -1.5px 15px 0 rgba(23,109,255,0.07);
  padding: 20px 14px 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 22px 22px 0 0;
  animation: cookieBannerSlideIn 0.7s cubic-bezier(.22,1.1,.32,1) forwards;
  min-height: 80px;
}
@keyframes cookieBannerSlideIn {
  from { transform: translateY(200px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-banner-text {
  font-size: 1rem;
  margin-right: 12px;
  max-width: 490px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 13px;
  align-items: center;
}
.cookie-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.01rem;
  font-weight: 700;
  background: #FFE86B;
  color: #111;
  border: none;
  border-radius: 26px;
  padding: 8px 20px;
  margin-right: 0;
  margin-bottom: 0;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, box-shadow 0.13s;
  box-shadow: 0 2px 8px 0 rgba(255,232,107,0.13);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #2BD7B7;
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(42,219,183,0.13);
}
.cookie-btn.settings {
  background: #F42E81;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #176DFF;
  color: #FFE86B;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 5px 15px 8px;
    min-height: 95px;
  }
  .cookie-banner-text {
    max-width: 98vw;
  }
}

/* ========== COOKIE PREFS MODAL ========== */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 4050;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(33, 55, 75, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s linear;
}
.cookie-modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #21374B;
  max-width: 370px;
  width: 96vw;
  border-radius: 18px;
  box-shadow: 0 8px 50px 0 rgba(33,55,75,0.23);
  padding: 34px 26px 26px 26px;
  animation: cookieModalIn .44s cubic-bezier(.64,.04,.31,1.38);
}
@keyframes cookieModalIn {
  from { transform: scale(.87) translateY(60px); opacity: 0; }
  to   { transform: scale(1) translateY(0);    opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0 10px 0;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 37px;
  height: 22px;
  background: #e6f2ff;
  border-radius: 13px;
  border: 2px solid #DDE6EF;
  position: relative;
  outline: none;
  transition: background .14s, border .14s;
}
.cookie-modal .cookie-toggle:checked {
  background: #2BD7B7;
  border-color: #176DFF;
}
.cookie-modal .cookie-toggle::after {
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1.5px 7px 0 rgba(33,55,75,.13);
  position: absolute;
  left: 2px;
  top: 1.5px;
  transition: left .14s;
}
.cookie-modal .cookie-toggle:checked::after {
  left: 16px;
}
.cookie-modal .category-desc {
  color: #5F6D7C;
  font-size: .97rem;
  margin-left: 40px;
  margin-bottom: 6px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  justify-content: flex-end;
}

.cookie-modal .btn {
  background: #176DFF;
  color: #fff;
  border: none;
  border-radius: 17px;
  padding: 8px 20px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
  transition: background 0.12s, color 0.12s;
}
.cookie-modal .btn.secondary {
  background: #F42E81;
  color: #fff;
}
.cookie-modal .btn:hover, .cookie-modal .btn:focus {
  background: #2BD7B7;
  color: #fff;
}

@media (max-width: 480px) {
  .cookie-modal {
    max-width: 98vw;
    padding: 16px 7px 16px 7px;
  }
}

/* ========== UTILITIES & MICRO INTERACTIONS ========== */
.shadow-pop {
  box-shadow: 0 4px 32px 0 #176dff11;
  transition: box-shadow 0.21s, transform 0.18s;
}
.shadow-pop:hover, .shadow-pop:focus {
  box-shadow: 0 10px 46px 0 #176dff2a;
  transform: translateY(-5px) scale(1.01);
}
.rounded {
  border-radius: 11px;
}
.bg-primary {
  background: #176DFF;
  color: #fff;
}
.bg-accent {
  background: var(--color-accent);
}
.text-center {
  text-align: center;
}
.text-bold {
  font-weight: 900;
}
.text-italic {
  font-style: italic;
}

/* ========== MISC (to match HTML) ========== */
.map-embed em {
  color: #5F6D7C;
  font-size: .97rem;
}

/* ========== END ========== */
