:root {
  --green: #185c35;
  --green-dark: #0a3c26;
  --yellow: #ffe65a;
  --ink: #171814;
  --cream: #fff9e9;
  --amber: #f5a623;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.destinations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 100vh;
  min-height: 100svh;
}

.destination {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
  padding: 48px;
  color: inherit;
  text-align: center;
  text-decoration: none;
  transition: filter 0.35s ease;
}

.destination::before,
.destination::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.destination::before {
  inset: 0;
  border-radius: 0;
  opacity: 0;
  background: rgba(255, 255, 255, 0.07);
  transition: opacity 0.35s ease;
}

.destination::after {
  width: min(42vw, 520px);
  aspect-ratio: 1;
  opacity: 0.13;
}

.destination-cafe {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
}

.destination-cafe::after {
  left: -22%;
  bottom: -42%;
  background: var(--yellow);
}

.destination-grills {
  background: linear-gradient(140deg, #25251f, #11120f);
}

.destination-grills::after {
  right: -22%;
  top: -42%;
  background: var(--amber);
}

.destination-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(560px, 82%);
  opacity: 0;
  transform: translateY(18px);
}

.page-ready .destination-content {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.page-ready .destination-grills .destination-content {
  transition-delay: 0.12s;
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.destination-cafe .eyebrow {
  color: var(--yellow);
}

.destination-grills .eyebrow {
  color: var(--amber);
}

.logo-frame {
  width: clamp(190px, 24vw, 350px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  transition:
    transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.55s ease;
}

.logo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1 {
  margin: 24px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 66px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.description {
  max-width: 420px;
  margin: 15px auto 0;
  color: rgba(255, 249, 233, 0.74);
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.55;
}

.visit-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  color: var(--cream);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateY(8px);
  transition:
    max-height 0.35s ease,
    margin 0.35s ease,
    opacity 0.35s ease,
    transform 0.35s ease;
}

.visit-hint b {
  font-size: 16px;
}

.destination:hover::before,
.destination.is-active::before {
  opacity: 1;
}

.destination:hover::after,
.destination.is-active::after {
  transform: scale(1.08);
}

.destination:hover .logo-frame,
.destination.is-active .logo-frame {
  transform: translateY(-7px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.destination:hover .visit-hint,
.destination:focus-visible .visit-hint,
.destination.is-active .visit-hint {
  max-height: 30px;
  margin-top: 18px;
  opacity: 0.85;
  transform: none;
}

.destination:focus-visible {
  z-index: 2;
  outline: 4px solid var(--cream);
  outline-offset: -9px;
}

@media (max-width: 760px) {
  body {
    overflow: auto;
  }

  .destinations {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, minmax(500px, 1fr));
  }

  .destination {
    min-height: 500px;
    padding: 44px 24px;
  }

  .destination-content {
    width: min(580px, 92%);
  }

  .logo-frame {
    width: clamp(155px, 43vw, 195px);
  }

  h1 {
    margin-top: 20px;
    font-size: clamp(38px, 10vw, 50px);
  }

  .description {
    font-size: 13px;
  }

  .destination-cafe::after {
    left: -25%;
    bottom: -25%;
  }

  .destination-grills::after {
    right: -25%;
    top: -25%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .destination-content {
    opacity: 1;
    transform: none;
  }
}
