@font-face {
  font-family: "Ser Puente Sans";
  src: url("assets/fonts/brand-sans-regular.woff?v=a50ad1fa191b") format("woff");
  font-style: normal;
  font-weight: 100 500;
  font-display: swap;
}

@font-face {
  font-family: "Ser Puente Sans";
  src: url("assets/fonts/brand-sans-bold.woff?v=243e98d8152c") format("woff");
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
}

@font-face {
  font-family: "Ser Puente Display";
  src: url("assets/fonts/brand-display-regular.woff?v=49ff6225e2b6") format("woff");
  font-style: normal;
  font-weight: 100 500;
  font-display: swap;
}

@font-face {
  font-family: "Ser Puente Display";
  src: url("assets/fonts/brand-display-bold.woff?v=302d2ab418c3") format("woff");
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
}

:root {
  --cream: #f7f3eb;
  --fog: #e6e6e0;
  --sand: #dddbca;
  --olive: #79765c;
  --meditation: #8f655c;
  --meditation-soft: #e5d5cd;
  --ink: #3b3a2e;
  --white: #fffef9;
  --line: rgba(59, 58, 46, 0.24);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --section-x: clamp(1.25rem, 5vw, 6rem);
  --section-y: clamp(3.5rem, 6vw, 5rem);
  --max: 90rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--olive) var(--cream);
  overflow-x: clip;
}

section[id] {
  scroll-margin-top: 6rem;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--cream);
  color: var(--ink);
  font-family: "Ser Puente Sans", sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--olive);
  color: var(--cream);
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--cream);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.scroll-progress {
  position: fixed;
  z-index: 999;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--olive);
}

/* Navigation */
.site-header {
  position: fixed;
  z-index: 900;
  top: 1rem;
  right: var(--section-x);
  left: var(--section-x);
  display: grid;
  max-width: var(--max);
  min-height: 4.5rem;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  margin: 0 auto;
  padding: 0 0.55rem 0 1.25rem;
  border: 1px solid transparent;
  transition:
    top 400ms var(--ease),
    background-color 400ms ease,
    border-color 400ms ease,
    box-shadow 400ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  top: 0.7rem;
  border-color: rgba(59, 58, 46, 0.12);
  background: rgba(247, 243, 235, 0.88);
  box-shadow: 0 0.75rem 2.5rem rgba(59, 58, 46, 0.08);
  backdrop-filter: blur(16px);
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Ser Puente Display", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-decoration: none;
}

.site-header__mark,
.site-footer__mark {
  display: block;
  height: auto;
  object-fit: contain;
}

.site-header__mark {
  width: 2.65rem;
  flex: 0 0 auto;
  transition: transform 350ms var(--ease);
}

.site-header__brand:hover .site-header__mark {
  transform: translateY(-0.08rem) rotate(-2deg);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
}

.site-nav a {
  position: relative;
  padding: 0.4rem 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 400ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a span {
  display: none;
}

.site-header__cta {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.site-header__cta i {
  font-style: normal;
  transition: transform 350ms var(--ease);
}

.site-header__cta:hover i {
  transform: translate(0.18rem, -0.18rem);
}

.menu-toggle {
  display: none;
}

.section-pad {
  padding: var(--section-y) var(--section-x);
}

.hero__content,
.hero__gallery,
.story__copy,
.manifesto__copy,
.section-heading > *,
.day-row__events,
.personal__card,
.price-card,
.contact__grid > * {
  min-width: 0;
}

.eyebrow,
.section-index {
  margin: 0;
  color: var(--olive);
  font-weight: 700;
  font-size: 0.79rem;
  line-height: 1.2;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Ser Puente Display", sans-serif;
}

h1,
h2 {
  letter-spacing: -0.045em;
}

h1 {
  max-width: 13ch;
  margin: 1.25rem 0 0.9rem;
  font-size: clamp(3.1rem, 5.4vw, 6rem);
  font-weight: 700;
  line-height: 0.93;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.65rem, 4.8vw, 5.4rem);
  font-weight: 500;
  line-height: 0.92;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.8rem 1.15rem 0.75rem;
  overflow: hidden;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 400ms var(--ease), background-color 400ms var(--ease), transform 400ms var(--ease);
}

.button::before {
  position: absolute;
  inset: 0;
  width: 100%;
  transform: translateX(-101%);
  background: var(--ink);
  content: "";
  transition: transform 520ms var(--ease);
}

.button > * {
  position: relative;
  z-index: 1;
}

.button svg {
  width: 1.1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 400ms var(--ease);
}

.button:hover::before {
  transform: translateX(0);
}

.button:hover {
  color: var(--cream);
}

.button:hover svg {
  transform: translateX(0.25rem);
}

.button--solid {
  background: var(--ink);
  color: var(--cream);
}

.button--solid::before {
  background: var(--cream);
}

.button--solid:hover {
  color: var(--ink);
}

.button--wide {
  width: 100%;
}

.image-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--sand);
}

.image-frame img,
.personal__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter 700ms ease;
}

.image-frame:hover img,
.personal__image:hover img {
  transform: scale(1.025);
}

.reveal,
.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, var(--reveal-distance, 2rem), 0) scale(var(--reveal-scale, 1));
  transition:
    opacity var(--reveal-duration, 900ms) var(--ease),
    transform var(--reveal-duration, 900ms) var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal--delay-1 {
  --reveal-delay: 120ms;
}

.reveal--delay-2 {
  --reveal-delay: 240ms;
}

.reveal.is-visible,
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

.story__text p,
.contact-channel,
.personal__card li {
  --reveal-distance: 1.15rem;
  --reveal-duration: 760ms;
}

.day-row,
.price-card {
  --reveal-scale: 0.985;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1fr) minmax(29rem, 0.92fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: clamp(4.25rem, 6vw, 5rem);
  padding-bottom: clamp(3.25rem, 5vw, 4rem);
  isolation: isolate;
}

.hero__wash {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
}

.hero__wash::before {
  position: absolute;
  top: -8rem;
  left: 42%;
  width: 33rem;
  aspect-ratio: 1;
  border: 1px solid rgba(121, 118, 92, 0.2);
  border-radius: 50%;
  content: "";
  animation: breathe 9s ease-in-out infinite;
}

.hero__lead {
  max-width: 15ch;
  margin-bottom: 1.6rem;
  font-size: clamp(1.4rem, 2.3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero .button {
  width: min(100%, 18rem);
}

.hero__gallery {
  position: relative;
  min-height: 34rem;
  perspective: 1100px;
}

.hero__image {
  position: absolute;
  width: clamp(14rem, 21vw, 20rem);
  height: clamp(22rem, 32vw, 29rem);
  border: 0.55rem solid var(--cream);
  box-shadow: 0 2rem 5rem rgba(59, 58, 46, 0.1);
  transition: transform 800ms var(--ease);
}

.hero__image img {
  filter: grayscale(1) contrast(1.02);
}

.hero__image--one {
  z-index: 2;
  top: 0;
  left: 0;
}

.hero__image--one img {
  object-position: 12% center;
}

.hero__image--two {
  z-index: 1;
  right: 0;
  bottom: 0;
}

.hero__image--two img {
  object-position: 47% center;
}

.orbit {
  position: absolute;
  z-index: 0;
  right: 4%;
  top: 5%;
  width: clamp(11rem, 20vw, 18rem);
  aspect-ratio: 1;
  border: 1px solid var(--olive);
  border-radius: 50%;
  opacity: 0.45;
  animation: drift 10s ease-in-out infinite;
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: var(--section-x);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--olive);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 3.5rem;
  height: 1px;
  overflow: hidden;
  background: rgba(121, 118, 92, 0.35);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  background: var(--olive);
  content: "";
  animation: cue 2.2s var(--ease) infinite;
}

/* Story */
.story {
  display: grid;
  grid-template-columns: minmax(19rem, 22rem) minmax(28rem, 46rem);
  align-items: center;
  justify-content: center;
  gap: clamp(2.75rem, 3.6vw, 4.25rem);
  padding-top: clamp(2.5rem, 3.5vw, 2.65rem);
  padding-right: max(var(--section-x), calc((100vw - 74rem) / 2));
  padding-bottom: clamp(2.5rem, 3.5vw, 2.65rem);
  padding-left: max(var(--section-x), calc((100vw - 74rem) / 2));
  background: var(--fog);
}

.story__image-wrap {
  position: sticky;
  top: 2rem;
  align-self: center;
  max-width: 22rem;
}

.image-frame--portrait {
  aspect-ratio: 0.64;
}

.image-frame--portrait img {
  object-position: center;
  filter: grayscale(1);
  transform: scale(1.08) translateY(var(--parallax, 0));
}

.image-frame--portrait:hover img {
  transform: scale(1.1) translateY(var(--parallax, 0));
}

.side-note {
  position: absolute;
  right: -2.2rem;
  bottom: 0;
  margin: 0;
  color: var(--olive);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
}

.story__copy {
  max-width: 46rem;
}

.story__copy h2 {
  margin-top: 0.9rem;
}

.story__text {
  columns: 2;
  column-gap: clamp(1.5rem, 3vw, 3rem);
  column-rule: 1px solid rgba(59, 58, 46, 0.12);
  font-size: clamp(0.9rem, 0.95vw, 1rem);
  line-height: 1.55;
  hyphens: auto;
  text-align: justify;
  text-justify: inter-word;
}

.story__text p {
  break-inside: avoid;
  margin: 0 0 0.85rem;
}

/* Manifesto */
.manifesto {
  position: relative;
  display: grid;
  min-height: min(40rem, 100svh);
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--sand);
}

.manifesto__mark {
  position: absolute;
  z-index: 0;
  margin: 0;
  color: var(--olive);
  font-family: Georgia, serif;
  font-size: clamp(10rem, 18vw, 18rem);
  line-height: 0.8;
  opacity: 0.28;
  pointer-events: none;
}

.manifesto__mark {
  top: clamp(1rem, 3vw, 2.5rem);
  left: clamp(0.5rem, 4vw, 4rem);
}

.manifesto__mark--closing {
  top: auto;
  right: clamp(0.5rem, 4vw, 4rem);
  bottom: clamp(1rem, 3vw, 2.5rem);
  left: auto;
}

.manifesto__mark--mobile {
  display: none;
}

.manifesto__copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 60rem;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.manifesto h2 {
  margin-top: 1rem;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 0.98;
}

.manifesto__copy > p:not(.section-index) {
  max-width: 44rem;
  margin-right: auto;
  margin-bottom: 1.5rem;
  margin-left: auto;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}

/* Schedule */
.schedule {
  padding-top: clamp(2.75rem, 4.5vw, 4rem);
  padding-bottom: clamp(2.75rem, 4.5vw, 4rem);
  background: var(--cream);
}

.section-heading {
  display: grid;
  max-width: var(--max);
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.38fr);
  align-items: end;
  gap: 3rem;
  margin: 0 auto 1.5rem;
}

.section-heading h2 {
  margin: 0.75rem 0 0;
}

.section-heading > p {
  max-width: 28rem;
  margin-bottom: 0.4rem;
  color: var(--olive);
  font-size: 1rem;
}

.schedule__filters {
  display: flex;
  max-width: var(--max);
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 auto 1rem;
}

.filter-chip {
  display: inline-flex;
  min-height: 2.45rem;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 100vmax;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: border-color 250ms ease, background-color 250ms ease, color 250ms ease, transform 250ms ease;
}

.filter-chip span {
  width: 0.5rem;
  aspect-ratio: 1;
  border: 1px solid var(--filter-color, currentColor);
  border-radius: 50%;
  background: var(--filter-color, transparent);
  transition: background-color 250ms ease;
}

.filter-chip:hover {
  transform: translateY(-2px);
  border-color: var(--filter-color, var(--olive));
}

.filter-chip.is-active {
  border-color: var(--filter-color, var(--ink));
  background: var(--filter-color, var(--ink));
  color: var(--cream);
}

.filter-chip.is-active span {
  background: currentColor;
}

.filter-chip[data-filter="morning"] {
  --filter-color: #9d9980;
}

.filter-chip[data-filter="all"] {
  --filter-color: var(--olive);
}

.filter-chip[data-filter="evening"] {
  --filter-color: var(--ink);
}

.schedule__board {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--ink);
}

.day-row {
  display: grid;
  grid-template-columns: minmax(10rem, 0.24fr) 1fr;
  gap: 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  transition: opacity 350ms ease, transform 350ms var(--ease), background-color 350ms ease;
}

.day-row:not(.day-row--empty):hover {
  background: rgba(221, 219, 202, 0.26);
}

.day-row[hidden] {
  display: none;
}

.day-row > header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0.7rem;
}

.day-row > header span {
  color: var(--olive);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.day-row h3 {
  margin: 0;
  font-size: clamp(1.65rem, 2.5vw, 2.45rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.day-row__events {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.event {
  position: relative;
  min-height: 7rem;
  padding: 1rem;
  overflow: hidden;
  border-left: 3px solid var(--olive);
  background: var(--fog);
  transition: opacity 280ms ease, transform 400ms var(--ease), background-color 280ms ease;
}

.event::after {
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  width: 7rem;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.11;
  transition: transform 500ms var(--ease);
}

.event:hover {
  transform: translateY(-0.22rem);
  background: var(--sand);
}

.event:hover::after {
  transform: scale(1.22);
}

.event--morning {
  border-left-color: #9d9980;
  background: var(--cream);
  box-shadow: inset 0 0 0 1px rgba(121, 118, 92, 0.18);
}

.event--evening {
  border-left-color: var(--ink);
  background: var(--fog);
}

.event--meditation {
  border-left-color: var(--meditation);
  background: var(--meditation-soft);
  box-shadow: inset 0 0 0 1px rgba(143, 101, 92, 0.24);
}

.event--meditation:hover {
  background: #dbc5ba;
}

.event[hidden] {
  display: none;
}

.event time {
  display: block;
  margin-bottom: 1.05rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.event p {
  margin: 0;
  font-family: "Ser Puente Display", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.18;
}

.event p span {
  display: block;
  margin-top: 0.3rem;
  font-family: "Ser Puente Sans", sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  opacity: 0.75;
}

.empty-mark {
  align-self: center;
  padding: 0.6rem 1rem;
  color: rgba(59, 58, 46, 0.35);
  font-size: 2rem;
}

/* Personal */
.personal {
  position: relative;
  display: flex;
  min-height: min(46rem, 100svh);
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  overflow: hidden;
  background: var(--fog);
}

.personal__image {
  position: absolute;
  inset: 0;
}

.personal__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(59, 58, 46, 0.14), rgba(59, 58, 46, 0));
  content: "";
}

.personal__image img {
  object-fit: contain;
  object-position: right center;
  filter: grayscale(1) contrast(1.04);
}

.personal__image:hover img {
  transform: none;
}

.personal__card {
  position: relative;
  z-index: 1;
  width: min(38rem, 50%);
  padding: clamp(1.75rem, 3.2vw, 3.25rem);
  background: rgba(247, 243, 235, 0.94);
  box-shadow: 0 2rem 6rem rgba(59, 58, 46, 0.16);
}

.personal__card h2 {
  margin-top: 1rem;
  font-size: clamp(2.4rem, 3.6vw, 4.2rem);
}

.personal__card p {
  margin-bottom: 1rem;
}

.personal__card ul {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.personal__card li {
  padding: 0.48rem 0;
  border-bottom: 1px solid var(--line);
  font-family: "Ser Puente Display", sans-serif;
  font-size: 1.05rem;
}

.personal__card li::before {
  margin-right: 0.8rem;
  color: var(--olive);
  content: "↗";
}

.text-link {
  display: inline-flex;
  gap: 0.8rem;
  margin-top: 0.7rem;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-underline-offset: 0.28rem;
}

.text-link span {
  text-decoration: none;
  transition: transform 300ms var(--ease);
}

.text-link:hover span {
  transform: translate(0.2rem, -0.2rem);
}

/* Pricing */
.pricing {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  overflow: hidden;
  background: var(--sand);
}

.pricing__heading {
  max-width: var(--max);
  margin: 0 auto clamp(1.5rem, 2.5vw, 2rem);
}

.pricing__heading h2 {
  max-width: 12ch;
  margin-top: 0.9rem;
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  text-transform: uppercase;
}

.pricing__grid {
  display: grid;
  max-width: var(--max);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 auto;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 23rem;
  flex-direction: column;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  overflow: hidden;
  background: var(--white);
  transition: transform 500ms var(--ease), box-shadow 500ms var(--ease);
}

.price-card::before {
  position: absolute;
  right: -8rem;
  bottom: -9rem;
  width: 20rem;
  aspect-ratio: 1;
  border: 1px solid var(--sand);
  border-radius: 50%;
  content: "";
  transition: transform 650ms var(--ease);
}

.price-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1.5rem 4rem rgba(59, 58, 46, 0.11);
}

.price-card:hover::before {
  transform: scale(1.15);
}

.price-card--featured {
  background: var(--ink);
  color: var(--cream);
}

.price-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  opacity: 0.65;
  text-transform: uppercase;
}

.price-card__top p {
  margin: 0;
}

.price-card h3 {
  min-height: 4rem;
  margin: 1.25rem 0 0.5rem;
  font-size: clamp(1.55rem, 2.3vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.price-card__mode {
  color: var(--olive);
  font-size: 0.85rem;
}

.price-card--featured .price-card__mode {
  color: var(--sand);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.price strong {
  font-family: "Ser Puente Display", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.price span {
  font-size: 0.8rem;
  font-weight: 700;
}

.price-card__period {
  position: relative;
  z-index: 1;
  margin-top: 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.price-card__button {
  z-index: 1;
  width: 100%;
  margin-top: 1.4rem;
}

.price-card--featured .price-card__button {
  border-color: var(--cream);
  color: var(--cream);
}

.price-card--featured .price-card__button::before {
  background: var(--cream);
}

.price-card--featured .price-card__button:hover {
  color: var(--ink);
}

.pricing__note {
  max-width: var(--max);
  margin: 1.25rem auto 0;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pricing__note span {
  margin: 0 0.6rem;
  color: var(--olive);
}

/* Contact */
.contact {
  padding-top: clamp(3rem, 4.5vw, 3.4rem);
  padding-bottom: clamp(3rem, 4.5vw, 3.4rem);
  background: var(--cream);
}

.contact__heading,
.contact__grid,
.footer-line {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.contact__heading {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.contact__heading h2 {
  margin: 0.65rem 0 0;
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  text-transform: uppercase;
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(19rem, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  gap: clamp(2rem, 6vw, 6rem);
}

.contact__channels {
  display: grid;
  align-content: start;
  gap: clamp(1.75rem, 3vw, 2.75rem);
}

.contact__intro {
  max-width: 24ch;
  margin: 0;
  color: var(--olive);
  font-family: "Ser Puente Display", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.15;
}

.contact__options {
  display: grid;
  border-top: 1px solid var(--ink);
}

.contact-channel {
  position: relative;
  display: grid;
  min-height: 7.75rem;
  grid-template-columns: 3.25rem minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: 1.2rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
  isolation: isolate;
}

.contact-channel::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  background: var(--ink);
  content: "";
  transition: transform 450ms var(--ease);
}

.contact-channel__icon {
  display: grid;
  width: 3.25rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color 350ms ease, transform 450ms var(--ease);
}

.contact-channel__icon svg {
  width: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.contact-channel--whatsapp .contact-channel__icon svg path:first-child {
  fill: none;
}

.contact-channel__copy {
  display: grid;
  justify-items: start;
}

.contact-channel__copy small {
  margin-bottom: 0.15rem;
  color: var(--olive);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: color 350ms ease;
}

.contact-channel__copy strong {
  font-family: "Ser Puente Display", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 500;
  line-height: 1;
}

.contact-channel__copy em {
  margin-top: 0.2rem;
  color: var(--olive);
  font-size: 0.7rem;
  font-style: normal;
  letter-spacing: 0.04em;
  transition: color 350ms ease;
}

.contact-channel__arrow {
  display: grid;
  width: 2.4rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1rem;
  transition: transform 400ms var(--ease), background-color 350ms ease, color 350ms ease;
}

.contact-channel:hover {
  color: var(--cream);
}

.contact-channel:hover::before {
  transform: scaleY(1);
}

.contact-channel:hover .contact-channel__icon {
  transform: rotate(-5deg);
  border-color: rgba(247, 243, 235, 0.38);
}

.contact-channel:hover .contact-channel__copy small,
.contact-channel:hover .contact-channel__copy em {
  color: var(--sand);
}

.contact-channel:hover .contact-channel__arrow {
  transform: translate(0.18rem, -0.18rem);
  background: var(--cream);
  color: var(--ink);
}

.contact__visual {
  display: grid;
  min-height: 22rem;
}

.contact__visual .image-frame {
  height: 100%;
  min-height: 22rem;
  aspect-ratio: 1.55;
}

.contact__visual img {
  filter: grayscale(1);
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: clamp(3.5rem, 6vw, 5rem);
  padding-bottom: 1.5rem;
  background: var(--ink);
  color: var(--cream);
}

.site-footer::before {
  position: absolute;
  top: -25rem;
  right: -18rem;
  width: 48rem;
  aspect-ratio: 1;
  border: 1px solid rgba(247, 243, 235, 0.1);
  border-radius: 50%;
  content: "";
}

.site-footer__top,
.site-footer .footer-line {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-bottom: clamp(2.25rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(247, 243, 235, 0.18);
}

.site-footer__brand {
  display: grid;
  position: relative;
  width: max-content;
  grid-template-columns: clamp(3rem, 5vw, 4.75rem) auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: clamp(0.8rem, 2vw, 2rem);
  font-family: "Ser Puente Display", sans-serif;
  font-size: clamp(3.6rem, 5.7vw, 6.25rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.69;
  text-decoration: none;
}

.site-footer__mark {
  width: 100%;
  grid-row: 1 / 3;
  filter: brightness(0) invert(1);
  transition: transform 500ms var(--ease);
}

.site-footer__brand > span:not(.site-footer__mark) {
  grid-column: 2;
}

.site-footer__brand span:last-child {
  margin-left: clamp(1rem, 5vw, 5rem);
}

.site-footer__brand i {
  color: var(--sand);
  font-style: normal;
}

.site-footer__brand:hover .site-footer__mark {
  transform: translateY(-0.15rem) rotate(-2deg);
}

.site-footer__top > p {
  max-width: 17rem;
  margin-bottom: 0;
  color: var(--sand);
  font-family: "Ser Puente Display", sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.5rem);
  line-height: 1.15;
  text-align: center;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.6rem, 1.4vw, 0.9rem);
  text-align: center;
  white-space: nowrap;
}

.site-footer__nav a {
  color: rgba(247, 243, 235, 0.78);
  font-family: "Ser Puente Display", sans-serif;
  font-size: clamp(0.82rem, 1.05vw, 1rem);
  text-decoration-color: transparent;
  text-underline-offset: 0.25rem;
  transition: color 250ms ease, text-decoration-color 250ms ease;
}

.site-footer__nav a:hover {
  color: var(--cream);
  text-decoration-color: currentColor;
}

.site-footer__back {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background-color 350ms ease, color 350ms ease, transform 400ms var(--ease);
}

.site-footer__back i {
  font-size: 1rem;
  font-style: normal;
}

.site-footer__back:hover {
  transform: translateY(-0.15rem);
  color: var(--cream);
}

.footer-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(4rem, 9vw, 8rem);
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  color: var(--olive);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-line > :first-child {
  justify-self: start;
}

.footer-line > :nth-child(2) {
  justify-self: center;
}

.footer-line > :last-child {
  justify-self: end;
}

.site-footer .footer-line {
  margin-top: 0;
  padding-top: 1.5rem;
  border-color: rgba(247, 243, 235, 0.18);
  color: rgba(247, 243, 235, 0.55);
}

.site-footer__credit {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 1.1rem auto 0;
  color: rgba(247, 243, 235, 0.55);
  font-size: 0.65rem;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.site-footer__credit a {
  color: var(--sand);
  text-decoration-color: transparent;
  text-underline-offset: 0.25rem;
  transition: color 250ms ease, text-decoration-color 250ms ease;
}

.site-footer__credit a:hover {
  color: var(--cream);
  text-decoration-color: currentColor;
}

@keyframes breathe {
  0%,
  100% { transform: scale(0.92); opacity: 0.3; }
  50% { transform: scale(1.06); opacity: 0.65; }
}

@keyframes drift {
  0%,
  100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-1.2rem, 1.8rem, 0); }
}

@keyframes cue {
  0% { transform: translateX(-110%); }
  55%,
  100% { transform: translateX(110%); }
}

@media (max-width: 1120px) {
  .site-header {
    gap: 1.5rem;
  }

  .site-nav {
    gap: 1.1rem;
  }

  .site-header__cta {
    gap: 0.75rem;
  }

  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(24rem, 0.78fr);
  }

  .hero__gallery {
    min-height: 32rem;
  }

  .hero__image {
    width: clamp(13rem, 23vw, 18rem);
    height: clamp(21rem, 33vw, 27rem);
  }

  .story {
    gap: 3.5rem;
  }

  .story__text {
    columns: 2;
  }

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

@media (max-width: 900px) {
  :root {
    --section-y: 5rem;
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    top: 0.65rem;
    right: 0.65rem;
    left: 0.65rem;
    min-height: 4rem;
    grid-template-columns: 1fr auto;
    padding: 0 0.45rem 0 0.85rem;
    background: rgba(247, 243, 235, 0.88);
    border-color: rgba(59, 58, 46, 0.12);
    box-shadow: 0 0.75rem 2.5rem rgba(59, 58, 46, 0.08);
    backdrop-filter: blur(16px);
  }

  .site-header.is-scrolled,
  .site-header.is-menu-open {
    top: 0.65rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    min-width: 6.15rem;
    min-height: 3rem;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.65rem 0.8rem;
    border: 0;
    background: var(--ink);
    color: var(--cream);
    cursor: pointer;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.09em;
  }

  .menu-toggle__icon {
    position: relative;
    width: 1rem;
    height: 0.65rem;
  }

  .menu-toggle__icon i {
    position: absolute;
    right: 0;
    left: 0;
    height: 1px;
    background: currentColor;
    transition: top 300ms var(--ease), transform 300ms var(--ease);
  }

  .menu-toggle__icon i:first-child {
    top: 0.14rem;
  }

  .menu-toggle__icon i:last-child {
    top: 0.5rem;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child,
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
    top: 0.32rem;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 1;
    top: 4.95rem;
    right: 0.65rem;
    left: 0.65rem;
    display: grid;
    align-content: center;
    justify-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.35rem;
    transform: translateY(-1rem);
    border: 1px solid rgba(59, 58, 46, 0.12);
    background: rgba(247, 243, 235, 0.98);
    box-shadow: 0 1.5rem 3.5rem rgba(59, 58, 46, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease, transform 400ms var(--ease), visibility 300ms ease;
    visibility: hidden;
  }

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

  .site-nav a {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 0.62rem 0;
    border-bottom: 1px solid var(--line);
    font-family: "Ser Puente Display", sans-serif;
    font-size: clamp(1.55rem, 7vw, 2.25rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    text-transform: none;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a span {
    display: block;
    color: var(--olive);
    font-family: "Ser Puente Sans", sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .site-header__cta {
    display: none;
  }

  .site-header__brand {
    gap: 0.5rem;
    white-space: nowrap;
  }

  .site-header__mark {
    width: 2.35rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 4.5rem;
  }

  .hero__lead {
    max-width: 18ch;
  }

  .hero__gallery {
    min-height: min(125vw, 40rem);
  }

  .hero__image {
    width: 59%;
    height: 79%;
    border-width: 0.35rem;
  }

  .hero__image--two {
    width: 56%;
    height: 72%;
  }

  .scroll-cue {
    display: none;
  }

  .story {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .story__image-wrap {
    position: relative;
    top: auto;
    width: min(88%, 28rem);
    margin-right: auto;
    margin-left: auto;
  }

  .story__copy {
    width: min(100%, 42rem);
    margin-right: auto;
    margin-left: auto;
  }

  .story__text {
    columns: 1;
    hyphens: none;
    line-height: 1.62;
    text-align: left;
  }

  .manifesto {
    min-height: auto;
  }

  .manifesto > .manifesto__mark--closing {
    display: none;
  }

  .manifesto__mark--mobile {
    position: static;
    display: block;
    margin: 0.25rem 0 1.25rem;
    color: var(--olive);
    font-size: clamp(8rem, 32vw, 11rem);
    line-height: 0.5;
    text-align: right;
  }

  .manifesto__mark {
    font-size: clamp(8rem, 32vw, 11rem);
  }

  .manifesto__mark {
    top: 1rem;
    left: -0.25rem;
  }

  .manifesto__mark--closing {
    top: auto;
    right: -0.25rem;
    bottom: 1rem;
    left: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .schedule__filters {
    position: sticky;
    z-index: 10;
    top: 4.95rem;
    padding: 0.55rem 0;
    background: rgba(247, 243, 235, 0.94);
    backdrop-filter: blur(12px);
  }

  .day-row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .day-row > header {
    padding-bottom: 0;
  }

  .personal {
    min-height: auto;
    padding-top: 14rem;
  }

  .personal__image {
    inset: 0 0 auto;
    height: 19rem;
  }

  .personal__card {
    width: 100%;
  }

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

  .price-card {
    min-height: 24rem;
  }

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

  .contact__visual,
  .contact__visual .image-frame {
    min-height: 20rem;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer__top > p {
    max-width: 24rem;
  }
}

@media (max-width: 560px) {
  :root {
    --section-y: 3.5rem;
  }

  h1 {
    font-size: clamp(2.8rem, 12.5vw, 3.7rem);
  }

  h2 {
    font-size: clamp(2.4rem, 10.5vw, 3.3rem);
  }

  .section-pad {
    padding-right: max(1rem, env(safe-area-inset-right));
    padding-left: max(1rem, env(safe-area-inset-left));
  }

  .site-header {
    right: max(0.5rem, env(safe-area-inset-right));
    left: max(0.5rem, env(safe-area-inset-left));
    min-height: 3.75rem;
    padding-left: 0.7rem;
  }

  .site-header__brand {
    font-size: 0.76rem;
    letter-spacing: 0.045em;
  }

  .site-header__mark {
    width: 2.15rem;
  }

  .menu-toggle {
    min-width: 5.55rem;
    min-height: 2.8rem;
    gap: 0.55rem;
    padding-right: 0.65rem;
    padding-left: 0.65rem;
  }

  .site-nav {
    top: 4.55rem;
    right: max(0.5rem, env(safe-area-inset-right));
    left: max(0.5rem, env(safe-area-inset-left));
  }

  .hero {
    gap: 1.75rem;
    padding-top: 5.85rem;
    padding-bottom: 3rem;
  }

  .hero__lead {
    margin-bottom: 1.35rem;
    font-size: clamp(1.28rem, 6vw, 1.55rem);
  }

  .hero .button,
  .manifesto .button {
    width: 100%;
  }

  .hero__gallery {
    min-height: min(100vw, 28rem);
  }

  .hero__image {
    width: 63%;
    height: 84%;
  }

  .hero__image--two {
    width: 60%;
    height: 72%;
  }

  .story__image-wrap {
    width: 90%;
  }

  .side-note {
    right: -1.6rem;
  }

  .manifesto__copy {
    text-align: left;
  }

  .manifesto h2 {
    font-size: clamp(2.1rem, 9.7vw, 2.8rem);
    line-height: 1;
  }

  .manifesto__copy > p:not(.section-index) {
    font-size: 0.98rem;
  }

  .schedule {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .schedule .section-heading {
    gap: 0.65rem;
    margin-bottom: 1.15rem;
  }

  .schedule .section-heading > p {
    max-width: 30ch;
    margin-bottom: 0;
    font-size: 0.92rem;
  }

  .schedule__filters {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    top: 4.45rem;
    gap: 0.35rem;
    margin-right: 0;
    margin-bottom: 0.75rem;
    padding-right: 0;
    overflow: visible;
  }

  .filter-chip {
    width: 100%;
    min-width: 0;
    min-height: 2.75rem;
    justify-content: center;
    gap: 0.42rem;
    padding-right: 0.45rem;
    padding-left: 0.45rem;
    font-size: 0.68rem;
    letter-spacing: 0.035em;
  }

  .filter-chip span {
    width: 0.42rem;
  }

  .schedule__board {
    border-top-color: var(--ink);
  }

  .day-row {
    gap: 0.65rem;
    padding: 1.05rem 0 1.15rem;
  }

  .day-row > header {
    padding: 0 0.15rem;
  }

  .day-row h3 {
    font-size: clamp(1.4rem, 7vw, 1.75rem);
    line-height: 1;
  }

  .day-row__events {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    margin-right: 0;
    padding-right: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .event {
    display: grid;
    width: 100%;
    min-width: 0;
    min-height: 4.55rem;
    grid-template-columns: minmax(5.9rem, 0.42fr) minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem;
    padding: 0.72rem 0.85rem;
    border-left-width: 2px;
    scroll-snap-align: none;
  }

  .event::after {
    right: -2.75rem;
    bottom: -3.75rem;
    width: 7.5rem;
  }

  .event time {
    margin-bottom: 0;
    font-size: 0.67rem;
    letter-spacing: 0.045em;
    line-height: 1.25;
  }

  .event p {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    line-height: 1.1;
  }

  .event p span {
    margin-top: 0.22rem;
    font-size: 0.61rem;
    line-height: 1.2;
  }

  .day-row--empty .day-row__events {
    display: block;
  }

  .empty-mark {
    display: block;
    padding: 0.15rem;
    font-size: 1.5rem;
    line-height: 1;
  }

  .pricing__heading h2 {
    font-size: clamp(2.6rem, 11.5vw, 3.8rem);
  }

  .personal__card {
    padding: clamp(1.5rem, 6vw, 2rem);
    box-shadow: 0 1.5rem 4rem rgba(59, 58, 46, 0.12);
  }

  .personal__card h2 {
    font-size: clamp(1.9rem, 8.5vw, 2.35rem);
    line-height: 0.96;
  }

  .contact__heading h2 {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }

  .contact__grid {
    gap: 2.25rem;
  }

  .contact__visual .image-frame {
    aspect-ratio: 1.28;
  }

  .contact__intro {
    max-width: 28ch;
  }

  .contact-channel {
    min-height: 6.8rem;
    grid-template-columns: 2.8rem minmax(0, 1fr) auto;
    gap: 0.85rem;
  }

  .contact-channel__icon {
    width: 2.8rem;
  }

  .site-footer__brand {
    grid-template-columns: clamp(3rem, 13vw, 4rem) auto;
    column-gap: 0.7rem;
    font-size: clamp(2.9rem, 15vw, 4.2rem);
  }

  .site-footer__brand span:last-child {
    margin-left: 0.8rem;
  }

  .site-footer__back {
    min-height: 2.75rem;
  }

  .footer-line {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.6rem;
    text-align: center;
  }

  .footer-line > :first-child,
  .footer-line > :nth-child(2),
  .footer-line > :last-child {
    justify-self: center;
  }
}

@media (min-width: 901px) {
  .schedule__board {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    border-bottom: 1px solid var(--line);
  }

  .day-row {
    display: block;
    min-width: 0;
    padding: 0.65rem 0.55rem;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .day-row:last-child {
    border-right: 0;
  }

  .day-row > header {
    gap: 0.5rem;
    padding: 0.2rem 0 0.6rem;
  }

  .day-row h3 {
    font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  }

  .day-row__events {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .event {
    min-height: 3.85rem;
    padding: 0.55rem 0.6rem;
    border-left-width: 2px;
  }

  .event time {
    margin-bottom: 0.35rem;
    font-size: 0.6rem;
  }

  .event p {
    font-size: 0.88rem;
    line-height: 1.12;
  }

  .event p span {
    margin-top: 0.15rem;
    font-size: 0.56rem;
  }

  .empty-mark {
    padding: 0.4rem 0;
    font-size: 1.4rem;
  }
}

@media (hover: none) {
  .button--outline {
    background: transparent;
  }

  .event:hover,
  .price-card:hover {
    transform: none;
  }

  .image-frame:hover img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .scroll-reveal {
    opacity: 1;
    transform: none;
  }

  .image-frame--portrait img {
    transform: scale(1.08);
  }
}
