/* Sitio48 — five distinct demo systems. 2026 studio, not a theme swap.
   Motion is transform-only. Content is visible with JS off / reduced-motion. */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
address { font-style: normal; }
:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }

.demo-flag {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5rem 1rem;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}
.demo-flag img { width: 16px; height: 16px; border-radius: 4px; }
.demo-flag a { text-decoration: none; font-weight: 700; }
.demo-flag a:hover { text-decoration: underline; }

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

@media (prefers-reduced-motion: no-preference) {
  @keyframes rise {
    from { transform: translate3d(0, 1.4rem, 0); }
    to { transform: translate3d(0, 0, 0); }
  }
  @keyframes ken {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
  }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
}

/* ============================================================
   1. ALEM — premium estética, magazine + clinic tiles
   Cormorant + Source Sans. Square teal. One-column air, full-bleed photo.
   ============================================================ */
body.alem {
  --ink: #102824;
  --mute: #5a6e6a;
  --line: #d4e0dc;
  --paper: #f7fbf9;
  --teal: #0f5c56;
  --teal-2: #0a3f3b;
  --sand: #e7f0ed;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
}
body.alem .demo-flag {
  background: var(--paper);
  color: var(--mute);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 40;
}
body.alem .demo-flag a { color: var(--teal); }

.alem-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, white);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.15rem;
}
.alem-brand {
  text-decoration: none;
  display: grid;
  gap: 0.05rem;
}
.alem-brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
.alem-brand span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.alem-bar nav {
  display: none;
  gap: 1.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.alem-bar nav a { text-decoration: none; color: var(--mute); }
.alem-bar nav a:hover { color: var(--ink); }
.alem-sq {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--teal);
  color: #fff;
  font-weight: 650;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 0.78rem 1.15rem;
  border-radius: 4px;
  border: 0;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.alem-sq:hover {
  background: var(--teal-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 92, 86, 0.28);
}
.alem-sq.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  box-shadow: none;
}
.alem-sq.ghost:hover { background: var(--ink); color: #fff; }

.alem-hero {
  width: min(42rem, calc(100% - 2.4rem));
  margin-inline: auto;
  padding: 3.4rem 0 2.6rem;
}
.alem-hero .who {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--teal);
  margin: 0 0 1.1rem;
}
.alem-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.7rem, 9vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 0 0 1.15rem;
}
.alem-hero .lede {
  margin: 0 0 1.8rem;
  color: var(--mute);
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  max-width: 34ch;
}
.alem-hero .row { display: flex; flex-wrap: wrap; gap: 0.7rem; }
@media (prefers-reduced-motion: no-preference) {
  .alem-hero .who { animation: rise 0.7s cubic-bezier(.16,1,.3,1) both; }
  .alem-hero h1 { animation: rise 0.8s 0.06s cubic-bezier(.16,1,.3,1) both; }
  .alem-hero .lede { animation: rise 0.8s 0.12s cubic-bezier(.16,1,.3,1) both; }
  .alem-hero .row { animation: rise 0.8s 0.18s cubic-bezier(.16,1,.3,1) both; }
}

.alem-bleed {
  margin: 0;
  width: 100%;
}
.alem-bleed img {
  width: 100%;
  height: min(72svh, 640px);
  object-fit: cover;
}
@media (prefers-reduced-motion: no-preference) {
  .alem-bleed img { animation: ken 28s ease-in-out alternate infinite; transform-origin: 50% 40%; }
}
.alem-bleed figcaption {
  width: min(42rem, calc(100% - 2.4rem));
  margin: 0.7rem auto 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}

.alem-hours {
  margin-top: 2.4rem;
  background: var(--teal);
  color: #e7f4f1;
  overflow: hidden;
  padding: 1.05rem 0;
}
.alem-hours .track {
  display: flex;
  width: max-content;
  gap: 0;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (prefers-reduced-motion: no-preference) {
  .alem-hours .track { animation: ticker 28s linear infinite; }
}
.alem-hours span { padding: 0 1.6rem; }

.alem-col {
  width: min(42rem, calc(100% - 2.4rem));
  margin-inline: auto;
}
.alem-about { padding: 3.6rem 0 1.2rem; }
.alem-about h2,
.alem-svc-wrap h2,
.alem-visit h2,
.alem-place h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.9rem;
}
.alem-about p { color: var(--mute); margin: 0 0 0.9rem; font-size: 1.08rem; }
.alem-about p:last-child { margin-bottom: 0; }

.alem-svc-wrap { padding: 2rem 0 1rem; }
.alem-svc {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}
.alem-svc > div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.2rem 1.15rem 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.alem-svc > div:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(16, 40, 36, 0.08);
  border-color: #b7cfc9;
}
.alem-svc .n {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  color: var(--teal);
  font-weight: 600;
  line-height: 1;
}
.alem-svc dt {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0;
  grid-column: 2;
}
.alem-svc dd {
  margin: 0.2rem 0 0;
  color: var(--mute);
  grid-column: 2;
}

.alem-visit { padding: 2.4rem 0 1rem; }
.alem-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.2rem;
}
.alem-steps li {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.alem-steps strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}
.alem-steps p { margin: 0; color: var(--mute); }

.alem-cta-band {
  margin: 2.6rem 0 0;
  background: var(--sand);
  padding: 2.6rem 1.2rem 2.8rem;
  text-align: center;
}
.alem-cta-band h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 500;
  margin: 0 0 0.5rem;
}
.alem-cta-band p { color: var(--mute); margin: 0 0 1.3rem; }

.alem-place { padding: 3rem 0 3.4rem; }
.alem-place p { color: var(--mute); }
.alem-place .row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.2rem; }

body.alem footer {
  border-top: 1px solid var(--line);
  padding: 1.3rem 1.2rem 2.2rem;
  color: var(--mute);
  font-size: 0.86rem;
  text-align: center;
}
body.alem footer a { color: var(--teal); font-weight: 650; text-decoration: none; }

@media (min-width: 720px) {
  .alem-bar { padding-inline: 2rem; }
  .alem-bar nav { display: flex; }
  .alem-svc { grid-template-columns: 1fr 1fr; }
  .alem-steps { grid-template-columns: 1fr 1fr 1fr; gap: 1.4rem; }
  .alem-steps li { border-top: 0; border-left: 1px solid var(--line); padding: 0 0 0 1.2rem; }
  .alem-steps li:first-child { border-left: 0; padding-left: 0; }
}

/* ============================================================
   2. SUR — barrio house, full-bleed + dock, rounded cards
   Fraunces italic + Nunito. Wine / paper.
   ============================================================ */
body.sur {
  --ink: #2b1614;
  --paper: #f6efe7;
  --wine: #6e2a28;
  --wine-deep: #4a1b1a;
  --mute: #6a524c;
  --card: #fffaf6;
  font-family: "Nunito", "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16.5px;
  padding-bottom: 5.6rem;
}
body.sur .demo-flag {
  position: relative;
  z-index: 40;
  background: var(--wine-deep);
  color: #f3e6dc;
}
body.sur .demo-flag a { color: #fff; }

.sur-hero {
  position: relative;
  min-height: 92svh;
  color: #f7f1ea;
  display: grid;
  overflow: hidden;
}
.sur-hero > img {
  width: 100%;
  height: 100%;
  min-height: 92svh;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .sur-hero > img { animation: ken 30s ease-in-out alternate infinite; }
}
.sur-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42,16,14,0.12) 0%, rgba(42,16,14,0.42) 48%, rgba(42,16,14,0.9) 100%);
}
.sur-nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sur-nav a { text-decoration: none; color: #fff; }
.sur-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 0 1.25rem 2.6rem;
}
.sur-copy .k {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0 0 0.7rem;
  color: #f0c9b8;
}
.sur-copy h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2.5rem, 9vw, 4.2rem);
  line-height: 1.05;
  margin: 0 0 0.8rem;
  letter-spacing: -0.03em;
  max-width: 12ch;
}
.sur-copy p { margin: 0; max-width: 34ch; color: rgba(247,241,234,0.9); font-size: 1.05rem; }
@media (prefers-reduced-motion: no-preference) {
  .sur-copy h1 { animation: rise 0.85s cubic-bezier(.16,1,.3,1) both; }
  .sur-copy p { animation: rise 0.85s 0.1s cubic-bezier(.16,1,.3,1) both; }
}

.sur-dock {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: var(--wine);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  padding: 1.05rem 1.2rem calc(1.05rem + env(safe-area-inset-bottom));
  letter-spacing: 0.06em;
  box-shadow: 0 -10px 30px rgba(43, 22, 20, 0.18);
  transition: background 0.2s ease;
}
.sur-dock:hover { background: var(--wine-deep); }

.sur-story {
  padding: 3rem 1.25rem 1.4rem;
  width: min(720px, 100%);
}
.sur-story h2 {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.9rem, 5vw, 2.7rem);
  margin: 0 0 0.7rem;
}
.sur-story p { color: var(--mute); margin: 0 0 1rem; font-size: 1.05rem; }

.sur-family {
  display: grid;
  gap: 0.9rem;
  padding: 0.4rem 1.25rem 2.2rem;
}
.sur-family article {
  background: var(--card);
  border-radius: 24px;
  padding: 1.25rem 1.2rem 1.3rem;
  box-shadow: 0 10px 28px rgba(43,22,20,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sur-family article:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(43,22,20,0.1);
}
.sur-family .tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 0.35rem;
}
.sur-family h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 550;
  font-style: italic;
  font-size: 1.45rem;
  margin: 0 0 0.35rem;
}
.sur-family p { margin: 0; color: var(--mute); }

.sur-ribbon {
  margin: 0.4rem 1.25rem 2rem;
  background: var(--wine);
  color: #f7f1ea;
  border-radius: 24px;
  padding: 1.3rem 1.3rem 1.4rem;
}
.sur-ribbon h2 {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  margin: 0 0 0.4rem;
}
.sur-ribbon p { margin: 0; color: rgba(247,241,234,0.85); }

.sur-pull {
  padding: 0.4rem 1.25rem 2.2rem;
}
.sur-pull blockquote {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.5rem, 4.5vw, 2.1rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
  max-width: 18ch;
}
.sur-pull cite {
  display: block;
  margin-top: 0.8rem;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  font-family: "Nunito", sans-serif;
  font-weight: 800;
}

.sur-place {
  margin: 0 1.25rem 1.6rem;
  background: var(--card);
  border-radius: 24px;
  padding: 1.4rem 1.25rem 1.5rem;
}
.sur-place h2 {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  margin: 0 0 0.45rem;
  font-size: 1.7rem;
}
.sur-place address { font-weight: 800; }
.sur-place p { color: var(--mute); }
.sur-round {
  display: inline-flex;
  margin-top: 0.85rem;
  text-decoration: none;
  background: var(--wine);
  color: #fff;
  font-weight: 800;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.sur-round:hover { background: var(--wine-deep); transform: translateY(-2px); }

body.sur footer {
  padding: 0 1.25rem 1.4rem;
  color: var(--mute);
  font-size: 0.85rem;
}
body.sur footer a { color: var(--wine); font-weight: 800; text-decoration: none; }

@media (min-width: 900px) {
  .sur-hero {
    grid-template-columns: 1.12fr 1fr;
    min-height: 100svh;
    background: var(--paper);
  }
  .sur-hero > img {
    position: relative;
    min-height: 100svh;
    grid-column: 1;
    grid-row: 1 / span 2;
  }
  .sur-veil { display: none; }
  .sur-nav {
    grid-column: 2;
    color: var(--ink);
    padding: 1.6rem 2.4rem 0;
  }
  .sur-nav, .sur-nav a { color: var(--ink); }
  .sur-copy {
    grid-column: 2;
    color: var(--ink);
    padding: 2rem 2.4rem 3.2rem;
    align-self: center;
  }
  .sur-copy h1 { color: var(--ink); }
  .sur-copy p { color: var(--mute); }
  .sur-copy .k { color: var(--wine); }
  .sur-story, .sur-family, .sur-ribbon, .sur-pull, .sur-place, body.sur footer {
    width: min(980px, calc(100% - 3.2rem));
    margin-inline: auto;
  }
  .sur-family { grid-template-columns: 1fr 1fr 1fr; padding-inline: 0; }
  .sur-story { padding: 4rem 0 1.6rem; }
  .sur-ribbon, .sur-place { margin-inline: auto; }
}

/* ============================================================
   3. RÍO — clinic OS, navy + gold, numbered grid
   Barlow Condensed. Sticky hours. Productized.
   ============================================================ */
html:has(body.rio) { scroll-padding-top: 7.5rem; }
body.rio {
  --navy: #12324c;
  --navy-2: #0b1f30;
  --sky: #2a6fa3;
  --gold: #e2b23a;
  --paper: #eef2f6;
  --ink: #132033;
  --mute: #4d5d73;
  font-family: "Barlow", "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.45;
  font-size: 16.5px;
}
body.rio .demo-flag {
  background: var(--navy-2);
  color: #9db4c8;
}
body.rio .demo-flag a { color: #fff; }

.rio-top {
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  position: sticky;
  top: 0;
  z-index: 40;
}
.rio-top .name {
  font-family: "Barlow Condensed", "Barlow", sans-serif;
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}
.rio-top nav {
  display: none;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.rio-top nav a { text-decoration: none; color: #d5e4f2; }
.rio-top .rio-gold { white-space: nowrap; flex-shrink: 0; }
.rio-gold {
  background: var(--gold);
  color: #152033;
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.62rem 0.95rem;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.rio-gold:hover {
  background: #f0c45a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(226, 178, 58, 0.35);
}
.rio-gold.lg { padding: 0.9rem 1.2rem; font-size: 1rem; }

.rio-hours {
  background: var(--navy-2);
  color: #d5e4f2;
  overflow: hidden;
  padding: 0.55rem 0;
  position: sticky;
  top: 52px;
  z-index: 30;
}
.rio-hours .track {
  display: flex;
  width: max-content;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (prefers-reduced-motion: no-preference) {
  .rio-hours .track { animation: ticker 22s linear infinite; }
}
.rio-hours span { padding: 0 1.5rem; }

.rio-hero {
  display: grid;
  gap: 0;
  background: var(--navy);
  color: #fff;
}
.rio-hero .copy { padding: 1.8rem 1.15rem 2rem; }
.rio-hero h1 {
  font-family: "Barlow Condensed", "Barlow", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(2.5rem, 10vw, 4.6rem);
  line-height: 0.9;
  margin: 0 0 0.8rem;
}
.rio-hero p { margin: 0 0 1.2rem; color: #b9c9d8; max-width: 40ch; font-size: 1.05rem; }
.rio-hero img {
  width: 100%;
  height: min(52svh, 420px);
  object-fit: cover;
}
@media (prefers-reduced-motion: no-preference) {
  .rio-hero h1 { animation: rise 0.7s cubic-bezier(.16,1,.3,1) both; }
  .rio-hero p { animation: rise 0.7s 0.08s cubic-bezier(.16,1,.3,1) both; }
}

.rio-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #fff;
  border-bottom: 1px solid #d5dee8;
}
.rio-stats div {
  padding: 1.15rem 0.8rem;
  text-align: center;
  border-right: 1px solid #d5dee8;
}
.rio-stats div:last-child { border-right: 0; }
.rio-stats strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.1rem);
  letter-spacing: 0.04em;
  line-height: 1;
}
.rio-stats span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 700;
}

.rio-grid-wrap { padding: 2.2rem 1.1rem 2.4rem; }
.rio-grid-wrap h2 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.35rem;
  margin: 0 0 1.1rem;
}
.rio-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.rio-grid li {
  background: #fff;
  border: 1px solid #d5dee8;
  border-radius: 4px;
  padding: 1.05rem 1rem 1.1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.rio-grid li:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(18, 50, 76, 0.08);
  border-color: var(--sky);
}
.rio-grid .n {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--sky);
  letter-spacing: 0.04em;
}
.rio-grid h3 {
  margin: 0 0 0.2rem;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.rio-grid p { margin: 0; color: var(--mute); font-size: 0.92rem; }

.rio-os {
  background: #fff;
  border-block: 1px solid #d5dee8;
  padding: 1.4rem 1.1rem 1.5rem;
  text-align: center;
}
.rio-os h2 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.92rem;
  color: var(--mute);
  margin: 0 0 0.55rem;
}
.rio-os p {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.2rem, 4vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rio-place {
  background: var(--navy);
  color: #fff;
  padding: 2rem 1.1rem 2.3rem;
}
.rio-place h2 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  letter-spacing: 0.1em;
  font-size: 1.5rem;
}
.rio-place address { font-weight: 600; }
.rio-place p { color: #b9c9d8; }
.rio-place .row { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.1rem; }
.rio-ghost {
  text-decoration: none;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 0.95rem;
  border-radius: 3px;
  display: inline-flex;
  transition: background 0.2s ease;
}
.rio-ghost:hover { background: rgba(255,255,255,0.08); }

body.rio button.rio-gold,
body.rio button.rio-ghost {
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
}
body.rio button.rio-gold { border: 0; }
body.rio button.rio-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
}
body.rio button.rio-gold:disabled,
body.rio a.rio-gold[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.rio-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

/* --- Turno (flagship demo). Scoped to Río. --- */
body.rio #turno,
body.rio #servicios,
body.rio #obras,
body.rio #lugar,
body.rio #inicio {
  scroll-margin-top: 7.5rem;
}
.rio-turno {
  --line: #d5dee8;
  background-color: var(--sky);
  background-image:
    linear-gradient(180deg, rgba(18, 50, 76, 0.12) 0%, rgba(11, 31, 48, 0.42) 100%),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  color: #fff;
  padding: 2.2rem 1.1rem 2.6rem;
}
.rio-turno-inner { margin: 0 0 1.15rem; }
.rio-kicker {
  margin: 0 0 0.35rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.rio-turno h2 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 0.95;
  margin: 0 0 0.55rem;
}
.rio-turno-lead {
  margin: 0;
  color: #d5e4f2;
  max-width: 52ch;
  font-size: 1.02rem;
}
.rio-turno-noscript {
  background: #fff;
  color: var(--ink);
  padding: 1rem 1.1rem;
  border-radius: 4px;
}

.rio-turno #turno-embed { min-height: 12rem; }

.rio-widget {
  background: #fff;
  color: var(--ink);
  border-radius: 4px;
  border: 1px solid rgba(11, 31, 48, 0.12);
  box-shadow: 0 18px 40px rgba(11, 31, 48, 0.18);
  overflow: hidden;
}
.rio-widget-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem 1rem;
  padding: 0.75rem 1rem;
  background: var(--navy-2);
  color: #d5e4f2;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.rio-widget-bar .hint { color: #9db4c8; letter-spacing: 0.08em; }
.rio-steps {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.15rem;
}
.rio-steps li {
  padding: 0.15rem 0.45rem;
  border-radius: 2px;
  color: #7e93a8;
}
.rio-steps li.is-done { color: #d5e4f2; }
.rio-steps li.is-now {
  background: var(--gold);
  color: #152033;
}
.rio-widget-body { padding: 1.15rem 1rem 1.25rem; }
.rio-widget-body h3 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.2rem;
  margin: 0 0 0.85rem;
}
.rio-widget-note {
  margin: 0 0 1rem;
  color: var(--mute);
  font-size: 0.92rem;
}

.rio-choice {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.rio-choice button {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.95rem 1rem;
  cursor: pointer;
  color: inherit;
  font: inherit;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
.rio-choice button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(18, 50, 76, 0.08);
  border-color: var(--sky);
}
.rio-choice button[aria-pressed="true"] {
  border-color: var(--navy);
  background: #f3f7fb;
  box-shadow: inset 0 0 0 1px var(--navy);
}
.rio-choice .n {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--sky);
  letter-spacing: 0.04em;
  line-height: 1;
}
.rio-choice h4 {
  margin: 0 0 0.15rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.rio-choice p { margin: 0; color: var(--mute); font-size: 0.9rem; }
.rio-badge {
  display: inline-block;
  margin-top: 0.35rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  background: #e7f1f8;
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
}

.rio-days {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.rio-days button {
  appearance: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.7rem 0.3rem 0.75rem;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.rio-days button:hover { border-color: var(--sky); transform: translateY(-2px); }
.rio-days button[aria-pressed="true"] {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.rio-days .dow {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--sky);
}
.rio-days button[aria-pressed="true"] .dow { color: var(--gold); }
.rio-days .num {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.rio-days .mon {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mute);
}
.rio-days button[aria-pressed="true"] .mon { color: #b9c9d8; }

.rio-slots {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}
.rio-slots button {
  appearance: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.62rem 0.3rem;
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.rio-slots button:hover:not(:disabled) { border-color: var(--sky); }
.rio-slots button[aria-pressed="true"] {
  background: var(--gold);
  border-color: var(--gold);
  color: #152033;
}
.rio-slots button:disabled {
  cursor: not-allowed;
  background: #eef2f6;
  color: #8a97a8;
  text-decoration: line-through;
}
.rio-slots .why {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  margin-top: 0.15rem;
}

.rio-fields { display: grid; gap: 0.85rem; }
.rio-fields label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}
.rio-fields input {
  font: inherit;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.7rem 0.8rem;
  background: #fff;
}
.rio-fields input:focus {
  outline: 2px solid var(--sky);
  outline-offset: 1px;
  border-color: var(--sky);
}
.rio-fields .err {
  color: #9a2f2f;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
}
.rio-fields .help {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--mute);
  font-size: 0.85rem;
}

.rio-sena {
  background: #f3f7fb;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  padding: 0.9rem 1rem;
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--mute);
}
.rio-sena strong { color: var(--ink); }

.rio-summary {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.rio-summary li {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 0.6rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.rio-summary span {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--mute);
  padding-top: 0.15rem;
}

.rio-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #e4f4ea;
  color: #1b5c32;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  padding: 0.35rem 0.6rem;
  border-radius: 2px;
  margin: 0 0 0.9rem;
}
.rio-confirm-id {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  margin: 0 0 0.8rem;
}

.rio-widget-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.rio-widget .rio-ghost {
  color: var(--navy);
  border-color: #c5d0dc;
}
.rio-widget .rio-ghost:hover { background: #eef2f6; }
.rio-widget-foot {
  padding: 0.65rem 1rem 0.8rem;
  background: #f6f8fb;
  color: var(--mute);
  font-size: 0.78rem;
  border-top: 1px solid var(--line);
}

@media (min-width: 560px) {
  .rio-choice { grid-template-columns: 1fr 1fr; }
  .rio-days { grid-template-columns: repeat(7, 1fr); }
  .rio-slots { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 820px) {
  .rio-steps { display: flex; }
  .rio-widget-body { padding: 1.4rem 1.35rem 1.5rem; }
  .rio-turno-inner,
  .rio-turno #turno-embed {
    width: min(1100px, calc(100% - 2.4rem));
    margin-inline: auto;
  }
  .rio-slots { grid-template-columns: repeat(5, 1fr); }
}

body.rio footer {
  padding: 1.3rem 1.1rem 2rem;
  color: var(--mute);
  font-size: 0.85rem;
}
body.rio footer a { color: var(--navy); font-weight: 700; text-decoration: none; }

@media (min-width: 820px) {
  .rio-top nav { display: flex; }
  .rio-hero {
    grid-template-columns: 1.05fr 1fr;
    align-items: stretch;
  }
  .rio-hero .copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.2rem 3rem;
  }
  .rio-hero img { height: 100%; min-height: 460px; }
  .rio-grid {
    grid-template-columns: 1fr 1fr;
    width: min(1100px, calc(100% - 2.4rem));
    margin-inline: auto;
  }
  .rio-grid-wrap h2,
  .rio-os > *,
  .rio-place > *:not(.row),
  body.rio footer {
    width: min(1100px, calc(100% - 2.4rem));
    margin-inline: auto;
  }
  .rio-place .row {
    width: min(1100px, calc(100% - 2.4rem));
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .rio-top nav { display: none; }
}
@media (max-width: 380px) {
  .rio-top .name { font-size: 1.08rem; letter-spacing: 0.06em; }
  .rio-top .rio-gold { padding-inline: 0.65rem; font-size: 0.82rem; letter-spacing: 0.06em; }
}

/* ============================================================
   4. MESA — Güemes resto, dark hospitality
   Great Vibes wordmark + Karla. Carta with ARS. No dental copy.
   ============================================================ */
body.mesa {
  --night: #140c0a;
  --night-2: #1e1210;
  --brick: #9a3e28;
  --sand: #e8d2bc;
  --cream: #f4eadc;
  --mute: #cbb7a6;
  font-family: "Karla", "Segoe UI", sans-serif;
  background: var(--night);
  color: var(--cream);
  line-height: 1.55;
  font-size: 16.5px;
}
body.mesa .demo-flag {
  background: #0e0908;
  color: var(--mute);
}
body.mesa .demo-flag a { color: var(--sand); }

.mesa-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.7rem 1.15rem;
  background: rgba(20, 12, 10, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232,210,188,0.12);
}
.mesa-bar .word {
  font-family: "Great Vibes", cursive;
  font-size: 2.15rem;
  text-decoration: none;
  color: var(--sand);
  font-weight: 400;
  line-height: 1;
  padding-top: 0.15rem;
}
.mesa-bar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.05rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.mesa-bar nav a { text-decoration: none; color: var(--mute); }
.mesa-bar nav a:hover { color: var(--cream); }

.mesa-hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  place-items: end start;
  overflow: hidden;
}
.mesa-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (prefers-reduced-motion: no-preference) {
  .mesa-hero img { animation: ken 32s ease-in-out alternate infinite; }
}
.mesa-hero .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,12,10,0.15) 0%, rgba(20,12,10,0.35) 40%, rgba(20,12,10,0.92) 100%);
}
.mesa-hero .cap {
  position: relative;
  z-index: 1;
  padding: 2rem 1.2rem 2.4rem;
}
.mesa-hero .k {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sand);
  margin: 0 0 0.6rem;
}
.mesa-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2.6rem, 9vw, 4.6rem);
  line-height: 1.04;
  margin: 0 0 0.6rem;
  max-width: 12ch;
}
.mesa-hero p { margin: 0 0 1.2rem; color: var(--sand); max-width: 36ch; }
@media (prefers-reduced-motion: no-preference) {
  .mesa-hero h1 { animation: rise 0.85s cubic-bezier(.16,1,.3,1) both; }
}

.mesa-line {
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--sand);
  color: var(--sand);
  padding: 0.8rem 1.15rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.mesa-line:hover {
  background: var(--sand);
  color: var(--night);
  transform: translateY(-2px);
}

.mesa-intro {
  padding: 2.6rem 1.2rem 1.2rem;
  width: min(720px, 100%);
}
.mesa-intro h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 500;
  color: var(--sand);
  margin: 0 0 0.5rem;
}
.mesa-intro p { color: var(--mute); margin: 0; font-size: 1.05rem; }

.mesa-carta { padding: 1.2rem 1.2rem 1rem; }
.mesa-carta > h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 500;
  color: var(--sand);
  margin: 0 0 0.25rem;
}
.mesa-carta .note {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 1.6rem;
}
.mesa-col { margin-bottom: 1.9rem; }
.mesa-col h3 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid rgba(232,210,188,0.22);
  padding-bottom: 0.45rem;
  margin: 0 0 0.7rem;
  color: var(--sand);
}
.mesa-col ul { list-style: none; margin: 0; padding: 0; }
.mesa-col li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dotted rgba(232,210,188,0.18);
  font-size: 1.02rem;
}
.mesa-col li em {
  grid-column: 1 / -1;
  color: var(--mute);
  font-style: normal;
  font-size: 0.82rem;
  margin-top: -0.25rem;
}
.mesa-col .ars {
  color: var(--sand);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.mesa-hora {
  margin: 0.6rem 1.2rem 2rem;
  border: 1px solid rgba(232,210,188,0.18);
  padding: 1.8rem 1.3rem 1.9rem;
  text-align: center;
}
.mesa-hora h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--sand);
  margin: 0 0 0.7rem;
}
.mesa-hora p { margin: 0.2rem 0; color: var(--mute); letter-spacing: 0.06em; }
.mesa-hora .mesa-line { margin-top: 1.2rem; }

.mesa-llegar { padding: 0 1.2rem 2.4rem; }
.mesa-llegar h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 2rem;
  margin: 0 0 0.5rem;
}
.mesa-llegar p, .mesa-llegar address { color: var(--mute); }
.mesa-llegar .mesa-line { margin-top: 1rem; }

body.mesa footer {
  border-top: 1px solid rgba(232,210,188,0.12);
  padding: 1.3rem 1.2rem 2.2rem;
  color: var(--mute);
  font-size: 0.85rem;
}
body.mesa footer a { color: var(--sand); text-decoration: none; font-weight: 700; }

@media (min-width: 800px) {
  .mesa-carta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
    width: min(980px, calc(100% - 2.8rem));
    margin-inline: auto;
  }
  .mesa-carta > h2, .mesa-carta .note { grid-column: 1 / -1; }
  .mesa-intro, .mesa-hora, .mesa-llegar, body.mesa footer {
    width: min(980px, calc(100% - 2.8rem));
    margin-inline: auto;
  }
  .mesa-bar { padding-inline: 2rem; }
}

/* ============================================================
   5. ESTUDIO MOLINA — Swiss / editorial law
   EB Garamond + Libre Franklin. Huge name, sticky contact, hairlines.
   ============================================================ */
body.estudio {
  --ink: #161616;
  --paper: #f3f1eb;
  --rule: #cfc9bc;
  --mute: #5e5a52;
  --gold: #6f6248;
  font-family: "Libre Franklin", "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
}
body.estudio .demo-flag {
  background: var(--paper);
  color: var(--mute);
  border-bottom: 1px solid var(--rule);
  letter-spacing: 0.2em;
}
body.estudio .demo-flag a { color: var(--ink); }

.mol {
  width: min(1080px, calc(100% - 2.2rem));
  margin-inline: auto;
}
.mol-head {
  padding: 2.6rem 0 2rem;
  border-bottom: 1px solid var(--ink);
}
.mol-head .sc {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.7rem;
  font-weight: 600;
}
.mol-head h1 {
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(3.2rem, 14vw, 8.2rem);
  letter-spacing: -0.04em;
  line-height: 0.85;
  text-transform: uppercase;
  margin: 0 0 0.7rem;
}
.mol-head .place {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0;
  font-weight: 600;
}
@media (prefers-reduced-motion: no-preference) {
  .mol-head h1 { animation: rise 0.85s cubic-bezier(.16,1,.3,1) both; }
}

.mol-body {
  padding: 2rem 0 3rem;
  display: grid;
  gap: 2.4rem;
}
.mol-body h2 {
  font-family: "Libre Franklin", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 650;
  margin: 0 0 0.85rem;
  color: var(--gold);
}
.mol-lead {
  font-family: "EB Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
.mol-body p { margin: 0 0 0.9rem; color: var(--ink); }

.mol-areas {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
}
.mol-areas li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem 1.1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--rule);
  transition: background 0.2s ease;
}
.mol-areas li:hover { background: rgba(0,0,0,0.02); }
.mol-areas .n {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 1.15rem;
  color: var(--gold);
}
.mol-areas strong {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  display: block;
}
.mol-areas span { color: var(--mute); font-size: 0.92rem; }

.mol-photo {
  margin: 2rem 0 0;
}
.mol-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
.mol-photo figcaption {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 0.55rem;
}

.mol-side {
  border-top: 1px solid var(--ink);
  padding-top: 1.3rem;
}
@media (min-width: 860px) {
  .mol-side {
    position: sticky;
    top: 1.4rem;
    border-top: 0;
    border-left: 1px solid var(--ink);
    padding: 0 0 0 1.8rem;
    align-self: start;
  }
}
.mol-side h2 { margin-top: 0; }
.mol-side address { font-weight: 600; margin-bottom: 0.4rem; }
.mol-side p { color: var(--mute); font-size: 0.92rem; }
.mol-actions { display: grid; gap: 0.55rem; margin-top: 1rem; }
.mol-btn {
  text-decoration: none;
  text-align: center;
  padding: 0.75rem 0.9rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 650;
  border: 1px solid var(--ink);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.mol-btn.solid { background: var(--ink); color: var(--paper); }
.mol-btn.solid:hover { background: #000; transform: translateY(-2px); }
.mol-btn.ghost:hover { background: var(--ink); color: var(--paper); }

.mol-hours {
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--rule);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

body.estudio footer {
  border-top: 1px solid var(--ink);
  padding: 1.1rem 0 2.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}
body.estudio footer a { color: var(--ink); text-decoration: none; font-weight: 650; }

@media (min-width: 860px) {
  .mol-body {
    grid-template-columns: 1.35fr 0.75fr;
    gap: 3rem;
    align-items: start;
  }
  .mol-head { padding-top: 3.4rem; }
}
