:root {
  --krc-ink: #152033;
  --krc-muted: #5f6b7a;
  --krc-surface: #ffffff;
  --krc-canvas: #f4f1ea;
  --krc-accent: #9b6a2f;
  --krc-border: #ded8cd;
  --krc-danger: #7d2e2e;
}

.krc-gate-open,
.krc-gate-open body {
  overflow: hidden;
}

.krc-age-gate {
  align-items: center;
  background: rgba(9, 17, 29, 0.82);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 999999;
}

.krc-age-gate__panel {
  background: var(--krc-surface);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  color: var(--krc-ink);
  max-width: 560px;
  padding: clamp(28px, 5vw, 48px);
  width: 100%;
}

.krc-age-gate__panel h2 {
  font-size: clamp(1.75rem, 5vw, 2.65rem);
  line-height: 1.08;
  margin: 0 0 16px;
}

.krc-age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.krc-age-gate__status {
  color: var(--krc-danger);
  min-height: 1.5em;
}

.krc-eyebrow {
  color: var(--krc-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.krc-button {
  align-items: center;
  background: var(--krc-ink);
  border: 1px solid var(--krc-ink);
  border-radius: 999px;
  color: #fff !important;
  cursor: pointer;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 46px;
  padding: 10px 22px;
  text-decoration: none;
}

.krc-button:hover,
.krc-button:focus-visible {
  background: var(--krc-accent);
  border-color: var(--krc-accent);
}

.krc-button--secondary {
  background: transparent;
  color: var(--krc-ink) !important;
}

.krc-resort-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.krc-resort-card {
  background: var(--krc-surface);
  border: 1px solid var(--krc-border);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(21, 32, 51, 0.07);
  overflow: hidden;
}

.krc-resort-card__image {
  aspect-ratio: 16 / 10;
  background: var(--krc-canvas);
  display: block;
  overflow: hidden;
}

.krc-resort-card__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
  width: 100%;
}

.krc-resort-card:hover img {
  transform: scale(1.025);
}

.krc-resort-card__body {
  padding: 22px;
}

.krc-resort-card__body h3 {
  margin: 0 0 10px;
}

.krc-facts {
  border: 1px solid var(--krc-border);
  border-radius: 12px;
  margin: 28px 0;
  overflow: hidden;
}

.krc-facts > div {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(140px, 0.7fr) 1.3fr;
  padding: 14px 18px;
}

.krc-facts > div + div {
  border-top: 1px solid var(--krc-border);
}

.krc-facts dt {
  color: var(--krc-muted);
  font-weight: 700;
}

.krc-facts dd {
  margin: 0;
}

.krc-notice {
  border: 1px solid var(--krc-border);
  border-left: 4px solid var(--krc-accent);
  border-radius: 8px;
  margin: 20px 0;
  padding: 16px 18px;
}

.krc-notice--restricted {
  border-left-color: var(--krc-danger);
}

@media (max-width: 600px) {
  .krc-facts > div {
    grid-template-columns: 1fr;
  }

  .krc-age-gate__actions,
  .krc-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .krc-resort-card__image img {
    transition: none;
  }
}
