:root {
  --bg: #fff8ef;
  --bg-soft: #fff3e4;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-dark: #231109;
  --text: #30170b;
  --text-soft: #684635;
  --line: rgba(255, 118, 20, 0.16);
  --gold: #ff8a00;
  --gold-deep: #f05a00;
  --gold-hot: #ffb000;
  --gold-soft: rgba(255, 138, 0, 0.11);
  --shadow: 0 20px 50px rgba(105, 49, 8, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1220px;
  --header-height: 92px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Segoe UI", "Segoe UI Variable", "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 138, 0, 0.1), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 176, 0, 0.07), transparent 26%),
    linear-gradient(180deg, #fffdf9 0%, var(--bg) 100%);
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 88px), var(--container));
  margin: 0 auto;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top center, rgba(255, 138, 0, 0.04), transparent 42%),
    radial-gradient(circle at top left, rgba(255, 176, 0, 0.07), transparent 30%);
  opacity: 0.9;
}

.site-header {
  position: fixed;
  inset: 14px 0 auto;
  z-index: 30;
  transition: 0.3s ease;
}

.site-header.scrolled {
  background: transparent;
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 13px 14px 13px 22px;
  border-radius: 30px;
  background: rgba(255, 250, 244, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow:
    0 14px 40px rgba(97, 45, 8, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  flex: 0 0 auto;
}

.brand-lockup img {
  width: 280px;
  max-width: 100%;
  height: auto;
  flex: 0 0 auto;
}

.brand-mark {
  display: none;
}

.brand-copy {
  display: none;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.brand-logo {
  display: block;
}

.brand-copy strong {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.76rem;
  line-height: 1;
}

.brand-copy span {
  color: var(--text-soft);
  font-size: 0.76rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
}

.site-nav a {
  position: relative;
  font-size: 0.89rem;
  font-weight: 500;
  color: var(--text-soft);
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a.is-active,
.site-nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  margin-left: 4px;
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 99px;
  transition: 0.25s ease;
}

.nav-toggle::before {
  transform: translateY(-6px);
}

.nav-toggle::after {
  transform: translateY(6px);
}

.menu-open .nav-toggle span {
  opacity: 0;
}

.menu-open .nav-toggle::before {
  transform: translateY(2px) rotate(45deg);
}

.menu-open .nav-toggle::after {
  transform: translateY(-2px) rotate(-45deg);
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid transparent;
  transition: 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.button {
  color: #fff8ef;
  background: linear-gradient(135deg, var(--gold-hot), var(--gold) 42%, var(--gold-deep));
  box-shadow: 0 14px 28px rgba(240, 90, 0, 0.24);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(240, 90, 0, 0.32);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--text);
}

.button-secondary:hover,
.button-ghost:hover {
  transform: translateY(-2px);
}

.button-ghost {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}

.page-main {
  padding-top: calc(var(--header-height) + 14px);
}

body:not([data-page="home"]) .page-main {
  padding-top: calc(var(--header-height) + 18px);
}

body[data-page="home"] .page-main {
  padding-top: 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  padding-top: 104px;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 9, 4, 0.34) 0%, rgba(18, 9, 4, 0.16) 34%, transparent 66%),
    linear-gradient(180deg, transparent 48%, rgba(18, 9, 4, 0.24) 100%);
  pointer-events: none;
}

.hero-track {
  display: flex;
  width: 400%;
  height: 100%;
  animation: heroSlide 20s infinite ease-in-out;
}

.hero-slide {
  flex: 0 0 25%;
  height: 100%;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter removed – show original image */
}

@keyframes heroSlide {
  0%, 22% {
    transform: translateX(0);
  }

  27%, 47% {
    transform: translateX(-25%);
  }

  52%, 72% {
    transform: translateX(-50%);
  }

  77%, 100% {
    transform: translateX(-75%);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 0 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 248, 236, 0.1);
  border: 1px solid rgba(255, 248, 236, 0.24);
}

.eyebrow::before {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(320px, 380px);
  justify-content: space-between;
  align-items: end;
  gap: 52px;
  margin-top: 28px;
}

body[data-page="home"] .hero-grid {
  grid-template-columns: minmax(0, 540px);
  justify-content: start;
  gap: 0;
}

.hero-copy {
  width: min(100%, 540px);
  max-width: 540px;
  padding-right: 44px;
}

.hero-copy .hero-lead {
  max-width: 30rem;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: "Segoe UI", "Segoe UI Variable", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.72rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.048em;
}

.hero h1,
.hero-lead,
.eyebrow,
.meta-item {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.9);
}

body[data-page="home"] .hero h1 {
  font-size: clamp(1.9rem, 3.6vw, 3.18rem);
  line-height: 0.99;
  letter-spacing: -0.046em;
}

.hero-lead {
  color: #fff;
  font-size: 1rem;
  line-height: 1.72;
}

.page-hero p {
  color: var(--gold-hot);
  font-size: 1rem;
  line-height: 1.72;
}

.page-hero-card p,
.page-hero-card .section-kicker {
  color: var(--text-soft);
}

.hero-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 248, 236, 0.12);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 248, 236, 0.16);
  justify-self: end;
  max-width: 430px;
}

.hero-aside {
  width: 100%;
  max-width: 380px;
}

.hero-actions,
.stacked-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.meta-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.meta-item {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 248, 236, 0.1);
  border: 1px solid rgba(255, 248, 236, 0.18);
}

.meta-item strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.meta-item span {
  display: block;
  color: #fff;
  font-size: 0.92rem;
}

.page-hero {
  position: relative;
  padding: 32px 0 76px;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 138, 0, 0.2), transparent 34%),
    linear-gradient(180deg, transparent 0%, rgba(255, 238, 214, 0.44) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 36px;
  align-items: stretch;
}

.page-hero-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.72);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 100%;
  aspect-ratio: 1.18 / 1;
  display: flex;
  background: rgba(255, 224, 184, 0.38);
}

.page-hero-visual img,
.page-hero-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1 1 auto;
}

.section {
  padding: 76px 0;
}

.section-tight {
  padding-top: 0;
}

body[data-page="gallery"] .page-hero {
  padding-bottom: 40px;
}

body[data-page="gallery"] #dis-mekan {
  padding-top: 16px;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.section-copy {
  max-width: 660px;
}

.section-kicker {
  margin: 0 0 12px;
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.section h2,
.section h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.section h2 {
  font-size: clamp(1.44rem, 2.25vw, 2.12rem);
}

.section h3 {
  font-size: clamp(1.16rem, 1.7vw, 1.58rem);
}

.section-copy p,
.card p,
.story-copy p,
.rich-text p,
.info-panel p,
.faq-item p,
.timeline p {
  color: var(--text-soft);
  line-height: 1.74;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

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

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

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

.card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.38), transparent 35%, rgba(255, 255, 255, 0.82));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat-card strong {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold-deep);
}

.stat-card span {
  color: var(--text-soft);
}

.story-layout,
.feature-layout,
.contact-layout,
.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 28px;
}

.story-visual,
.media-tile,
.gallery-card,
.plan-card,
.image-frame {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.story-visual img,
.media-tile img,
.gallery-card img,
.plan-card img,
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover img,
.plan-card:hover img,
.media-tile:hover img,
.image-frame:hover img {
  transform: scale(1.04);
}

.story-copy,
.info-panel,
.timeline,
.faq-item {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.info-panel h2,
.story-copy h2 {
  margin-bottom: 24px;
}

.rich-text {
  display: grid;
  gap: 14px;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 247, 236, 0.9);
  border: 1px solid rgba(255, 138, 0, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.feature-icon img {
  width: 22px;
  height: auto;
  opacity: 0.86;
}

.feature-item strong {
  display: block;
  margin-bottom: 6px;
}

.pill-row,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill,
.filter-button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.7);
}

.filter-button {
  cursor: pointer;
  transition: 0.2s ease;
}

.filter-button.is-active,
.filter-button:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border-color: transparent;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.gallery-card {
  position: relative;
  min-height: 280px;
  cursor: pointer;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(31, 21, 13, 0.62) 100%);
}

.gallery-card .caption,
.plan-card .caption {
  position: absolute;
  inset: auto 20px 20px;
  z-index: 1;
  color: #fffaf2;
  text-shadow: 0 2px 16px rgba(26, 17, 10, 0.46);
}

.gallery-card .tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  padding: 9px 14px;
  border-radius: 12px;
  color: #fff;
  background: rgba(22, 15, 8, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-grid,
.media-grid,
.map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.map-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 246, 234, 0.94));
  border: 1px solid rgba(255, 138, 0, 0.16);
  box-shadow: 0 24px 70px rgba(105, 49, 8, 0.14);
}

.map-frame {
  height: 320px;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(255, 138, 0, 0.2), rgba(255, 248, 239, 0.86)),
    rgba(255, 224, 184, 0.34);
  border-bottom: 1px solid rgba(255, 138, 0, 0.14);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 22px;
}

.map-copy {
  padding: 24px 26px 26px;
}

.map-copy h3 {
  margin: 0;
  font-family: "Segoe UI", "Segoe UI Variable", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.18rem;
  line-height: 1.35;
  letter-spacing: 0;
  color: var(--text);
}

.map-copy p:not(.section-kicker) {
  margin: 10px 0 0;
  color: var(--text-soft);
}

.plan-card {
  position: relative;
  min-height: 360px;
  background: #fff;
}

.plan-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(27, 18, 11, 0) 0%, rgba(27, 18, 11, 0.78) 100%);
  pointer-events: none;
  z-index: 0;
}

.plan-card img {
  object-fit: cover;
  background: #fff;
  padding: 0;
}

.plan-card-technical img {
  object-fit: contain;
  background: #fff;
  padding: 16px;
}

.plan-card-technical:hover img {
  transform: none !important;
}

.plan-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.plan-specs span {
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 248, 236, 0.18);
  border: 1px solid rgba(255, 248, 236, 0.22);
  color: #fffaf2;
  font-size: 0.84rem;
}

.media-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.media-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #1b130f;
}

.media-card video:fullscreen {
  object-fit: contain !important;
}

.media-card video:-webkit-full-screen {
  object-fit: contain !important;
}

.media-card .card-copy {
  padding: 24px;
}

.location-points {
  display: grid;
  gap: 18px;
}

.distance-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
}

.distance-card strong {
  font-size: 1.35rem;
  color: var(--gold-deep);
}

.cta-banner {
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 138, 0, 0.18), transparent 36%),
    linear-gradient(135deg, #261108, #3a1809),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  color: #fff7eb;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 138, 0, 0.24);
}

.cta-banner p {
  color: rgba(255, 247, 235, 0.82);
}

.contact-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-bottom: 28px;
}

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

.field-grid .field-full {
  grid-column: 1 / -1;
}

.field {
  position: relative;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255, 118, 20, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 48px;
  cursor: pointer;
}

.field:has(select)::after {
  content: "";
  position: absolute;
  right: 19px;
  bottom: 22px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-soft);
  border-bottom: 2px solid var(--text-soft);
  transform: rotate(45deg);
  pointer-events: none;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  margin-top: 20px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.form-status {
  min-height: 1.4em;
  margin: 12px 0 0;
  font-size: 0.92rem;
}

.form-status.is-success {
  color: #487034;
}

.form-status.is-error {
  color: #9b3d2c;
}

.button:disabled {
  opacity: 0.68;
  cursor: wait;
  transform: none;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-line {
  display: flex;
  gap: 14px;
  align-items: start;
}

.contact-line strong {
  min-width: 96px;
  color: var(--gold-deep);
}

.site-footer {
  position: relative;
  padding: 58px 0 30px;
  color: rgba(255, 248, 238, 0.86);
  background:
    radial-gradient(circle at top center, rgba(255, 176, 0, 0.22), transparent 31%),
    radial-gradient(circle at 82% 26%, rgba(255, 90, 0, 0.18), transparent 28%),
    radial-gradient(circle at 8% 78%, rgba(255, 138, 0, 0.12), transparent 24%),
    linear-gradient(180deg, #2a1206 0%, #170904 100%);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 176, 0, 0.72), transparent);
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 32%),
    radial-gradient(circle at top center, rgba(255, 138, 0, 0.08), transparent 42%);
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-top {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 34px;
}

.footer-brand img {
  width: 128px;
  margin: 0 auto 16px;
}

.footer-brand p {
  margin: 0 auto 14px;
  max-width: 640px;
  color: rgba(255, 243, 226, 0.74);
  line-height: 1.75;
}

.footer-address {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 22px;
  color: rgba(255, 248, 238, 0.9);
  line-height: 1.65;
}

.footer-address a {
  color: inherit;
  transition: color 0.2s ease;
}

.footer-address a:hover {
  color: #fff;
}

.footer-address-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(100%, 760px);
  margin: 0 auto;
  color: inherit;
  transition: all 0.2s ease;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 191, 116, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 138, 0, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-address-link:hover {
  border-color: rgba(255, 176, 0, 0.5);
  background:
    linear-gradient(135deg, rgba(255, 138, 0, 0.16), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.045);
  color: #fff;
  transform: translateY(-2px);
}

.map-pin-icon {
  flex-shrink: 0;
  margin-top: 3px;
  color: #ffad2f;
  filter: drop-shadow(0 6px 12px rgba(240, 90, 0, 0.25));
}

.directions-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 176, 0, 0.22), rgba(255, 90, 0, 0.18));
  color: #ffc57d;
  margin-left: 8px;
  flex-shrink: 0;
  transition: all 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-address-link:hover .directions-icon-wrapper {
  background: linear-gradient(135deg, var(--gold-hot), var(--gold-deep));
  color: #fff8ef;
  transform: translate(2px, -2px);
}

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

.footer-contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  justify-items: start;
  padding: 24px 26px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 138, 0, 0.13), rgba(255, 255, 255, 0.04) 46%, rgba(255, 176, 0, 0.08)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 186, 112, 0.18);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.footer-contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top left, rgba(255, 176, 0, 0.16), transparent 34%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.footer-contact-card:hover::before {
  opacity: 1;
}

.footer-icon {
  position: relative;
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  justify-self: center;
  font-size: 0;
  color: #2b1207;
  background: linear-gradient(135deg, var(--gold-hot), var(--gold), var(--gold-deep));
  box-shadow:
    0 14px 28px rgba(240, 90, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.footer-icon::before {
  content: "";
  width: 25px;
  height: 25px;
  display: block;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: var(--footer-icon) center / contain no-repeat;
  mask: var(--footer-icon) center / contain no-repeat;
}

.footer-contact-card:nth-child(1) .footer-icon {
  --footer-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.footer-contact-card:nth-child(2) .footer-icon {
  --footer-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a10 10 0 1 0 .01 0H12zm1 10.1 3.55 2.1-.9 1.48L11 12.9V6h2v6.1z'/%3E%3C/svg%3E");
}

.footer-contact-card:nth-child(3) .footer-icon {
  --footer-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.footer-contact-card h3 {
  margin: 0 0 8px;
  font-family: "Segoe UI", "Segoe UI Variable", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffc879;
}

.footer-contact-card p,
.footer-contact-card a {
  margin: 0;
  color: rgba(255, 248, 238, 0.94);
  line-height: 1.7;
}

.footer-contact-card a:hover {
  color: #fff;
}

.footer-note {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 247, 235, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.9rem;
  color: rgba(255, 247, 235, 0.64);
}

.footer-utility {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-utility a {
  color: rgba(255, 247, 235, 0.72);
}

.footer-utility a:hover {
  color: #fff;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  padding: 20px;
  background: rgba(20, 13, 9, 0.94);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.lightbox.is-visible {
  display: grid;
  place-items: center;
}

.lightbox-dialog {
  position: relative;
  width: min(1200px, 100%);
  max-height: calc(100vh - 40px);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.lightbox-dialog img {
  max-width: 100%;
  max-height: calc(100vh - 40px);
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  user-select: none;
  -webkit-user-drag: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(20, 13, 9, 0.85);
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
  padding: 0 0 4px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: background-color 0.25s, transform 0.2s;
}

.lightbox-close:hover {
  background: var(--gold);
  transform: scale(1.06);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.hidden {
  display: none !important;
}

@media (max-width: 1080px) {
  .site-header {
    inset: 10px 0 auto;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header-height) + 8px) 20px auto;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 250, 242, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 0.25s ease;
  }

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

  .site-nav a::after {
    bottom: -3px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-actions .button {
    display: none;
  }

  .header-inner {
    padding-right: 14px;
  }

  .brand-lockup img {
    width: 250px;
  }

  .hero-grid,
  .page-hero-grid,
  .story-layout,
  .feature-layout,
  .contact-layout,
  .location-layout,
  .footer-grid,
  .footer-address,
  .footer-note {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
  }

  .hero-aside {
    justify-self: start;
    max-width: 420px;
  }

  .page-hero {
    padding: 26px 0 60px;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(1.82rem, 5.2vw, 2.9rem);
  }

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

  .plan-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero {
    min-height: auto;
    padding-top: 102px;
  }

  body[data-page="home"] .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding-bottom: 32px;
  }

  .hero-grid {
    gap: 28px;
  }

  body[data-page="home"] .hero-content {
    padding-top: 30px;
  }

  body[data-page="home"] .eyebrow {
    margin-top: 14px;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    padding: 8px 14px;
  }

  body[data-page="home"] .hero-copy {
    padding-top: 0;
  }

  .hero-copy .hero-lead {
    max-width: 100%;
  }

  body[data-page="home"] .hero-copy .hero-lead {
    display: none;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(1.62rem, 8vw, 2.46rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-top: 14px;
  }

  body[data-page="home"] .hero-actions .button,
  body[data-page="home"] .hero-actions .button-secondary {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .gallery-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .map-grid {
    grid-template-columns: 1fr;
  }

  .meta-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .meta-item {
    padding: 16px 16px 14px;
  }

  .meta-item strong {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }

  .meta-item span {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .section {
    padding: 58px 0;
  }

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

  .card,
  .story-copy,
  .info-panel,
  .timeline,
  .faq-item,
  .contact-card,
  .cta-banner {
    padding: 24px;
  }

  .page-hero {
    padding: 20px 0 44px;
  }

  body[data-page="gallery"] .page-hero {
    padding-bottom: 26px;
  }

  body[data-page="gallery"] #dis-mekan {
    padding-top: 8px;
  }

  .page-hero-visual {
    min-height: 300px;
  }

  .map-frame {
    height: 220px;
    padding: 8px;
  }

  .map-frame iframe {
    border-radius: 18px;
  }

  .map-copy {
    padding: 20px;
  }

  .gallery-card,
  .plan-card {
    min-height: 250px;
  }

  .brand-mark {
    display: none;
  }

  .brand-logo {
    display: block;
    width: 140px;
  }

  .footer-address-link {
    display: inline-flex;
    justify-self: center;
    text-align: left;
  }

  .brand-lockup {
    padding-left: 6px;
    max-width: calc(100% - 58px);
  }

  .header-inner {
    min-height: 74px;
    padding: 10px 10px 10px 16px;
    background: rgba(255, 250, 244, 0.72);
    border-radius: 24px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    background:
      linear-gradient(135deg, rgba(255, 176, 0, 0.14), rgba(255, 255, 255, 0.88)),
      rgba(255, 255, 255, 0.82);
    border-color: rgba(255, 138, 0, 0.28);
    border-radius: 50%;
    box-shadow:
      0 8px 18px rgba(240, 90, 0, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.82);
    color: var(--gold-deep);
  }

  .nav-toggle span,
  .nav-toggle::before,
  .nav-toggle::after {
    background: var(--gold-deep);
  }

  .nav-toggle span {
    width: 18px;
    transform: scaleX(1);
  }

  .nav-toggle::before,
  .nav-toggle::after {
    height: 2px;
  }

  .nav-toggle::before {
    width: 12px;
    transform: translateY(-6px);
  }

  .nav-toggle::after {
    width: 14px;
    transform: translateY(6px);
  }

  .menu-open .nav-toggle span {
    opacity: 1;
    width: 18px;
    transform: scaleX(1);
  }

  .menu-open .nav-toggle::before {
    opacity: 0;
    transform: translateY(-6px) scaleX(0);
  }

  .menu-open .nav-toggle::after {
    opacity: 0;
    transform: translateY(6px) scaleX(0);
  }

  .footer-contact-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-icon {
    margin: 0 auto;
  }

  .footer-note {
    flex-direction: column;
    align-items: flex-start;
  }
}
