:root {
  /* Identidad de marca: rojo institucional, oro, burdeos/morado (logo CBA San José) */
  --burgundy: #4a1522;
  --deep: #2d121c;
  --brand: #b31927;
  --brand-dark: #8f1420;
  --brand-soft: #f7e8ea;
  --gold: #c9a24a;
  --gold-dark: #8f6f24;
  --gold-soft: #f5efd8;
  --violet: #3d2438;
  --bg: #fcf9f5;
  --bg-tint: #f3ebe3;
  --surface: #ffffff;
  --ink: #1f1619;
  --muted: #5e5358;
  --line: #e9ded8;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow-sm: 0 1px 2px rgba(29, 12, 18, 0.06);
  --shadow-md: 0 18px 50px rgba(29, 12, 18, 0.1);
  --shadow-glow: 0 0 0 1px color-mix(in srgb, var(--gold) 35%, transparent);
  --font-body: "Source Sans 3", system-ui, -apple-system, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --space-shell: clamp(1.25rem, 4vw, 2.5rem);
  --max: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__figure img {
    transform: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--burgundy);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--brand);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  z-index: 1000;
  padding: 0.5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 600;
}

.skip-link:focus {
  left: 0.75rem;
}

.shell {
  width: min(var(--max), 100% - var(--space-shell) * 2);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header--scrolled {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.65rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: inherit;
  text-decoration: none;
}

.logo:hover {
  color: inherit;
}

.logo__img {
  width: 72px;
  height: auto;
  border-radius: 14px;
  box-shadow: var(--shadow-sm), var(--shadow-glow);
  background: var(--surface);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--deep);
}

.logo__tag {
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 480px) {
  .logo__text {
    display: none;
  }
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle__bar {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--deep);
  border-radius: 2px;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.nav-toggle__bar:first-of-type {
  top: 16px;
}

.nav-toggle__bar:nth-of-type(2) {
  top: 22px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:first-of-type {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-of-type(2) {
  top: 21px;
  transform: rotate(-45deg);
}

.nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  padding: 0.35rem 0;
}

.nav__list a:hover {
  color: var(--brand);
}

.nav__blog {
  padding: 0.35rem 0.85rem !important;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--gold) 55%, var(--line));
  background: linear-gradient(180deg, var(--surface), var(--gold-soft));
}

@media (max-width: 880px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 72px;
    padding: 1rem var(--space-shell) 1.25rem;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav__list a {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav__list li:last-child a {
    border-bottom: 0;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(2.25rem, 5vw, 4rem) 0 clamp(2.5rem, 6vw, 4.25rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 0% 0%, color-mix(in srgb, var(--brand-soft) 95%, transparent), transparent 58%),
    radial-gradient(700px 380px at 100% 10%, color-mix(in srgb, var(--gold-soft) 90%, transparent), transparent 55%),
    radial-gradient(600px 320px at 50% 100%, color-mix(in srgb, var(--burgundy) 12%, transparent), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-tint));
  z-index: 0;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}

.hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.45rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--deep);
}

.hero__lead {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 40ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.65rem;
}

.hero__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero__facts li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fact__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--gold) 40%, var(--line));
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
}

.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}

.hero__figure {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: var(--deep);
}

.hero__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, color-mix(in srgb, var(--deep) 55%, transparent));
}

.hero__figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.hero__figure:hover img {
  transform: scale(1.06);
}

.hero__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: 0;
  padding: 1rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero__card {
  padding: 1.2rem 1.35rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  align-self: flex-start;
}

.hero__card-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.hero__card-text {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--deep);
}

.hero__card-note {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Franja credibilidad */
.trust-strip {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, var(--surface), var(--gold-soft));
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-block: 1.1rem;
}

@media (max-width: 800px) {
  .trust-strip__inner {
    grid-template-columns: 1fr;
  }
}

.trust-strip__item {
  padding: 0.35rem 0;
  border-right: 1px solid var(--line);
}

.trust-strip__item:last-child {
  border-right: 0;
}

@media (max-width: 800px) {
  .trust-strip__item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.75rem;
  }

  .trust-strip__item:last-child {
    border-bottom: 0;
    padding-bottom: 0.35rem;
  }
}

.trust-strip__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.25rem;
}

.trust-strip__value {
  font-weight: 600;
  color: var(--deep);
  font-size: 0.95rem;
  line-height: 1.35;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.88rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border-color: color-mix(in srgb, var(--brand) 80%, #000);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--brand) 35%, transparent);
}

.btn--primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}

.btn--ghost {
  background: var(--surface);
  border-color: var(--line);
  color: var(--deep);
}

.btn--ghost:hover {
  border-color: color-mix(in srgb, var(--gold) 50%, var(--line));
  color: var(--burgundy);
}

.btn--light {
  background: #fff;
  color: var(--burgundy);
  border-color: #fff;
}

.btn--light:hover {
  background: var(--gold-soft);
  color: var(--deep);
  border-color: var(--gold-soft);
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: color-mix(in srgb, #fff 60%, transparent);
}

.btn--outline-light:hover {
  background: color-mix(in srgb, #fff 14%, transparent);
  color: #fff;
}

.btn--block {
  width: 100%;
}

/* Sections */
.section {
  padding: clamp(3rem, 6vw, 4.75rem) 0;
}

.section--tint {
  background: var(--bg-tint);
  border-block: 1px solid color-mix(in srgb, var(--line) 75%, transparent);
}

.section__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section__head {
  max-width: 64ch;
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.section__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--deep);
}

.section__intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section__intro--narrow {
  max-width: 54ch;
  margin-inline: auto;
}

.enfoque-media {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: stretch;
}

@media (max-width: 880px) {
  .enfoque-media {
    grid-template-columns: 1fr;
  }
}

.enfoque-media__figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.enfoque-media__figure img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.enfoque-media__quote {
  margin: 0;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--surface), var(--brand-soft));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.enfoque-media__quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.45;
  color: var(--burgundy);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 800px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}

.pillar {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.pillar__title {
  margin: 0 0 0.5rem;
  font-size: 1.22rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--deep);
}

.pillar__text {
  margin: 0;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

@media (max-width: 700px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card--media {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--deep);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--deep);
}

.card__text {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

@media (max-width: 880px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.checklist {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  color: var(--muted);
}

.checklist li {
  padding-left: 1.75rem;
  position: relative;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--gold), color-mix(in srgb, var(--gold) 70%, var(--brand)));
  opacity: 0.95;
}

.install-shots {
  display: grid;
  gap: 1rem;
}

.install-shots__fig {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.install-shots__fig img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.install-shots__fig figcaption {
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-soft);
  border-top: 1px solid var(--line);
}

/* CTA con foto (referencia visual del sitio actual) */
.cta-band {
  position: relative;
  padding: clamp(2.75rem, 6vw, 4rem) 0;
  color: #fdfcfa;
  overflow: hidden;
}

.cta-band--photo {
  background-color: var(--deep);
  background-image: linear-gradient(
      105deg,
      color-mix(in srgb, var(--deep) 92%, transparent) 0%,
      color-mix(in srgb, var(--burgundy) 88%, transparent) 45%,
      color-mix(in srgb, var(--violet) 75%, transparent) 100%
    ),
    var(--cta-photo);
  background-size: cover;
  background-position: center;
}

.cta-band__overlay {
  display: none;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band__copy {
  max-width: 58ch;
}

.cta-band__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  font-weight: 700;
}

.cta-band__text {
  margin: 0;
  color: color-mix(in srgb, #fff 84%, transparent);
  font-size: 1.05rem;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Carrusel galería + redes flotantes + revelado al scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.carousel {
  margin-top: 0.5rem;
}

.carousel + .carousel {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.carousel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.carousel__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--deep);
}

.carousel__subtitle {
  margin: 0.35rem 0 0;
  max-width: 46ch;
  color: var(--muted);
  font-size: 0.98rem;
}

.carousel__toolbar {
  display: flex;
  gap: 0.5rem;
}

.carousel__iconbtn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--deep);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.carousel__iconbtn:hover {
  border-color: color-mix(in srgb, var(--gold) 55%, var(--line));
  background: var(--gold-soft);
}

.carousel__iconbtn:active {
  transform: scale(0.96);
}

.carousel__viewport {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--deep);
  box-shadow: var(--shadow-md);
}

.carousel__track {
  display: flex;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .carousel__track {
    transition: none;
  }
}

.carousel__slide {
  position: relative;
  flex: 0 0 100%;
  margin: 0;
}

.carousel__slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

@media (max-width: 640px) {
  .carousel__slide img {
    aspect-ratio: 4 / 3;
  }
}

.carousel__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(0deg, color-mix(in srgb, var(--deep) 92%, transparent), transparent);
}

.carousel__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 0.85rem;
}

.carousel__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: color-mix(in srgb, var(--muted) 45%, var(--line));
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel__dot.is-active {
  background: linear-gradient(135deg, var(--brand), var(--gold));
  transform: scale(1.25);
}

.carousel__dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.social-dock {
  position: fixed;
  right: max(0.75rem, env(safe-area-inset-right));
  bottom: max(0.85rem, env(safe-area-inset-bottom));
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-end;
}

.social-dock__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-dock__link:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.social-dock__link svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.social-dock__link--wa {
  background: linear-gradient(145deg, #25d366, #128c7e);
}

.social-dock__link--fb {
  background: linear-gradient(145deg, #1877f2, #0d5dbf);
}

.social-dock__link--ig {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  color: #fff;
}

@media (prefers-reduced-motion: no-preference) {
  .social-dock__link--wa {
    animation: wa-pulse 2.8s ease-in-out infinite;
  }
}

@keyframes wa-pulse {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18), 0 0 0 0 color-mix(in srgb, #25d366 45%, transparent);
  }
  55% {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18), 0 0 0 10px color-mix(in srgb, #25d366 0%, transparent);
  }
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.15rem;
}

.contact-social__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--gold-soft) 55%, var(--surface));
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  color: var(--deep);
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.contact-social__link:hover {
  border-color: color-mix(in srgb, var(--gold) 55%, var(--line));
  color: var(--burgundy);
}

.contact-social__link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: color-mix(in srgb, #fff 10%, transparent);
  border: 1px solid color-mix(in srgb, #fff 22%, transparent);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.footer-social__link:hover {
  background: color-mix(in srgb, #fff 18%, transparent);
  transform: translateY(-1px);
}

.footer-social__link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-social__link--fb {
  background: linear-gradient(145deg, #1877f2, #0d5dbf);
}

.footer-social__link--ig {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.footer-social__link--wa {
  background: linear-gradient(145deg, #25d366, #128c7e);
}

.site-footer__row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid color-mix(in srgb, #fff 14%, transparent);
}

.site-footer__follow {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: color-mix(in srgb, #fff 72%, transparent);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--surface);
}

.map {
  width: 100%;
  height: min(420px, 55vh);
  border: 0;
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.address {
  font-style: normal;
  margin-top: 1.25rem;
  display: grid;
  gap: 1rem;
  color: var(--muted);
}

.address strong {
  color: var(--deep);
}

.contact-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.contact-card__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep);
}

.contact-card__hint {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.site-footer {
  padding: 2.25rem 0 max(3rem, calc(2.75rem + env(safe-area-inset-bottom)));
  background: linear-gradient(180deg, var(--deep), #1a0c14);
  color: color-mix(in srgb, #fff 88%, transparent);
  border-top: 4px solid var(--gold);
}

.site-footer .shell {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-footer a {
  color: #fff;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-footer__logo {
  width: 56px;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.site-footer__name {
  margin: 0 0 0.25rem;
  font-weight: 700;
  color: #fff;
}

.site-footer__meta {
  margin: 0;
  color: color-mix(in srgb, #fff 72%, transparent);
  font-size: 0.95rem;
}

.site-footer__copy {
  margin: 0;
  color: color-mix(in srgb, #fff 58%, transparent);
  font-size: 0.9rem;
}
