/* ===== Reset / base (index.css) ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Muli', system-ui, sans-serif;
  min-height: 100vh;
}

img {
  max-width: 100%;
}

/* ===== Header ===== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background-color: #062726;
  width: 100%;
  min-height: 56px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .site-header {
    padding: 1rem 2rem;
    min-height: auto;
  }
}

.site-header__logo-link {
  display: block;
  line-height: 0;
}

.site-header__logo {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
@media (min-width: 768px) {
  .site-header__logo {
    height: 48px;
  }
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .site-header__nav {
    gap: 2rem;
  }
}

.btn-buy-tickets {
  padding: 0.6rem 1rem;
  border-radius: 9999px;
  border: none;
  background-color: #ffb81d;
  color: #062726;
  font-weight: 700;
  font-size: 0.8125rem;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-buy-tickets:hover {
  background-color: #192122;
  color: #fff;
}
@media (min-width: 768px) {
  .btn-buy-tickets {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    min-height: auto;
  }
}

.menu-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding: 0.5rem 0.25rem 0.5rem 0;
  min-height: 44px;
  min-width: 44px;
  justify-content: flex-end;
  font-family: 'Muli', system-ui, sans-serif;
}
@media (min-width: 768px) {
  .menu-btn {
    font-size: 0.875rem;
    padding: 0.5rem 0;
    min-width: auto;
  }
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: currentColor;
}

/* ===== Drawer ===== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 100dvh;
  background: #fff;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.drawer-panel.is-open {
  transform: translateX(0);
}
@media (min-width: 481px) {
  .drawer-panel {
    max-width: 480px;
    min-height: 100%;
  }
}

.drawer-topbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem 1.25rem;
  min-height: 56px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .drawer-topbar {
    padding: 1rem 2rem;
    min-height: calc(48px + 2rem);
  }
}

.drawer-close {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Muli', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1a1a1a;
  padding: 0.5rem 0;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
}
@media (min-width: 768px) {
  .drawer-close {
    font-size: 0.875rem;
    padding: 0.5rem 0;
    min-height: auto;
    min-width: auto;
    justify-content: flex-end;
  }
}

.drawer-close__icon {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .drawer-close__icon {
    width: 24px;
    height: 16px;
  }
}

.drawer-body {
  flex: 1;
  padding: 1rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  padding-bottom: max(2rem, env(safe-area-inset-bottom));
}
@media (min-width: 768px) {
  .drawer-body {
    padding: 1rem 3rem 2rem;
  }
}

.drawer-link {
  display: flex;
  align-items: center;
  font-family: 'IvyJournal', serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  line-height: 1.3;
  color: rgb(0, 68, 57);
  text-decoration: none;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  cursor: pointer;
  transition: color 0.2s;
  min-height: 44px;
}
.drawer-link:hover {
  color: #ffb81d;
}
.drawer-link:active {
  opacity: 0.9;
}
@media (min-width: 768px) {
  .drawer-link {
    margin-bottom: 0.75rem;
    padding: 0;
    min-height: auto;
    display: block;
  }
}

.drawer-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 0.85rem 1.5rem;
  min-height: 48px;
  border-radius: 9999px;
  border: none;
  background-color: #ffb81d;
  color: #062726;
  font-family: 'Muli', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.2s, color 0.2s;
}
.drawer-buy:hover {
  background-color: #192122;
  color: #fff;
}
.drawer-buy:active {
  opacity: 0.95;
}
@media (min-width: 768px) {
  .drawer-buy {
    margin-top: 2rem;
    padding: 0.85rem 2rem;
    min-height: auto;
  }
}

/* ===== Footer ===== */
.site-footer {
  background-color: #b4c0be;
  padding: 2rem 1rem 1.5rem;
  padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
  font-family: system-ui, -apple-system, sans-serif;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .site-footer {
    padding: 3rem 2.5rem 2rem;
    padding-bottom: 2rem;
  }
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
@media (min-width: 600px) {
  .site-footer__top {
    gap: 2rem;
    padding-bottom: 2rem;
  }
}
@media (min-width: 900px) {
  .site-footer__top {
    grid-template-columns: 220px 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
  }
}

.site-footer__logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .site-footer__logo-block {
    align-items: flex-start;
    gap: 1.25rem;
  }
}

.site-footer__logo-link {
  display: block;
  line-height: 0;
}

.site-footer__logo {
  height: 40px;
  width: auto;
  display: block;
}
@media (min-width: 768px) {
  .site-footer__logo {
    height: 48px;
  }
}

.site-footer__tripadvisor {
  width: 80px;
  height: auto;
  display: block;
  background: transparent;
  mix-blend-mode: multiply;
}
@media (min-width: 768px) {
  .site-footer__tripadvisor {
    width: 100px;
  }
}

.site-footer__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 480px) {
  .site-footer__columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 768px) {
  .site-footer__columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

.site-footer__column {
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer__column {
    text-align: left;
  }
}

.site-footer__col-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0 0 0.75rem;
}
@media (min-width: 768px) {
  .site-footer__col-title {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
  }
}

.site-footer__col-text {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #2d2d2d;
  margin: 0 0 0.35rem;
}
@media (min-width: 768px) {
  .site-footer__col-text {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
}

.site-footer__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 0.8125rem;
  color: #2d2d2d;
  text-decoration: none;
  margin-bottom: 0.25rem;
  padding: 0.35rem 0;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.site-footer__link:hover {
  color: #034f40;
}
@media (min-width: 768px) {
  .site-footer__link {
    width: auto;
    justify-content: flex-start;
    font-size: 0.875rem;
    margin-bottom: 0.35rem;
    padding: 0;
    min-height: auto;
    display: block;
    text-align: left;
  }
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.25rem;
  font-size: 0.75rem;
  color: #2d2d2d;
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer__bottom {
    justify-content: space-between;
    padding-top: 1.5rem;
    font-size: 0.8125rem;
    text-align: left;
  }
}

.site-footer__legal-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  row-gap: 0.5rem;
}
@media (min-width: 768px) {
  .site-footer__legal-row {
    justify-content: flex-start;
    gap: 0.5rem;
  }
}

.site-footer__legal-text {
  color: #2d2d2d;
}

.site-footer__legal-sep {
  color: rgba(0, 0, 0, 0.35);
  user-select: none;
}
@media (max-width: 380px) {
  .site-footer__legal-sep {
    display: none;
  }
}

.site-footer__legal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  color: #2d2d2d;
  text-decoration: none;
  margin-bottom: 0;
  min-height: 44px;
  padding: 0.35rem 0.25rem;
  cursor: pointer;
}
.site-footer__legal-link:hover {
  color: #034f40;
}
@media (min-width: 768px) {
  .site-footer__legal-link {
    display: inline;
    padding: 0;
    min-height: auto;
    font-size: 0.8125rem;
  }
}

/* ===== Map modal ===== */
.map-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}
.map-modal-overlay.is-open {
  display: flex;
}

.map-modal-box {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 85vh;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.map-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #2d2d2d;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, color 0.2s;
}
.map-modal-close:hover {
  background: #062726;
  color: #fff;
}

.map-modal-frame {
  width: 100%;
  height: 70vh;
  min-height: 400px;
  border: 0;
  display: block;
}
