:root {
  --bg: #f7fbfb;
  --bg-strong: #eef8f8;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: rgba(255, 255, 255, 0.88);
  --surface-border: rgba(124, 186, 187, 0.22);
  --text: #16353f;
  --text-soft: #52747a;
  --accent: #87d7d2;
  --accent-strong: #54bdb7;
  --accent-deep: #2d7f85;
  --shadow: 0 24px 80px rgba(77, 132, 136, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(135, 215, 210, 0.24), transparent 26%),
    radial-gradient(circle at 85% 18%, rgba(183, 236, 233, 0.42), transparent 24%),
    linear-gradient(180deg, #fcffff 0%, #f7fbfb 42%, #f1f7f7 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.55), transparent 76%);
  opacity: 0.28;
}

.floating-bubbles {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.floating-bubbles-art {
  opacity: 1;
  z-index: 0;
}

.bubble {
  position: absolute;
  bottom: -140px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.72), rgba(122,224,214,0.52) 45%, rgba(79,184,176,0.28) 72%, transparent 100%);
  box-shadow: inset 0 0 18px rgba(255,255,255,0.28), 0 8px 28px rgba(84, 189, 183, 0.18);
  backdrop-filter: blur(4px);
  opacity: 0.75;
  animation: bubble-rise 20s linear infinite;
}

.bubble::after {
  content: "";
  position: absolute;
  inset: 18% 20% auto auto;
  width: 22%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
  filter: blur(2px);
}

.bubble-1 { left: 4%; width: 150px; height: 150px; animation-duration: 24s; animation-delay: -2s; }
.bubble-2 { left: 13%; width: 78px; height: 78px; animation-duration: 17s; animation-delay: -9s; }
.bubble-3 { left: 22%; width: 126px; height: 126px; animation-duration: 27s; animation-delay: -4s; }
.bubble-4 { left: 36%; width: 64px; height: 64px; animation-duration: 19s; animation-delay: -12s; }
.bubble-5 { left: 48%; width: 172px; height: 172px; animation-duration: 25s; animation-delay: -7s; }
.bubble-6 { left: 59%; width: 92px; height: 92px; animation-duration: 21s; animation-delay: -15s; }
.bubble-7 { left: 68%; width: 144px; height: 144px; animation-duration: 28s; animation-delay: -5s; }
.bubble-8 { left: 79%; width: 70px; height: 70px; animation-duration: 18s; animation-delay: -10s; }
.bubble-9 { left: 87%; width: 118px; height: 118px; animation-duration: 26s; animation-delay: -14s; }
.bubble-10 { left: 93%; width: 56px; height: 56px; animation-duration: 16s; animation-delay: -6s; }

.art-page {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 1760px);
}

@keyframes bubble-rise {
  0% {
    transform: translate3d(0, 0, 0) scale(0.92);
    opacity: 0;
  }
  10% {
    opacity: 0.42;
  }
  50% {
    transform: translate3d(22px, -52vh, 0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translate3d(-18px, -118vh, 0) scale(1.08);
    opacity: 0;
  }
}

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

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 24px 0 64px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(79, 122, 125, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 0 0 8px rgba(135, 215, 210, 0.16);
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 600;
}

.brand-copy small {
  color: var(--text-soft);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.static-nav {
  gap: 16px;
}

.shared-header {
  gap: 20px;
}

.site-nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-label-break {
  display: inline;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-pill {
  color: #093238;
}

.nav-pill:hover,
.nav-pill.active {
  color: #093238;
}

.nav-tone-entrada {
  background: #f8fefe;
  box-shadow: 0 14px 34px rgba(93, 183, 176, 0.1);
}

.nav-tone-universo {
  background: #dff5f1;
  box-shadow: 0 14px 34px rgba(93, 183, 176, 0.14);
}

.nav-tone-nota {
  background: #b9e6de;
  box-shadow: 0 14px 34px rgba(93, 183, 176, 0.18);
}

.nav-tone-art {
  background: #dff5f1;
  box-shadow: 0 14px 34px rgba(93, 183, 176, 0.14);
}

.nav-tone-ritual {
  background: #b9e6de;
  box-shadow: 0 14px 34px rgba(93, 183, 176, 0.18);
}

.site-nav > .nav-cta:last-of-type {
  background: #7bd2cc;
  box-shadow: 0 14px 34px rgba(93, 183, 176, 0.24);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.nav-cta,
.button-primary {
  color: #093238;
  background: linear-gradient(135deg, #c7f3ef 0%, #9fe1dc 50%, #7bd2cc 100%);
  box-shadow: 0 14px 40px rgba(93, 183, 176, 0.2);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(118, 183, 184, 0.22);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

.hero,
.split-section,
.contact-section,
.timeline-section,
.gallery-section,
.ritual-layout,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.video-entry {
  position: relative;
  min-height: calc(100vh - 170px);
  overflow: hidden;
  border-radius: 40px;
  align-items: stretch;
}

.integrated-hero {
  display: block;
  min-height: calc(100vh - 140px);
  padding: 0;
}

.entry-split-shell {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 140px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.integrated-split-shell {
  width: 100%;
  min-height: calc(100vh - 140px);
  grid-template-columns: 1fr 1fr;
}

.entry-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.entry-video-overlay {
  display: none;
}

.integrated-half,
.integrated-center-mark {
  position: relative;
  z-index: 2;
}

.integrated-half {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: flex-end;
  padding: 44px;
  text-decoration: none;
  color: #111111;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.08));
  transition: background 220ms ease, filter 220ms ease, transform 220ms ease, color 220ms ease;
}

.integrated-half:hover,
.integrated-half:focus-visible {
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0,0,0,0.32), rgba(0,0,0,0.58));
  filter: saturate(0.92);
}

.integrated-half:hover .integrated-copy,
.integrated-half:focus-visible .integrated-copy {
  transform: translateY(-2px);
}

.integrated-art {
  border-top-left-radius: 34px;
  border-bottom-left-radius: 34px;
}

.integrated-ritual {
  border-top-right-radius: 34px;
  border-bottom-right-radius: 34px;
}

.integrated-copy {
  max-width: 420px;
  text-shadow: none;
  transition: transform 220ms ease, color 220ms ease;
}

.integrated-copy span {
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.integrated-half:hover .integrated-copy,
.integrated-half:hover .integrated-copy span,
.integrated-half:hover .integrated-copy h2,
.integrated-half:hover .integrated-copy p,
.integrated-half:hover .integrated-copy strong,
.integrated-half:focus-visible .integrated-copy,
.integrated-half:focus-visible .integrated-copy span,
.integrated-half:focus-visible .integrated-copy h2,
.integrated-half:focus-visible .integrated-copy p,
.integrated-half:focus-visible .integrated-copy strong {
  color: #ffffff;
}

.integrated-copy h2 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
}

.integrated-copy p {
  margin-bottom: 18px;
}

.integrated-center-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 16px 50px rgba(0,0,0,0.18);
}

.integrated-center-mark img {
  width: 74%;
  height: 74%;
  object-fit: cover;
  border-radius: 999px;
}

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

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

.real-art-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(118, 183, 184, 0.18);
  box-shadow: 0 18px 48px rgba(79, 122, 125, 0.12);
}

.real-art-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-copy {
  padding: 16px 18px 18px;
}

.gallery-copy span,
.category-intro-card span {
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--accent-deep);
}

.gallery-copy strong,
.category-intro-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}

.category-intro-card {
  margin-bottom: 20px;
}

.hero {
  align-items: center;
  min-height: calc(100vh - 170px);
  padding: 24px 0 36px;
}

.hero-copy h1,
.inner-hero h1,
.section-heading h1,
.section-heading h2,
.split-section h2,
.contact-section h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5.5vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.inner-hero h1,
.section-heading h1,
.section-heading h2,
.split-section h2,
.contact-section h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.eyebrow {
  margin: 0 0 16px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.73rem;
  color: var(--accent-deep);
}

.lead,
.section p,
.inner-hero p,
.gallery-card p,
.ritual-card p,
.timeline p,
.feature-card p,
.mini-panel p,
.contact-card p {
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 1rem;
}

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

.hero-visual {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.orb-a {
  width: 280px;
  height: 280px;
  top: 60px;
  right: 40px;
  background: radial-gradient(circle, rgba(135, 215, 210, 0.62) 0%, rgba(135, 215, 210, 0.12) 65%, transparent 100%);
}

.orb-b {
  width: 210px;
  height: 210px;
  bottom: 90px;
  left: 60px;
  background: radial-gradient(circle, rgba(216, 250, 246, 0.96) 0%, rgba(216, 250, 246, 0.18) 60%, transparent 100%);
}

.visual-frame,
.glass-card,
.feature-card,
.mini-panel,
.gallery-card,
.timeline article {
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.visual-frame {
  position: relative;
  width: min(100%, 560px);
  padding: 28px;
  border-radius: 36px;
  overflow: hidden;
}

.frame-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 26px;
  color: var(--text-soft);
  font-size: 0.85rem;
}

.frame-grid {
  display: grid;
  gap: 18px;
}

.frame-grid article {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(226, 250, 247, 0.6));
}

.frame-grid h2,
.feature-card h3,
.timeline h3,
.gallery-card strong,
.mini-panel strong,
.ritual-card strong,
.contact-card strong {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
}

.frame-grid p {
  margin: 0;
  color: var(--text-soft);
}

.floating-card {
  position: absolute;
  padding: 18px 20px;
  border-radius: 22px;
}

.floating-card span,
.feature-card span,
.gallery-card span,
.timeline span,
.ritual-card span,
.mini-panel span,
.contact-card p {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.card-story {
  top: 30px;
  left: 0;
  width: 210px;
}

.card-gallery {
  top: 260px;
  right: -10px;
  width: 220px;
}

.card-ritual {
  bottom: 56px;
  left: 10px;
  width: 200px;
}

.section {
  padding: 88px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.feature-grid,
.mini-panel-grid,
.timeline,
.gallery-grid,
.ritual-side-grid,
.booking-grid,
.select-grid,
.form-grid,
.calendar-grid {
  display: grid;
  gap: 20px;
}

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

.feature-card,
.mini-panel,
.timeline article,
.gallery-card,
.ritual-card,
.contact-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.feature-card span {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.split-section,
.contact-section {
  align-items: start;
}

.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

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

.mini-panel.wide,
.gallery-card.wide {
  grid-column: 1 / -1;
}

.accent {
  background: linear-gradient(135deg, rgba(225, 251, 248, 0.92), rgba(180, 239, 234, 0.74));
}

.accent-soft {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(235, 248, 249, 0.8));
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent-deep);
  text-decoration: none;
  font-weight: 600;
}

.timeline-section,
.booking-overview {
  grid-template-columns: 1fr;
}

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

.booking-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.booking-card h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
}

.booking-card p,
.booking-card li,
.form-actions p,
.select-card small,
.calendar-grid article span,
.calendar-grid article strong {
  color: var(--text-soft);
  line-height: 1.7;
}

.booking-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.contact-card {
  align-self: stretch;
}

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

.select-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(214, 246, 243, 0.62));
  box-shadow: var(--shadow);
  cursor: pointer;
}

.select-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.check-ui {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(82, 116, 122, 0.3);
  background: rgba(255, 255, 255, 0.7);
}

.select-card input:checked ~ .check-ui {
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(135, 215, 210, 0.18);
}

.select-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
}

.form-section {
  padding-bottom: 16px;
}

.arsrosa-form {
  position: relative;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

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

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-grid label.full {
  grid-column: 1 / -1;
}

.form-grid span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(122, 179, 181, 0.24);
  background: rgba(255, 255, 255, 0.86);
  font: inherit;
  color: var(--text);
}

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

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
}

.form-consent {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.55;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  accent-color: var(--accent-deep);
}

.form-consent a {
  color: var(--accent-deep);
}

.newsletter-consent {
  margin-top: 12px;
}

.newsletter-consent input {
  transition: transform 160ms ease;
}

.newsletter-consent input:checked {
  transform: scale(1.08);
}

.optional-note {
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 600;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-grid input[readonly] {
  color: var(--text-soft);
  background: rgba(239, 248, 248, 0.92);
}

.presential-details[hidden] {
  display: none;
}

.presential-details {
  grid-column: 1 / -1;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(192, 139, 50, 0.22);
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 237, 189, 0.4), transparent 30%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.96), rgba(239, 249, 248, 0.9));
  box-shadow: 0 20px 52px rgba(92, 107, 110, 0.1);
}

.presential-details-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.presential-details-heading .eyebrow {
  margin: 0 0 8px;
}

.presential-details-heading h3 {
  margin: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1;
}

.presential-details .presential-status {
  flex: 0 0 auto;
  padding: 7px 11px;
  border: 1px solid rgba(45, 127, 133, 0.16);
  border-radius: 999px;
  background: rgba(185, 230, 222, 0.56);
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 700;
}

.presential-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.presential-option-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.presential-details .presential-option-label {
  display: block;
  margin-bottom: 8px;
  color: #a57125;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.presential-option-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1rem;
}

.presential-option-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.presential-option-card .presential-place {
  margin: -2px 0 8px;
  color: var(--accent-deep);
  font-weight: 700;
}

@media (max-width: 760px) {
  .presential-details-heading {
    flex-direction: column;
    gap: 12px;
  }

  .presential-options {
    grid-template-columns: 1fr;
  }
}

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

.calendar-grid article {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.calendar-grid article span {
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--accent-deep);
}

.calendar-grid article strong {
  color: var(--text);
}

.inner-page .page-shell,
.inner-page {
  min-height: 100vh;
}

.inner-header {
  position: relative;
  top: auto;
  z-index: 100;
}

.inner-hero {
  max-width: 860px;
  padding: 60px 0 20px;
}

.gallery-section,
.ritual-layout {
  grid-template-columns: 1fr;
}

.contact-layout {
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 20px;
}

.about-contact-form {
  margin-top: clamp(30px, 4vw, 52px);
}

.info-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.left-align {
  margin-bottom: 20px;
}

.left-align h2,
.left-align p {
  text-align: left;
}

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

.gallery-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(214, 246, 243, 0.72));
}

.gallery-card.tall {
  grid-row: span 2;
  min-height: 540px;
}

.ritual-layout {
  grid-template-columns: 1.1fr 0.9fr;
}

.ritual-side-grid {
  grid-template-columns: 1fr;
}

.ritual-card.large {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

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

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

@media (max-width: 1024px) {
  .hero,
  .split-section,
  .contact-section,
  .contact-layout,
  .feature-grid,
  .timeline,
  .ritual-layout,
  .gallery-grid,
  .booking-grid,
  .select-grid,
  .calendar-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 560px;
  }

  .card-gallery {
    right: 10px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 22px), var(--container));
    padding-top: 18px;
  }

  .site-header {
    border-radius: 26px;
    padding: 16px;
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: var(--text);
    border-radius: 999px;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    width: auto;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 22px;
    background: #f8fdfd;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open,
  .static-nav {
    display: flex;
  }

  .site-nav .nav-tone-ritual {
    flex-direction: column;
    padding-inline: 12px;
    font-size: 14px;
    line-height: 1.18;
    text-align: center;
  }

  .site-nav .nav-tone-ritual .nav-label-break {
    display: block;
    margin-left: 0;
  }

  .site-nav > .nav-social-end.nav-cta:last-of-type {
    width: auto;
    min-width: 0;
    height: auto;
    margin: 2px auto 0;
    padding: 7px 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--accent-deep);
    font-size: 0.8rem;
  }

  .site-nav > .nav-social-end.nav-cta:last-of-type svg {
    display: none;
  }

  .static-nav {
    position: static;
    padding: 0;
    box-shadow: none;
    background: transparent;
    flex-direction: row;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .hero-copy h1,
  .inner-hero h1,
  .section-heading h1,
  .section-heading h2,
  .split-section h2,
  .contact-section h2 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .hero-visual {
    min-height: 480px;
  }

  .visual-frame {
    padding: 20px;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .hero-actions,
  .mini-panel-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .timeline,
  .gallery-grid,
  .ritual-side-grid,
  .booking-grid,
  .select-grid,
  .calendar-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 2000;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(247, 251, 251, 0.96), rgba(191, 237, 232, 0.72));
  opacity: 0;
  transform: scaleY(0.98);
  transform-origin: center;
  transition: opacity 260ms ease, transform 260ms ease;
}

.page-transition.is-active {
  opacity: 1;
  transform: scaleY(1);
}

/* Velo de acuarela compartido, con una paleta propia para cada sección. */
.page-transition.transition-watercolor-art,
.page-transition.transition-watercolor-ritual,
.page-transition.transition-watercolor-about {
  opacity: 0;
  transform: scale(1.08) rotate(-1deg);
  filter: saturate(1.08) blur(8px);
  transition: opacity 450ms ease, transform 450ms cubic-bezier(0.22, 1, 0.36, 1), filter 450ms ease;
}

.page-transition.transition-watercolor-art {
  background:
    radial-gradient(circle at 18% 72%, rgba(35, 197, 211, 0.97) 0, rgba(35, 197, 211, 0.58) 22%, transparent 49%),
    radial-gradient(circle at 65% 24%, rgba(232, 64, 78, 0.92) 0, rgba(232, 64, 78, 0.5) 25%, transparent 54%),
    radial-gradient(circle at 88% 76%, rgba(250, 202, 47, 0.96) 0, rgba(250, 202, 47, 0.54) 24%, transparent 50%),
    linear-gradient(135deg, #edffff 0%, #c9f3ef 43%, #ffe7cf 100%);
}

.page-transition.transition-watercolor-ritual {
  background:
    radial-gradient(circle at 18% 72%, rgba(36, 167, 186, 0.96) 0, rgba(36, 167, 186, 0.56) 22%, transparent 49%),
    radial-gradient(circle at 64% 23%, rgba(143, 73, 190, 0.92) 0, rgba(143, 73, 190, 0.5) 25%, transparent 54%),
    radial-gradient(circle at 88% 76%, rgba(244, 183, 45, 0.94) 0, rgba(244, 183, 45, 0.5) 24%, transparent 50%),
    linear-gradient(135deg, #efffff 0%, #d9e7f4 46%, #f4def0 100%);
}

.page-transition.transition-watercolor-about {
  background:
    radial-gradient(circle at 18% 72%, rgba(70, 202, 188, 0.95) 0, rgba(70, 202, 188, 0.54) 22%, transparent 49%),
    radial-gradient(circle at 65% 24%, rgba(235, 91, 78, 0.9) 0, rgba(235, 91, 78, 0.46) 25%, transparent 54%),
    radial-gradient(circle at 88% 76%, rgba(248, 207, 84, 0.94) 0, rgba(248, 207, 84, 0.5) 24%, transparent 50%),
    linear-gradient(135deg, #f2ffff 0%, #d9f3eb 45%, #ffeadb 100%);
}

.page-transition.transition-watercolor-art::before,
.page-transition.transition-watercolor-art::after,
.page-transition.transition-watercolor-ritual::before,
.page-transition.transition-watercolor-ritual::after,
.page-transition.transition-watercolor-about::before,
.page-transition.transition-watercolor-about::after {
  content: "";
  position: absolute;
  width: 52vmax;
  height: 52vmax;
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  mix-blend-mode: multiply;
  opacity: 0.42;
  filter: blur(26px);
}

.page-transition.transition-watercolor-art::before,
.page-transition.transition-watercolor-ritual::before,
.page-transition.transition-watercolor-about::before {
  left: -12vmax;
  top: -18vmax;
  transform: translate(-14%, -8%) rotate(18deg);
}

.page-transition.transition-watercolor-art::after,
.page-transition.transition-watercolor-ritual::after,
.page-transition.transition-watercolor-about::after {
  right: -12vmax;
  bottom: -20vmax;
  transform: translate(14%, 10%) rotate(-24deg);
}

.page-transition.transition-watercolor-art::before { background: rgba(18, 181, 201, 0.82); }
.page-transition.transition-watercolor-art::after { background: rgba(232, 53, 67, 0.75); }
.page-transition.transition-watercolor-ritual::before { background: rgba(26, 148, 173, 0.8); }
.page-transition.transition-watercolor-ritual::after { background: rgba(126, 54, 180, 0.72); }
.page-transition.transition-watercolor-about::before { background: rgba(48, 188, 174, 0.78); }
.page-transition.transition-watercolor-about::after { background: rgba(231, 74, 62, 0.7); }

.page-transition.transition-watercolor-art.is-active,
.page-transition.transition-watercolor-ritual.is-active,
.page-transition.transition-watercolor-about.is-active {
  opacity: 1;
  transform: scale(1) rotate(0);
  filter: saturate(1.16) blur(0);
}

.page-transition.transition-watercolor-art.is-active::before,
.page-transition.transition-watercolor-art.is-active::after,
.page-transition.transition-watercolor-ritual.is-active::before,
.page-transition.transition-watercolor-ritual.is-active::after,
.page-transition.transition-watercolor-about.is-active::before,
.page-transition.transition-watercolor-about.is-active::after {
  transform: translate(0, 0) rotate(0);
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-shell {
  width: min(calc(100% - 32px), 1320px);
}

.full-landing {
  width: calc(100% - 32px);
  max-width: none;
}

.landing-header {
  margin-bottom: 10px;
}

.entry-hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 150px);
  padding: 26px 0 32px;
}

.entry-note {
  margin-top: 28px;
  padding: 22px;
  border-radius: 24px;
}

.entry-stage {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.entry-glow {
  position: absolute;
  inset: auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: blur(18px);
}

.entry-glow-left {
  top: 80px;
  left: 30px;
  background: radial-gradient(circle, rgba(156, 213, 219, 0.46) 0%, rgba(156, 213, 219, 0.06) 68%, transparent 100%);
}

.entry-glow-right {
  right: 20px;
  bottom: 120px;
  background: radial-gradient(circle, rgba(222, 248, 245, 0.84) 0%, rgba(222, 248, 245, 0.08) 65%, transparent 100%);
}

.path-card {
  position: relative;
  z-index: 2;
  min-height: 540px;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.horizontal-path {
  min-height: calc(100vh - 140px);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.36));
}

.rectangular-path {
  min-height: calc(100vh - 130px);
  justify-content: flex-end;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.22));
  backdrop-filter: blur(8px);
}

.rectangular-path.path-art {
  border-top-left-radius: 34px;
  border-bottom-left-radius: 34px;
  border-right: 1px solid rgba(255,255,255,0.45);
}

.rectangular-path.path-ritual {
  border-top-right-radius: 34px;
  border-bottom-right-radius: 34px;
}

.path-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 90px rgba(77, 132, 136, 0.18);
}

.path-art {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.8), rgba(212, 241, 244, 0.56));
}

.path-ritual {
  background: linear-gradient(160deg, rgba(250, 255, 255, 0.78), rgba(205, 232, 232, 0.58));
}

.path-card h2 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 600;
}

.path-card p {
  margin-bottom: 24px;
}

.path-card strong {
  font-size: 1rem;
}

.entry-center-mark {
  display: none;
}

.categories-section {
  padding-top: 12px;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.category-tab,
.mini-action,
.remove-item {
  font: inherit;
  cursor: pointer;
}

.category-tab {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(122, 179, 181, 0.24);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-soft);
}

.category-tab.active {
  color: #093238;
  background: linear-gradient(135deg, #c7f3ef 0%, #9fe1dc 50%, #7bd2cc 100%);
}

.category-panel {
  display: none;
}

.category-panel.active {
  display: block;
}

.category-panel[hidden] {
  display: none;
}

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

.shop-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(214, 246, 243, 0.66));
  box-shadow: var(--shadow);
}

.shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.mini-action {
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #093238;
  font-weight: 600;
}

.mini-action.ghost {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(122, 179, 181, 0.24);
  color: var(--text);
}

.cart-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.shop-grid-real {
  margin-bottom: 18px;
}

.shop-card-real {
  padding-bottom: 18px;
}

.art-image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.art-image-button img,
#lightbox-image {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}

.request-cta-shell {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.request-custom-btn {
  min-width: min(100%, 420px);
  min-height: 58px;
  padding: 16px 30px;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 40px rgba(93, 183, 176, 0.24);
}

.request-custom-btn::after {
  content: '→';
  margin-left: 10px;
  font-size: 1.05em;
}

.request-custom-btn:hover,
.request-custom-btn:focus-visible {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 22px 48px rgba(93, 183, 176, 0.3);
}

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

.cart-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.cart-list small,
.cart-empty,
.calendar-help {
  color: var(--text-soft);
  line-height: 1.7;
}

.remove-item {
  align-self: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(122, 179, 181, 0.24);
  background: rgba(255, 255, 255, 0.82);
}

.cart-summary {
  padding: 24px;
  border-radius: 26px;
}

.calendar-help {
  margin: 0 0 18px;
}

@media (max-width: 1024px) {
  .entry-hero,
  .cart-shell,
  .shop-grid,
  .about-contact-section {
    grid-template-columns: 1fr;
  }

  .entry-stage,
  .entry-split-shell,
  .integrated-split-shell {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .path-card,
  .integrated-half {
    min-height: 340px;
  }

  .integrated-center-mark {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 760px) {
  .entry-hero,
  .cart-shell,
  .shop-grid,
  .entry-split-shell,
  .about-contact-section {
    grid-template-columns: 1fr;
  }

  .integrated-half {
    padding: 28px;
  }

  .integrated-copy h2 {
    font-size: 2.4rem;
  }
}

.full-landing .entry-hero {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  min-height: calc(100vh - 150px);
}

.twin-entry {
  position: relative;
}

.wide-path {
  min-height: 78vh;
}

.large-center-mark {
  width: 170px;
  height: 170px;
}

.center-heading {
  text-align: center;
  margin-inline: auto;
}

.compact-intro {
  padding-top: 36px;
}

.enhanced-grid .feature-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.88), rgba(194,236,233,0.65));
}

.color-boost.soft-mystic {
  background: linear-gradient(160deg, rgba(255,255,255,0.9), rgba(221,234,246,0.64));
}

.color-boost.deep-water {
  background: linear-gradient(160deg, rgba(255,255,255,0.9), rgba(176,221,225,0.72));
}

.sticky-intro-shell {
  padding-bottom: 10px;
}

.sticky-intro {
  position: sticky;
  top: 110px;
  z-index: 8;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.84);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, opacity 220ms ease;
}

.compact-art-intro-shell {
  padding-bottom: 0;
}

.compact-art-intro {
  padding: 20px 24px;
}

.compact-art-intro .eyebrow {
  margin-bottom: 8px;
}

.compact-art-intro h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.plain-art-intro-section {
  padding-top: 28px;
  padding-bottom: 8px;
}

.plain-art-intro {
  max-width: 820px;
}

.plain-art-intro .eyebrow {
  margin-bottom: 8px;
}

.plain-art-intro h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.sticky-intro.is-collapsed p,
.sticky-intro.is-collapsed h1 {
  display: none;
}

.sticky-intro.is-collapsed {
  padding: 14px 18px;
}

.intro-toggle {
  margin-top: 12px;
}

.enhanced-shop-grid .shop-card {
  overflow: hidden;
}

.with-image .art-thumb {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 22px;
  margin-bottom: 18px;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
}

.aurora-thumb { background: linear-gradient(135deg, #edf9f8 0%, #9bd8d4 45%, #4c8c96 100%); }
.marea-thumb { background: linear-gradient(135deg, #ffffff 0%, #d8efef 35%, #88c9d3 100%); }
.retrato-thumb { background: linear-gradient(135deg, #d7eaf3 0%, #8fb7d6 45%, #2e5970 100%); }
.coral-thumb { background: linear-gradient(135deg, #fde9e4 0%, #f0b0a9 45%, #ba6d6e 100%); }
.caricatura-thumb { background: linear-gradient(135deg, #fff7cc 0%, #f3bb73 45%, #d26f43 100%); }
.doble-thumb { background: linear-gradient(135deg, #f8f5ff 0%, #c9b5eb 45%, #7264b5 100%); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  background: rgba(14, 27, 31, 0.72);
  backdrop-filter: blur(8px);
}

.lightbox.is-open {
  display: grid;
}

body.lightbox-open {
  overflow: hidden;
}

body.legal-modal-open {
  overflow: hidden;
}

.lightbox-card {
  width: min(86vw, 980px);
  max-height: 86vh;
  padding: 18px;
  border-radius: 32px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.32);
  background: rgba(255,255,255,0.96);
}

#lightbox-image {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 20px;
}

.lightbox-caption {
  padding-top: 10px;
  text-align: center;
  color: var(--text-soft);
}

.lightbox-nav {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.92);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-prev { left: 28px; }
.lightbox-next { right: 28px; }

.lightbox-close {
  position: absolute;
  z-index: 5;
  top: 26px;
  right: 26px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.9);
  cursor: pointer;
}

.calendar-app {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.94);
  box-shadow: var(--shadow);
}

.calendar-month-header,
.time-slots-shell {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.calendar-month-header {
  align-items: center;
  margin-bottom: 20px;
}

.calendar-weekdays,
.calendar-real-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.calendar-weekdays {
  margin-bottom: 12px;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.calendar-day,
.slot-button,
.slot-empty {
  font: inherit;
  border-radius: 18px;
}

.calendar-day {
  min-height: 88px;
  border: 1px solid rgba(122,179,181,0.18);
  background: rgba(255,255,255,0.82);
  color: var(--text);
  cursor: pointer;
}

.calendar-day.is-muted {
  opacity: 0.34;
  pointer-events: none;
}

.calendar-day.is-placeholder {
  border-color: transparent;
  background: transparent;
  pointer-events: none;
}

.calendar-day.is-selected {
  background: linear-gradient(135deg, #c7f3ef 0%, #9fe1dc 50%, #7bd2cc 100%);
}

.time-slots-shell {
  margin-top: 24px;
}

.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.slot-button,
.slot-empty {
  padding: 12px 16px;
  border: 1px solid rgba(122,179,181,0.2);
  background: rgba(255,255,255,0.86);
}

.slot-button {
  cursor: pointer;
}

.slot-empty {
  margin: 0;
}

.slot-button.is-selected {
  background: linear-gradient(135deg, #c7f3ef 0%, #9fe1dc 50%, #7bd2cc 100%);
}

.calendar-summary {
  min-width: 300px;
  padding: 24px;
  border-radius: 24px;
}

@media (max-width: 1024px) {
  .full-landing .entry-hero,
  .time-slots-shell {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .wide-path {
    min-height: 360px;
  }

  .large-center-mark {
    position: static;
    transform: none;
    margin: 0 auto;
  }
}

.social-link {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(122, 179, 181, 0.24);
  background: rgba(255,255,255,0.75);
  gap: 8px;
}

.site-footer {
  margin-top: 42px;
  padding: 24px 0 8px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.cookie-settings-button {
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  font: inherit;
  font-size: 0.82rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.96);
  box-shadow: 0 26px 80px rgba(40, 73, 78, 0.18);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 6px 0 0;
  color: var(--text-soft);
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.legal-anchor-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.bottom-legal-links {
  margin-top: 8px;
}

.legal-anchor-links a {
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(122,179,181,0.2);
}

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

.legal-card,
.seo-card {
  padding: 24px;
  border-radius: 24px;
}

.legal-card a,
.legal-modal a {
  color: #2b7278;
  text-underline-offset: 3px;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: none;
  place-items: center;
  padding: 24px;
}

.legal-modal.is-open {
  display: grid;
}

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 31, 35, 0.7);
  backdrop-filter: blur(9px);
}

.legal-modal-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(82vh, 760px);
  overflow-y: auto;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 30px;
  background: rgba(250, 253, 253, 0.98);
  box-shadow: 0 30px 90px rgba(9, 35, 40, 0.34);
}

.legal-modal-dialog:focus {
  outline: 3px solid rgba(92, 175, 178, 0.55);
  outline-offset: 4px;
}

.legal-modal-dialog h2 {
  max-width: 620px;
  margin: 6px 0 24px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}

.legal-modal-content {
  display: grid;
  gap: 14px;
}

.legal-modal-content p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.legal-modal-close {
  position: sticky;
  top: 0;
  z-index: 2;
  display: block;
  margin: -12px -12px 8px auto;
  padding: 10px 16px;
  border: 1px solid rgba(53, 104, 109, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

.calendar-day small {
  display: none !important;
}

.seo-card ul {
  margin: 0;
  padding-left: 18px;
}

.seo-card li,
.legal-card p {
  color: var(--text-soft);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .real-gallery-grid,
  .expanded-gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .calendar-app {
    padding: 14px;
  }

  .calendar-month-header {
    gap: 8px;
  }

  .calendar-month-header .mini-action {
    padding: 9px 10px;
    font-size: 0.78rem;
  }

  .calendar-weekdays,
  .calendar-real-grid {
    gap: 4px;
  }

  .calendar-day {
    min-height: 58px;
    padding: 4px 2px;
    border-radius: 12px;
  }

  .calendar-day small {
    display: none;
  }

  .legal-modal {
    padding: 12px;
  }

  .legal-modal-dialog {
    max-height: 92vh;
    padding: 22px;
    border-radius: 22px;
  }
}

.cookie-preferences {
  display: none;
  width: 100%;
  padding-top: 10px;
  color: var(--text-soft);
}

.cookie-preferences.is-open {
  display: grid;
  gap: 10px;
}

.cookie-preferences label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link[aria-label="Instagram"] {
  width: auto;
  height: 46px;
  min-width: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: #093238;
}

.nav-social-end {
  margin-left: auto;
}

.social-link[aria-label="Instagram"] svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.social-link[aria-label="Instagram"] span {
  line-height: 1;
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--accent-deep);
  outline-offset: 3px;
}

button:disabled {
  cursor: not-allowed;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

/* ================================================================
   ENTRADA · VARIANTE "PORTALES FLOTANTES"
   Se activa únicamente con la clase .entry-layout-portals en index.html.
   Al quitar esa clase vuelve automáticamente el diseño dividido anterior.
   ================================================================ */

.entry-hero.entry-layout-portals {
  display: block;
}

.entry-layout-portals .entry-split-shell {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 140px);
  padding: clamp(72px, 12vh, 132px) clamp(28px, 8vw, 120px);
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 370px));
  place-content: center;
  align-items: center;
  gap: clamp(52px, 7vw, 96px);
}

.entry-layout-portals .entry-split-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(8, 31, 35, 0.12), transparent 58%);
  pointer-events: none;
}

.entry-layout-portals .integrated-half {
  width: 100%;
  height: 300px;
  min-height: 300px;
  padding: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 32px;
  color: #12383e;
  text-align: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(218, 242, 240, 0.66));
  backdrop-filter: blur(18px) saturate(1.12);
  box-shadow: 0 28px 72px rgba(8, 36, 40, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: transform 260ms ease, background 260ms ease, box-shadow 260ms ease, color 260ms ease;
}

.entry-layout-portals .integrated-art {
  transform: translateY(-18px);
}

.entry-layout-portals .integrated-ritual {
  transform: translateY(18px);
  background: linear-gradient(145deg, rgba(247, 251, 255, 0.84), rgba(211, 229, 237, 0.68));
}

.entry-layout-portals .integrated-art:hover,
.entry-layout-portals .integrated-art:focus-visible {
  transform: translateY(-26px) scale(1.025);
}

.entry-layout-portals .integrated-ritual:hover,
.entry-layout-portals .integrated-ritual:focus-visible {
  transform: translateY(10px) scale(1.025);
}

.entry-layout-portals .integrated-half:hover,
.entry-layout-portals .integrated-half:focus-visible {
  color: #ffffff;
  background: linear-gradient(145deg, rgba(17, 63, 69, 0.86), rgba(35, 96, 101, 0.74));
  box-shadow: 0 34px 88px rgba(5, 29, 33, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.entry-layout-portals .integrated-copy {
  max-width: 300px;
}

.entry-layout-portals .integrated-copy h2 {
  font-size: clamp(2.15rem, 3.2vw, 3.35rem);
  line-height: 0.98;
}

.entry-layout-portals .integrated-copy p {
  margin: 0 auto 20px;
  line-height: 1.55;
}

.entry-layout-portals .integrated-copy strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
}

.entry-layout-portals .integrated-half:hover .integrated-copy strong,
.entry-layout-portals .integrated-half:focus-visible .integrated-copy strong {
  background: rgba(255, 255, 255, 0.16);
}

.entry-layout-portals .integrated-center-mark {
  display: grid;
  z-index: 4;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 54px rgba(8, 36, 40, 0.24);
}

@media (max-width: 900px) {
  .entry-layout-portals .entry-split-shell {
    min-height: 680px;
    padding: 52px 20px;
    grid-template-columns: minmax(0, 440px);
    gap: 34px;
  }

  .entry-layout-portals .integrated-half {
    height: auto;
    min-height: 220px;
    padding: 28px;
  }

  .entry-layout-portals .integrated-art {
    transform: translateY(-14px);
  }

  .entry-layout-portals .integrated-ritual {
    transform: translateY(14px);
  }

  .entry-layout-portals .integrated-art:hover,
  .entry-layout-portals .integrated-art:focus-visible {
    transform: translateY(-18px) scale(1.015);
  }

  .entry-layout-portals .integrated-ritual:hover,
  .entry-layout-portals .integrated-ritual:focus-visible {
    transform: translateY(10px) scale(1.015);
  }

  .entry-layout-portals .integrated-center-mark {
    width: 76px;
    height: 76px;
  }
}

@media (max-width: 520px) {
  .entry-layout-portals .entry-split-shell {
    min-height: 640px;
    padding: 38px 14px;
    gap: 28px;
  }

  .entry-layout-portals .integrated-half {
    min-height: 210px;
    padding: 24px 22px;
    border-radius: 26px;
  }

  .entry-layout-portals .integrated-copy h2 {
    font-size: 2.25rem;
  }

  .entry-layout-portals .integrated-copy p {
    font-size: 0.92rem;
  }
}

/* ================================================================
   ENTRADA · VARIANTE "SEMICÍRCULOS INFERIORES"
   Variante activa en index.html. El bloque "PORTALES FLOTANTES"
   anterior permanece arriba para poder recuperarlo cambiando una clase.
   ================================================================ */

.entry-hero.entry-layout-video-only {
  display: block;
  min-height: calc(100vh - 140px);
}

.entry-hero.entry-layout-semicircles {
  display: block;
}

.entry-layout-semicircles .entry-split-shell {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 140px);
  padding: 80px clamp(34px, 6vw, 86px) 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 520px));
  align-items: end;
  justify-content: center;
  gap: clamp(100px, 10vw, 150px);
}

.entry-layout-semicircles .entry-split-shell::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(180deg, transparent, rgba(5, 25, 29, 0.18));
  pointer-events: none;
}

.entry-layout-semicircles .integrated-half {
  width: 100%;
  height: clamp(250px, 23vw, 290px);
  min-height: 0;
  padding: 72px 48px 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-bottom: 0;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  color: #12383e;
  text-align: center;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.86), rgba(201, 237, 234, 0.72));
  backdrop-filter: blur(18px) saturate(1.12);
  box-shadow: 0 -18px 58px rgba(8, 36, 40, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: none;
  transition: transform 260ms ease, background 260ms ease, box-shadow 260ms ease, color 260ms ease;
}

.entry-layout-semicircles .integrated-ritual {
  background: linear-gradient(150deg, rgba(248, 252, 255, 0.88), rgba(205, 224, 236, 0.74));
}

.entry-layout-semicircles .integrated-half:hover,
.entry-layout-semicircles .integrated-half:focus-visible {
  color: #ffffff;
  background: linear-gradient(150deg, rgba(18, 66, 72, 0.9), rgba(42, 102, 108, 0.78));
  box-shadow: 0 -24px 72px rgba(4, 27, 31, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: translateY(-9px);
}

.entry-layout-semicircles .integrated-copy {
  max-width: 350px;
}

.entry-layout-semicircles .integrated-copy h2 {
  margin-bottom: 8px;
  font-size: clamp(2.15rem, 3vw, 3.2rem);
  line-height: 0.98;
}

.entry-layout-semicircles .integrated-copy p {
  margin: 0 auto 15px;
  font-size: 0.94rem;
  line-height: 1.45;
}

.entry-layout-semicircles .integrated-copy strong {
  display: inline-flex;
  min-height: 40px;
  padding: 9px 16px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
}

.entry-layout-semicircles .integrated-half:hover .integrated-copy strong,
.entry-layout-semicircles .integrated-half:focus-visible .integrated-copy strong {
  background: rgba(255, 255, 255, 0.16);
}

.entry-layout-semicircles .integrated-center-mark {
  top: auto;
  bottom: 18px;
  z-index: 5;
  display: grid;
  width: 112px;
  height: 112px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 58px rgba(5, 29, 33, 0.3);
}

@media (max-width: 900px) {
  .entry-layout-semicircles .entry-split-shell {
    min-height: 700px;
    padding: 58px 18px 96px;
    grid-template-columns: minmax(0, 460px);
    align-content: end;
    gap: 22px;
  }

  .entry-layout-semicircles .integrated-half {
    height: 220px;
    padding: 58px 28px 24px;
  }

  .entry-layout-semicircles .integrated-center-mark {
    bottom: 18px;
    width: 88px;
    height: 88px;
  }
}

@media (max-width: 520px) {
  .entry-layout-semicircles .entry-split-shell {
    min-height: 680px;
    padding-inline: 13px;
  }

  .entry-layout-semicircles .integrated-half {
    height: 210px;
    padding: 54px 22px 22px;
  }

  .entry-layout-semicircles .integrated-copy h2 {
    font-size: 2.15rem;
  }

  .entry-layout-semicircles .integrated-copy p {
    font-size: 0.88rem;
  }
}

/* ================================================================
   OBRA · MOSAICO CONTINUO + FICHA AMPLIADA
   ================================================================ */

.page-shell.art-page {
  width: min(calc(100% - 32px), 1760px);
}

.nav-submenu-divider {
  flex: 0 0 1px;
  width: 1px;
  height: 34px;
  margin: 0 5px;
  background: rgba(45, 127, 133, 0.28);
}

.art-header-submenu {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.15vw, 22px);
  white-space: nowrap;
}

.art-header-submenu .category-tab {
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  color: var(--accent-deep);
  background: transparent;
  box-shadow: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 180ms ease, opacity 180ms ease;
}

.art-header-submenu .category-tab:hover,
.art-header-submenu .category-tab:focus-visible,
.art-header-submenu .category-tab.active {
  color: #174f57;
  background: transparent;
}

.art-header-submenu .category-tab.active {
  font-weight: 700;
}

.mobile-art-category-nav {
  display: none;
}

.categories-section .real-gallery-grid,
.categories-section .expanded-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.5);
}

.categories-section .real-art-card,
.categories-section .shop-card-real {
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.categories-section .gallery-copy,
.categories-section .shop-actions {
  display: none;
}

.categories-section .shop-grid-real {
  margin-bottom: 0;
}

.categories-section .art-image-button {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.categories-section .art-image-button::after {
  content: "+";
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  color: #12383e;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 36px rgba(9, 42, 47, 0.22);
  opacity: 0;
  transform: translate(-50%, -42%) scale(0.84);
  transition: opacity 200ms ease, transform 200ms ease;
  font-size: 1.6rem;
  line-height: 1;
}

.categories-section .real-art-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.categories-section .art-image-button:hover img,
.categories-section .art-image-button:focus-visible img {
  filter: brightness(0.78);
  transform: scale(1.035);
}

.categories-section .art-image-button:hover::after,
.categories-section .art-image-button:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.artwork-detail-card {
  width: min(92vw, 1180px);
  height: min(84vh, 760px);
  max-height: none;
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.65fr);
  border-radius: 32px;
}

.lightbox-media {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #edf5f5, #dce9e9);
}

.artwork-detail-card #lightbox-image {
  position: absolute;
  inset: 22px;
  width: calc(100% - 44px);
  height: calc(100% - 44px);
  max-width: none;
  max-height: none;
  border-radius: 18px;
  object-fit: contain;
}

.lightbox-details {
  min-width: 0;
  padding: 48px 38px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.98);
}

.lightbox-details .eyebrow {
  margin-bottom: 12px;
}

.artwork-detail-card .lightbox-caption {
  margin: 0 0 18px;
  padding: 0;
  text-align: left;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
}

.lightbox-description {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.lightbox-format-options {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lightbox-options-label {
  grid-column: 1 / -1;
  margin: 0 0 2px;
  color: var(--text);
  font-weight: 700;
}

.lightbox-format-options .button {
  width: 100%;
  min-height: 50px;
}

.lightbox-format-options .lightbox-request-button {
  grid-column: 1 / -1;
}

.lightbox-print-selector {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(77, 139, 143, 0.2);
}

.lightbox-print-selector[hidden] {
  display: none;
}

.print-selector-heading {
  display: grid;
  gap: 4px;
}

.print-selector-heading small,
.print-shipping-note {
  color: var(--text-soft);
  font-size: 0.78rem;
  line-height: 1.45;
}

.print-size-list {
  display: grid;
  gap: 7px;
}

.print-size-option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(76, 143, 146, 0.22);
  border-radius: 14px;
  color: var(--text);
  background: rgba(245, 251, 251, 0.88);
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.print-size-option:hover,
.print-size-option:focus-visible,
.print-size-option.is-selected {
  border-color: rgba(45, 138, 140, 0.66);
  background: rgba(205, 240, 236, 0.72);
  transform: translateY(-1px);
}

.print-size-option > span {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.print-size-option small {
  color: var(--text-soft);
}

.print-size-price {
  color: #b43845;
  white-space: nowrap;
}

.print-size-option.is-custom {
  align-items: flex-start;
}

.print-size-price.is-custom {
  max-width: 130px;
  white-space: normal;
  text-align: right;
  font-size: 0.76rem;
  line-height: 1.35;
}

.custom-print-size-field {
  display: grid;
  gap: 7px;
  padding: 13px;
  border-radius: 14px;
  background: rgba(239, 249, 248, 0.88);
}

.custom-print-size-field[hidden] {
  display: none;
}

.custom-print-size-field span {
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
}

.custom-print-size-field input {
  width: 100%;
  min-height: 43px;
  padding: 9px 12px;
  border: 1px solid rgba(76, 143, 146, 0.3);
  border-radius: 12px;
  color: var(--text);
  background: #fff;
  font: inherit;
}

.custom-print-size-field input:focus {
  outline: 2px solid rgba(45, 138, 140, 0.24);
  border-color: rgba(45, 138, 140, 0.72);
}

.custom-print-size-field small {
  color: var(--text-soft);
  font-size: 0.76rem;
  line-height: 1.4;
}

.print-shipping-note {
  margin: 0;
}

.lightbox-format-options .print-confirm-button {
  width: 100%;
}

.lightbox-format-options .print-confirm-button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
}

.lightbox-format-options [data-show-print-sizes].is-selected {
  border-color: rgba(45, 138, 140, 0.58);
  background: rgba(220, 244, 241, 0.9);
}

.order-process-section {
  padding-top: 54px;
}

.order-process-heading > p:last-child {
  max-width: 850px;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

.order-process-steps {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.order-process-steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.order-process-steps li > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #174f57;
  background: rgba(174, 229, 224, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
}

.order-process-steps strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.02rem;
}

.order-process-steps p,
.order-format-card p,
.order-process-help {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.order-format-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.order-format-card {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.digital-format-card {
  background: linear-gradient(145deg, rgba(220, 246, 244, 0.9), rgba(255, 255, 255, 0.8));
}

.physical-format-card {
  background: linear-gradient(145deg, rgba(255, 245, 227, 0.9), rgba(255, 255, 255, 0.82));
}

.order-format-card h3 {
  margin: 8px 0 18px;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.order-format-card p + p {
  margin-top: 14px;
}

.order-inline-link {
  color: var(--accent-deep);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.order-process-help {
  margin-top: 22px;
  padding: 18px 22px;
  border-left: 3px solid rgba(45, 138, 140, 0.54);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 255, 255, 0.58);
}

@media (max-width: 900px) {
  .order-process-steps,
  .order-format-grid {
    grid-template-columns: 1fr;
  }

  .order-process-steps {
    gap: 12px;
  }
}

@media (max-width: 1180px) {
  .categories-section .real-gallery-grid,
  .categories-section .expanded-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1181px) {
  #category-panel-ilustracion .real-gallery-grid > .real-art-card:nth-child(5),
  #category-panel-caricaturas .real-gallery-grid > .real-art-card:nth-child(5) {
    grid-column: 2;
  }

  #category-panel-ilustracion .real-gallery-grid > .real-art-card:nth-child(6),
  #category-panel-caricaturas .real-gallery-grid > .real-art-card:nth-child(6) {
    grid-column: 3;
  }
}

@media (max-width: 900px) {
  .categories-section .real-gallery-grid,
  .categories-section .expanded-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .artwork-detail-card {
    width: min(90vw, 760px);
    height: min(92vh, 860px);
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 58%) minmax(0, 42%);
  }

  .lightbox-details {
    padding: 24px 28px;
    justify-content: flex-start;
  }

  .artwork-detail-card .lightbox-caption {
    font-size: clamp(2rem, 7vw, 3rem);
  }
}

@media (max-width: 620px) {
  .categories-section .real-gallery-grid,
  .categories-section .expanded-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 18px;
  }

  .lightbox {
    padding: 62px 12px 14px;
  }

  .artwork-detail-card {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    grid-template-rows: minmax(0, 54%) minmax(0, 46%);
  }

  .lightbox-media {
    padding: 0;
  }

  .artwork-detail-card #lightbox-image {
    inset: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
  }

  .lightbox-details {
    padding: 20px;
  }

  .artwork-detail-card .lightbox-caption {
    margin-bottom: 10px;
    font-size: 2rem;
  }

  .lightbox-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .lightbox-format-options {
    margin-top: 16px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .lightbox-options-label,
  .lightbox-format-options .lightbox-request-button {
    grid-column: 1;
  }

  .lightbox-print-selector {
    grid-column: 1;
  }

  .print-size-option {
    padding: 9px 11px;
  }

  .order-process-section {
    padding-top: 38px;
  }

  .order-process-heading > p:last-child {
    font-size: 0.94rem;
  }

  .order-process-steps li {
    padding: 20px;
  }

  .order-format-card {
    padding: 26px 22px;
    border-radius: 24px;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }
}

/* La cabecera artística pasa antes a formato desplegable para que el
   submenú conserve aire y legibilidad en portátiles y pantallas pequeñas. */
@media (max-width: 1280px) {
  .art-page .site-header {
    flex-wrap: wrap;
    border-radius: 26px;
    padding: 16px;
  }

  .art-page .nav-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
  }

  .art-page .nav-toggle span {
    width: 18px;
    height: 2px;
    margin: 0 auto;
    border-radius: 999px;
    background: var(--text);
  }

  .art-page .site-nav {
    position: static;
    z-index: auto;
    width: 100%;
    flex: 0 0 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    margin-top: 10px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(122, 179, 181, 0.18);
    background: #f8fdfd;
    box-shadow: var(--shadow);
  }

  .art-page .site-nav.is-open {
    display: flex;
  }

  .art-page .nav-submenu-divider {
    width: 100%;
    height: 1px;
    flex-basis: 1px;
    margin: 4px 0;
  }

  .art-page .art-header-submenu {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    padding: 2px 0;
    white-space: normal;
  }

  .art-page .art-header-submenu .category-tab {
    min-width: 0;
    text-align: center;
  }

.art-page .nav-social-end {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .site-nav {
    z-index: 5;
  }

  .art-page .site-header {
    margin-bottom: 20px;
  }

  .art-page .nav-submenu-divider,
  .art-page .art-header-submenu {
    display: none;
  }

  .mobile-art-category-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 12px;
    margin: 0 0 22px;
    padding: 0 4px 4px;
    border: 0;
    background: transparent;
  }

  .mobile-category-tab {
    min-width: 0;
    padding: 7px 4px;
    border: 0;
    border-radius: 0;
    color: var(--accent-deep);
    background: transparent;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
  }

  .mobile-category-tab.active {
    color: #174f57;
    background: transparent;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(45, 127, 133, 0.38);
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
  }

  .mobile-category-tab:focus-visible {
    outline: 3px solid rgba(45, 127, 133, 0.28);
    outline-offset: 2px;
  }
}

.confirmation-shell {
  min-height: 100vh;
  padding: 32px 18px;
  display: grid;
  place-items: center;
}

.confirmation-card {
  width: min(100%, 720px);
  padding: clamp(30px, 6vw, 64px);
  border-radius: 36px;
  text-align: center;
}

.confirmation-brand {
  margin: 0 auto 30px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
}

.confirmation-brand img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
}

.confirmation-card h1 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.7rem, 7vw, 5rem);
  line-height: 0.98;
}

.confirmation-card > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-soft);
  line-height: 1.7;
}

.confirmation-card > .confirmation-diagnostic {
  width: fit-content;
  margin-top: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(35, 77, 86, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.confirmation-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.home-statement {
  width: 100%;
  padding: clamp(44px, 6vw, 84px) clamp(8px, 3vw, 42px) 18px;
  text-align: center;
}

.home-statement h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.35rem, 5vw, 5.6rem);
  font-weight: 500;
  line-height: 1.02;
}

/* ================================================================
   TAROT · LECTURA DEL ALMA
   Composición inspirada en el folleto de la clienta y adaptada a
   escritorio y móvil con sus iconos originales.
   ================================================================ */

body.ritual-body {
  background: #f8f7fa;
}

body.ritual-body::before {
  display: none;
}

.ritual-background {
  position: fixed;
  inset: -4vmax;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(249, 251, 252, 0.04)),
    url("../assets/ritual/fondo-tarot.webp") center / cover no-repeat;
  transform: scale(1.035) rotate(-0.3deg);
  transform-origin: center;
}

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

.ritual-body .site-header {
  background: rgba(255, 255, 255, 0.72);
}

.ritual-body .calendar-app {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
}

/* ================================================================
   SOBRE MÍ · FONDO PASTEL
   El fondo queda aislado en esta página y el contenido conserva
   contraste mediante superficies translúcidas.
   ================================================================ */

body.about-body {
  background: #f7f8f8;
}

body.about-body::before {
  display: none;
}

.about-background {
  position: fixed;
  inset: -4vmax;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(249, 251, 252, 0.02)),
    url("../assets/contacto/fondo-sobre-mi.webp") center / cover no-repeat;
  transform: scale(1.035) rotate(0.25deg);
  transform-origin: center;
}

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

.about-body .site-header {
  background: rgba(255, 255, 255, 0.72);
}

.about-body .inner-hero {
  max-width: none;
  margin-top: 38px;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 78px rgba(74, 99, 105, 0.12);
}

.about-body .info-card,
.about-body .arsrosa-form,
.about-body .legal-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
}

@media (max-width: 600px) {
  .about-background {
    inset: -24px;
    background-position: 46% center;
    transform: scale(1.04);
  }

  .about-body .inner-hero {
    margin-top: 22px;
    padding: 30px 22px;
    border-radius: 28px;
  }
}

.soul-reading-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(420px, 1.24fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  margin-top: 38px;
  padding: clamp(42px, 6vw, 78px);
  border: 1px solid rgba(199, 154, 71, 0.22);
  border-radius: 38px;
  background:
    radial-gradient(circle at 78% 14%, rgba(224, 208, 242, 0.22), transparent 30%),
    radial-gradient(circle at 12% 82%, rgba(244, 220, 169, 0.3), transparent 28%),
    linear-gradient(135deg, rgba(255, 253, 250, 0.86), rgba(250, 247, 253, 0.8));
  backdrop-filter: blur(16px);
  box-shadow: 0 28px 90px rgba(102, 75, 119, 0.12);
}

.soul-reading-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.soul-reading-hero::after {
  width: 260px;
  height: 360px;
  right: 2%;
  bottom: -170px;
  opacity: 0.18;
  transform: rotate(-12deg);
  background:
    linear-gradient(65deg, transparent 47%, #76588f 48%, #76588f 49%, transparent 50%) 0 0 / 52px 92px,
    linear-gradient(-65deg, transparent 47%, #c4943e 48%, #c4943e 49%, transparent 50%) 26px 24px / 52px 92px;
  mask-image: linear-gradient(to top, #000, transparent 84%);
}

.soul-reading-emblem {
  width: 156px;
  height: 156px;
  margin: 0 auto 10px;
  display: block;
  object-fit: contain;
  filter: saturate(1.12) contrast(1.06) drop-shadow(0 4px 10px rgba(166, 113, 35, 0.1));
}

.soul-reading-intro {
  min-width: 0;
  align-self: center;
}

.soul-reading-heading {
  text-align: center;
}

.soul-reading-heading h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.6rem, 7.4vw, 8rem);
  font-weight: 500;
  line-height: 0.72;
  letter-spacing: -0.055em;
}

.soul-reading-heading h1 span {
  display: block;
}

.soul-reading-heading h1 span:first-child {
  color: #b9e6de;
}

.soul-reading-heading h1 span:last-child {
  margin-top: 0.22em;
  color: #c08b32;
}

.soul-reading-heading > p {
  margin: 32px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 1;
  color: #695083;
}

.soul-reading-divider {
  width: 82%;
  margin: 42px auto 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c08b32;
}

.soul-reading-divider::before,
.soul-reading-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(192, 139, 50, 0.75));
}

.soul-reading-divider::after {
  background: linear-gradient(90deg, rgba(192, 139, 50, 0.75), transparent);
}

.soul-reading-points {
  display: grid;
}

.soul-reading-points article {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid rgba(192, 139, 50, 0.28);
}

.soul-reading-points article:first-child {
  padding-top: 0;
}

.soul-reading-points article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.soul-reading-points p {
  margin: 0;
  max-width: 630px;
  color: #453d49;
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  line-height: 1.65;
}

.soul-reading-icon {
  width: 88px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.soul-reading-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: saturate(1.12) contrast(1.06) drop-shadow(0 3px 8px rgba(166, 113, 35, 0.1));
}

.soul-reading-hero + .calendar-section {
  padding-top: 62px;
}

/* ================================================================
   TAROT · VUELO DEL HADA (PRUEBA 01)
   Una sola pasada de izquierda a derecha, sin destellos.
   El hada cruza por delante del contenido sin interceptar clics.
   Ajustes rápidos: tamaño y duración en .fairy-flight-figure.
   ================================================================ */

.fairy-flight-stage {
  position: fixed;
  inset: 0;
  z-index: 4;
  overflow: hidden;
  pointer-events: none;
}

.fairy-flight-figure {
  position: absolute;
  z-index: 1;
  top: 8vh;
  left: -160px;
  width: clamp(90px, 9.5vw, 145px);
  aspect-ratio: 2 / 3;
  opacity: 0;
  scale: 1;
  will-change: left, top, scale, opacity;
  animation:
    fairy-flight-horizontal 5.25s linear 1.4s both,
    fairy-flight-arc 5.25s ease-in-out 1.4s both,
    fairy-flight-scale 5.25s ease-in-out 1.4s both,
    fairy-flight-visibility 5.25s linear 1.4s both;
}

.fairy-particle-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient-sparkle-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.ambient-sparkle {
  position: absolute;
  left: var(--sparkle-x);
  top: var(--sparkle-y);
  width: var(--sparkle-size);
  aspect-ratio: 1;
  opacity: 0;
  border-radius: 50%;
  background: radial-gradient(circle, #e6b64a 0 2.5%, #f3cf78 4.5%, rgba(255, 253, 238, 0.78) 8%, rgba(255, 248, 218, 0.12) 20%, transparent 36%);
  filter: drop-shadow(0 0 6px rgba(255, 248, 220, 0.68));
  transform: translate(-50%, -50%) scale(0.18) rotate(-7deg);
  will-change: transform, opacity;
  animation: ambient-sparkle-flash 2.1s cubic-bezier(0.2, 0.72, 0.25, 1) forwards;
}

.ambient-sparkle::before,
.ambient-sparkle::after {
  content: "";
  position: absolute;
  inset: -65%;
  background:
    linear-gradient(90deg, transparent 48.7%, rgba(255, 246, 207, 0.88) 49.6%, #fffdf3 50%, rgba(255, 246, 207, 0.88) 50.4%, transparent 51.3%),
    linear-gradient(0deg, transparent 48.7%, rgba(255, 246, 207, 0.88) 49.6%, #fffdf3 50%, rgba(255, 246, 207, 0.88) 50.4%, transparent 51.3%);
  mask-image: radial-gradient(ellipse at center, #000 0 8%, rgba(0, 0, 0, 0.85) 22%, transparent 67%);
}

.ambient-sparkle::after {
  inset: -40%;
  opacity: 0.52;
  transform: rotate(45deg) scale(0.68);
}

.ambient-sparkle.is-on-light {
  background: radial-gradient(circle, #a87425 0 2.5%, #c08b32 4.5%, rgba(221, 179, 94, 0.9) 8%, rgba(192, 139, 50, 0.2) 22%, transparent 38%);
  filter: drop-shadow(0 0 7px rgba(192, 139, 50, 0.66));
}

.ambient-sparkle.is-on-light::before,
.ambient-sparkle.is-on-light::after {
  background:
    linear-gradient(90deg, transparent 48.7%, rgba(192, 139, 50, 0.9) 49.6%, #edd39b 50%, rgba(192, 139, 50, 0.9) 50.4%, transparent 51.3%),
    linear-gradient(0deg, transparent 48.7%, rgba(192, 139, 50, 0.9) 49.6%, #edd39b 50%, rgba(192, 139, 50, 0.9) 50.4%, transparent 51.3%);
}

.fairy-particle {
  position: absolute;
  left: var(--particle-x);
  top: var(--particle-y);
  width: var(--particle-size);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, #fffbd7 0 17%, #f8cd57 30%, #d99a18 62%, rgba(190, 116, 8, 0.72) 73%, transparent 76%);
  box-shadow: 0 0 4px rgba(210, 143, 20, 0.82);
  will-change: transform, opacity;
  animation: fairy-particle-life var(--particle-life) ease-out forwards;
}

.fairy-particle.is-star {
  border-radius: 0;
  background: #efb62d;
  clip-path: polygon(50% 0, 60% 39%, 100% 50%, 60% 61%, 50% 100%, 40% 61%, 0 50%, 40% 39%);
  filter: drop-shadow(0 0 3px rgba(205, 133, 14, 0.9));
}

.fairy-particle.density-extra-yellow {
  background: radial-gradient(circle, #fffde0 0 16%, #ffe45c 33%, #eeb51d 64%, rgba(190, 126, 5, 0.82) 73%, transparent 76%);
  box-shadow: 0 0 5px rgba(239, 183, 32, 0.92);
}

.fairy-particle.is-star.density-extra-yellow {
  background: #f2bf26;
  filter: drop-shadow(0 0 4px rgba(211, 148, 10, 0.94));
}

.fairy-body,
.fairy-wing {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(139, 105, 69, 0.12));
}

.fairy-body {
  z-index: 2;
}

.fairy-wing {
  z-index: 1;
  transform-origin: 0 0;
}

.fairy-wing-up {
  transform: translate(-14%, -34%) scale(0.95);
  animation: fairy-wing-up 0.24s steps(1, end) infinite;
}

.fairy-wing-down {
  transform: translate(-14%, -20%) scale(0.95);
  animation: fairy-wing-down 0.24s steps(1, end) infinite;
}

@keyframes fairy-flight-horizontal {
  0% {
    left: -160px;
  }
  100% {
    left: calc(100vw + 160px);
  }
}

@keyframes fairy-flight-arc {
  0%, 100% {
    top: 8vh;
  }
  50% {
    top: 28vh;
  }
}

@keyframes fairy-flight-scale {
  0%, 100% {
    scale: 1;
  }
  50% {
    scale: 1.25;
  }
}

@keyframes fairy-flight-visibility {
  0%, 100% {
    opacity: 0;
  }
  8%, 92% {
    opacity: 0.72;
  }
}

@keyframes fairy-particle-life {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.25) rotate(0deg);
  }
  12% {
    opacity: var(--particle-opacity);
    transform: translate(-50%, -50%) scale(1) rotate(12deg);
  }
  58% {
    opacity: calc(var(--particle-opacity) * 0.62);
    transform: translate(calc(-50% + var(--particle-drift-x) * 0.45), calc(-50% + var(--particle-drift-y) * 0.45)) scale(0.78) rotate(25deg);
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--particle-drift-x)), calc(-50% + var(--particle-drift-y))) scale(0.18) rotate(40deg);
  }
}

@keyframes ambient-sparkle-flash {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.18) rotate(-7deg);
  }
  15% {
    opacity: 0.42;
  }
  28% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.92) rotate(0deg);
  }
  42% {
    opacity: 0.86;
    transform: translate(-50%, -50%) scale(1.08) rotate(2deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5) rotate(7deg);
  }
}

@keyframes fairy-wing-up {
  0%, 49.99% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes fairy-wing-down {
  0%, 49.99% { opacity: 0; }
  50%, 100% { opacity: 1; }
}

/* Dato dinámico del canal de contacto. */
.contact-detail-field[hidden] {
  display: none;
}

.form-grid .contact-detail-field {
  padding: 16px 18px 18px;
  border: 1px solid rgba(122, 179, 181, 0.2);
  border-radius: 20px;
  background: rgba(236, 248, 248, 0.72);
}

.form-grid .contact-detail-field small {
  color: var(--text-soft);
  font-size: 0.78rem;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .soul-reading-hero {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .soul-reading-heading {
    max-width: 620px;
    margin: 0 auto;
  }

  .soul-reading-divider {
    width: min(420px, 72%);
    margin: 34px auto -8px;
  }

  .soul-reading-points {
    width: min(100%, 720px);
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .ritual-background {
    inset: -24px;
    background-position: 58% center;
    transform: scale(1.04);
  }

  .soul-reading-hero {
    margin-top: 22px;
    padding: 30px 22px 34px;
    border-radius: 28px;
  }

  .soul-reading-emblem {
    width: 112px;
    height: 112px;
    margin-bottom: 6px;
  }

  .soul-reading-heading h1 {
    font-size: clamp(3.8rem, 20vw, 5.2rem);
  }

  .soul-reading-heading > p {
    margin-top: 24px;
    font-size: 1.75rem;
  }

  .soul-reading-divider {
    width: 88%;
  }

  .soul-reading-points article {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 0;
  }

  .soul-reading-icon {
    width: 64px;
  }

  .soul-reading-points p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .soul-reading-hero + .calendar-section {
    padding-top: 48px;
  }

  .fairy-flight-figure {
    top: 10vh;
    width: clamp(56px, 17vw, 74px);
    animation-duration: 4.5s;
  }
}
