/* ===== FONTS ===== */
@font-face {
  font-family: "Open Sans";
  src: url("assets/fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("assets/fonts/OpenSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Mono";
  src: url("assets/fonts/SpaceMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cylls Handwriting";
  src: url("assets/fonts/CyllsHandwriting.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ===== TOKENS ===== */
:root {
  --cream: #f6f5f2;
  --paper: #fbfaf7;
  --warm-cream: #cbc2b6;
  --taupe: #a69f93;
  --sky: #cfefff;
  --blue: #0044f1;
  --wine: #58250e;
  --brown: #3d190a;
  --olive: #6c6145;
  --ink: #221712;
  --shadow-soft: 0 4px 20px rgba(61, 25, 10, 0.06);
  --shadow-deep: 0 8px 32px rgba(25, 14, 10, 0.12);
  --border-soft: 1px solid rgba(61, 25, 10, 0.1);
  --content-width: min(1180px, calc(100vw - 40px));
  --header-height: 72px;
  --side-panel-width: 340px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Mono", monospace;
  color: var(--brown);
  background: var(--paper);
}

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

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

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

/* ===== MARQUEE STRIP ===== */
.top-strip {
  overflow: hidden;
  background: var(--brown);
  color: var(--cream);
  border-bottom: 1px solid rgba(246, 245, 242, 0.08);
}

.top-strip__track {
  display: flex;
  width: max-content;
  padding-block: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: marquee 26s linear infinite;
  will-change: transform;
}

.top-strip__group {
  display: flex;
  flex-shrink: 0;
  gap: 28px;
  padding-inline: 20px;
}

.top-strip__group span {
  white-space: nowrap;
}

.top-strip__group span::after {
  content: "\2014";
  margin-left: 28px;
  opacity: 0.4;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(16px, 3vw, 40px);
  height: var(--header-height);
  background: rgba(251, 250, 247, 0.95);
  border-bottom: var(--border-soft);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: center;
}

.brand img {
  width: clamp(110px, 12vw, 150px);
  height: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* ===== HAMBURGER MENU TOGGLE ===== */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  justify-self: start;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.2px;
  background: var(--brown);
  transition: transform 0.3s ease, opacity 0.3s ease;
  -webkit-transform: translateZ(0);
}

/* Hamburger → X animation */
.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7.2px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7.2px) rotate(-45deg);
}

/* ===== RESERVE BUTTON (Header CTA) ===== */
.header-cta {
  justify-self: end;
  min-height: 40px;
  padding: 0 18px;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  border-radius: 0;
}

.header-cta.button-reserve {
  background: rgba(88, 37, 14, 0.07);
  color: var(--brown);
  border-color: rgba(88, 37, 14, 0.14);
  box-shadow: none;
}

.header-cta.button-reserve::after {
  opacity: 0.56;
}

.header-cta.button-reserve:hover {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
  box-shadow: 0 10px 20px rgba(61, 25, 10, 0.12);
}

/* ===== SIDE PANEL ===== */
.side-panel {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: var(--side-panel-width);
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 40px 40px;
  background: #fff;
  color: var(--brown);
  border-right: var(--border-soft);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.side-panel.is-open {
  transform: translateX(0);
}

.side-panel__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.side-panel__nav a {
  display: block;
  padding: 16px 0;
  font-family: "Open Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  border-bottom: 1px solid rgba(61, 25, 10, 0.08);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.side-panel__nav a:first-child {
  border-top: 1px solid rgba(61, 25, 10, 0.08);
}

.side-panel__nav a:hover {
  color: var(--ink);
  padding-left: 8px;
}

.side-panel__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(61, 25, 10, 0.08);
}

.side-panel__footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(61, 25, 10, 0.12);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.84);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.82;
  transition: opacity 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.side-panel__footer a:hover {
  opacity: 1;
  border-color: rgba(61, 25, 10, 0.22);
  background: #fff;
}

.side-panel-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(34, 23, 18, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.side-panel-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ===== BUTTONS ===== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.button:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.button-reserve {
  position: relative;
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
  box-shadow: 0 10px 24px rgba(61, 25, 10, 0.08);
}

.button-reserve::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-top: 1.4px solid currentColor;
  border-right: 1.4px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.78;
  transition: transform 0.3s ease;
}

.button-reserve:hover {
  background: var(--ink);
  border-color: var(--ink);
  opacity: 1;
  box-shadow: 0 14px 30px rgba(34, 23, 18, 0.16);
}

.button-reserve:hover::after {
  transform: translateX(2px) rotate(45deg);
}

.button-reserve-inverse {
  background: var(--cream);
  color: var(--brown);
  border-color: var(--cream);
  box-shadow: none;
}

.button-reserve-inverse:hover {
  background: #fff;
  border-color: #fff;
}

.button-light {
  background: rgba(255, 255, 255, 0.9);
  color: var(--brown);
  border-color: rgba(61, 25, 10, 0.14);
}

.button-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(246, 245, 242, 0.3);
}

.button-whatsapp {
  background: #1f8f58;
  color: #f8fffb;
  border-color: #1f8f58;
}

.button-whatsapp:hover {
  background: #177a4a;
  opacity: 1;
}

.button-instagram {
  background: rgba(255, 255, 255, 0.88);
  color: var(--brown);
  border-color: rgba(61, 25, 10, 0.14);
  box-shadow: none;
}

.button-instagram:hover {
  background: #fff;
  border-color: rgba(61, 25, 10, 0.24);
  opacity: 1;
}

/* ===== TYPOGRAPHY ===== */
.eyebrow,
.section-label,
.card-kicker,
.visit-kicker,
.ritual-index {
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow,
.section-label,
.card-kicker,
.visit-kicker {
  font-size: 0.68rem;
  color: rgba(61, 25, 10, 0.55);
}

.section-label-light {
  color: rgba(246, 245, 242, 0.6);
}

.handwritten {
  font-family: "Cylls Handwriting", cursive;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.1;
  color: var(--ink);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin-top: 18px;
  font-size: 0.95rem;
  line-height: 1.6;
}

h2 {
  font-size: 0.95rem;
  line-height: 1.6;
}

h3 {
  font-size: 0.88rem;
  line-height: 1.6;
}

.hero-text,
.section-heading p:last-child,
.editorial-intro p:last-child,
.space-copy > p:last-of-type,
.rituals-header p:last-child,
.reserve-card > p:not(.visit-kicker),
.final-panel__copy p:last-of-type {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(61, 25, 10, 0.6);
}

.booking-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 0;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(61, 25, 10, 0.54);
}

.booking-note::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(88, 37, 14, 0.78);
  flex: 0 0 auto;
}

.booking-note-light {
  color: rgba(246, 245, 242, 0.66);
}

.booking-note-light::before {
  background: rgba(246, 245, 242, 0.78);
}

/* ===== SECTIONS ===== */
.section {
  width: var(--content-width);
  margin: 0 auto;
  padding: 80px 0;
}

.section-bleed {
  width: min(1240px, calc(100vw - 24px));
}

.section-heading,
.editorial-intro,
.rituals-header {
  max-width: 820px;
}

.section-heading h2,
.editorial-intro h2,
.space-copy h2,
.rituals-header h2,
.final-panel__copy h2 {
  margin-top: 14px;
}

/* ===== HERO ===== */
.hero {
  display: grid;
  gap: 0;
  padding-top: 48px;
  padding-bottom: 80px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-image {
  margin: 0;
  overflow: hidden;
  max-width: 400px;
  width: 100%;
}

.hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 40%;
}

.hero-tagline {
  padding: 40px 20px 8px;
  text-align: center;
}

.hero-tagline .handwritten {
  margin: 0;
}

.hero-tagline-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-subtitle {
  margin: 16px 0 0;
  max-width: 75%;
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(61, 25, 10, 0.6);
  text-align: center;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-actions .button-reserve {
  min-width: 220px;
}

/* ===== MANIFESTO ===== */
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 4px;
  margin-top: 40px;
}

.manifesto-card {
  min-height: 300px;
  padding: 32px;
  border: var(--border-soft);
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.manifesto-card h3 {
  max-width: 14ch;
  margin-top: 14px;
}

.manifesto-card p:last-child {
  margin-bottom: 0;
}

.manifesto-card-image,
.manifesto-card-object {
  padding: 0;
}

.manifesto-card-image img,
.manifesto-card-object img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100%;
}

.manifesto-card-accent {
  background: linear-gradient(140deg, rgba(255, 249, 207, 0.6), rgba(207, 239, 255, 0.3)),
    rgba(255, 255, 255, 0.7);
}

.manifesto-handwritten {
  margin-top: 18px;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
}

/* ===== EDITORIAL ===== */
.editorial {
  padding: 70px 26px;
  position: relative;
  isolation: isolate;
  overflow: clip;
  background: linear-gradient(180deg, #2d1610, #181210);
  color: var(--cream);
}

.editorial-intro p:last-child {
  color: rgba(246, 245, 242, 0.65);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.95fr 1fr;
  gap: 4px;
  margin-top: 36px;
  grid-auto-rows: 240px;
}

.editorial-card {
  position: relative;
  margin: 0;
  border: 1px solid rgba(246, 245, 242, 0.06);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.editorial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.editorial-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.46));
}

.editorial-card-tall {
  grid-row: span 2;
}

.editorial-card-wide {
  grid-column: span 2;
}

.editorial-card-copy img {
  object-fit: cover;
}

.editorial-card-polish img {
  object-position: 50% 50%;
}

.editorial-card-coffee img {
  object-position: 54% 52%;
}

.editorial-card-matcha img {
  object-position: 50% 50%;
}

.editorial-card-poster {
  background: #713519;
}

.editorial-card-poster img {
  object-fit: contain;
  object-position: center;
  padding: 22px 22px 64px;
}

.editorial-card-poster::after {
  display: none;
}

.editorial-card-cup img {
  object-position: 50% 52%;
}

.editorial-card-brand img {
  object-position: 50% 48%;
}

/* ===== SPACE ===== */
.space {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 28px;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.space-points {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.space-points div {
  padding: 18px 20px;
  border-left: 2px solid var(--blue);
  background: rgba(255, 255, 255, 0.4);
}

.space-points span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(61, 25, 10, 0.55);
}

.space-points strong {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  line-height: 1.55;
}

.space-media {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 4px;
}

.space-card {
  margin: 0;
  background: #33251d;
  border: var(--border-soft);
  overflow: hidden;
}

.space-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.space-card-accent {
  background: var(--wine);
}

.space-stack {
  display: grid;
  gap: 4px;
}

/* ===== RITUALS ===== */
.rituals-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(320px, 0.92fr);
  gap: 4px;
  align-items: stretch;
  margin-top: 36px;
}

.ritual-card,
.reserve-card {
  padding: 24px;
  border: var(--border-soft);
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.ritual-media {
  height: 240px;
  margin-bottom: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 245, 242, 0.88));
}

.ritual-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

.ritual-index {
  font-size: 0.76rem;
  color: var(--blue);
}

.ritual-card h3 {
  margin-top: 14px;
  margin-bottom: 10px;
}

.ritual-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(61, 25, 10, 0.6);
}

.ritual-card-poster .ritual-media {
  background: #5b2b1a;
}

/* ===== RESERVE CARD ===== */
.reserve-card {
  display: grid;
  gap: 16px;
  background: var(--brown);
  color: var(--cream);
}

.reserve-card .visit-kicker {
  color: rgba(246, 245, 242, 0.5);
}

.reserve-card > p:not(.visit-kicker) {
  color: rgba(246, 245, 242, 0.7);
}

.reserve-card h3 {
  color: var(--cream);
  max-width: none;
}

.reserve-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reserve-card__actions .button-reserve {
  background: var(--cream);
  color: var(--brown);
  border-color: var(--cream);
}

.reserve-card__actions .button-reserve:hover {
  background: #fff;
  opacity: 1;
}

.reserve-card__actions .button-whatsapp {
  border-color: rgba(246, 245, 242, 0.2);
}

.reserve-meta {
  display: grid;
  gap: 14px;
  padding-top: 4px;
}

.reserve-meta__item {
  padding-top: 14px;
  border-top: 1px solid rgba(246, 245, 242, 0.15);
}

.reserve-meta__item span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246, 245, 242, 0.45);
}

.reserve-meta__item strong {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  line-height: 1.6;
}

.reserve-meta__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.reserve-meta__links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(246, 245, 242, 0.15);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding-bottom: 96px;
}

.final-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 40px;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}

.final-panel__copy h2 {
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  font-weight: 400;
}

.final-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.final-panel__actions .button-outline-light {
  min-height: 40px;
  padding: 0 20px;
  font-size: 0.65rem;
  border-color: rgba(246, 245, 242, 0.2);
}

.final-panel__actions .button-reserve-inverse {
  min-height: 40px;
  padding: 0 20px;
  font-size: 0.65rem;
}

.final-panel__mark {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 112px;
  opacity: 0.08;
}

/* ===== FOOTER ===== */
.site-footer {
  width: var(--content-width);
  margin: 0 auto;
  padding: 0 0 40px;
  display: grid;
  gap: 8px;
  justify-items: start;
  color: rgba(61, 25, 10, 0.55);
  font-size: 0.74rem;
  line-height: 1.8;
}

.site-footer__logo {
  width: clamp(140px, 16vw, 220px);
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer__links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(61, 25, 10, 0.1);
  border-radius: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-booking-link {
  background: transparent !important;
  border-color: rgba(61, 25, 10, 0.18) !important;
  color: rgba(61, 25, 10, 0.78);
  box-shadow: none;
}

.footer-booking-link:hover {
  transform: none;
}

/* ===== MOBILE STICKY BAR ===== */
.mobile-sticky-bar {
  display: none;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal.will-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

/* ===== KEYFRAMES ===== */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== BODY LOCK WHEN MENU OPEN ===== */
body.menu-open {
  overflow: hidden;
}

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 1120px) {
  .manifesto-grid {
    grid-template-columns: 1fr;
  }

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

  .editorial-card-wide {
    grid-column: span 1;
  }

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

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

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

  .reserve-card h3 {
    max-width: none;
  }

  .final-panel {
    grid-template-columns: 1fr;
  }

  .final-panel__actions {
    justify-content: flex-start;
  }
}

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 820px) {
  :root {
    --header-height: 56px;
    --side-panel-width: 100vw;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .top-strip {
    display: none;
  }

  .site-header {
    padding: 0 16px;
  }

  .brand img {
    width: 130px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.65rem;
  }

  .side-panel {
    padding: 80px 24px 32px;
  }

  .side-panel__nav a {
    font-size: 1.2rem;
    padding: 16px 0;
  }

  .hero {
    padding-top: 32px;
    padding-bottom: 40px;
  }

  .hero-image {
    max-width: 300px;
  }

  .hero-tagline {
    padding: 24px 16px 8px;
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button-reserve {
    min-width: 0;
  }

  .booking-note {
    display: flex;
    justify-content: center;
    text-align: center;
    line-height: 1.6;
  }

  .section {
    padding: 48px 0;
  }

  .manifesto-card {
    min-height: 200px;
    padding: 24px;
  }

  .editorial {
    padding: 40px 16px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .editorial-card-tall {
    grid-row: span 1;
  }

  .space-media {
    gap: 2px;
  }

  .space-stack {
    gap: 2px;
  }

  .rituals-grid {
    gap: 2px;
  }

  .final-panel {
    padding: 32px 20px;
  }

  .final-panel__mark {
    width: 80px;
  }

  /* Mobile sticky bar */
  .mobile-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 0;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(251, 250, 247, 0.95);
    border-top: var(--border-soft);
    backdrop-filter: blur(12px);
  }

  .mobile-sticky-bar .button {
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .top-strip__track,
  .button,
  .side-panel,
  .side-panel-overlay,
  .menu-toggle span {
    transition: none;
    animation: none;
  }

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