/*
Theme Name: Sitare Theme
Theme URI: http://127.0.0.1/mysite/
Author: Antigravity
Author URI: https://github.com/google-deepmind
Description: Custom WordPress theme matching the resort-pro TypeScript React application design.
Version: 1.0.0
Text Domain: sitare-theme
*/

:root {
  --ink: #14171c;
  --ink-soft: #2a3038;
  --fog: #eceff2;
  --pearl: #f5f6f8;
  --slate: #6d7682;
  --line: rgba(20, 23, 28, 0.12);
  --line-soft: rgba(20, 23, 28, 0.07);
  --signal: #7FB6B2;
  --signal-soft: #6ea39f;
  --warm: #d8c3a4;
  --white: #ffffff;
  --shadow: 0 30px 80px rgba(20, 23, 28, 0.22);
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --font: 'Bricolage Grotesque', system-ui, sans-serif;
  --serif: 'Newsreader', Georgia, serif;
  --pad: clamp(1rem, 3vw, 2rem);
  --max: 1280px;
  --nav: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 85% -5%, rgba(127, 182, 178, 0.12), transparent 60%),
    radial-gradient(700px 380px at -10% 20%, rgba(216, 195, 164, 0.16), transparent 55%),
    linear-gradient(180deg, #e9ecef 0%, var(--pearl) 35%, #f2f0ec 100%);
  font-family: var(--font);
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.015em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html.has-cursor,
html.has-cursor * {
  cursor: none !important;
}

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

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

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

button {
  border: 0;
  background: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 560;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

p {
  margin: 0;
}

#root,
.site {
  min-height: 100vh;
}

.site {
  display: flex;
  flex-direction: column;
}

.site main {
  flex: 1;
}

.wrap {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin-inline: auto;
}

.wrap-wide {
  width: min(1480px, calc(100% - 1.25rem));
  margin-inline: auto;
}

.serif {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

.kicker::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 5px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='20' height='5' viewBox='0 0 20 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.375 1.79004C0.167893 1.79004 0 1.95793 0 2.16504C0 2.37215 0.167893 2.54004 0.375 2.54004L0.375 2.16504L0.375 1.79004ZM19.5401 2.16504L17.375 0L15.2099 2.16504L17.375 4.3301L19.5401 2.16504ZM0.375 2.16504L0.375 2.54004L17.375 2.54004L17.375 2.16504L17.375 1.79004L0.375 1.79004L0.375 2.16504Z' fill='black'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg width='20' height='5' viewBox='0 0 20 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.375 1.79004C0.167893 1.79004 0 1.95793 0 2.16504C0 2.37215 0.167893 2.54004 0.375 2.54004L0.375 2.16504L0.375 1.79004ZM19.5401 2.16504L17.375 0L15.2099 2.16504L17.375 4.3301L19.5401 2.16504ZM0.375 2.16504L0.375 2.54004L17.375 2.54004L17.375 2.16504L17.375 1.79004L0.375 1.79004L0.375 2.16504Z' fill='black'/%3E%3C/svg%3E") no-repeat center / contain;
  opacity: 0.9;
}

.lede {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.1vw, 1.4rem);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 34rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.15rem;
  width: fit-content;
  transition: gap 0.35s var(--ease), opacity 0.35s var(--ease);
}

.text-link:hover {
  gap: 0.65rem;
  opacity: 0.75;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition:
    transform 0.35s var(--ease),
    background 0.35s var(--ease),
    color 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.pill:hover {
  transform: translateY(-2px);
}

.pill-dark {
  background: var(--ink);
  color: var(--fog);
}

.pill-dark:hover {
  background: var(--signal);
}

.pill-line {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.pill-line:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

.pill-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--fog);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* Cursor */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor-dot,
.cursor-ring {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: #fff;
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  transition:
    width 0.35s var(--ease),
    height 0.35s var(--ease),
    opacity 0.35s var(--ease);
}

.cursor.is-active .cursor-ring {
  width: 58px;
  height: 58px;
  opacity: 0.55;
}

/* ==========================================================================
   TOPBAR — 3-column grid: [Hamburger] | [Logo] | [CTA]
   ========================================================================== */
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--nav);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: var(--pad);
  transition:
    background 0.4s var(--ease),
    color 0.4s var(--ease),
    border-color 0.4s var(--ease);
  color: var(--white);
  border-bottom: 1px solid transparent;
}

.topbar.is-solid,
.topbar.is-open {
  background: rgba(245, 246, 248, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--ink);
  border-bottom-color: var(--line-soft);
}

/* Left slot — holds hamburger */
.topbar-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Center slot — logo */
.topbar-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.topbar-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
  /* Invert to white when on transparent hero */
  filter: brightness(0) invert(1);
  transition: filter 0.4s var(--ease);
}

.topbar.is-solid .topbar-logo-img,
.topbar.is-open .topbar-logo-img {
  filter: none; /* Show natural colour when bg is white */
}

.topbar-logo-text {
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

/* Right slot — CTA */
.topbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

/* Legacy aliases */
.mark { font-size: 1.45rem; font-weight: 600; letter-spacing: -0.05em; }
.topbar-place {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* CTA button */
.topbar-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.3rem;
  padding: 0.45rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 100px;
  background: var(--signal);
  color: var(--white) !important;
  border: 1px solid var(--signal);
  white-space: nowrap;
  transition: all 0.35s var(--ease);
}

.topbar-book-btn:hover {
  background: var(--signal-soft);
  border-color: var(--signal-soft);
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 14px rgba(127, 182, 178, 0.35);
}

/* Hamburger button */
.menu-btn {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-content: center;
  gap: 6px;
  flex-shrink: 0;
}

.menu-btn span {
  display: block;
  width: 1.2rem;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.35s var(--ease);
}

.topbar.is-open .menu-btn span:first-child {
  transform: translateY(3.75px) rotate(40deg);
}

.topbar.is-open .menu-btn span:last-child {
  transform: translateY(-3.75px) rotate(-40deg);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 55;
  background:
    linear-gradient(160deg, rgba(20, 23, 28, 0.96), rgba(127, 182, 178, 0.85)),
    #14171c;
  color: var(--fog);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: calc(var(--nav) + 4.5rem) var(--pad) 3rem;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-1.5%);
  transition:
    opacity 0.4s var(--ease),
    transform 0.5s var(--ease);
}

.menu-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.menu-nav {
  display: grid;
  gap: 0.35rem;
  width: min(720px, 100%);
}

.menu-link {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.55rem 0;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.45s var(--ease),
    transform 0.45s var(--ease),
    color 0.3s var(--ease);
}

.menu-panel.is-open .menu-link {
  opacity: 1;
  transform: none;
}

.menu-link em {
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  opacity: 0.55;
}

.menu-link:hover,
.menu-link.is-active {
  color: var(--warm);
}

.menu-note {
  margin-top: 2.5rem;
  max-width: 26rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: rgba(236, 239, 242, 0.72);
}

/* Hero */
.hero-stage {
  position: relative;
  overflow: hidden;
  color: var(--white);
  display: grid;
  align-items: end;
}

.hero-stage.is-tall {
  min-height: 100svh;
}

.hero-stage.is-mid {
  min-height: 58svh;
}

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

.hero-stage-media img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
}

.hero-stage-media img.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}

.hero-stage-media img.slide.is-active {
  opacity: 1;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 14, 18, 0.55) 0%, rgba(12, 14, 18, 0.18) 48%, rgba(12, 14, 18, 0.35) 100%),
    linear-gradient(180deg, rgba(12, 14, 18, 0.2) 0%, rgba(12, 14, 18, 0.15) 40%, rgba(12, 14, 18, 0.78) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-stage-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin: 0 auto;
  padding: calc(var(--nav) + 2rem) 0 3.5rem;
  display: grid;
  gap: 1.1rem;
  animation: lift 1.05s var(--ease) both;
}

.brand-xl {
  font-size: clamp(4.6rem, 16vw, 9.5rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.84;
  max-width: 8ch;
  margin-bottom: 1.5rem;
}

.hero-stage .lede {
  color: rgba(245, 246, 248, 0.86);
}

.hero-stage .kicker {
  color: rgba(245, 246, 248, 0.72);
}

.hero-side {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

@media (min-width: 900px) {
  .hero-stage-inner.home-hero {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 2rem;
  }

  .hero-side {
    justify-items: end;
    text-align: right;
    padding-bottom: 0.4rem;
  }
}

/* Hero Villa Thumbnail Stack */
.hero-villa-stack {
  display: flex;
  gap: 0.85rem;
  margin-block: 0.6rem;
}

.hero-villa-card {
  position: relative;
  width: clamp(6.4rem, 10vw, 8.2rem);
  height: clamp(8.6rem, 13vw, 10.8rem);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(20, 23, 28, 0.5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s var(--ease), border-color 0.35s var(--ease), box-shadow 0.4s var(--ease);
}

.hero-villa-card-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-villa-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
}

.hero-villa-card-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.02) 0%,
    rgba(0, 0, 0, 0.25) 45%,
    rgba(12, 15, 19, 0.92) 100%
  );
  transition: background 0.35s var(--ease);
}

.hero-villa-card-meta {
  position: relative;
  z-index: 2;
  padding: 0.75rem 0.5rem 0.65rem;
  text-align: center;
  width: 100%;
}

.hero-villa-card-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--white);
  letter-spacing: -0.015em;
  line-height: 1.15;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
  transition: color 0.35s var(--ease);
}

.hero-villa-card:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: var(--signal);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--signal);
}

.hero-villa-card:hover .hero-villa-card-img-wrap img {
  transform: scale(1.08);
}

.hero-side-caption {
  max-width: 18rem;
  font-family: var(--serif);
  color: rgba(245, 246, 248, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
  margin-top: 0.25rem;
}

/* Mobile responsive adjustments */
@media (max-width: 899px) {
  .hero-villa-stack {
    gap: 0.55rem;
    margin-block: 0.5rem;
  }

  .hero-villa-card {
    width: clamp(5.6rem, 28vw, 7rem);
    height: clamp(7.4rem, 36vw, 9.2rem);
  }

  .hero-villa-card-name {
    font-size: 0.88rem;
  }
}

/* Sections */
.block {
  padding: clamp(4rem, 10vw, 7.5rem) 0;
}

.block-tight {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.story {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
}

@media (min-width: 900px) {
  .story {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: end;
  }

  .story-offset {
    padding-top: 4.5rem;
  }
}

.frame {
  overflow: hidden;
  position: relative;
  min-height: clamp(280px, 42vw, 520px);
  box-shadow: var(--shadow);
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.frame:hover img {
  transform: scale(1.045);
}

.headline {
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  max-width: 12ch;
}

.headline-wide {
  max-width: 16ch;
}

/* Drag rail */
.rail-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.rail-hint {
  font-size: 0.8rem;
  color: var(--slate);
  letter-spacing: 0.04em;
}

.drag-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 32vw);
  gap: 0.85rem;
  overflow-x: auto;
  padding: 0.25rem var(--pad) 1.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
}

.drag-rail::-webkit-scrollbar {
  display: none;
}

.drag-rail.is-dragging {
  cursor: grabbing;
}

.drag-card {
  scroll-snap-align: start;
  display: grid;
  gap: 0.85rem;
  color: inherit;
}

.drag-card-media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #d5dae0;
}

.drag-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.drag-card:hover .drag-card-media img {
  transform: scale(1.05);
}

.drag-card-meta span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.35rem;
}

.drag-card-meta h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.35rem;
}

.drag-card-meta p {
  color: var(--slate);
  font-size: 0.92rem;
}

/* Quote band */
.quote-band {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.quote-band .hero-stage-media,
.quote-band .hero-veil,
.quote-band .hero-grain {
  position: absolute;
  inset: 0;
}

.quote-band .hero-stage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-inner {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 2 * var(--pad)));
  margin: 0 auto 3.5rem;
  display: grid;
  gap: 1rem;
}

.quote-inner p {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.25;
  font-style: italic;
}

/* Index list */
.index-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.index-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease), background 0.4s var(--ease);
}

.index-row:hover {
  padding-left: 0.65rem;
}

.index-row strong {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

.index-row span {
  color: var(--slate);
  font-size: 0.9rem;
}

/* Gallery mosaic */
.sticky-tools {
  position: sticky;
  top: var(--nav);
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.85rem 0;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, rgba(245, 246, 248, 0.96), rgba(245, 246, 248, 0.88));
  backdrop-filter: blur(10px);
}

.tool {
  min-height: 2.3rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.tool.is-on,
.tool:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--fog);
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.55rem;
}

.tile {
  position: relative;
  overflow: hidden;
  background: #d7dbe1;
  grid-column: span 4;
  min-height: 220px;
  border: 0;
  padding: 0;
}

.tile:nth-child(7n + 1) {
  grid-column: span 7;
  min-height: 320px;
}

.tile:nth-child(7n + 3) {
  grid-column: span 5;
  min-height: 280px;
}

.tile:nth-child(7n + 5) {
  grid-column: span 6;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease), filter 0.85s var(--ease);
}

.tile:hover img {
  transform: scale(1.04);
  filter: contrast(1.04);
}

.tile i {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.tile:hover i {
  opacity: 1;
  transform: none;
}

/* Villa chapters */
.chapter {
  display: grid;
  gap: 1.25rem;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  border-top: 1px solid var(--line);
}

@media (min-width: 960px) {
  .chapter {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: start;
  }

  .chapter-copy {
    position: sticky;
    top: calc(var(--nav) + 1.5rem);
  }

  .chapter.is-flip {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .chapter.is-flip .chapter-copy {
    order: -1;
  }
}

.chapter-copy h2 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin: 0.4rem 0 1rem;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin: 1.25rem 0;
  font-size: 0.92rem;
}

.facts b {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 0.2rem;
}

.traits {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 1.5rem;
  color: var(--ink-soft);
  font-family: var(--serif);
}

.traits li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}

.traits li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--signal);
}

.price {
  font-size: 1.25rem;
  font-weight: 560;
  margin-bottom: 1.1rem;
}

.chapter-shots {
  display: grid;
  gap: 0.65rem;
}

.chapter-shots .main {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.chapter-shots .main img,
.chapter-shots .pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chapter-shots .pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.chapter-shots .pair > * {
  aspect-ratio: 1;
  overflow: hidden;
}

/* Detail essay */
.essay {
  display: grid;
  gap: 0.65rem;
}

.essay button {
  padding: 0;
  overflow: hidden;
  background: #d7dbe1;
}

.essay .span-2 {
  grid-column: span 2;
}

@media (min-width: 800px) {
  .essay {
    grid-template-columns: repeat(6, 1fr);
  }

  .essay button {
    grid-column: span 2;
    min-height: 220px;
  }

  .essay .span-2 {
    grid-column: span 4;
    min-height: 420px;
  }

  .essay .span-3 {
    grid-column: span 3;
    min-height: 280px;
  }
}

.essay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.essay button:hover img {
  transform: scale(1.04);
}

.float-book {
  margin-top: 1.5rem;
  padding: 1.35rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 900px) {
  .detail-shell {
    display: grid;
    grid-template-columns: 1.45fr 0.7fr;
    gap: 2.5rem;
    align-items: start;
  }

  .float-book {
    position: sticky;
    top: calc(var(--nav) + 1.25rem);
    margin-top: 0;
    padding: 1.5rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(10px);
  }
}

/* Book */
.book-shell {
  display: grid;
  gap: 2rem;
}

@media (min-width: 960px) {
  .book-shell {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
    align-items: center;
  }
}

.book-form {
  display: grid;
  gap: 0.95rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--slate);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.2rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  border-radius: 0;
  outline: none;
  transition: border-color 0.25s var(--ease);
}

.field textarea {
  min-height: 7.5rem;
  resize: vertical;
  padding-top: 0.85rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--ink);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.lane {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.lane a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.35s var(--ease);
}

.lane a:hover {
  padding-left: 0.55rem;
}

.lane small {
  display: block;
  margin-top: 0.25rem;
  color: var(--slate);
}

.ok {
  padding: 0.85rem 0;
  color: var(--signal);
  font-family: var(--serif);
}

/* ==========================================================================
   DARK LUXURY FOOTER (Center Brand / 3-Column + Mobile Viewport)
   ========================================================================== */
.site-foot.dark-luxury-foot {
  margin-top: 3.5rem;
  padding: 5rem 0 2.5rem;
  background: #000000;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.foot-main-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 2.5rem;
  margin-bottom: 4.5rem;
}

/* Nav Columns (Left & Right) */
.foot-nav-col {
  display: flex;
  flex-direction: column;
}

.foot-col-left {
  align-items: flex-start;
  text-align: left;
}

.foot-col-right {
  align-items: flex-end;
  text-align: right;
}

.foot-col-heading-btn {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: default;
  margin-bottom: 1.25rem;
}

.foot-col-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--serif);
}

.foot-accordion-icon {
  display: none;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.3s var(--ease);
}

.foot-col-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.foot-col-links a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.foot-col-links a:hover {
  color: var(--signal);
  transform: translateX(2px);
}

.foot-col-right .foot-col-links a:hover {
  transform: translateX(-2px);
}

/* Center Brand Column */
.foot-brand-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  padding-inline: 1rem;
}

.foot-brand-anchor {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.foot-brand-anchor:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.foot-brand-emblem {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  filter: drop-shadow(0 4px 14px rgba(255, 255, 255, 0.18));
}

.foot-brand-emblem svg {
  width: clamp(72px, 8vw, 92px);
  height: clamp(72px, 8vw, 92px);
}

.foot-brand-logo-img {
  max-height: clamp(65px, 8vw, 90px);
  width: auto;
  object-fit: contain;
  margin-bottom: 0.9rem;
  filter: brightness(0) invert(1);
}

.foot-brand-wordmark {
  font-size: clamp(2.4rem, 5vw, 3.3rem);
  font-weight: 750;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
  line-height: 1.05;
}

.foot-location {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.foot-pin-icon {
  opacity: 0.85;
}

.foot-contact-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.4rem;
}

.foot-contact-link {
  font-size: 0.95rem;
  font-weight: 550;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.3s var(--ease);
}

.foot-contact-link:hover {
  color: var(--signal);
}

.foot-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.foot-wa-btn:hover {
  color: #25d366;
  transform: scale(1.12);
}

/* Footer Sub-Bar (Address, Policies & Copyright) */
.foot-sub-bar-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.foot-sub-address {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  text-align: center;
}

.foot-sub-policies {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem 0.85rem;
}

.foot-legal-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s var(--ease);
}

.foot-legal-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.foot-sub-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

.foot-sub-copyright {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.25rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .site-foot.dark-luxury-foot {
    padding: 3.5rem 0 2rem;
  }

  .foot-main-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .foot-brand-center {
    order: -1;
    margin-bottom: 1.5rem;
  }

  .foot-brand-wordmark {
    font-size: 2.25rem;
    letter-spacing: 0.2em;
  }

  .foot-nav-col {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.75rem;
  }

  .foot-col-left,
  .foot-col-right {
    align-items: stretch;
    text-align: left;
  }

  .foot-col-heading-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0.5rem;
    padding-block: 0.5rem;
  }

  .foot-accordion-icon {
    display: inline-block;
  }

  .foot-col-heading-btn.is-open .foot-accordion-icon {
    transform: rotate(180deg);
  }

  .foot-col-links {
    padding-bottom: 0.75rem;
    gap: 0.75rem;
  }

  .foot-col-right .foot-col-links {
    align-items: flex-start;
  }

  .foot-col-right .foot-col-links a:hover {
    transform: translateX(2px);
  }

  .foot-sub-bar-container {
    padding-top: 1.5rem;
    gap: 0.85rem;
    text-align: center;
  }

  .foot-sub-policies {
    gap: 0.35rem 0.65rem;
    font-size: 0.8rem;
  }

  .foot-legal-link {
    font-size: 0.8rem;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(10, 12, 14, 0.94);
  display: grid;
  place-items: center;
  padding: 4.5rem 1rem 3.5rem;
  animation: fade 0.25s ease both;
}

.lightbox-frame {
  margin: 0;
  max-width: min(1100px, 100%);
  max-height: 78vh;
}

.lightbox-frame img {
  max-height: 78vh;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.lightbox-x,
.lightbox-arrow {
  position: absolute;
  color: var(--fog);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 0.15rem;
}

.lightbox-x {
  top: 1.35rem;
  right: 1.35rem;
}

.lightbox-arrow.prev {
  left: 1.25rem;
  top: 50%;
}

.lightbox-arrow.next {
  right: 1.25rem;
  top: 50%;
}

.lightbox-caption {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  display: flex;
  gap: 1.5rem;
  color: rgba(245, 246, 248, 0.7);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes lift {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 860px) {
  .topbar-place {
    display: none;
  }

  .mosaic {
    grid-template-columns: repeat(6, 1fr);
  }

  .tile,
  .tile:nth-child(7n + 1),
  .tile:nth-child(7n + 3),
  .tile:nth-child(7n + 5) {
    grid-column: span 6;
    min-height: 240px;
  }

  .tile:nth-child(odd) {
    grid-column: span 6;
  }

  .index-row {
    grid-template-columns: 2.5rem 1fr;
  }

  .index-row span:last-child {
    grid-column: 2;
  }

  .field-row,
  .foot-cols {
    grid-template-columns: 1fr;
  }

  .lightbox-arrow {
    display: none;
  }

  .drag-rail {
    grid-auto-columns: minmax(78vw, 300px);
  }
}

@media (max-width: 640px) {
  .brand-xl {
    font-size: clamp(3.8rem, 20vw, 5.2rem);
  }

  .actions {
    width: 100%;
  }

  .actions .pill {
    flex: 1;
  }

  .tiny-stack img {
    width: 3.6rem;
    height: 4.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   CUSTOM REDESIGNED NAVBAR (SPLIT LAYOUT) & FOOTER
   ========================================================================== */

.topbar-left-nav,
.topbar-right-nav {
  display: none;
}

/* ── Desktop (≥ 1024px) topbar tweaks ── */
@media (min-width: 1024px) {
  .topbar {
    grid-template-columns: 1fr auto 1fr;
  }

  .topbar-book-btn {
    min-height: 2.3rem;
    padding: 0.5rem 1.6rem;
    font-size: 0.8rem;
  }
}

/* ── Mobile (< 1024px) topbar ── */
@media (max-width: 1023px) {
  .topbar {
    grid-template-columns: 1fr auto 1fr;
    padding-inline: 1rem;
  }

  .topbar-logo-img {
    height: 26px;
  }

  .topbar-book-btn {
    min-height: 2rem;
    padding: 0.35rem 1rem;
    font-size: 0.72rem;
  }
}

.foot-legal {
  display: inline-flex;
  gap: 1.1rem;
  font-size: 0.85rem;
}

.foot-legal a {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.foot-legal a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Fullscreen overlay columns layout */
.menu-panel-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  margin-bottom: 2rem;
}

.menu-col-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.45rem;
  margin-bottom: 1.25rem;
  opacity: 0.7;
}

@media (min-width: 1024px) {
  .menu-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2.5rem;
    padding-inline: 2rem;
  }
}

/* ==========================================================================
   MULTI-STEP BOOKING CARD & COMPONENTS
   ========================================================================== */

.booking-flow-card {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.2rem;
  position: relative;
  z-index: 2;
}

.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-dot span {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid;
  place-content: center;
  font-size: 0.82rem;
  font-weight: 650;
  background: var(--pearl);
  color: var(--slate);
  transition: all 0.35s var(--ease);
}

.step-dot.is-active span {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(20, 23, 28, 0.12);
}

.step-dot.is-done span {
  background: var(--signal);
  color: var(--white);
  border-color: var(--signal);
}

.step-dot small {
  font-size: 0.65rem;
  font-weight: 560;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 0.35rem;
  display: block;
}

.step-dot.is-active small {
  color: var(--ink);
}

.step-line {
  flex: 1;
  height: 1.5px;
  background: var(--line);
  margin-bottom: 1.15rem;
  margin-inline: 0.5rem;
  opacity: 0.6;
}

/* Horizontal Sliding wizard container & track */
.booking-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.booking-slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.65s cubic-bezier(0.19, 1, 0.22, 1);
}

.form-step {
  flex: 0 0 100%;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.form-step.is-active {
  opacity: 1;
  pointer-events: auto;
}

.number-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  max-width: 150px;
}

.number-stepper .stepper-btn {
  width: 2.6rem;
  height: 2.6rem;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.number-stepper .stepper-btn:hover {
  background: var(--pearl);
}

.number-stepper input {
  flex: 1;
  border: none;
  text-align: center;
  font-weight: 650;
  font-size: 1.1rem;
  width: 100%;
}

.checkbox-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.checkbox-label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.85rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  transition: all 0.3s var(--ease);
}

.checkbox-label:hover {
  border-color: var(--ink);
  background: var(--white);
}

.checkbox-label input {
  margin-top: 0.2rem;
}

.checkbox-label span strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
}

.checkbox-label span small {
  display: block;
  font-size: 0.78rem;
  color: var(--slate);
  margin-top: 0.15rem;
}

.price-summary-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.15rem 1.35rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  padding: 0.3rem 0;
}

.summary-row.extras-row {
  color: var(--signal);
  font-size: 0.82rem;
}

.summary-divider {
  height: 1px;
  background: var(--line);
  margin: 0.6rem 0;
  opacity: 0.6;
}

.summary-row.total-row {
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--ink);
}

.form-controls {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1.85rem;
}

.form-controls button {
  flex: 1;
}

.receipt-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: stepReveal 0.5s var(--ease) both;
  width: 100%;
}

.receipt-screen .kicker {
  justify-content: center;
  text-align: center;
  width: 100%;
}

.receipt-screen .headline {
  text-align: center !important;
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  line-height: 1.15;
  margin: 0 auto 1.1rem;
  max-width: 440px;
  width: 100%;
}

.success-icon {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: var(--signal);
  color: var(--white);
  font-size: 1.6rem;
  display: grid;
  place-content: center;
  margin: 0 auto 1.25rem;
}

.receipt-details {
  background: var(--pearl);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.8;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1.5px solid var(--line-soft);
  padding-bottom: 0.35rem;
}

.detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* ==========================================================================
   ADMIN PORTAL & LOGIN CARD
   ========================================================================== */

.admin-login-card {
  max-width: 440px;
  margin: 4rem auto;
  background: rgba(20, 23, 28, 0.96);
  color: var(--fog);
  padding: 2.8rem 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.admin-login-card .field label {
  color: rgba(245, 246, 248, 0.72);
}

.admin-login-card .field input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.admin-login-card .field input:focus {
  border-color: var(--warm);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.login-feedback-msg {
  margin-top: 1rem;
  padding: 0.75rem;
  font-size: 0.85rem;
  text-align: center;
  border: 1px solid transparent;
}

.login-feedback-msg.err {
  background: rgba(217, 83, 79, 0.12);
  color: #ff6b6b;
  border-color: rgba(217, 83, 79, 0.25);
}

/* ==========================================================================
   ADMIN DASHBOARD PANEL SPA LAYOUT
   ========================================================================== */

.dashboard-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  min-height: 70vh;
  align-items: start;
}

.dashboard-sidebar {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--line);
  padding: 1.5rem 1.15rem;
}

.admin-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 1.15rem;
  border-bottom: 1.5px solid var(--line-soft);
  margin-bottom: 1.25rem;
}

.admin-profile .avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: grid;
  place-content: center;
  font-weight: 650;
}

.dashboard-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.tab-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-weight: 560;
  color: var(--ink-soft);
  text-align: left;
  width: 100%;
  transition: all 0.3s var(--ease);
}

.tab-btn:hover,
.tab-btn.is-active {
  background: var(--ink);
  color: var(--white);
}

.tab-badge {
  background: var(--signal);
  color: var(--white);
  font-size: 0.7rem;
  padding: 1px 6px;
  border-radius: 10px;
  font-weight: 650;
}

.dashboard-panel {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2.2rem;
  min-height: 65vh;
}

.dashboard-tab-content {
  display: none;
  animation: stepReveal 0.4s var(--ease) both;
}

.dashboard-tab-content.is-active {
  display: block;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.metric-card {
  border: 1px solid var(--line);
  padding: 1.5rem;
  background: var(--pearl);
}

.metric-card strong {
  display: block;
  font-size: 1.85rem;
  line-height: 1.1;
  margin: 0.35rem 0;
  color: var(--ink);
}

.metric-card p {
  font-size: 0.8rem;
  color: var(--slate);
}

.table-responsive {
  overflow-x: auto;
  margin-top: 1rem;
}

.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.dashboard-table th,
.dashboard-table td {
  padding: 0.85rem;
  border-bottom: 1.5px solid var(--line-soft);
}

.dashboard-table th {
  font-weight: 650;
  color: var(--slate);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.dashboard-table tr:hover td {
  background: rgba(20, 23, 28, 0.01);
}

.status-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  letter-spacing: 0.04em;
  border-radius: 20px;
}

.status-badge.pending {
  background: #fcf8e3;
  color: #8a6d3b;
  border: 1px solid #faebcc;
}

.status-badge.confirmed {
  background: #dff0d8;
  color: #3c763d;
  border: 1px solid #d6e9c6;
}

.status-badge.cancelled {
  background: #f2dede;
  color: #a94442;
  border: 1px solid #ebccd1;
}

.small-btn {
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 8px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.3s ease;
}

.small-btn:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.form-feedback {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 560;
}

.form-feedback.ok {
  color: var(--signal);
}

.form-feedback.err {
  color: #d9534f;
}

@media (max-width: 900px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .metrics-row {
    grid-template-columns: 1fr;
  }
}

