/* ==========================================================================
   El Club Guardería Canina — tokens
   ========================================================================== */

@font-face {
  font-family: "Moranga";
  src: url("fonts/Moranga-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Moranga";
  src: url("fonts/Moranga-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
  --sage: #98b080;
  --sage-hover: #88a06f;
  --olive-dark: #2f3a16;
  --olive-mid: #47581f;
  --cream: #faf9f3;
  --cream-alt: #e6ead9;
  --gold: #e0c088;
  --text-muted: #6b7a4a;
  --border-soft: rgba(71, 88, 31, 0.16);

  --font-display: "Moranga", Georgia, serif;
  --font-body: "Montserrat", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--olive-dark);
  font-family: var(--font-body);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--olive-mid);
}
a:hover {
  color: #2f3a16;
}

img {
  max-width: 100%;
}

::selection {
  background: var(--sage);
  color: #2f3a16;
}

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 56px);
  padding-right: clamp(20px, 4vw, 56px);
}

.eyebrow {
  width: 44px;
  height: 4px;
  background: var(--sage);
}

.section {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 32px);
  padding-top: clamp(48px, 7vw, 104px);
}

.section-tight {
  padding-top: clamp(44px, 6vw, 92px);
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.06;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px, 1.7vw, 18px);
  transition: background 200ms;
  border: none;
  cursor: pointer;
}
.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--sage);
  color: var(--olive-dark);
}
.btn-primary:hover {
  background: var(--sage-hover);
  color: var(--olive-dark);
}

.btn-outline {
  border: 2px solid var(--sage);
  color: var(--olive-mid);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(152, 176, 128, 0.16);
  color: var(--olive-mid);
}

.btn-outline-light {
  border: 2px solid rgba(152, 176, 128, 0.8);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  color: #fff;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.btn-dark {
  background: var(--olive-dark);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--olive-mid);
  color: var(--cream);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 8;
  background: rgba(250, 249, 243, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-soft);
}

.site-header .wrap {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-link img {
  height: clamp(40px, 5vw, 54px);
  width: auto;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 26px);
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--olive-mid);
  white-space: nowrap;
}

.header-nav .btn {
  padding: 10px clamp(14px, 2vw, 22px);
  font-size: clamp(13px, 1.5vw, 16px);
  white-space: nowrap;
}
.header-nav .btn i {
  font-size: 18px;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: clamp(560px, 74svh, 780px);
  display: flex;
  align-items: flex-end;
  background: var(--olive-dark);
}

.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 40%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 32, 20, 0.5) 0%,
    rgba(28, 32, 20, 0.15) 40%,
    rgba(28, 32, 20, 0.86) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 90px) clamp(20px, 4vw, 56px) clamp(36px, 5vw, 72px);
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 22px);
  max-width: min(100%, 720px);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  color: #fff;
  font-weight: 700;
  font-size: clamp(11.5px, 1.2vw, 13.5px);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 6.4vw, 76px);
  line-height: 1.03;
  color: #fff;
  text-wrap: pretty;
}

.hero p {
  margin: 0;
  font-size: clamp(14.5px, 1.7vw, 19px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  max-width: 52ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.hero-ctas .btn {
  flex: 1 1 240px;
}
.hero-ctas .btn-outline-light {
  flex: 1 1 200px;
}

/* ==========================================================================
   Intro / feature cards
   ========================================================================== */

.intro-head {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 56px);
  align-items: flex-start;
}

.intro-head .heading-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.intro-head p {
  flex: 1 1 320px;
  margin: 0;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: var(--olive-mid);
  max-width: 62ch;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: clamp(12px, 1.6vw, 20px);
}

.card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card i {
  font-size: 30px;
  color: var(--sage);
}

.card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
}

.card-body {
  font-size: 14px;
  line-height: 1.5;
  color: var(--olive-mid);
}

/* ==========================================================================
   Location banner
   ========================================================================== */

.location-banner {
  margin-top: clamp(40px, 6vw, 88px);
  position: relative;
}

.location-banner img {
  display: block;
  width: 100%;
  height: clamp(220px, 34vw, 460px);
  object-fit: cover;
}

.location-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(28, 32, 20, 0) 40%, rgba(28, 32, 20, 0.7) 100%);
}

.location-banner-caption {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
}
.location-banner-caption .wrap {
  padding-bottom: clamp(18px, 3vw, 34px);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(19px, 2.4vw, 30px);
  color: #fff;
  line-height: 1.15;
}

/* ==========================================================================
   Servicios
   ========================================================================== */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(12px, 1.6vw, 20px);
}

.service-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: clamp(20px, 2.4vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(47, 58, 22, 0.1);
}

.service-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-card-head i {
  font-size: 28px;
  color: var(--sage);
}
.service-card-head span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
}

.service-card-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--olive-mid);
}

.service-card.plain {
  border: 1px solid rgba(71, 88, 31, 0.3);
  padding: clamp(20px, 2.4vw, 28px);
  gap: 8px;
  box-shadow: none;
}
.service-card.plain .card-title {
  font-size: clamp(19px, 2vw, 24px);
}
.service-card.plain .card-body {
  font-size: 14.5px;
}

/* ==========================================================================
   Tarifas
   ========================================================================== */

.tarifas {
  margin-top: clamp(48px, 7vw, 104px);
  background: var(--olive-dark);
}

.tarifas .wrap {
  padding-top: clamp(44px, 6vw, 92px);
  padding-bottom: clamp(44px, 6vw, 92px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 64px);
}

.tarifas-intro {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tarifas-intro h2 {
  color: #fff;
}
.tarifas-intro p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 44ch;
}
.tarifas-intro .btn {
  align-self: flex-start;
}

.tarifas-details {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-list {
  display: flex;
  flex-direction: column;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(152, 176, 128, 0.32);
}
.price-row-label {
  color: #fff;
  font-size: clamp(14.5px, 1.6vw, 17px);
  font-weight: 600;
}
.price-row-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--sage);
  white-space: nowrap;
}

.payment-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(152, 176, 128, 0.14);
}
.payment-box-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: #fff;
}
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
}

/* ==========================================================================
   Cómo funciona
   ========================================================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.step {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--olive-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
}

.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
}

.step-body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--olive-mid);
}

/* ==========================================================================
   Requisitos
   ========================================================================== */

.requisitos-box {
  background: url("img/papel-sage.jpg") center/cover, var(--cream-alt);
  border-radius: 24px;
  padding: clamp(22px, 3vw, 40px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(12px, 1.8vw, 22px);
}

.requisito {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: var(--olive-dark);
}
.requisito i {
  color: var(--olive-mid);
  font-size: 19px;
  margin-top: 1px;
}

/* ==========================================================================
   Equipo
   ========================================================================== */

.equipo {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 56px);
  align-items: flex-start;
}

.equipo-intro {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.equipo-intro p {
  margin: 0;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: var(--olive-mid);
  max-width: 48ch;
}
.equipo-names {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--olive-mid);
}
.equipo-names strong {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--olive-dark);
}

.equipo img {
  flex: 1 1 340px;
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  border-radius: 24px;
}

/* ==========================================================================
   Nina y Coco
   ========================================================================== */

.mascotas-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: clamp(22px, 3vw, 40px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
  box-shadow: 0 6px 18px rgba(47, 58, 22, 0.1);
}

.mascotas-intro {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mascotas-intro h2 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}
.mascotas-intro p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--olive-mid);
  max-width: 46ch;
}

.mascotas-grid {
  flex: 1 1 280px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
}

.mascota {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.mascota img {
  width: clamp(110px, 12vw, 150px);
  height: clamp(110px, 12vw, 150px);
  border-radius: 999px;
  object-fit: cover;
}

.mascota-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.mascota-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   Galería
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: clamp(10px, 1.4vw, 16px);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
  cursor: zoom-in;
  display: block;
  border: none;
  padding: 0;
  background: none;
}

.gallery-hint {
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================================================
   Testimonios
   ========================================================================== */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: clamp(12px, 1.6vw, 20px);
}

.testimonial {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: clamp(20px, 2.4vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 16px;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--olive-dark);
}

.testimonial-author {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 700;
}

/* ==========================================================================
   Hinchas
   ========================================================================== */

.hinchas {
  margin-top: clamp(48px, 7vw, 104px);
  background: linear-gradient(180deg, var(--sage) 0%, #7d9668 100%);
}

.hinchas .wrap {
  padding-top: clamp(44px, 6vw, 92px);
  padding-bottom: clamp(44px, 6vw, 92px);
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.4vw, 28px);
  align-items: center;
}

.hinchas img.hinchas-art {
  width: clamp(120px, 14vw, 180px);
  height: auto;
}

.hinchas h2 {
  color: var(--olive-dark);
  text-align: center;
}

.hinchas-desc {
  margin: 0;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: var(--olive-dark);
  text-align: center;
  max-width: 52ch;
}

.hinchas-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 2vw, 22px);
  color: var(--olive-dark);
}

.tier-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: clamp(12px, 1.6vw, 20px);
  align-items: stretch;
}

.tier {
  border-radius: 22px;
  padding: clamp(20px, 2.4vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tier-dark {
  background: var(--olive-dark);
}
.tier-light {
  background: var(--cream);
}
.tier-outline {
  border: 1px solid rgba(47, 58, 22, 0.45);
  padding: clamp(20px, 2.4vw, 28px);
  gap: 8px;
}

.tier-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.tier-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
}

.tier-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.2;
}

.tier-body {
  font-size: 14px;
  line-height: 1.55;
}

.tier-price {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 10px;
}
.tier-price-main {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 3vw, 34px);
}
.tier-price-alt {
  font-size: 13.5px;
}
.tier-price-alt strong {
  font-family: var(--font-display);
  font-size: 15px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-layout {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 56px);
  align-items: flex-start;
}

.faq-intro {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-intro p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--olive-mid);
  max-width: 40ch;
}

.faq-list {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 18px 20px;
  cursor: pointer;
}

.faq-item-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.faq-question {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.25;
  color: var(--olive-dark);
}

.faq-item-head i {
  color: var(--sage);
  font-size: 19px;
  flex-shrink: 0;
}

.faq-answer {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--olive-mid);
  padding-top: 10px;
  max-width: 66ch;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ==========================================================================
   Ubicación
   ========================================================================== */

.ubicacion {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.ubicacion-intro {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ubicacion-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(19px, 2.2vw, 26px);
}
.ubicacion-desc {
  font-size: 15px;
  color: var(--olive-mid);
  line-height: 1.6;
  max-width: 46ch;
}
.ubicacion-intro .btn {
  align-self: flex-start;
}

.ubicacion img {
  flex: 1 1 340px;
  display: block;
  width: 100%;
  max-width: 620px;
  height: clamp(200px, 28vw, 380px);
  object-fit: cover;
  border-radius: 24px;
}

/* ==========================================================================
   CTA final
   ========================================================================== */

.cta-final {
  margin-top: clamp(48px, 7vw, 104px);
  position: relative;
  min-height: clamp(430px, 52svh, 620px);
  display: flex;
  align-items: flex-end;
}

.cta-final img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-final::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(28, 32, 20, 0.3) 0%, rgba(28, 32, 20, 0.88) 76%);
}

.cta-final-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 88px) clamp(20px, 4vw, 56px) clamp(36px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}

.cta-final h2 {
  color: #fff;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.05;
  max-width: 28ch;
}

.cta-final p {
  margin: 0;
  font-size: clamp(14.5px, 1.7vw, 19px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 46ch;
}

.cta-final .btn {
  font-size: clamp(17px, 2vw, 21px);
  padding: 16px 32px;
}
.cta-final .btn i {
  font-size: 22px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--olive-dark);
}

.site-footer .wrap {
  padding-top: clamp(32px, 4vw, 60px);
  padding-bottom: clamp(32px, 4vw, 60px);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.site-footer img {
  height: clamp(64px, 7vw, 92px);
  width: auto;
}

.footer-address {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 2px rgba(152, 176, 128, 0.7);
  color: #fff;
  font-size: 21px;
}

.footer-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(19px, 2.2vw, 26px);
  color: var(--sage);
}

/* ==========================================================================
   Mobile sticky CTA
   ========================================================================== */

.mobile-cta {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 20px 18px;
  background: linear-gradient(180deg, rgba(47, 58, 22, 0) 0%, rgba(47, 58, 22, 0.92) 46%);
  z-index: 5;
  display: none;
}
.mobile-cta .btn {
  width: 100%;
  box-shadow: 0 6px 18px rgba(47, 58, 22, 0.3);
}

@media (max-width: 640px) {
  .mobile-cta {
    display: flex;
  }
}

/* ==========================================================================
   Lightbox
   ========================================================================== */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28, 32, 20, 0.86);
  backdrop-filter: blur(3px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  z-index: 20;
  cursor: zoom-out;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 100%;
  max-height: 86vh;
  border-radius: 22px;
  display: block;
}
