#cafe {
  position: relative;
  padding: 14vh 10vw 10vh;
  opacity: 0;
  transition: opacity 1.5s ease;
   filter: blur(6px);
  transform: scale(1.01);
  transition:
    filter 1.5s ease,
    transform 1.5s ease,
    opacity 1.5s ease;
}

#landing[style*="display: none"] + #cafe {
  filter: blur(0);
  transform: scale(1);
}

/* HERO / PRESENCE */
.presence {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
  margin-bottom: 20vh;
}

.presence-text h1 {
  font-size: 3rem;
  line-height: 1.15;
}

.presence-text p {
  color: var(--soft);
  line-height: 1.9;
}

.presence-image {
  position: relative;
  height: 460px;
}

.presence-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  opacity: 0;
  transition: opacity 3s ease;
  box-shadow: 0 40px 80px rgba(0,0,0,0.18);
}

.presence-image img.active {
  opacity: 1;
}

/* INTRO GRID */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  margin: 18vh 0;
}

.info-card {
  background: rgba(255,255,255,0.45);
  padding: 3.5rem 3.8rem;
  border-radius: 28px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.info-card.soft {
  background: rgba(255,255,255,0.35);
}

.info-card h2 {
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
}

.info-card p {
  line-height: 1.8;
  color: var(--soft);
  margin-bottom: 1rem;
}

/* MENU PREVIEW */
.menu-preview {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6vw;
  align-items: center;
  margin-bottom: 20vh;
}

.menu-preview-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.menu-preview-text p {
  color: var(--soft);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.link-arrow {
  text-decoration: none;
  font-style: italic;
  color: var(--accent);
}

.menu-preview-image img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 35px 70px rgba(0,0,0,0.18);
}

/* KLETSPOT */
.kletspot-block {
  max-width: 640px;
  margin: 0 auto 20vh;
  padding: 4.5rem 4rem;
  background: rgba(255,255,255,0.4);
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.kletspot-quote {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

.kletspot-sub {
  font-style: italic;
  color: var(--soft);
}

/* EXIT */
.exit {
  text-align: center;
  padding-bottom: 6rem;
}

.exit p {
  margin-bottom: 0.8rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .intro-grid,
  .menu-preview {
    grid-template-columns: 1fr;
  }

  #cafe {
    padding: 12vh 6vw 8vh;
  }
}



/* NEW */
/* PAUSE */
.pause {
  height: 70vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 12vh;
  font-style: italic;
  color: var(--soft);
}

.room {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6vw;
  padding: 16vh 10vw;
  align-items: center;
}

.room-images {
  position: relative;
}

.room-main {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 50px 100px rgba(0,0,0,0.18);
}

.room-detail {
  position: absolute;
  bottom: -12%;
  right: -12%;
  width: 55%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.room-text {
  max-width: 420px;
}


/* MENU TEASER */
/* .menu-section {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 8vw;
  padding: 14vh 10vw;
  align-items: start;
  position: relative;
} */

/* ========== MENU SECTION LAYOUT ========== */

.menu-section {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 6vw;
  padding: 18vh 8vw 16vh;
  align-items: center;
}

/* subtle divider line */
.menu-section::after {
  content: "";
  position: absolute;
  left: 10vw;
  right: 10vw;
  bottom: 6vh;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,0.08),
    transparent
  );
}

/* ambient whisper text */
.menu-ambient-text {
  position: absolute;
  right: 12vw;
  bottom: 14vh;
  max-width: 280px;
  font-style: italic;
  color: var(--soft);
  line-height: 1.7;
  opacity: 0.55;
  pointer-events: none;
}

/* ========== SURFACE BASE (shared language) ========== */

.surface {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.96),
    rgba(248,243,236,0.94)
  );
  border-radius: 36px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.16),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transition:
    transform 0.6s ease,
    box-shadow 0.6s ease;
}

.surface:hover {
  transform: translateY(-6px);
  box-shadow:
    0 40px 100px rgba(0,0,0,0.18),
    0 12px 24px rgba(0,0,0,0.08);
}

/* ========== MENU CARD ========== */

.menu-presence {
  padding: 4.8rem 5rem 4.2rem;
}

.menu-whisper {
  font-size: 0.8rem;
  font-style: italic;
  opacity: 0.6;
  margin-bottom: 1.2rem;
}

.menu-presence h2 {
  font-size: 1.7rem;
  margin-bottom: 2.6rem;
}

.menu-presence h2::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  margin-top: 1rem;
  background: rgba(0,0,0,0.15);
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0 0 3.2rem;
}

.menu-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 0.6rem 0;
  font-size: 0.95rem;
}

.menu-list li em {
  font-style: normal;
  color: var(--accent);
}

.menu-link {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--accent);
}

.menu-link::after {
  content: " →";
}

.menu-link:hover {
  text-decoration: underline;
}

/* ========== HIGH TEA — SPECIAL MOMENT ========== */

.high-tea {
  position: relative;
}

.high-tea .ritual-frame {
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.98),
      rgba(245,236,225,0.95)
    );
  border-radius: 28px;
  padding: 3.6rem 3.8rem;
  max-width: 380px;

  box-shadow:
    0 50px 140px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.9);

  transform: translateY(-12px);
}

/* tiny ceremonial marker */
.ritual-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.8rem;
}

.ritual-title {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.ritual-lead {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

.ritual-price {
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.ritual-meta {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1.6rem;
}

.ritual-meta span {
  display: block;
  font-style: italic;
  opacity: 0.75;
}

.ritual-invite {
  font-style: italic;
  opacity: 0.75;
}

/* === HIGH TEA: SOFT HOVER GLOW === */
/* === HIGH TEA: PERMANENT WARM AURA === */

.high-tea .ritual-frame {
  position: relative;
  opacity: 0;
  transform: translateY(28px);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.6);
}

.high-tea .ritual-frame::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: inherit;
  background: radial-gradient(
    circle at top center,
    rgba(255, 205, 160, 0.38),
    rgba(255, 205, 160, 0.12) 40%,
    transparent 70%
  );
  opacity: 0.9;
  pointer-events: none;
}


.high-tea.visible .ritual-frame {
  opacity: 1;
  transform: translateY(-12px);
  transition:
    opacity 1.2s ease,
    transform 1.2s ease;
}

/* Activated AFTER menu settles */
.high-tea.reveal .ritual-frame {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 1.2s ease,
    transform 1.2s ease;
}


/* ================================
   MENU PAGE TRANSITION — REFINED
   ================================ */

body.is-transitioning {
  cursor: default;
}

/* Dimming layer */
body.is-transitioning::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(20, 15, 10, 0.22); /* warmer, deeper */
  opacity: 0;
  animation: fadeDim 1.2s ease forwards; /* SLOWER */
  z-index: 999;
  pointer-events: none;
}

@keyframes fadeDim {
  to { opacity: 1; }
}

/* Lift the menu more, slower */
body.is-transitioning .menu-presence {
  transform:
    translateY(-28px)
    scale(1.035)
    rotate(-0.4deg);
  box-shadow:
    0 90px 180px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.85);
  transition:
    transform 1.1s cubic-bezier(.22,.61,.36,1),
    box-shadow 1.1s cubic-bezier(.22,.61,.36,1);
}

/* Fade the room away more decisively */
body.is-transitioning main {
  opacity: 0.35;
  filter: blur(2px);
  transition:
    opacity 1.1s ease,
    filter 1.1s ease;
}


/* CLOSING */
.closing {
  text-align: center;
  padding-bottom: 10vh;
  font-style: italic;
  color: var(--soft);
}

/* VIDEO */
.story-section {
  padding: 20vh 8vw 18vh;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.story-whisper {
  font-size: 0.8rem;
  font-style: italic;
  opacity: 0.55;
  margin-bottom: 0.6rem;
}

.story-section h2 {
  font-size: 1.8rem;
  margin-bottom: 4rem;
}

.story-frame {
  position: relative;
  margin: 0 auto 3rem;
  max-width: 900px;

  /* subtle “set into the page” feeling */
  border-radius: 28px;
  overflow: hidden;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.4);

  background: radial-gradient(
    circle at top,
    rgba(255,255,255,0.08),
    rgba(0,0,0,0.25)
  );
}

.story-video {
  display: block;
  width: 100%;
  height: auto;

  /* removes harsh black edges */
  background: #000;

  /* calm initial presence */
  filter: contrast(0.95) brightness(0.95);
}

/* gentle invitation, not interaction */
.story-frame:hover .story-video {
  filter: contrast(1) brightness(1);
}

.story-credit {
  font-size: 0.75rem;
  line-height: 1.6;
  opacity: 0.55;
  max-width: 420px;
  margin: 0 auto;
}

.story-credit a {
  color: var(--accent);
  text-decoration: none;
}

.story-credit a:hover {
  text-decoration: underline;
}



/* ADMIN CHANGE TO OPENING HOURS */
.hours-row {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hours-row.updated {
  opacity: 0;
  transform: translateY(6px);
}

.hours-row.updated.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ───────────────────────── */
/* TIME ENDING — FINAL       */
/* ───────────────────────── */

/* ===============================
   CLOSING MOMENT (FINAL WOW)
================================ */

.closing-moment {
  position: relative;
  padding: 20vh 10vw 16vh;
  display: flex;
  justify-content: center;
}

.closing-surface {
  position: relative;
  max-width: 540px;
  padding: 5.5rem 6.5rem 5rem;
  text-align: center;

  /* no “card” background */
  background:
    radial-gradient(
      120% 80% at 50% 0%,
      rgba(255,245,230,0.95),
      rgba(245,235,220,0.65),
      rgba(240,230,215,0.25)
    );

  border-radius: 999px; /* removes card perception */

  /* light instead of shadow */
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.35),
    0 40px 120px rgba(120,80,40,0.18);

  /* presence animation */
  animation:
    closingFloat 18s ease-in-out infinite,
    closingGlow 14s ease-in-out infinite;

  isolation: isolate;
}
.closing-surface::before {
  content: "";
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(255,210,160,0.35),
      rgba(255,210,160,0.15),
      transparent 65%
    );
  z-index: -1;
  filter: blur(40px);
  opacity: 0.6;
  animation: haloBreath 16s ease-in-out infinite;
}



@keyframes haloBreath {
  0%,100% { opacity: 0.45; }
  50% { opacity: 0.75; }
}


/* gentle life */
@keyframes closingFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes closingGlow {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.06);
  }
}


/* STATUS */

.closing-status {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  margin-bottom: 1.6rem;
}

.status-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d19a63;
  position: relative;
}

.status-pulse::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
 background: rgba(209,154,99,0.45);
  animation: pulse 3.8s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* MESSAGE */

.closing-message {
  font-style: italic;
  line-height: 1.65;
  opacity: 0.75;
  margin-bottom: 3rem;
}

/* HOURS */

.closing-hours {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 3rem;
}

.day {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.day.closed {
  opacity: 0.45;
}

/* META */

.closing-meta {
  font-size: 0.8rem;
  opacity: 0.55;
}

/* FOOTER */

.site-outro {
  text-align: center;
  padding-bottom: 4rem;
  font-size: 0.75rem;
  opacity: 0.6;
}

.site-outro a {
  display: block;
  margin-bottom: 0.6rem;
  text-decoration: none;
  color: inherit;
}

.location-actions {
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
}

.route-link {
  font-size: 0.75rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;

  color: var(--accent);
  text-decoration: none;

  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(0,0,0,0.08);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    0 4px 12px rgba(0,0,0,0.08);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    background 0.4s ease;
}

.route-link:hover {
  background: rgba(255,255,255,0.55);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 8px 20px rgba(0,0,0,0.12);
}

/* override badge */
.override-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  padding: 0.45rem 0.75rem;
  margin-bottom: 1rem;

  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;

  color: #7a4a4a;
  background: rgba(181, 140, 140, 0.15);
  border: 1px solid rgba(181, 140, 140, 0.35);
  border-radius: 999px;

  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.override-badge.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.override-badge span {
  font-weight: 600;
}

.status-pulse.pulse-soft {
  animation: pulseSoft 2.4s ease-in-out infinite;
}

@keyframes pulseSoft {
  0% {
    box-shadow: 0 0 0 0 rgba(181, 140, 140, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(181, 140, 140, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(181, 140, 140, 0);
  }
}

.story-section {
  max-width: 720px;
  margin: 8rem auto;
  padding: 0 2rem;
  text-align: center;
}

.story-whisper {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 1.5rem;
}

.story-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 3rem;
}

.story-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.85;
}

.story-text em {
  font-style: italic;
  opacity: 0.9;
}

.story-signature {
  margin-top: 3rem;
  font-style: italic;
  opacity: 0.6;
}

.borrowed-space {
  max-width: 680px;
  margin: 12rem auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
}

.borrowed-marker {
  margin-bottom: 2.5rem;
  opacity: 0.4;
}

.borrowed-marker span {
  font-size: 1.2rem;
}

.borrowed-eyebrow {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

.borrowed-space h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 3rem;
  font-weight: 400;
}

.borrowed-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 2rem;
  opacity: 0.85;
}

.borrowed-soft {
  font-style: italic;
  opacity: 0.65;
}

.borrowed-link {
  display: inline-block;
  margin-top: 3rem;
  font-style: italic;
  text-decoration: none;
  color: var(--accent);
  position: relative;
}

.borrowed-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
  transition: opacity 0.3s ease;
}

.borrowed-link:hover::after {
  opacity: 0.7;
}

/* RESPONSIVENESS */
@media (max-width: 900px) {
  .presence {
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 14vh;
  }

  .presence-image {
    height: 320px;
  }

  .presence-text h1 {
    font-size: clamp(2rem, 6vw, 2.6rem);
  }
}

@media (max-width: 700px) {
  .story-section {
    padding: 12vh 6vw;
  }

  .story-frame {
    border-radius: 20px;
  }
}
@media (max-width: 900px) {
  .room {
    grid-template-columns: 1fr;
    padding: 12vh 6vw;
  }

  .room-text {
    max-width: none;
  }
}

@media (max-width: 700px) {
  .room-detail {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 1.5rem;
  }
}

@media (max-width: 900px) {
  .menu-section {
    grid-template-columns: 1fr;
    padding: 14vh 6vw;
    gap: 5rem;
  }

  .menu-ambient-text {
    display: none;
  }
}

@media (max-width: 600px) {
  .menu-presence {
    padding: 3rem 2.5rem;
  }

  .high-tea .ritual-frame {
    max-width: 100%;
    transform: none;
  }
}

@media (max-width: 600px) {
  .closing-surface {
    padding: 3.5rem 2.5rem;
    border-radius: 60px;
  }

  .closing-hours .day {
    font-size: 0.85rem;
  }
}
