:root {
  --black: #000;
  --white: #fff;
  --muted: #666;
  --line: #e5e5e5;
  --sand: #f4f1ec;
  --font-title: Arial, Helvetica, sans-serif;
  --font-body: Calibri, "Segoe UI", Candara, sans-serif;
  --font: var(--font-body);
  --wrap: min(1180px, calc(100% - 2.5rem));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 11pt;
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.site-main { flex: 1 0 auto; }
img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.25;
  font-family: var(--font-title);
  font-size: 14pt;
  font-weight: 700;
}

.skip {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: #000; color: #fff; padding: .6rem 1rem;
}
.skip:focus { left: .8rem; top: .8rem; }

.wrap { width: var(--wrap); margin-inline: auto; }
.narrow { max-width: 720px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.muted.light { color: rgba(255,255,255,.65); }
.muted a { text-decoration: underline; text-underline-offset: 3px; }

/* Promo bar */
.promo {
  background: #fff;
  color: #000;
  text-align: center;
  font-size: .78rem;
  letter-spacing: .04em;
  padding: .55rem 1rem;
  border-bottom: 1px solid var(--line);
}

/* Header Backstage style */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #000;
  color: #fff;
  padding: 0;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.5rem;
  padding: .7rem 0;
  position: relative;
}
.logo-box {
  width: 72px;
  height: 72px;
  border: 1px solid #fff;
  display: grid;
  place-items: center;
  text-align: center;
  flex-shrink: 0;
}
.logo-box span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.15;
  padding: .25rem;
}
.logo-box--sm {
  width: 56px;
  height: 56px;
  border-color: #fff;
  margin-bottom: .7rem;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.nav-reserva { font-weight: 700; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.blog-search {
  display: flex;
  align-items: center;
  gap: .35rem;
  flex: 1 1 220px;
  min-width: 0;
  max-width: 340px;
  margin-right: auto;
}
.blog-search input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 999px;
  padding: .4rem .85rem;
  font: inherit;
  font-size: .78rem;
}
.blog-search input::placeholder { color: rgba(255,255,255,.45); }
.blog-search button {
  border: 0;
  background: #fff;
  color: #000;
  border-radius: 999px;
  padding: .4rem .75rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.site-main {
  flex: 1 0 auto;
  background: #f2f2f2;
}
.blog-first { padding: 1.6rem 0 2.2rem; background: transparent; }
.blog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}
.blog-head-copy { min-width: 0; flex: 1; }
.blog-tools {
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-shrink: 0;
}
.blog-tools select {
  font: inherit;
  font-size: 11pt;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 8px;
  padding: .35rem .55rem;
}
.view-btn {
  width: 2rem;
  height: 2rem;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 8px;
  color: #444;
  display: grid;
  place-items: center;
}
.view-btn.is-on { background: #111; color: #fff; border-color: #111; }
.blog-kicker {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10pt;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8a8a8a;
  margin: 0 0 .45rem;
  font-weight: 700;
}
.blog-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14pt;
  font-weight: 700;
  margin: 0 0 .4rem;
  letter-spacing: 0;
  text-transform: none;
}
.blog-h1 { font-size: 22pt; margin-bottom: .35rem; }
.blog-desc,
.blog-lead,
.blog-excerpt,
.blog-body {
  font-family: Calibri, "Segoe UI", Candara, sans-serif;
  font-size: 11pt;
  line-height: 1.5;
  margin: 0 0 .55rem;
  color: #444;
}
.feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.feed.is-list { grid-template-columns: 1fr; }
.feed-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.feed.is-list .feed-card {
  flex-direction: row;
  align-items: stretch;
}
.feed-card-img {
  display: block;
  background: #ddd;
  flex: 0 0 auto;
}
.feed-card-img img {
  width: 100%;
  height: 168px;
  object-fit: cover;
}
.feed.is-list .feed-card-img { flex: 0 0 280px; }
.feed.is-list .feed-card-img img { height: 100%; min-height: 180px; }
.feed-card-body {
  padding: .85rem .95rem .8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.feed-card-body .blog-title { margin-bottom: .35rem; }
.feed-card-body .blog-title a:hover { text-decoration: underline; }
.feed-card-meta {
  margin-top: auto;
  padding-top: .65rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
  font-family: Calibri, "Segoe UI", sans-serif;
  font-size: 11pt;
  color: #888;
  border-top: 1px solid #f0f0f0;
}
.feed-card-meta .blog-more {
  margin-left: auto;
  color: #1d4ed8;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11pt;
  font-weight: 700;
}
.blog-more { font-family: Arial, Helvetica, sans-serif; font-size: 11pt; font-weight: 700; }
.blog-article { padding-bottom: 2rem; }
.social-inline {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: 0 0 1.1rem;
}
.social-inline .social-hero-title { margin: 0; font-size: 14pt; }
.cat-pills { display: flex; flex-wrap: wrap; gap: .4rem; margin: .7rem 0 0; }
.cat-pills a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10pt;
  font-weight: 700;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 999px;
  padding: .25rem .7rem;
  color: #444;
}
.cat-pills a.is-on { background: #111; color: #fff; border-color: #111; }
.burger {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background:
    linear-gradient(#fff,#fff) center 40%/1.2rem 1.5px no-repeat,
    linear-gradient(#fff,#fff) center 60%/1.2rem 1.5px no-repeat;
}

.btn-light, .btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: .7rem 1.4rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid transparent;
}
.btn-light { background: #fff; color: #000; }
.btn-dark { background: #000; color: #fff; }
.btn-light:hover, .btn-dark:hover { opacity: .9; }

/* Hero */
.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  color: #fff;
  background: #000;
  isolation: isolate;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--img) center 35% / cover no-repeat;
  mix-blend-mode: lighten;
  opacity: .92;
  transform: scale(1.02);
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 70% at 58% 38%, transparent 18%, rgba(0, 0, 0, .35) 55%, #000 100%);
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: .85;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #000 0%, transparent 28%, transparent 72%, #000 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .5) 0%, transparent 28%, transparent 48%, rgba(0, 0, 0, .72) 78%, #000 100%);
  pointer-events: none;
}
.hero-media.is-empty {
  mix-blend-mode: normal;
  opacity: 1;
  background: #000;
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: var(--wrap);
  margin: 0 auto 4rem;
  max-width: 34rem;
}
.hero-copy h1,
.hero-copy h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -.02em;
  max-width: 14ch;
}
.hero-copy p {
  margin: .9rem 0 1.4rem;
  max-width: 36ch;
  opacity: .95;
}

/* Blocks */
.block { padding: clamp(3.2rem, 7vw, 5rem) 0; }
.block-dark { background: #000; color: #fff; }
.block-sand { background: var(--sand); }
.block-head { margin-bottom: 1.6rem; max-width: 36rem; }
.block-head h2, .split h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -.02em;
}
.block-head p { margin: .55rem 0 0; color: var(--muted); }
.block-head.light p { color: rgba(255,255,255,.65); }
.center-head { text-align: center; margin-inline: auto; }

.brand-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.lead {
  margin: 0 auto 1.4rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.about-block {
  background: #fff;
}
.about-split {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(1.6rem, 4vw, 3.2rem);
  width: var(--wrap);
  margin-inline: auto;
}
.about-copy {
  flex: 1 1 50%;
  min-width: 0;
  order: 1;
}
.about-copy .brand-title {
  margin-bottom: 1.25rem;
}
.about-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 1rem;
  max-width: 48ch;
}
.about-copy .about-tag {
  color: #111;
  font-weight: 600;
  margin: 1.35rem 0 1.5rem;
  max-width: 36ch;
}
.social-icons--start {
  justify-content: flex-start;
}
.about-media {
  flex: 1 1 50%;
  min-width: 0;
  order: 2;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: #f3f3f3;
}
.about-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: 70% center;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  justify-content: center;
}
.social-icons a {
  min-width: 2.6rem;
  min-height: 2.6rem;
  padding: .55rem .7rem;
  border: 1px solid currentColor;
  display: inline-grid;
  place-items: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.social-icons--lg {
  justify-content: center;
  margin-bottom: 1.6rem;
  gap: .7rem;
}
.social-icons--lg a {
  min-width: auto;
  padding: .7rem 1.1rem;
  border-color: rgba(255,255,255,.35);
}
.social-icons--lg a:hover { background: #fff; color: #000; }

.social-hero {
  background: #0a0a0a;
  color: #fff;
  padding: clamp(1.6rem, 4vw, 2.6rem) 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.social-hero-inner { text-align: center; }
.social-hero-kicker {
  margin: 0 0 .35rem;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.social-hero-title {
  margin: 0 0 .45rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14pt;
  font-weight: 700;
  letter-spacing: 0;
}
.social-hero-lead {
  margin: 0 auto 1.35rem;
  max-width: 36rem;
  color: rgba(255,255,255,.78);
  font-size: .98rem;
  line-height: 1.5;
}
.social-icons--hero {
  justify-content: center;
  gap: .75rem;
}
.social-icons--hero a {
  min-width: 6.6rem;
  min-height: 4.6rem;
  padding: .7rem .85rem .65rem;
  border: 0;
  border-radius: 16px;
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(0,0,0,.28);
  transition: transform .15s ease, filter .15s ease;
}
.social-icons--hero a:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}
.social-icons--hero a[data-net="instagram"] {
  background: radial-gradient(circle at 28% 110%, #fccc63, #fbad50 18%, #e1306c 52%, #c13584 72%, #405de6);
}
.social-icons--hero a[data-net="tiktok"] {
  background: #111;
  box-shadow: 3px 0 0 #25f4ee, -3px 0 0 #fe2c55, 0 8px 22px rgba(0,0,0,.28);
}
.social-icons--hero a[data-net="facebook"] { background: #1877f2; }
.social-icons--hero a[data-net="youtube"] { background: #ff0000; }
.social-icons--hero a[data-net="whatsapp"] { background: #25d366; color: #073b1a; }
.social-icons--hero a span { font-weight: 700; }

.footer .social-icons a[data-net="tiktok"],
.social-icons--lg a[data-net="tiktok"] {
  color: #fff;
  border-color: #25f4ee;
}
.footer .social-icons a[data-net="instagram"] { color: #e1306c; border-color: #e1306c; }
.footer .social-icons a[data-net="facebook"] { color: #4b9bff; border-color: #4b9bff; }
.footer .social-icons a[data-net="youtube"] { color: #ff4d4d; border-color: #ff4d4d; }
.footer .social-icons a[data-net="whatsapp"] { color: #4ade80; border-color: #4ade80; }

.social-icons--start a[data-net="instagram"],
.social-icons--footer a[data-net="instagram"],
.social-icons--cita a[data-net="instagram"] { color: #c13584; border-color: #c13584; }
.social-icons--start a[data-net="tiktok"],
.social-icons--footer a[data-net="tiktok"],
.social-icons--cita a[data-net="tiktok"] { color: #111; border-color: #111; }
.social-icons--start a[data-net="facebook"],
.social-icons--footer a[data-net="facebook"],
.social-icons--cita a[data-net="facebook"] { color: #1877f2; border-color: #1877f2; }
.social-icons--start a[data-net="youtube"],
.social-icons--footer a[data-net="youtube"],
.social-icons--cita a[data-net="youtube"] { color: #e11d48; border-color: #e11d48; }
.social-icons--start a[data-net="whatsapp"],
.social-icons--footer a[data-net="whatsapp"],
.social-icons--cita a[data-net="whatsapp"] { color: #16a34a; border-color: #16a34a; }

/* Pills */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1.5rem;
}
.pill {
  border: 1px solid #bbb;
  background: #fff;
  border-radius: 999px;
  padding: .55rem 1rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #444;
}
.pill.is-on, .pill:hover {
  border-color: #000;
  color: #000;
}

/* Tratamientos: uno (o varios del filtro) con foto */
.treat-list {
  display: grid;
  gap: 1.6rem;
}
.treat-card {
  display: none;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center;
  border-top: 1px solid #000;
  padding-top: 1.4rem;
}
.treat-card.is-show { display: grid; }
.treat-photo {
  overflow: hidden;
  background: #eee;
  min-height: 280px;
}
.treat-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}
.treat-copy h3 {
  margin: 0 0 .45rem;
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.treat-copy .card-sub {
  color: #111;
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 .7rem;
}
.treat-copy p {
  color: var(--muted);
  margin: 0 0 .85rem;
  line-height: 1.65;
  max-width: 42ch;
}
.treat-copy .card-tag {
  color: #111;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 760px) {
  .treat-card.is-show { grid-template-columns: 1fr; }
  .treat-photo img { min-height: 240px; }
}

/* Horizontal rail like Backstage */
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: .4rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.card, .shot {
  scroll-snap-align: start;
  background: #fff;
}
.card img, .shot img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: #eee;
}
.card h3 {
  margin: .8rem 0 .25rem;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.card p { margin: 0; color: var(--muted); font-size: .9rem; }
.card-text {
  border-top: 1px solid #000;
  padding: 1.1rem 0 1.4rem;
  min-height: 220px;
}
.card-text .card-sub {
  color: #111;
  font-weight: 600;
  font-size: .92rem;
  margin: 0 0 .55rem;
}
.card-text p {
  line-height: 1.55;
  margin: 0 0 .75rem;
}
.card-text .card-tag {
  margin: 0;
  color: #111;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.price {
  margin: .55rem 0 0 !important;
  color: #111 !important;
  font-weight: 700;
  font-size: .95rem !important;
  letter-spacing: .02em;
}
.cms-body {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 48ch;
  margin-top: .9rem;
}
.cms-body.light { color: rgba(255,255,255,.78); }
.cms-body p { margin: 0 0 .85rem; }
.cms-body strong, .cms-body b { color: inherit; font-weight: 700; }
.about-copy .cms-body,
.about-copy .about-rich {
  max-width: 48ch;
  margin: 0 0 1rem;
  color: var(--muted);
}
.about-copy .cms-body p { margin: 0 0 1rem; }
.block-dark .cms-body h2,
.block-dark h2 { color: #fff; }
.shot {
  border: 0;
  padding: 0;
  overflow: hidden;
}

/* Videos */
.videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.video-id {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: .45rem;
  font-family: ui-monospace, Menlo, monospace;
}
.video iframe, .video video, .video-empty {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  background: #1a1a1a;
}
.video video.hover-video {
  object-fit: cover;
  cursor: pointer;
  transition: opacity .35s ease, transform .5s ease;
}
.video video.hover-video:hover {
  opacity: 1;
  transform: scale(1.01);
}
.video-empty {
  display: grid;
  place-content: center;
  text-align: center;
  gap: .35rem;
  border: 1px dashed rgba(255,255,255,.25);
}
.video-empty strong {
  font-family: ui-monospace, Menlo, monospace;
  letter-spacing: .08em;
}
.video-empty span { color: rgba(255,255,255,.55); font-size: .85rem; }
.video h3 {
  margin-top: .7rem;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
}
code {
  font-family: ui-monospace, Menlo, monospace;
  font-size: .85em;
  background: rgba(255,255,255,.1);
  padding: .1em .35em;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.split p { color: var(--muted); margin: 1rem 0 1.4rem; max-width: 40ch; }
.split-media {
  min-height: 420px;
  background: #ddd;
  overflow: hidden;
}
.split-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.placeholder {
  min-height: 420px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 600;
}

/* Cita */
.cita-grid { max-width: 520px; }
.cita-card {
  border: 1px solid var(--line);
  padding: 1.4rem;
  display: grid;
  gap: .9rem;
  background: #fff;
}
.cita-card > div {
  display: grid;
  gap: .2rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--line);
}
.cita-card span {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}
.cita-card a { font-weight: 600; }
.cita-card em { font-style: normal; }
.cita-card .btn-dark { justify-self: start; margin-top: .2rem; }

/* IG grid */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
}
.ig-grid a {
  aspect-ratio: 1;
  overflow: hidden;
  background: #222;
}
.ig-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.ig-grid a:hover img { transform: scale(1.04); }

/* Footer */
.footer {
  background: #000;
  color: rgba(255,255,255,.7);
  padding: 2.2rem 0 1.2rem;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr .8fr;
  gap: 1.5rem;
}
.footer h4 {
  color: #fff;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}
.footer a, .footer p {
  display: block;
  margin: 0 0 .35rem;
  font-size: .9rem;
  color: rgba(255,255,255,.65);
}
.footer a:hover { color: #fff; }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .82rem;
}

.lb {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0,0,0,.92);
  display: grid;
  place-items: center;
  padding: 1.5rem;
}
.lb[hidden] { display: none; }
.lb img {
  max-width: min(92vw, 1000px);
  max-height: 80vh;
  object-fit: contain;
}
.lb-x {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2rem;
}

@media (max-width: 960px) {
  .videos, .split, .footer-grid, .ig-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .burger { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #000;
    padding: .5rem 1.2rem 1.2rem;
  }
  .nav.open { display: flex; }
  .nav a {
    padding: .85rem 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .videos, .split, .footer-grid, .ig-grid { grid-template-columns: 1fr; }
  .logo-box { width: 58px; height: 58px; }
  .blog-search { max-width: none; flex: 1 1 140px; }
  .feed, .feed.is-list { grid-template-columns: 1fr; }
  .feed.is-list .feed-card { flex-direction: column; }
  .feed.is-list .feed-card-img { flex: 0 0 auto; }
  .blog-head { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .social-icons--hero a { min-width: 5.2rem; min-height: 4.2rem; padding: .55rem .5rem; }
  .split-media, .split-media img, .placeholder { min-height: 280px; }
  .hero-copy { margin-bottom: 3rem; }
  .blog-split { flex-direction: column; }
  .blog-split-copy { order: 1; width: 100%; }
  .blog-split-photo { order: 2; width: 100%; flex: 1 1 auto; }
  .blog-split-photo img { height: 180px; }
}

@media (max-width: 600px) {
  .about-split {
    flex-direction: column;
    width: var(--wrap);
  }
  .about-copy { order: 1; width: 100%; }
  .about-media { order: 2; width: 100%; min-height: 240px; }
  .about-media img { min-height: 240px; }
}
