/* ========================================
   Medical Pro — Demo InPulsa (v3 Editorial Movement)
   Palette: Cream / Ink / Terracotta / Forest / Sand
   Inspired by Kinfolk magazine + boutique clinic aesthetic
   Fonts: Fraunces (display) + DM Sans (body)
   ======================================== */

/* ─── Design Tokens ─── */
:root {
  --cream:       #F5F1EA;
  --ink:         #1A1A1A;
  --terracotta:  #C25A3A;
  --terra-dark:  #9E4228;
  --forest:      #0F4C3A;
  --sand:        #E8DDD0;
  --sand-dark:   #D4C5B3;
  --white:       #FFFFFF;
  --ink-soft:    #5C5147;
  --ink-muted:   #9C8E82;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: clip; /* no crea scroll container, fix sticky header */
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--terracotta); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--terra-dark); }
p { margin: 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── Demo nav ─── */
.demo-nav {
  background: var(--ink);
  padding: 9px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.01em;
}

.demo-nav a {
  color: rgba(255,255,255,0.60);
  transition: color 0.15s;
}

.demo-nav a:hover { color: rgba(255,255,255,0.95); }

.demo-tag {
  margin-left: auto;
  background: var(--terracotta);
  color: #fff;
  padding: 3px 10px;
  border-radius: 0;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
}

/* ─── Header ─── */
.header {
  background: rgba(245,241,234,0.97);
  border-bottom: 1px solid var(--sand-dark);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);

/* Fixed header compensation */
main { padding-top: 68px; }

  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 68px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 36px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--ink-soft);
  font-weight: 400;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--ink); }

.header-ctas {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  border: 1px solid var(--sand-dark);
  color: var(--ink-soft);
  transition: border-color 0.15s, color 0.15s;
}

.btn-phone:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
  background: #25d366;
  color: #fff;
  transition: background 0.15s;
}

.btn-wa:hover {
  background: #1ebd5b;
  color: #fff;
}

/* ─── Hero (asymmetric editorial) ─── */
.hero {
  background: var(--cream);
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: calc(100vh - 68px - 40px);
  max-height: 860px;
  overflow: hidden;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 48px;
}

.hero-kicker {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: clamp(58px, 6.5vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 28px;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 420px;
  margin: 0 0 44px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terracotta);
  color: #fff;
  padding: 16px 32px;
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}

.cta-primary:hover {
  background: var(--terra-dark);
  color: #fff;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--sand-dark);
  color: var(--ink-soft);
  padding: 15px 28px;
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s;
}

.cta-secondary:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.hero-photo-col {
  position: relative;
  overflow: hidden;
}

.hero-photo-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* ─── Stats strip ─── */
.stats-strip {
  background: var(--forest);
  padding: 0;
}

.stats-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 52px;
  border-right: 1px solid rgba(255,255,255,0.08);
  flex: 1;
  text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: 42px;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-star {
  font-size: 0.55em;
  vertical-align: middle;
  margin-left: 3px;
  color: var(--sand);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── Section commons ─── */
.section-kicker {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 20px;
}

.section-title em {
  font-style: italic;
}

.section-title.centered { text-align: center; }

.section-body {
  font-family: var(--font-body);
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.8;
  font-weight: 300;
}

/* ─── About ─── */
.about {
  padding: 112px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {}

.about-text .section-body { margin-bottom: 18px; }
.about-text .section-body strong { color: var(--ink); font-weight: 500; }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--sand-dark);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--sand-dark);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
}

.feature-dash {
  width: 20px;
  height: 1px;
  background: var(--sand-dark);
  flex-shrink: 0;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  overflow: hidden;
  height: 560px;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* ─── Services (editorial index) ─── */
.services {
  padding: 112px 0;
  background: var(--white);
}

.services-header {
  margin-bottom: 64px;
}

.services-header .section-kicker { display: flex; align-items: center; }

.services-index-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}

.service-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 20px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--sand-dark);
  cursor: default;
  transition: transform 0.25s ease;
}

.service-row:hover {
  transform: translateX(8px);
}

.service-row:hover .service-num {
  color: var(--terra-dark);
}

.service-num {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: 13px;
  font-weight: 400;
  color: var(--terracotta);
  padding-top: 4px;
  letter-spacing: 0.04em;
  transition: color 0.25s;
}

.service-content {}

.service-name {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 8px;
}

.service-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ─── Especialidades ─── */
.especialidades {
  padding: 80px 0;
  background: var(--sand);
}

.espec-header {
  text-align: center;
  margin-bottom: 48px;
}

.espec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}

.espec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  border: 1px solid var(--sand-dark);
  color: var(--ink-soft);
  background: var(--white);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: default;
}

.espec-tag:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  background: var(--white);
}

.espec-tag.highlighted {
  background: var(--forest);
  border-color: var(--forest);
  color: rgba(255,255,255,0.85);
}

.espec-tag.highlighted:hover {
  background: #0a3329;
  border-color: #0a3329;
  color: rgba(255,255,255,0.95);
}

.espec-icon-tag {
  font-size: 13px;
  opacity: 0.7;
}

/* ─── Booking widget ─── */
.booking {
  background: var(--cream);
  display: grid;
  grid-template-columns: 42fr 58fr;
  min-height: 600px;
  position: relative;
}

.booking-col-text {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px 64px 88px 48px;
  border-right: 1px solid var(--sand-dark);
  position: relative;
}

.booking-deco-num {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: 120px;
  font-weight: 200;
  color: var(--sand-dark);
  line-height: 1;
  margin-bottom: -24px;
  letter-spacing: -0.04em;
  user-select: none;
}

.booking-col-text .section-kicker {
  margin-bottom: 20px;
}

.booking-title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: clamp(52px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 28px;
}

.booking-title em {
  font-style: italic;
  font-weight: 400;
}

.booking-body {
  max-width: 340px;
  margin-bottom: 36px;
}

.booking-trust {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--sand-dark);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--sand-dark);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
}

.trust-dash {
  width: 20px;
  height: 1px;
  background: var(--sand-dark);
  flex-shrink: 0;
}

.booking-col-widget {
  background: #E8DDD0;
  padding: 56px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* Limitar ancho del widget para que el calendario no se expanda demasiado */
.booking-col-widget inpulsa-healthcare {
  max-width: 480px;
  width: 100%;
}

inpulsa-healthcare {
  /* Colores — paleta editorial Medicalpro */
  --inpulsa-primary:       #C25A3A;   /* terracotta — botones, pasos activos */
  --inpulsa-primary-hover: #9E4228;
  --inpulsa-primary-light: rgba(194,90,58,0.10); /* fondo hover días calendario */
  --inpulsa-secondary:     #5C5147;   /* ink-soft — texto secundario */
  --inpulsa-success:       #0F4C3A;   /* forest — confirmación */
  --inpulsa-error:         #9E2A2A;
  --inpulsa-weekend:       #C25A3A;   /* terracotta en fines de semana */

  /* Fondos y superficies */
  --inpulsa-bg:            #FFFFFF;   /* blanco — widget como tarjeta sobre la columna sand (contraste calendario) */

  /* Tipografía */
  --inpulsa-text:          #1A1A1A;   /* ink */
  --inpulsa-text-light:    #5C5147;   /* ink-soft */
  --inpulsa-font-family:   'DM Sans', system-ui, sans-serif;
  --inpulsa-font-display:  'Fraunces', Georgia, serif;
  --inpulsa-font-size:     14.5px;

  /* Bordes */
  --inpulsa-border:        #D4C5B3;   /* sand-dark */
  --inpulsa-border-radius: 0px;       /* cuadrado, editorial */
  --inpulsa-calendar-day-radius: 0px; /* dias de calendario cuadrados (editorial) */

  /* Espaciado y ancho */
  --inpulsa-spacing:       20px;
  --inpulsa-max-width:     100%;

  display: block;
  width: 100%;
}

/* ─── Equipo ─── */
.equipo {
  padding: 112px 0;
  background: var(--cream);
}

.equipo-header {
  text-align: center;
  margin-bottom: 64px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--sand-dark);
  transition: border-color 0.25s;
}

.team-card:hover {
  border-color: var(--ink-muted);
}

.team-photo-wrap {
  overflow: hidden;
}

.team-photo {
  height: 320px;
  background-size: cover;
  background-position: center top;
  transition: transform 0.5s ease;
}

.team-card:hover .team-photo {
  transform: scale(1.03);
}

.team-body {
  padding: 20px 20px 24px;
}

.team-card h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: 20px;
  font-weight: 300;
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.team-role {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-muted);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.team-spec {
  display: inline-block;
  border: 1px solid var(--sand-dark);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 400;
  padding: 4px 10px;
  border-radius: 0;
  letter-spacing: 0.02em;
}

/* ─── Marquee testimonios ─── */
.marquee-band {
  background: var(--terracotta);
  padding: 20px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee-text {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-style: italic;
  font-size: 20px;
  font-weight: 300;
  color: rgba(255,255,255,0.95);
  white-space: nowrap;
  padding-right: 80px;
  letter-spacing: 0.01em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Unique / Why us ─── */
.unique {
  padding: 112px 0;
  background: var(--white);
}

.unique-header {
  margin-bottom: 64px;
}

.unique-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--sand-dark);
}

@media (max-width: 900px) { .unique-grid { grid-template-columns: repeat(2, 1fr); } }

.unique-card {
  background: var(--cream);
  padding: 2.75rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-radius: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.unique-card:hover {
  background: #FBF8F2;
  transform: translateY(-2px);
}

.u-number {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: 52px;
  font-weight: 200;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  opacity: 0.7;
}

.unique-card h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  padding-bottom: 0.6rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
  position: relative;
}

.unique-card h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1.75rem;
  height: 2px;
  background: var(--terracotta);
}

.unique-card p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ─── Footer ─── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.50);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
}

.footer-logo {
  height: 34px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.38);
  max-width: 260px;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.40);
  transition: border-color 0.15s, color 0.15s;
}

.social-btn:hover {
  border-color: rgba(255,255,255,0.40);
  color: rgba(255,255,255,0.80);
}

.footer-col h4 {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.80);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li { font-size: 14px; }

.footer-col a {
  color: rgba(255,255,255,0.40);
  font-family: var(--font-body);
  font-weight: 300;
  transition: color 0.15s;
}

.footer-col a:hover { color: rgba(255,255,255,0.80); }

.footer-col p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.40);
}

.footer-col p strong {
  color: rgba(255,255,255,0.70);
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-left {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
}

.footer-bottom-right {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.20);
}

.footer-bottom strong {
  color: var(--terracotta);
  font-weight: 500;
}

/* ─── Badge circular rotatorio ─── */
.badge-circular {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 100px;
  height: 100px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.badge-circular:hover {
  background: var(--terra-dark);
}

.badge-rotating-text {
  position: absolute;
  inset: 0;
  animation: rotate 8s linear infinite;
}

.badge-rotating-text svg {
  width: 100%;
  height: 100%;
}

.badge-rotating-text textPath {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  fill: rgba(255,255,255,0.85);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.badge-arrow {
  font-size: 26px;
  color: #fff;
  position: relative;
  z-index: 1;
  line-height: 1;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: none;
  }

  .hero-photo-col {
    height: 420px;
    order: -1;
    position: relative;
  }

  .hero-photo-col img {
    position: absolute;
  }

  .hero-text-col {
    padding: 64px 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-main { height: 420px; }

  .services-index-grid {
    grid-template-columns: 1fr;
  }

  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }

  .booking {
    grid-template-columns: 1fr;
  }

  .booking-col-text {
    border-right: none;
    border-bottom: 1px solid var(--sand-dark);
    padding: 72px 40px 56px;
  }

  .booking-deco-num {
    font-size: 88px;
  }

  .booking-col-widget {
    padding: 48px 40px;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .header-ctas .btn-phone { display: none; }

  .hero-title { font-size: clamp(44px, 10vw, 68px); }
  .hero-text-col { padding: 48px 24px; }

  .booking-col-text {
    padding: 56px 24px 48px;
  }

  .booking-deco-num {
    font-size: 72px;
  }

  .booking-title {
    font-size: clamp(44px, 12vw, 60px);
  }

  .booking-col-widget {
    padding: 40px 24px;
  }

  .stats-inner { flex-wrap: wrap; }
  .stat-item {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 24px 20px;
  }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }

  .unique-grid { grid-template-columns: 1fr; }
  .unique-card {
    border-right: none;
    padding-left: 0;
    padding-right: 0;
    border-bottom: 1px solid var(--sand-dark);
  }
  .unique-card:last-child { border-bottom: none; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .badge-circular { width: 80px; height: 80px; bottom: 20px; right: 20px; }
  .badge-arrow { font-size: 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-title { font-size: 40px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .team-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .team-photo { height: 220px; }

  .marquee-text { font-size: 16px; }
}

/* ─── Google Reviews Section ─────────────────────────────────────── */
.reviews-section {
  padding: 80px 0;
  background: #FAF8F5;
}
.reviews-header { margin-bottom: 48px; }
.reviews-score-block { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.reviews-logo { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: #1A1A1A; }
.reviews-score { font-size: 28px; font-weight: 700; color: #1A1A1A; }
.reviews-stars { color: #FBBC05; font-size: 22px; }
.reviews-count { font-size: 13px; color: #888; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.review-card { background: #fff; border: 1px solid #E8E0D5; padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.review-stars { color: #FBBC05; font-size: 16px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: #444; line-height: 1.65; font-style: italic; flex: 1; }
.review-author { display: flex; justify-content: space-between; align-items: center; }
.review-name { font-size: 13px; font-weight: 600; color: #1A1A1A; }
.review-date { font-size: 12px; color: #aaa; }
.reviews-cta { text-align: center; }
.btn-review { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border: 1.5px solid #ddd; color: #444; font-size: 13px; font-weight: 600; text-decoration: none; transition: all 0.15s; }
.btn-review:hover { border-color: #1A1A1A; color: #1A1A1A; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ─── Unique Cards with check icon ──────────────────────────────── */
.u-check {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 400;
  color: var(--terracotta);
  display: block;
  margin-bottom: 0;
  border-radius: 0;
}

/* Prevent blue text selection highlighting */
::selection { background: rgba(194, 90, 58, 0.15); }
::-moz-selection { background: rgba(194, 90, 58, 0.15); }
