:root {
  --surface: rgba(255, 250, 242, 0.8);
  --surface-strong: #fff8ee;
  --text: #1f2a1f;
  --muted: #5d6756;
  --line: rgba(86, 99, 74, 0.15);
  --brand: #335c43;
  --accent: #b46b3b;
  --shadow: 0 24px 60px rgba(60, 51, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 30%),
    radial-gradient(circle at top right, rgba(180, 107, 59, 0.18), transparent 26%),
    linear-gradient(180deg, #f6f1e6 0%, #f1e6d4 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 32vw;
  height: 32vw;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(12px);
  opacity: 0.45;
  z-index: -1;
}

body::before {
  top: -10vw;
  left: -8vw;
  background: rgba(78, 122, 91, 0.12);
}

body::after {
  right: -10vw;
  bottom: -12vw;
  background: rgba(180, 107, 59, 0.14);
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 72px;
}

.hero,
.subpage-hero {
  padding: 28px 28px 24px;
  text-align: center;
}

.hero__logo {
  width: 300px;
  height: 300px;
  display: block;
  margin: 0 auto 14px;
  border-radius: 28px;
}

.hero__badge,
.highlight-card__eyebrow,
.section-head__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.72);
  border: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.hero h1,
.subpage-hero h1,
.highlight-card h2,
.section-head h2,
.facility-card h3,
.menu-card h3 {
  margin: 18px 0 12px;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  line-height: 1.05;
}

.hero h1,
.subpage-hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.7rem);
}

.hero p,
.subpage-hero__text {
  width: min(760px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.linktree {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.link-card,
.highlight-card,
.content-panel,
.instagram-panel,
.room-section {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.link-card {
  min-height: 128px;
  padding: 22px 24px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.link-card::after {
  content: "Buka";
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
}

.link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(51, 92, 67, 0.28);
  background: rgba(255, 251, 246, 0.96);
}

.link-card--primary {
  background: linear-gradient(135deg, #335c43 0%, #4d7b5e 55%, #86a978 100%);
  color: #fff;
  border-color: rgba(51, 92, 67, 0.45);
  box-shadow: 0 28px 60px rgba(51, 92, 67, 0.28);
}

.link-card--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.08));
}

.link-card--primary::after {
  color: #fff6d5;
}

.link-card--primary:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, #2d523c 0%, #426c52 55%, #78996c 100%);
}

.link-card--primary .link-card__icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.link-card--primary .link-card__content,
.link-card--primary .link-card__title,
.link-card--primary .link-card__meta {
  position: relative;
  z-index: 1;
}

.link-card--primary .link-card__meta {
  color: rgba(255, 248, 235, 0.88);
  font-weight: 600;
}

.link-card__icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(216, 232, 217, 0.95), rgba(255, 241, 222, 0.95));
  color: var(--brand);
}

.link-card__icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.link-card__content {
  display: flex;
  flex-direction: column;
}

.link-card__title {
  font-size: 1.08rem;
  font-weight: 800;
  padding-right: 42px;
}

.link-card__meta {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 22px;
}

.highlight-card,
.content-panel,
.room-section {
  border-radius: 32px;
  padding: 28px;
}

.highlight-card--accent {
  background: linear-gradient(135deg, rgba(216, 232, 217, 0.9), rgba(255, 241, 222, 0.96));
  padding: 0;
}

.highlight-card p:last-child,
.facility-card p,
.menu-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
}

.feature-photo {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
}

.content-panel,
.instagram-section,
.room-section + .room-section {
  margin-top: 22px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.section-head__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.facility-grid,
.menu-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 22px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.facility-card,
.menu-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 251, 246, 0.92);
  border: 1px solid var(--line);
}

.facility-card h3,
.menu-card h3 {
  margin-top: 0;
  font-size: 1.6rem;
}

.instagram-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 28px;
  border-radius: 36px;
}

.instagram-panel__icon {
  width: 88px;
  height: 88px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 6%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  box-shadow: 0 20px 40px rgba(40, 90, 235, 0.18);
}

.instagram-panel__icon svg {
  width: 40px;
  height: 40px;
  fill: #fff;
}

.instagram-panel__content h2 {
  margin-bottom: 10px;
}

.instagram-panel__content p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.detail-stack {
  margin-top: 10px;
}

.mini-gallery {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-card {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

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

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 20px;
  }

  .linktree,
  .highlight-grid,
  .facility-grid,
  .menu-grid,
  .mini-gallery,
  .instagram-panel {
    grid-template-columns: 1fr;
  }

  .hero,
  .subpage-hero {
    padding-inline: 8px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .link-card {
    align-items: flex-start;
  }

  .instagram-panel__icon {
    width: 72px;
    height: 72px;
  }
}
