:root {
  --teal: #008a7d;
  --wix-teal: #10846f;
  --teal-dark: #00685f;
  --sun: #ffb915;
  --pink: #f8d6df;
  --ink: #0c4d49;
  --muted: #5f827d;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(24, 58, 54, 0.18);
}

@font-face {
  font-family: "AvenirWix";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/avenir-light.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "AvenirWix";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/avenir-heavy.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "DancingWix";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/dancing-script-regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "DancingWix";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/dancing-script-bold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "DinNeuzeitWix";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/din-neuzeit.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "OswaldExtraWix";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/oswald-extralight.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "OswaldExtraWix";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/oswald-extralight-bold.woff2") format("woff2");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
  width: 100%;
}

body {
  color: var(--ink);
  font-family: "AvenirWix", Arial, Helvetica, sans-serif;
  line-height: 1.7;
  min-width: 320px;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  position: relative;
  width: 100%;
}

main {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.skip-link {
  background: var(--teal);
  color: var(--white);
  left: 1rem;
  padding: 0.6rem 1rem;
  position: fixed;
  top: -4rem;
  z-index: 3000;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  color: var(--white);
  z-index: 1050;
}

.site-header.is-scrolled {
  background: #ffbd14;
  backdrop-filter: none;
}

.navbar {
  min-height: 120px;
}

.site-header .container-fluid {
  align-items: center;
}

.brand-lockup {
  align-items: center;
  color: var(--white);
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  min-width: 118px;
  text-decoration: none;
}

.brand-lockup:hover,
.brand-lockup:focus {
  color: var(--white);
  opacity: 0.86;
}

.brand-logo-img {
  display: block;
  height: 75px;
  margin-inline: auto;
  object-fit: contain;
  width: 92px;
}

.brand-logo-symbol {
  background: currentColor;
  display: none;
  height: 75px;
  mask: url("../img/logo-mark.svg") center / contain no-repeat;
  -webkit-mask: url("../img/logo-mark.svg") center / contain no-repeat;
  width: 50px;
}

.brand-name {
  display: block;
  font-family: "OswaldExtraWix", "Arial Narrow", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.6px;
  line-height: 24px;
  text-align: center;
  width: 100%;
}

.header-actions {
  gap: 0.9rem;
  margin-left: 0 !important;
  padding-top: 0;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 26px;
  min-height: 40px;
  padding-top: 0;
}

.desktop-nav a {
  align-items: center;
  color: var(--white);
  display: inline-flex;
  font-family: "AvenirWix", Arial, sans-serif;
  font-size: 15px;
  line-height: 21px;
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a:focus {
  color: var(--white);
  opacity: 0.72;
}

.icon-link,
.icon-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--white);
  display: inline-flex;
  justify-content: center;
}

.icon-link {
  gap: 0.55rem;
  min-height: 42px;
  padding: 0;
}

.icon-button {
  height: 44px;
  position: relative;
  width: 44px;
}

.svg-icon {
  background: currentColor;
  display: inline-block;
  flex: 0 0 auto;
}

.menu-svg {
  height: 22px;
  mask: url("../img/menu-lines.svg") center / contain no-repeat;
  -webkit-mask: url("../img/menu-lines.svg") center / contain no-repeat;
  width: 27px;
}

.close-glyph {
  display: block;
  height: 28px;
  position: relative;
  width: 28px;
}

.close-glyph::before,
.close-glyph::after {
  background: currentColor;
  content: "";
  height: 2px;
  left: 2px;
  position: absolute;
  top: 13px;
  width: 24px;
}

.close-glyph::before {
  transform: rotate(45deg);
}

.close-glyph::after {
  transform: rotate(-45deg);
}

.icon-link:hover,
.icon-button:hover,
.icon-link:focus,
.icon-button:focus {
  color: var(--white);
  opacity: 0.75;
}

.btn-poke {
  --bs-btn-bg: var(--wix-teal);
  --bs-btn-border-color: var(--wix-teal);
  --bs-btn-color: var(--white);
  --bs-btn-hover-bg: var(--teal-dark);
  --bs-btn-hover-border-color: var(--teal-dark);
  --bs-btn-hover-color: var(--white);
  --bs-btn-focus-shadow-rgb: 0, 138, 125;
  border-radius: 0;
  font-family: "AvenirWix", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  min-height: 40px;
  min-width: 162px;
  padding: 9px 24px 10px;
  text-decoration: none;
}

.btn-outline-poke {
  --bs-btn-color: var(--wix-teal);
  --bs-btn-border-color: var(--wix-teal);
  --bs-btn-hover-bg: var(--wix-teal);
  --bs-btn-hover-border-color: var(--wix-teal);
  --bs-btn-hover-color: var(--white);
  border-radius: 0;
  font-size: 15px;
  line-height: 21px;
  min-height: 42px;
  min-width: 142px;
  padding: 9px 24px 10px;
  text-decoration: none;
}

.social-rail {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: fixed;
  right: 2.55rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1040;
}

.social-rail a {
  display: block;
  height: 26px;
  text-decoration: none;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
  width: 26px;
}

.social-rail img {
  height: 26px;
  object-fit: contain;
  width: 26px;
}

.social-rail a:hover,
.social-rail a:focus {
  color: var(--white);
  opacity: 0.68;
  transform: translateY(-2px);
}

.menu-panel {
  align-items: center;
  background: rgba(0, 105, 96, 0.96);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transform: translateY(-12px);
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 2000;
}

.menu-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-panel nav {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  text-align: center;
}

.menu-panel a {
  color: var(--white);
  font-family: "OswaldExtraWix", "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 7vw, 5.4rem);
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(16px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.menu-panel.is-open a {
  opacity: 1;
  transform: translateY(0);
}

.menu-panel.is-open a:nth-child(2) {
  transition-delay: 45ms;
}

.menu-panel.is-open a:nth-child(3) {
  transition-delay: 90ms;
}

.menu-panel.is-open a:nth-child(4) {
  transition-delay: 135ms;
}

.menu-panel.is-open a:nth-child(5) {
  transition-delay: 180ms;
}

.close-menu {
  position: absolute;
  right: 2rem;
  top: 2rem;
}

.hero-section {
  align-items: flex-start;
  color: var(--white);
  display: flex;
  min-height: 964px;
  overflow: hidden;
  padding: 0 1rem 5rem;
  position: relative;
}

.hero-carousel {
  inset: -6vh 0;
  position: absolute;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-slide {
  height: calc(100% + 12vh);
  width: 100%;
}

.hero-slide {
  overflow: hidden;
}

.hero-slide-media {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-carousel .carousel-item {
  transition: transform 0.76s ease-in-out;
}

/* 分页指示器：底部居中圆点 */
.hero-indicators {
  bottom: 24px !important;
  z-index: 10;
  gap: 8px;
}

.hero-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 0;
  opacity: 1;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-indicators button.active {
  background-color: var(--white);
  transform: scale(1.3);
}

/* 左右导航箭头 */
.hero-control-prev,
.hero-control-next {
  width: 44px;
  height: 44px;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.hero-control-prev:hover,
.hero-control-next:hover {
  opacity: 1;
}

.hero-control-prev {
  left: 12px;
}

.hero-control-next {
  right: 12px;
}

.hero-control-prev .carousel-control-prev-icon,
.hero-control-next .carousel-control-next-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.hero-shade {
  background: rgba(0, 0, 0, 0.42);
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-copy {
  margin-top: calc(50vh - 170px);
  position: relative;
  z-index: 2;
}

.script-title {
  color: var(--white);
  font-family: "DancingWix", "Dancing Script", cursive;
  font-size: clamp(6.5rem, 13.75vw, 176px);
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.2);
}

.hero-kicker {
  font-family: "DinNeuzeitWix", "Arial Narrow", sans-serif;
  font-size: clamp(1.35rem, 2.031vw, 26px);
  font-weight: 700;
  letter-spacing: 3.9px;
  line-height: normal;
  margin: -2.9rem 0 0.55rem;
}

.hero-subtitle {
  font-family: "AvenirWix", Arial, sans-serif;
  font-size: clamp(1rem, 1.563vw, 20px);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: normal;
  margin-bottom: 2.2rem;
  margin-top: 0.55rem;
}

.section-band {
  background: var(--sun);
  min-height: 760px;
  overflow-x: hidden;
  overflow-x: clip;
  padding: 100px 0 110px;
}

.intro-composition {
  height: 550px;
  max-width: 793px;
  position: relative;
}

.intro-ocean {
  border: 10px solid var(--white);
  box-shadow: var(--shadow);
  height: 550px;
  object-fit: cover;
  width: 411px;
}

.intro-panel {
  background: var(--white);
  box-shadow: var(--shadow);
  left: 141px;
  min-height: 414px;
  padding: 55px 58px 46px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 620px;
}

.intro-panel .row {
  min-height: 300px;
}

.script-small,
.eyebrow {
  color: var(--wix-teal);
  font-family: "DancingWix", "Dancing Script", cursive;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
}

.intro-text,
.catering-card p,
.visit-heading p {
  color: var(--teal);
  font-family: "AvenirWix", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

.intro-text {
  max-width: 225px;
}

.vertical-divider {
  background: var(--teal);
  display: inline-block;
  height: 218px;
  width: 2px;
}

.brush-strokes,
.wave-lines {
  background: var(--wix-teal);
  display: inline-block;
  height: 82px;
  mask: url("../img/waves.svg") center / contain no-repeat;
  -webkit-mask: url("../img/waves.svg") center / contain no-repeat;
  position: relative;
  width: 240px;
}

.brush-strokes {
  position: absolute;
  right: -136px;
  top: 42px;
}

.gallery-section {
  background: var(--white);
  overflow-x: hidden;
  overflow-x: clip;
  padding: 100px 0 108px;
}

.gallery-section .container {
  max-width: 1746px;
  width: calc(100% - 8vw);
}

.gallery-grid {
  display: grid;
  gap: clamp(18px, 3vw, 54px);
  grid-template-columns: repeat(4, minmax(180px, 390px));
  justify-content: center;
  margin-inline: auto;
  max-width: 1722px;
}

.gallery-item {
  aspect-ratio: 1;
  background: var(--white);
  border: 0;
  display: block;
  max-width: 390px;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: opacity 320ms ease, transform 420ms ease;
  width: 100%;
}

.gallery-item:hover img,
.gallery-item:focus img {
  opacity: 0.78;
  transform: scale(1.04);
}

.revealable {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1), transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.revealable.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0s !important;
  }

  .hero-carousel,
  .revealable {
    transform: none !important;
  }
}

.catering-section {
  background: url("../img/new2/shatan.jpg") center / cover fixed no-repeat;
  min-height: 860px;
  overflow-x: hidden;
  overflow-x: clip;
  padding: 0 1rem;
}

.catering-section > .container {
  min-height: inherit;
}

.catering-card {
  background: transparent;
  max-width: 461px;
  min-height: 288px;
  padding: 74px 64px 58px;
  position: relative;
}

.catering-card::before {
  background: var(--white);
  content: "";
  inset: 0;
  mask: url("../img/scallop-card.svg") center / 100% 100% no-repeat;
  -webkit-mask: url("../img/scallop-card.svg") center / 100% 100% no-repeat;
  position: absolute;
  z-index: 0;
}

.catering-card > * {
  position: relative;
  z-index: 1;
}

.contact-section {
  background: var(--sun);
  overflow-x: hidden;
  overflow-x: clip;
  padding: 86px 0 96px;
}

.contact-section .container {
  max-width: 1210px;
}

.contact-panel {
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--wix-teal);
  overflow: visible;
  padding: 52px 44px 44px;
  position: relative;
}

.contact-panel .script-small {
  font-size: 38px;
  margin-bottom: 34px;
}

.contact-waves {
  height: 92px;
  position: absolute;
  right: -54px;
  top: 34px;
  width: 270px;
}

.contact-layout {
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(340px, 0.9fr) minmax(420px, 1.1fr);
  min-height: 560px;
}

.contact-form-wrap {
  border-right: 2px solid var(--wix-teal);
  display: grid;
  gap: 28px;
  grid-template-columns: 0.78fr 1.22fr;
  padding-right: 38px;
}

.contact-intro {
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  max-width: 250px;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  color: var(--wix-teal);
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  background: var(--white);
  border: 1px solid #565656;
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  margin-bottom: 16px;
  min-height: 42px;
  padding: 8px 10px;
  width: 100%;
}

.contact-form textarea {
  min-height: 94px;
  resize: vertical;
}

.contact-submit {
  border: 0;
  min-width: 100%;
}

.contact-map {
  min-height: 560px;
  overflow: hidden;
}

.contact-map iframe {
  border: 0;
  display: block;
  height: 100%;
  min-height: 560px;
  width: 100%;
}

.visit-section {
  background: var(--pink);
  overflow-x: hidden;
  overflow-x: clip;
  padding: 70px 0 30px;
}

.visit-panel {
  background: var(--white);
  min-height: 470px;
  padding: 103px 56px 84px;
  position: relative;
}

.visit-heading {
  margin-bottom: 74px;
}

.visit-flower {
  height: 154px;
  position: absolute;
  right: 48px;
  top: 51px;
  width: 210px;
}

.visit-flower img {
  height: 138px;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: 100px;
}

.wave-lines {
  left: 0;
  position: absolute;
  top: 0;
  z-index: 2;
}

.visit-flower .wave-lines {
  height: 104px;
  left: -34px;
  top: -10px;
  width: 300px;
}

.contact-panel .contact-waves {
  left: auto;
  right: -54px;
  top: 34px;
}

.visit-details strong,
.visit-details span {
  display: block;
}

.site-footer {
  color: #131313;
  padding: 1.4rem 0 0;
}

.modal-content {
  border: 0;
  border-radius: 0;
  color: var(--ink);
}

.modal-header {
  border-bottom: 1px solid rgba(0, 138, 125, 0.18);
}

.order-card {
  border: 1px solid rgba(0, 138, 125, 0.24);
  min-height: 220px;
  padding: 1.35rem;
}

.order-card h3 {
  font-family: "OswaldExtraWix", "Arial Narrow", sans-serif;
  font-size: 1.35rem;
}

.cart-summary {
  align-items: center;
  background: #eef8f6;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}

.cart-label {
  font-family: "OswaldExtraWix", "Arial Narrow", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-prices div {
  align-items: center;
  border-bottom: 1px solid rgba(0, 138, 125, 0.16);
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.gallery-modal {
  background: transparent;
}

.gallery-modal img {
  max-height: 82vh;
  object-fit: contain;
  width: 100%;
}

.gallery-close {
  background-color: var(--white);
  opacity: 1;
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  z-index: 2;
}

@media (max-width: 991.98px) {
  body {
    padding-top: 141px;
  }

  .site-header {
    background: #ffbd14;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    gap: 0.65rem;
  }

  .social-rail {
    display: none;
  }

  .section-band {
    min-height: auto;
    padding: 6rem 0;
  }

  .hero-section {
    min-height: calc(100svh - 141px);
  }

  .hero-carousel {
    inset: 0 !important;
    transform: none !important;
  }

  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-slide {
    height: 100%;
  }

  .intro-composition {
    height: auto;
  }

  .intro-ocean {
    height: 360px;
    width: min(78vw, 430px);
  }

  .intro-panel {
    left: auto;
    margin: -90px auto 0;
    padding: 3rem 2rem;
    position: relative;
    top: auto;
    width: min(92vw, 720px);
  }

  .brush-strokes {
    right: 6px;
    top: 18px;
  }

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

  .visit-flower {
    opacity: 0.42;
    right: 1rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    border-right: 0;
    border-bottom: 2px solid var(--wix-teal);
    grid-template-columns: 1fr;
    padding-bottom: 34px;
    padding-right: 0;
  }

  .contact-intro {
    max-width: none;
  }

  .contact-waves {
    right: 0;
    top: 30px;
  }

  .contact-panel {
    overflow: hidden;
  }

  .contact-panel .contact-waves {
    right: 18px;
    top: 30px;
  }

  /* 平板/移动端隐藏导航箭头，避免遮挡内容 */
  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    display: none;
  }
}

@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }

  /* 桌面端显示导航箭头 */
  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    display: flex;
  }
}

@media (max-width: 575.98px) {
  body {
    padding-top: 114px;
  }

  .navbar {
    min-height: 76px;
  }

  .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .brand-lockup {
    min-width: 92px;
  }

  .brand-logo-symbol {
    height: 54px;
    width: 36px;
  }

  .brand-logo-img {
    height: 54px;
    width: 72px;
  }

  .brand-name {
    font-size: 12px;
    letter-spacing: 1.1px;
    line-height: 18px;
  }

  .order-trigger.btn {
    font-size: 0.78rem;
    min-height: 38px;
    padding-inline: 0.8rem;
  }

  .icon-button {
    font-size: 1.65rem;
    height: 38px;
    width: 38px;
  }

  .hero-section {
    align-items: center;
    height: calc(100svh - 114px);
    justify-content: center;
    min-height: calc(100svh - 114px);
    padding: 0 1rem 3rem;
  }

  .hero-carousel {
    inset: 0 !important;
    transform: none !important;
  }

  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-slide {
    height: 100%;
  }

  .hero-copy {
    margin-top: 0;
  }

  .script-title {
    font-size: clamp(4.6rem, 24vw, 6.4rem);
    line-height: 1.22;
  }

  .hero-kicker {
    font-size: 1.02rem;
    letter-spacing: 2.1px;
    margin-top: -1.05rem;
  }

  .intro-panel {
    padding: 3rem 1.25rem 2.5rem;
  }

  .gallery-section {
    padding: 4rem 0;
  }

  .gallery-grid {
    gap: 1rem;
  }

  .catering-section {
    background-attachment: scroll;
    min-height: 560px;
  }

  .catering-card {
    padding: 3.5rem 2rem;
  }

  .visit-section {
    padding-top: 3rem;
  }

  .visit-panel {
    padding: 3.5rem 1.25rem 2rem;
  }

  .visit-heading {
    margin-bottom: 2.5rem;
  }

  .contact-section {
    padding: 4rem 0;
  }

  .contact-panel {
    padding: 3.25rem 1.25rem 1.25rem;
  }

  .contact-panel .script-small {
    text-align: left !important;
  }

  .contact-waves {
    height: 64px;
    opacity: 0.35;
    right: 0;
    top: 32px;
    width: 185px;
  }

  .contact-panel .contact-waves {
    max-width: calc(100% - 2rem);
    right: 1rem;
    top: 32px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 360px;
  }
}
