:root {
  color-scheme: light;
  --ink: #171717;
  --ink-soft: #3f3f3a;
  --bg: #f5f5f2;
  --surface: #ffffff;
  --surface-soft: #f0f0ec;
  --text: #121212;
  --muted: #626262;
  --muted-2: #8b8b86;
  --line: #deded8;
  --line-strong: #c9c9c1;
  --accent: #2f3a45;
  --accent-dark: #1b2430;
  --accent-soft: #eceff1;
  --success: #2f3a45;
  --danger: #b42318;
  --shadow: 0 24px 70px rgba(18, 18, 18, .12);
  --shadow-soft: 0 14px 36px rgba(18, 18, 18, .08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(245, 245, 242, .72), rgba(245, 245, 242, .82)),
    url('/assets/img/web-bg.jpg') center center / cover no-repeat;
  opacity: 1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% -10%, rgba(47, 58, 69, .07), transparent 34%);
  pointer-events: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 30;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .76);
  border-bottom: 1px solid rgba(225, 218, 209, .88);
  backdrop-filter: blur(18px);
}


.site-header .container.nav {
  width: 100%;
  max-width: none;
  padding-left: clamp(12px, 1.4vw, 20px);
  padding-right: clamp(12px, 1.4vw, 20px);
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-family: "Rethink Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.34rem, 1.8vw, 1.72rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1;
}

.brand-mark { display: none; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 700;
}

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: center;
  padding: clamp(26px, 5vw, 62px) 0 46px;
}

.hero-inner {
  max-width: 820px;
}

.hero-copy {
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
}

.pretitle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin: 0 0 14px;
  padding: 0 12px;
  border: 1px solid rgba(47, 58, 69, .16);
  border-radius: 999px;
  background: rgba(239, 231, 223, .82);
  color: var(--accent-dark);
  font-size: .86rem;
  font-weight: 700;
}

h1, h2, p { margin-top: 0; }

.hero-copy h1 {
  margin-bottom: 12px;
  font-size: clamp(2.1rem, 5vw, 4.55rem);
  line-height: .98;
  letter-spacing: -.07em;
}

.hero-subtitle {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.65;
}

.lead-card {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(18px, 3.2vw, 30px);
  border: 1px solid rgba(225, 218, 209, .95);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 26px;
}

.form-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 700;
}

.progress-track {
  width: min(360px, 56vw);
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7e9eb;
}

.progress-track span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #5f6b77);
  transition: width .22s ease;
}

.time-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--accent-dark);
  font-size: .88rem;
  font-weight: 800;
}

.question-title {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.question-help {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.6;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.option-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 72px;
  padding: 16px 16px 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}

.option-card:hover,
.option-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(47, 58, 69, .35);
  box-shadow: 0 12px 28px rgba(42, 33, 26, .07);
  outline: none;
}

.option-card.is-selected {
  border-color: rgba(47, 58, 69, .60);
  background: #eef1f3;
  box-shadow: 0 14px 34px rgba(47, 58, 69, .12);
}

.option-text {
  font-size: .98rem;
  font-weight: 750;
  line-height: 1.35;
}

.option-check {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #fff;
}

.option-card.is-selected .option-check {
  border-color: var(--success);
  background: var(--success);
  box-shadow: inset 0 0 0 5px #fff;
}

.back-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 20px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
}

.back-btn:hover,
.back-btn:focus-visible {
  color: var(--text);
  background: var(--surface-soft);
  outline: none;
}

.response-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}

.response-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(47, 58, 69, .16);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: .84rem;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  gap: 14px;
}

.field-group label {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 7px;
  color: var(--text);
  font-size: .94rem;
  font-weight: 750;
}

.field-group label span {
  color: var(--muted-2);
  font-weight: 600;
}

.field-group input {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease;
}

.field-group input::placeholder { color: #999b9c; }

.field-group input:focus {
  border-color: rgba(47, 58, 69, .60);
  box-shadow: 0 0 0 4px rgba(47, 58, 69, .12);
}

.privacy-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 2px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}

.privacy-line input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  flex: 0 0 auto;
  accent-color: var(--accent);
}

.privacy-line a {
  color: var(--accent-dark);
  font-weight: 700;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #151312, #3a342f);
  color: #fff;
  font-size: 1.02rem;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(42, 33, 26, .22);
  transition: transform .16s ease, box-shadow .16s ease, opacity .16s ease;
}

.submit-btn:hover,
.submit-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(42, 33, 26, .28);
  outline: none;
}

.submit-btn:disabled {
  opacity: .72;
  cursor: wait;
  transform: none;
}

.contact-back-row {
  justify-content: center;
  margin-top: 14px;
}

.form-message {
  display: none;
  margin-top: 14px;
  padding: 13px 14px;
  border-radius: 14px;
  font-size: .94rem;
  font-weight: 700;
}

.form-message.is-error {
  display: block;
  color: #7a3425;
  background: #fff5f1;
  border: 1px solid #e8c7bd;
}

.form-message.is-success {
  display: block;
  color: #1b2430;
  background: #eef1f3;
  border: 1px solid #d9c8bb;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.card-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .88rem;
  font-weight: 650;
}

.card-footer span::before {
  content: "✓";
  margin-right: 6px;
  color: var(--success);
  font-weight: 900;
}

.gallery-section {
  padding: 18px 0 64px;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 22px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -.045em;
}

.section-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.7;
}

.section-heading code {
  padding: 2px 5px;
  border-radius: 6px;
  background: #f0f0ec;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.work-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transform: scale(1.01);
}

.work-card figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  color: var(--text);
  font-size: .86rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.site-footer {
  padding: 0 0 34px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .92rem;
}

.footer-links {
  display: inline-flex;
  gap: 14px;
}

.footer-localities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto 12px;
  padding-top: 20px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.7;
  text-align: center;
}
.footer-localities a {
  color: inherit;
  text-decoration: none;
}
.footer-localities a:hover,
.footer-localities a:focus-visible {
  color: var(--text);
  text-decoration: underline;
}
.footer-localities span {
  color: var(--line-strong);
}

.thanks-page {
  min-height: calc(100vh - 68px);
  display: grid;
  place-items: center;
  padding: 42px 0;
}

.thanks-card {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
  text-align: center;
}

.thanks-card .eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: .82rem;
  font-weight: 800;
}

.thanks-card h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -.06em;
}

.thanks-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.thanks-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 22px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  text-decoration: none;
  font-weight: 750;
}

@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 22px, var(--max)); }
  .nav { min-height: 62px; }
  .brand-mark { width: 34px; height: 34px; border-radius: 10px; }
  .brand span:last-child { font-size: .96rem; }
  .nav-cta { min-height: 38px; padding: 0 12px; font-size: .86rem; }
  .hero { min-height: auto; padding: 24px 0 34px; }
  .pretitle { margin-bottom: 12px; }
  .hero-copy { margin-bottom: 18px; }
  .lead-card { padding: 16px; border-radius: 22px; }
  .card-header { margin-bottom: 22px; }
  .progress-track { width: 190px; }
  .options-grid { grid-template-columns: 1fr; }
  .option-card { min-height: 64px; }
  .question-help { margin-bottom: 18px; }
  .card-footer { font-size: .82rem; gap: 8px 10px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .work-card img { min-height: 240px; }
  .footer-content { align-items: flex-start; flex-direction: column; }
}

.legal-page h1 {
  margin-bottom: 24px;
  font-family: "Rethink Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -.05em;
}

.legal-page h2 {
  margin: 30px 0 10px;
  color: #151312;
  font-size: 1.12rem;
  letter-spacing: -.02em;
}

.legal-page a {
  color: var(--accent-dark);
  font-weight: 700;
}

.legal-page ul {
  padding-left: 1.3rem;
}


.visit-picker {
  padding: 16px;
  border: 1px solid rgba(47, 58, 69, .16);
  border-radius: 18px;
  background: rgba(239, 231, 223, .52);
}

.visit-picker-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.visit-eyebrow {
  display: block;
  margin-bottom: 3px;
  color: var(--accent-dark);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.visit-picker h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -.03em;
}

.visit-picker p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}

.visit-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #151312;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font-size: .82rem;
  font-weight: 800;
}

.visit-calendar {
  display: grid;
  gap: 10px;
}

.visit-day {
  display: grid;
  gap: 8px;
}

.visit-day > strong {
  color: var(--text);
  font-size: .88rem;
}

.visit-slots {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
}

.visit-slot {
  min-height: 54px;
  padding: 8px 6px;
  border: 1px solid rgba(47, 58, 69, .18);
  border-radius: 13px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  text-align: center;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.visit-slot span,
.visit-slot small {
  display: block;
}

.visit-slot span {
  font-weight: 850;
}

.visit-slot small {
  margin-top: 3px;
  color: var(--accent-dark);
  font-size: .68rem;
  font-weight: 750;
}

.visit-slot:hover,
.visit-slot:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(47, 58, 69, .55);
  box-shadow: 0 10px 22px rgba(42, 33, 26, .08);
  outline: none;
}

.visit-slot.is-selected {
  border-color: var(--success);
  background: #eef1f3;
  box-shadow: 0 12px 26px rgba(47, 58, 69, .12);
}

.visit-slot.is-unavailable {
  border-color: #deded8;
  background: rgba(247, 243, 238, .9);
  color: #999b9c;
  cursor: not-allowed;
}

.visit-slot.is-unavailable small {
  color: #999b9c;
}

.urgent-line {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.45;
}

.urgent-line input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  accent-color: var(--accent);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px 0 16px;
  border-radius: 999px;
  background: #1f9d55;
  color: #fff;
  text-decoration: none;
  font-weight: 850;
  box-shadow: 0 18px 40px rgba(31, 157, 85, .24), 0 8px 22px rgba(42, 33, 26, .18);
}

.whatsapp-float::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-right: 8px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16.01 3.2A12.74 12.74 0 0 0 5.04 22.45L3.2 29l6.72-1.76A12.75 12.75 0 1 0 16.01 3.2Zm0 23.36c-2.1 0-4.06-.61-5.72-1.67l-.41-.26-3.99 1.04 1.07-3.88-.27-.4a10.57 10.57 0 1 1 9.32 5.17Zm5.8-7.92c-.32-.16-1.89-.93-2.18-1.04-.29-.11-.5-.16-.71.16-.21.32-.82 1.04-1.01 1.25-.19.21-.37.24-.69.08-.32-.16-1.34-.49-2.56-1.57-.95-.84-1.59-1.88-1.78-2.2-.19-.32-.02-.49.14-.65.15-.14.32-.37.48-.56.16-.19.21-.32.32-.53.11-.21.05-.4-.03-.56-.08-.16-.71-1.7-.98-2.33-.26-.62-.52-.53-.71-.54l-.61-.01c-.21 0-.56.08-.85.4-.29.32-1.12 1.09-1.12 2.66s1.15 3.09 1.31 3.3c.16.21 2.26 3.45 5.48 4.84.77.33 1.37.53 1.84.68.77.24 1.47.21 2.02.13.62-.09 1.89-.77 2.16-1.52.27-.75.27-1.39.19-1.52-.08-.13-.29-.21-.61-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16.01 3.2A12.74 12.74 0 0 0 5.04 22.45L3.2 29l6.72-1.76A12.75 12.75 0 1 0 16.01 3.2Zm0 23.36c-2.1 0-4.06-.61-5.72-1.67l-.41-.26-3.99 1.04 1.07-3.88-.27-.4a10.57 10.57 0 1 1 9.32 5.17Zm5.8-7.92c-.32-.16-1.89-.93-2.18-1.04-.29-.11-.5-.16-.71.16-.21.32-.82 1.04-1.01 1.25-.19.21-.37.24-.69.08-.32-.16-1.34-.49-2.56-1.57-.95-.84-1.59-1.88-1.78-2.2-.19-.32-.02-.49.14-.65.15-.14.32-.37.48-.56.16-.19.21-.32.32-.53.11-.21.05-.4-.03-.56-.08-.16-.71-1.7-.98-2.33-.26-.62-.52-.53-.71-.54l-.61-.01c-.21 0-.56.08-.85.4-.29.32-1.12 1.09-1.12 2.66s1.15 3.09 1.31 3.3c.16.21 2.26 3.45 5.48 4.84.77.33 1.37.53 1.84.68.77.24 1.47.21 2.02.13.62-.09 1.89-.77 2.16-1.52.27-.75.27-1.39.19-1.52-.08-.13-.29-.21-.61-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.localities-section {
  padding: 24px 0 64px;
}

.locality-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.locality-link {
  display: block;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(42, 33, 26, .06);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.locality-link:hover,
.locality-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(47, 58, 69, .28);
  box-shadow: 0 16px 34px rgba(42, 33, 26, .09);
  outline: none;
}

.locality-link strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.locality-link span {
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.45;
}

.local-page {
  padding: 54px 0 72px;
}

.local-hero {
  max-width: 860px;
  margin: 0 auto 30px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(225, 218, 209, .95);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
  text-align: center;
}

.local-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -.065em;
}

.local-hero p,
.local-content p {
  color: var(--muted);
  line-height: 1.72;
}

.local-cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.local-primary,
.local-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.local-primary {
  background: var(--text);
  color: #fff;
}

.local-secondary {
  border: 1px solid rgba(47, 58, 69, .18);
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.local-content {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: start;
}

.local-panel {
  padding: clamp(20px, 3.4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .93);
  box-shadow: var(--shadow-soft);
}

.local-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  letter-spacing: -.04em;
}

.local-panel ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.local-panel li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.58;
}

.local-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 900;
}

.related-localities {
  max-width: 860px;
  margin: 22px auto 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  text-align: center;
}

.related-localities h2 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.related-localities div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.related-localities a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 750;
}


@media (max-width: 860px) {
  .locality-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .local-content { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .visit-slots { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .visit-picker-header { flex-direction: column; }
  .visit-call { width: 100%; }
  .whatsapp-float { right: 12px; bottom: 12px; min-height: 50px; padding-inline: 15px; }
  .whatsapp-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .whatsapp-float::before { margin-right: 0; }
  .locality-grid { grid-template-columns: 1fr; }
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 750;
  white-space: nowrap;
}

.nav-link.is-active,
.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 6px;
  background: transparent;
  outline: none;
}


select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  outline: none;
}

select:focus {
  border-color: rgba(47, 58, 69, .45);
  box-shadow: 0 0 0 4px rgba(47, 58, 69, .10);
}

.agenda-page {
  padding: clamp(34px, 6vw, 74px) 0 56px;
}

.agenda-hero {
  max-width: 860px;
  margin: 0 auto 24px;
  text-align: center;
}

.agenda-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: .98;
  letter-spacing: -.07em;
}

.agenda-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.68;
}

.agenda-urgent-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  max-width: 760px;
  margin: 22px auto 0;
  padding: 14px 16px;
  border: 1px solid rgba(47, 58, 69, .14);
  border-radius: 20px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.agenda-urgent-card strong {
  color: var(--accent-dark);
  font-weight: 900;
}

.agenda-urgent-card span {
  color: var(--muted);
  line-height: 1.45;
}

.agenda-urgent-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  text-decoration: none;
  font-weight: 850;
  white-space: nowrap;
}

.agenda-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, .75fr);
  gap: 18px;
  align-items: start;
}

.agenda-card,
.agenda-form {
  border: 1px solid rgba(225, 218, 209, .95);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
}

.agenda-card {
  padding: clamp(18px, 3vw, 28px);
}

.agenda-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.agenda-card-head h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.8vw, 2.05rem);
  letter-spacing: -.045em;
}

.agenda-card-head p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}

.agenda-calendar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.agenda-day {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 100%;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(247, 243, 238, .72);
}

.agenda-day-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 2px 2px 8px;
  border-bottom: 1px solid var(--line);
}

.agenda-day-head strong {
  text-transform: capitalize;
  font-size: .94rem;
  font-weight: 900;
}

.agenda-day-head span {
  color: var(--muted);
  font-size: .78rem;
  text-transform: capitalize;
}

.agenda-slots {
  display: grid;
  gap: 7px;
}

.agenda-slot {
  width: 100%;
  min-height: 54px;
  padding: 8px 7px;
  border: 1px solid rgba(47, 58, 69, .20);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.agenda-slot span,
.agenda-slot small {
  display: block;
}

.agenda-slot span {
  font-weight: 900;
}

.agenda-slot small {
  margin-top: 3px;
  color: var(--accent-dark);
  font-size: .69rem;
  font-weight: 850;
}

.agenda-slot:hover,
.agenda-slot:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(47, 58, 69, .55);
  box-shadow: 0 10px 22px rgba(42, 33, 26, .08);
  outline: none;
}

.agenda-slot.is-selected {
  border-color: var(--success);
  background: #eef1f3;
  box-shadow: 0 12px 28px rgba(47, 58, 69, .16);
}

.agenda-slot.is-busy {
  border-color: #deded8;
  background: repeating-linear-gradient(135deg, rgba(247,243,238,.92), rgba(247,243,238,.92) 8px, rgba(238,231,222,.92) 8px, rgba(238,231,222,.92) 16px);
  color: #999b9c;
  cursor: not-allowed;
}

.agenda-slot.is-busy small {
  color: #999b9c;
}

.agenda-form {
  position: sticky;
  top: 90px;
  padding: clamp(18px, 2.8vw, 26px);
}

.agenda-form h2 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.5vw, 1.82rem);
  letter-spacing: -.045em;
}

.selected-visit {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
  padding: 12px;
  border-radius: 16px;
  background: var(--surface-soft);
}

.selected-visit span {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 800;
}

.selected-visit strong {
  color: var(--muted);
  font-size: .95rem;
}

.selected-visit strong.has-selection {
  color: var(--accent-dark);
}

.agenda-contact-grid {
  grid-template-columns: 1fr;
}

.agenda-urgent-line {
  margin-top: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

@media (max-width: 980px) {
  .agenda-layout { grid-template-columns: 1fr; }
  .agenda-form { position: static; }
  .agenda-calendar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .nav-actions { gap: 6px; }
  .nav-link { min-height: 38px; padding: 0 4px; font-size: .8rem; }
  .nav-cta { min-height: 38px; padding: 0 10px; font-size: .8rem; }
  .agenda-urgent-card { grid-template-columns: 1fr; text-align: center; }
  .agenda-urgent-card a { width: 100%; }
  .agenda-card-head { display: grid; }
  .agenda-card-head p { max-width: none; }
  .agenda-calendar { grid-template-columns: 1fr; }
}


/* Ajustes de diseño sobrio y calendario mensual */


.progress-track span {
  background: linear-gradient(90deg, #111111, var(--accent));
}
.option-card.is-selected,
.calendar-time.is-selected {
  border-color: rgba(47, 58, 69, .62);
  background: #eef1f3;
  box-shadow: 0 14px 34px rgba(18, 18, 18, .10);
}
.submit-btn,
.nav-cta,
.agenda-urgent-card a {
  background: #111111;
}
.submit-btn:hover,
.nav-cta:hover,
.agenda-urgent-card a:hover {
  background: #2a2a2a;
}
.whatsapp-float {
  background: #1f9d55;
  box-shadow: 0 18px 48px rgba(31, 157, 85, .25);
}

.agenda-page {
  padding-top: clamp(34px, 6vw, 70px);
  padding-bottom: 64px;
}
.agenda-hero h1 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.agenda-urgent-card {
  border-color: rgba(18, 18, 18, .10);
  background: rgba(255, 255, 255, .92);
}
.agenda-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
}
.agenda-card,
.agenda-form {
  border-color: rgba(222, 222, 216, .96);
  background: rgba(255, 255, 255, .96);
}
.month-calendar {
  display: grid;
  gap: 16px;
}
.month-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.month-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  letter-spacing: -.045em;
  text-transform: capitalize;
}
.calendar-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}
.calendar-nav-btn:hover,
.calendar-nav-btn:focus-visible {
  border-color: var(--accent);
  outline: none;
}
.calendar-nav-btn:disabled {
  opacity: .34;
  cursor: not-allowed;
  background: var(--surface-soft);
}
.calendar-nav-btn:disabled:hover {
  border-color: var(--line);
}
.calendar-weekdays,
.calendar-month-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.calendar-weekdays span {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.calendar-day {
  position: relative;
  min-height: 84px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.calendar-day:hover,
.calendar-day:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(47, 58, 69, .42);
  box-shadow: 0 12px 28px rgba(18, 18, 18, .07);
  outline: none;
}
.calendar-day.is-empty {
  visibility: hidden;
  pointer-events: none;
}
.calendar-day.is-disabled {
  background: #f2f2ef;
  color: #aaa;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.calendar-day.is-no-visits {
  background: repeating-linear-gradient(135deg, #f4f4f1, #f4f4f1 8px, #e9e9e5 8px, #e9e9e5 16px);
  color: #8f8f89;
}
.calendar-day.is-weekend {
  background: repeating-linear-gradient(135deg, #f3f3f0, #f3f3f0 8px, #ecece8 8px, #ecece8 16px);
}
.calendar-day.is-selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 14px 34px rgba(18, 18, 18, .10);
}
.calendar-day-number {
  display: block;
  font-size: 1rem;
  font-weight: 900;
}
.calendar-day-status {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
}
.calendar-day-dot {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}
.calendar-side-note {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}
.time-panel {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface-soft);
}
.time-panel h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  letter-spacing: -.02em;
}
.time-panel p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
}
.calendar-times {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}
.calendar-time {
  min-height: 54px;
  border: 1px solid rgba(47, 58, 69, .20);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
}
.calendar-time:hover,
.calendar-time:focus-visible {
  border-color: var(--accent);
  outline: none;
}
.calendar-time.is-busy,
.calendar-time:disabled {
  background: repeating-linear-gradient(135deg, #f4f4f1, #f4f4f1 8px, #e9e9e5 8px, #e9e9e5 16px);
  color: #9b9b95;
  cursor: not-allowed;
  font-weight: 800;
}
.calendar-time small {
  display: block;
  margin-top: 3px;
  font-size: .68rem;
  font-weight: 800;
  color: var(--muted);
}
.selected-visit {
  background: #f2f3f3;
}
.selected-visit strong.has-selection {
  color: var(--accent-dark);
}

@media (max-width: 760px) {
  .calendar-weekdays,
  .calendar-month-grid { gap: 5px; }
  .calendar-day { min-height: 62px; padding: 7px; border-radius: 12px; }
  .calendar-day-status { display: none; }
  .calendar-day-dot { right: 7px; bottom: 7px; }
  .calendar-times { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Agenda en un único bloque central */
.agenda-layout-single {
  display: block;
  max-width: 880px;
  margin: 0 auto;
}

.agenda-single-form {
  width: 100%;
  padding: clamp(18px, 3vw, 30px);
}

.agenda-single-head {
  margin-bottom: 22px;
}

.visit-details-panel {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.visit-details-panel.is-hidden {
  display: none;
}

.visit-details-head {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.visit-details-head h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  letter-spacing: -.045em;
}

.visit-details-head .selected-visit {
  margin: 4px 0 0;
}

.agenda-single-form .agenda-contact-grid {
  max-width: 620px;
  margin: 0 auto;
}

@media (max-width: 760px) {
  .agenda-single-form { padding: 16px; }
  .agenda-single-head { display: grid; }
  .agenda-single-head p { max-width: none; }
  .visit-details-panel { margin-top: 18px; padding-top: 18px; }
}


/* Agenda en dos pasos y disponibilidad clara */
.calendar-step.is-hidden {
  display: none;
}

.calendar-day-dot {
  display: none !important;
}

.calendar-day.is-available {
  background: #eef8f1;
  border-color: #83c79b;
  color: #173f26;
}

.calendar-day.is-available .calendar-day-status {
  color: #256d3b;
}

.calendar-day.is-unavailable,
.calendar-day.is-disabled,
.calendar-day.is-no-visits {
  background: #fbeeee;
  border-color: #df9b9b;
  color: #8a2c2c;
}

.calendar-day.is-unavailable .calendar-day-status,
.calendar-day.is-disabled .calendar-day-status,
.calendar-day.is-no-visits .calendar-day-status {
  color: #9f3838;
}

.calendar-day.is-selected {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(17, 17, 17, .16);
}

.calendar-day.is-selected .calendar-day-status {
  color: rgba(255, 255, 255, .82);
}

.calendar-time.is-available {
  background: #eef8f1;
  border-color: #83c79b;
  color: #173f26;
}

.calendar-time.is-available small {
  color: #256d3b;
}

.calendar-time.is-unavailable,
.calendar-time.is-busy,
.calendar-time:disabled {
  background: #fbeeee;
  border-color: #df9b9b;
  color: #8a2c2c;
}

.calendar-time.is-unavailable small,
.calendar-time.is-busy small,
.calendar-time:disabled small {
  color: #9f3838;
}

.calendar-time.is-selected {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.calendar-time.is-selected small {
  color: rgba(255, 255, 255, .82);
}

.back-to-calendar {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: .9rem;
  font-weight: 800;
  cursor: pointer;
  transition: border-color .16s ease, transform .16s ease, box-shadow .16s ease;
}

.back-to-calendar:hover,
.back-to-calendar:focus-visible {
  border-color: #111111;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(17, 17, 17, .08);
  outline: none;
}

.visit-details-panel {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

/* Navegación y contenido ampliado */
.main-menu {
  flex: 1;
  min-width: 0;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero-soft-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-soft-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(18, 18, 18, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: var(--text);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 800;
}

.about-section,
.service-section,
.process-section,
.quote-section,
.contact-section {
  padding: clamp(42px, 7vw, 86px) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.about-grid h2,
.service-copy h2,
.contact-box h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -.065em;
}

.about-copy p,
.service-copy p,
.contact-box p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.service-section-alt {
  background: rgba(255, 255, 255, .44);
}

.service-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
}

.service-split.reverse .service-image { order: 2; }
.service-split.reverse .service-copy { order: 1; }

.service-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.service-image img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.65;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--accent);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.process-grid article {
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-soft);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--muted-2);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.process-grid h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  letter-spacing: -.035em;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-soft);
}

.contact-actions {
  display: grid;
  gap: 10px;
  min-width: min(280px, 100%);
}

.contact-primary,
.contact-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  white-space: nowrap;
}

.contact-primary {
  background: var(--text);
  color: #fff;
}

.contact-secondary {
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--text);
}

.contact-preference {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.72);
}

.contact-preference p,
.call-window-title {
  margin: 0;
  color: var(--text);
  font-size: .94rem;
  font-weight: 800;
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-card {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

.choice-card input { accent-color: var(--accent); }
.choice-card:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.call-window {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.call-window.is-hidden { display: none; }
.choice-card.is-compact { min-height: 42px; font-size: .92rem; }

@media (max-width: 1080px) {
  .nav { flex-wrap: wrap; padding: 10px 0; }
  .brand { flex: 0 0 auto; }
  .main-menu {
    order: 2;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .main-menu::-webkit-scrollbar { display: none; }
  .main-menu .nav-link,
  .main-menu .nav-cta { flex: 0 0 auto; }
}

@media (max-width: 860px) {
  .about-grid,
  .service-split,
  .contact-box {
    grid-template-columns: 1fr;
  }
  .service-split.reverse .service-image,
  .service-split.reverse .service-copy { order: initial; }
  .process-grid { grid-template-columns: 1fr; }
  .service-image img { min-height: 280px; }
}

@media (max-width: 640px) {
  .main-menu { gap: 7px; }
  .main-menu .nav-link { min-height: 36px; padding: 0 4px; font-size: .78rem; }
  .main-menu .nav-cta { min-height: 36px; padding: 0 10px; font-size: .78rem; }
  .hero-soft-actions a,
  .contact-primary,
  .contact-secondary { width: 100%; }
  .choice-row { grid-template-columns: 1fr; }
  .about-section,
  .service-section,
  .process-section,
  .quote-section,
  .contact-section { padding: 38px 0; }
}


.quote-section {
  background: linear-gradient(180deg, rgba(255,255,255,.38), rgba(255,255,255,.72));
}

.quote-wrap {
  display: grid;
  justify-items: center;
  gap: 22px;
}

.quote-heading {
  max-width: 720px;
  margin-inline: auto;
}

.quote-section .lead-card {
  margin-top: 0;
}

/* Menú móvil y animación de aparición estilo Apple */
.mobile-header-actions,
.nav-toggle,
.mobile-nav-cta {
  display: none;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(18, 18, 18, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  backdrop-filter: blur(14px);
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform .22s ease, opacity .22s ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav-cta {
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  text-decoration: none;
  font-size: .86rem;
  font-weight: 800;
  white-space: nowrap;
}

body.has-reveal .reveal-section {
  opacity: 0;
  transform: translateY(34px) scale(.985);
  filter: blur(8px);
  transition:
    opacity .85s cubic-bezier(.16, 1, .3, 1),
    transform .85s cubic-bezier(.16, 1, .3, 1),
    filter .85s cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

body.has-reveal .reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (max-width: 860px) {
  .site-header .container.nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 64px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .mobile-header-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
  }

  .mobile-nav-cta,
  .nav-toggle {
    display: inline-flex;
  }

  .main-menu {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    display: grid;
    gap: 4px;
    width: auto;
    max-height: calc(100vh - 92px);
    padding: 10px;
    border: 1px solid rgba(18, 18, 18, .12);
    border-radius: 22px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 22px 70px rgba(18,18,18,.16);
    backdrop-filter: blur(22px);
    opacity: 0;
    transform: translateY(-10px) scale(.98);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
    overflow: visible;
  }

  .main-menu.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .main-menu .nav-link,
  .main-menu .nav-cta {
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;
    padding: 0 14px;
    border-radius: 14px;
    text-decoration: none;
    font-size: .94rem;
  }

  .main-menu .nav-link:hover,
  .main-menu .nav-link:focus-visible {
    background: var(--surface-soft);
    text-decoration: none;
  }

  .main-menu .nav-cta {
    justify-content: center;
    margin-top: 4px;
  }

  body.menu-open { overflow: hidden; }
}

@media (max-width: 430px) {
  .brand { font-size: 1.16rem; }
  .mobile-nav-cta { min-height: 40px; padding: 0 11px; font-size: .78rem; }
  .nav-toggle { width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  body.has-reveal .reveal-section {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* Ajustes finales de navegación móvil, anclas y responsive */

#reformas-integrales,
#cocinas,
#banos {
  scroll-margin-top: 104px;
}
#presupuesto {
  scroll-margin-top: 92px;
}
#encuesta {
  scroll-margin-top: 112px;
}

@media (max-width: 860px) {
  .main-menu .nav-cta {
    display: none;
  }
}

@media (max-width: 640px) {
  #presupuesto {
    scroll-margin-top: 78px;
  }

  #reformas-integrales,
  #cocinas,
  #banos {
    scroll-margin-top: 82px;
  }

  .service-section {
    padding: 30px 0;
  }

  .service-split {
    gap: 16px;
  }

  .service-image {
    width: min(100%, 340px);
    margin-inline: auto;
    border-radius: 20px;
  }

  .service-image img {
    height: 170px;
    min-height: 0;
    object-fit: cover;
  }

  .service-copy {
    text-align: left;
  }

  .service-copy h2 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
    line-height: 1.06;
  }

  .service-copy p,
  .service-copy li {
    font-size: .96rem;
    line-height: 1.65;
  }
}

@media (max-width: 430px) {
  .service-image {
    width: min(100%, 300px);
  }
  .service-image img {
    height: 150px;
  }
}

/* Conversion update 2026-06-29 */
.lead-header .nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(18, 18, 18, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  color: var(--text);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 850;
}

.lead-hero {
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: center;
  padding: clamp(34px, 5vw, 74px) 0 clamp(34px, 5vw, 70px);
}

.lead-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
}

.lead-hero-copy {
  max-width: 690px;
}

.lead-hero-copy .pretitle {
  margin-bottom: 18px;
  background: rgba(255, 255, 255, .72);
}

.lead-hero-copy h1 {
  margin-bottom: 16px;
  font-size: clamp(2.3rem, 5vw, 5.05rem);
  line-height: .94;
  letter-spacing: -.075em;
}

.lead-hero-copy .hero-subtitle {
  max-width: 620px;
  margin: 0;
  color: #464646;
  font-size: clamp(1.04rem, 1.6vw, 1.2rem);
  line-height: 1.65;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(18, 18, 18, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: var(--accent-dark);
  font-size: .9rem;
  font-weight: 800;
}

.hero-proof span::before {
  content: "✓";
  margin-right: 7px;
  font-weight: 900;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-main-cta,
.hero-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.hero-main-cta {
  background: var(--text);
  color: #fff;
  box-shadow: 0 16px 36px rgba(18, 18, 18, .18);
}

.hero-whatsapp-cta {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(18, 18, 18, .12);
}

.micro-copy {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .96rem;
}

.micro-copy a {
  font-weight: 900;
  color: var(--text);
}

.quick-lead-card {
  width: 100%;
  border: 1px solid rgba(225, 218, 209, .95);
  border-radius: 30px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
  padding: clamp(18px, 2.4vw, 26px);
}

.quick-card-top {
  margin-bottom: 16px;
}

.quick-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: .82rem;
  font-weight: 900;
}

.quick-card-top h2 {
  margin: 12px 0 8px;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.quick-card-top p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.quick-lead-form {
  display: grid;
  gap: 12px;
}

.quick-lead-form .field-group label {
  font-size: .9rem;
}

.field-group select {
  width: 100%;
  min-height: 54px;
  padding: 0 42px 0 15px;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background: #fff;
  color: var(--text);
  outline: none;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #777 50%), linear-gradient(135deg, #777 50%, transparent 50%);
  background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field-group select:focus {
  border-color: rgba(47, 58, 69, .60);
  box-shadow: 0 0 0 4px rgba(47, 58, 69, .12);
}

.quick-two-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.compact-privacy {
  font-size: .82rem;
  line-height: 1.45;
}

.quick-submit {
  margin-top: 2px;
}

.quick-message {
  margin-top: 0;
}

.quick-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .84rem;
  font-weight: 700;
}

.quick-card-footer span::before {
  content: "✓";
  margin-right: 6px;
  font-weight: 900;
}

.trust-strip {
  padding: 0 0 42px;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-strip-grid div {
  padding: 20px;
  border: 1px solid rgba(18, 18, 18, .08);
  border-radius: 22px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-soft);
}

.trust-strip-grid strong,
.trust-strip-grid span {
  display: block;
}

.trust-strip-grid strong {
  margin-bottom: 6px;
  font-size: 1rem;
}

.trust-strip-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.conversion-services,
.work-section,
.local-zones-section,
.faq-section {
  padding: clamp(42px, 6vw, 78px) 0;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card-grid article {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(18, 18, 18, .08);
  border-radius: 24px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow-soft);
}

.service-card-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

.service-card-grid h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.service-card-grid p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.55;
}

.service-card-grid a {
  margin-top: auto;
  color: var(--text);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.work-gallery {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 14px;
}

.work-gallery img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.work-gallery img:first-child {
  height: 410px;
}

.zone-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.zone-pills a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(18, 18, 18, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.faq-grid details {
  border: 1px solid rgba(18, 18, 18, .08);
  border-radius: 20px;
  background: rgba(255, 255, 255, .86);
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1040px) {
  .lead-hero-grid {
    grid-template-columns: 1fr;
  }
  .lead-hero-copy {
    max-width: 760px;
    text-align: center;
    margin-inline: auto;
  }
  .lead-hero-copy .hero-subtitle {
    margin-inline: auto;
  }
  .hero-proof,
  .hero-cta-row {
    justify-content: center;
  }
  .quick-lead-card {
    max-width: 640px;
    margin-inline: auto;
  }
  .service-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .lead-header .main-menu {
    display: grid;
  }
  .nav-phone {
    width: 100%;
    justify-content: flex-start;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
  }
  .lead-hero {
    min-height: auto;
    padding-top: 26px;
  }
  .whatsapp-float {
    display: none;
  }
  .mobile-sticky-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(18, 18, 18, .12);
    border-radius: 22px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 55px rgba(18, 18, 18, .2);
    backdrop-filter: blur(18px);
  }
  .mobile-sticky-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 16px;
    background: var(--text);
    color: #fff;
    text-decoration: none;
    font-size: .85rem;
    font-weight: 900;
  }
  .mobile-sticky-cta a:nth-child(2) {
    background: #fff;
    color: var(--text);
    border: 1px solid rgba(18, 18, 18, .12);
  }
  body {
    padding-bottom: 82px;
  }
}

@media (max-width: 720px) {
  .lead-hero-copy h1 {
    font-size: clamp(2.15rem, 11vw, 3.75rem);
  }
  .quick-two-cols,
  .trust-strip-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .service-card-grid {
    grid-template-columns: 1fr;
  }
  .work-gallery {
    grid-template-columns: 1fr;
  }
  .work-gallery img,
  .work-gallery img:first-child {
    height: 220px;
  }
  .hero-main-cta,
  .hero-whatsapp-cta {
    width: 100%;
  }
  .trust-strip {
    padding-bottom: 28px;
  }
}

@media (max-width: 430px) {
  .quick-lead-card {
    border-radius: 24px;
    padding: 16px;
  }
  .lead-hero-grid {
    gap: 20px;
  }
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px 0 14px;
}

.thanks-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.thanks-actions a + a {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(18, 18, 18, .12);
}

/* Ajuste posterior: mantener las imagenes originales en las secciones de servicio y conservar CTA visible */
.inline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #f97316;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.24);
}
.inline-cta:hover { transform: translateY(-1px); }

/* =========================================================
   Rediseño profesional: sobrio, sencillo y serio
   Mantiene captacion sin aspecto de landing agresiva.
   ========================================================= */
:root {
  --bg: #f7f5f0;
  --surface: #ffffff;
  --surface-soft: #f2efe8;
  --text: #171717;
  --muted: #5f5f5b;
  --muted-2: #8a8780;
  --line: #ddd7cd;
  --line-strong: #c8c0b4;
  --accent: #2b343d;
  --accent-dark: #171f27;
  --accent-soft: #ece9e2;
  --success: #2b343d;
  --shadow: 0 12px 32px rgba(20, 20, 20, .07);
  --shadow-soft: 0 8px 20px rgba(20, 20, 20, .045);
  --radius-xl: 12px;
  --radius-lg: 10px;
  --radius-md: 8px;
  --max: 1160px;
  --ink: #171717;
  --ink-soft: #3f3f3a;
}

html { scroll-padding-top: 92px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body::before,
body::after { display: none; }

.container { width: min(100% - 40px, var(--max)); }

.site-header {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  backdrop-filter: blur(10px);
}
.site-header .container.nav {
  width: min(100% - 40px, var(--max));
  max-width: var(--max);
  padding-left: 0;
  padding-right: 0;
}
.nav { min-height: 76px; gap: 22px; }
.brand {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  font-weight: 800;
  letter-spacing: -.025em;
}
.nav-actions,
.lead-header .nav-actions { gap: 18px; }
.nav-link {
  color: #464640;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 600;
}
.nav-link:hover,
.nav-link:focus-visible { color: #000; text-decoration: underline; text-underline-offset: 5px; }
.nav-phone {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-size: .93rem;
  font-weight: 800;
}
.nav-cta,
.mobile-nav-cta {
  min-height: 40px;
  padding: 0 15px;
  border-radius: 6px;
  background: var(--text);
  color: #fff;
  font-size: .9rem;
  font-weight: 750;
  box-shadow: none;
}
.nav-toggle { border-radius: 6px; background: #fff; }

.pretitle,
.hero-kicker,
.section-kicker,
.quick-badge,
.form-eyebrow,
.visit-eyebrow {
  color: var(--muted);
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  border-radius: 0 !important;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lead-hero {
  min-height: auto;
  padding: clamp(54px, 7vw, 92px) 0 clamp(48px, 7vw, 88px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f8f6f1 100%);
}
.lead-hero-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 430px);
  gap: clamp(34px, 6vw, 86px);
}
.lead-hero-copy { max-width: 740px; }
.lead-hero-copy .pretitle { margin-bottom: 18px; }
.lead-hero-copy h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4.9vw, 4.45rem);
  line-height: 1.01;
  letter-spacing: -.055em;
  font-weight: 800;
}
.lead-hero-copy .hero-subtitle {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  line-height: 1.75;
}
.hero-proof {
  gap: 0;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.hero-proof span {
  min-height: auto;
  padding: 0 18px 0 0;
  margin-right: 18px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-size: .94rem;
  font-weight: 650;
}
.hero-proof span:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero-proof span::before { display: none; }
.hero-cta-row { margin-top: 28px; gap: 12px; }
.hero-main-cta,
.hero-whatsapp-cta,
.contact-primary,
.contact-secondary,
.local-primary,
.local-secondary,
.thanks-actions a,
.thanks-card a {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 6px;
  font-size: .95rem;
  font-weight: 750;
  box-shadow: none;
}
.hero-main-cta,
.contact-primary,
.local-primary,
.thanks-actions a,
.thanks-card a { background: var(--text); color: #fff; }
.hero-whatsapp-cta,
.contact-secondary,
.local-secondary,
.thanks-actions a + a {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.micro-copy { color: var(--muted); font-size: .95rem; }
.micro-copy a { font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

.quick-lead-card,
.lead-card,
.thanks-card,
.local-hero,
.local-panel,
.contact-box,
.process-grid article,
.faq-grid details,
.trust-strip-grid div,
.locality-link,
.service-card-grid article,
.work-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}
.quick-lead-card { padding: clamp(22px, 2.6vw, 30px); }
.quick-card-top { margin-bottom: 20px; }
.quick-card-top h2 {
  margin: 12px 0 10px;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  line-height: 1.14;
  letter-spacing: -.035em;
  font-weight: 750;
}
.quick-card-top p { color: var(--muted); line-height: 1.62; }
.quick-lead-form { gap: 13px; }
.field-group label { font-size: .9rem; font-weight: 700; }
.field-group input,
.field-group select {
  min-height: 48px;
  border-radius: 6px;
  border-color: var(--line-strong);
  background-color: #fff;
}
.field-group input:focus,
.field-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(43, 52, 61, .11);
}
.privacy-line { color: var(--muted); font-size: .84rem; }
.submit-btn,
.quick-submit {
  min-height: 50px;
  border-radius: 6px;
  background: var(--text);
  box-shadow: none;
  font-size: .98rem;
  font-weight: 760;
}
.submit-btn:hover,
.submit-btn:focus-visible,
.inline-cta:hover,
.hero-main-cta:hover,
.hero-whatsapp-cta:hover,
.contact-primary:hover,
.contact-secondary:hover {
  transform: none;
  opacity: .9;
  box-shadow: none;
}
.quick-card-footer,
.card-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
}
.quick-card-footer span::before,
.card-footer span::before { display: none; }

.trust-strip {
  padding: 34px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust-strip-grid { gap: 0; }
.trust-strip-grid div {
  padding: 0 26px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}
.trust-strip-grid div:first-child { padding-left: 0; }
.trust-strip-grid div:last-child { padding-right: 0; border-right: 0; }
.trust-strip-grid strong { font-size: .98rem; font-weight: 750; }
.trust-strip-grid span { font-size: .94rem; line-height: 1.58; }

.about-section,
.service-section,
.process-section,
.quote-section,
.contact-section,
.local-zones-section,
.faq-section,
.conversion-services,
.work-section {
  padding: clamp(58px, 7vw, 96px) 0;
}
.service-section { background: #fff; border-bottom: 1px solid var(--line); }
.service-section-alt { background: #f7f5f0; }
.service-split { gap: clamp(30px, 6vw, 78px); }
.service-image {
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: none;
}
.service-image img { min-height: 390px; }
.about-grid h2,
.service-copy h2,
.contact-box h2,
.section-heading h2,
.local-hero h1,
.local-panel h2,
.thanks-card h1,
.legal-page h1 {
  letter-spacing: -.04em;
  font-weight: 780;
}
.service-copy h2,
.about-grid h2,
.contact-box h2 {
  font-size: clamp(1.95rem, 3.4vw, 3.15rem);
  line-height: 1.06;
}
.service-copy p,
.about-copy p,
.contact-box p,
.section-heading p,
.local-content p {
  color: var(--muted);
  line-height: 1.78;
}
.clean-list { gap: 9px; }
.clean-list li { color: var(--muted); padding-left: 18px; }
.clean-list li::before {
  top: .76em;
  width: 5px;
  height: 5px;
  background: var(--muted);
}
.inline-cta {
  margin-top: 22px;
  padding: 0;
  min-height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-weight: 800;
  box-shadow: none;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}
.section-heading h2 {
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  line-height: 1.1;
}
.process-section,
.quote-section,
.local-zones-section,
.faq-section { background: #f7f5f0; }
.process-grid { gap: 16px; }
.process-grid article { padding: clamp(22px, 3vw, 30px); }
.process-grid span {
  color: var(--muted-2);
  font-size: .8rem;
  margin-bottom: 22px;
}
.process-grid h3 { font-weight: 760; }
.quote-section { background: #fff; border-top: 0; border-bottom: 1px solid var(--line); }
.quote-section .lead-card { max-width: 700px; }
.progress-track { background: #ebe7df; }
.progress-track span { background: var(--text); }
.time-badge,
.response-chips span {
  border-radius: 6px;
  background: var(--surface-soft);
  color: var(--text);
}
.option-card {
  border-radius: 8px;
  box-shadow: none;
  background: #fff;
}
.option-card:hover,
.option-card:focus-visible,
.option-card.is-selected {
  transform: none;
  box-shadow: none;
  border-color: var(--accent);
  background: #f6f4ef;
}
.option-card.is-selected .option-check { background: var(--text); border-color: var(--text); }

.zone-pills { gap: 8px; }
.zone-pills a {
  min-height: 38px;
  border-radius: 6px;
  background: #fff;
  font-size: .9rem;
  font-weight: 650;
}
.faq-grid details { padding: 20px 22px; }
.faq-grid summary { font-weight: 750; }
.contact-section { background: #fff; }
.contact-box {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  padding: clamp(26px, 4vw, 42px);
}
.contact-actions { gap: 10px; }

.site-footer {
  padding: 34px 0 38px;
  background: #171717;
  color: rgba(255,255,255,.76);
}
.footer-localities,
.footer-content { color: rgba(255,255,255,.68); border-color: rgba(255,255,255,.14); }
.footer-localities a:hover,
.footer-localities a:focus-visible { color: #fff; }
.footer-links a { color: inherit; }

.whatsapp-float { display: none; }
.mobile-sticky-cta {
  border-radius: 10px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 8px 28px rgba(0,0,0,.14);
}
.mobile-sticky-cta a {
  border-radius: 6px;
  background: var(--text);
  font-weight: 750;
}
.mobile-sticky-cta a:nth-child(2) {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.local-page,
.legal-page { background: var(--bg); }
.legal-page,
.local-page { padding-top: 58px; }
.visit-picker,
.contact-preference {
  border-radius: 8px;
  background: #f8f6f1;
}
.visit-call,
.visit-slot,
.back-to-calendar,
.choice-card,
.calendar-time,
.calendar-day {
  border-radius: 6px;
}

@media (max-width: 1040px) {
  .lead-hero-copy { text-align: left; margin-inline: 0; }
  .lead-hero-copy .hero-subtitle { margin-inline: 0; }
  .hero-proof,
  .hero-cta-row { justify-content: flex-start; }
}

@media (max-width: 860px) {
  .container,
  .site-header .container.nav { width: min(100% - 28px, var(--max)); }
  .site-header .container.nav { min-height: 66px; }
  .main-menu {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(0,0,0,.14);
  }
  .main-menu .nav-link,
  .main-menu .nav-cta,
  .nav-phone {
    border-radius: 6px;
  }
  .lead-hero { padding: 34px 0 44px; }
  .lead-hero-copy { text-align: left; }
  .lead-hero-copy .hero-subtitle { margin: 0; }
  .hero-proof,
  .hero-cta-row { justify-content: flex-start; }
  .hero-proof { display: grid; gap: 10px; }
  .hero-proof span {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
  }
  .trust-strip-grid { grid-template-columns: 1fr; gap: 18px; }
  .trust-strip-grid div,
  .trust-strip-grid div:first-child,
  .trust-strip-grid div:last-child {
    padding: 0;
    border-right: 0;
  }
  .service-image img { min-height: 270px; }
  .contact-box { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container,
  .site-header .container.nav { width: min(100% - 24px, var(--max)); }
  .brand { font-size: 1.04rem; }
  .lead-hero-copy h1 { font-size: clamp(2.05rem, 10vw, 3.2rem); letter-spacing: -.045em; }
  .quick-two-cols { grid-template-columns: 1fr; }
  .quick-lead-card,
  .lead-card { padding: 18px; border-radius: 10px; }
  .hero-main-cta,
  .hero-whatsapp-cta { width: 100%; }
  .about-section,
  .service-section,
  .process-section,
  .quote-section,
  .contact-section,
  .local-zones-section,
  .faq-section { padding: 46px 0; }
}

/* Ajustes especificos de agenda para mantener el mismo tono profesional */
.agenda-page { padding: clamp(48px, 7vw, 88px) 0 76px; }
.agenda-hero { text-align: left; max-width: 880px; }
.agenda-hero h1 {
  max-width: 760px;
  margin-left: 0;
  margin-right: 0;
  font-size: clamp(2.05rem, 4.5vw, 4rem);
  line-height: 1.03;
  letter-spacing: -.045em;
  font-weight: 780;
}
.agenda-hero p { margin-left: 0; margin-right: 0; max-width: 680px; }
.agenda-urgent-card {
  max-width: 880px;
  margin-left: 0;
  margin-right: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}
.agenda-urgent-card a { border-radius: 6px; box-shadow: none; font-weight: 750; }
.agenda-layout-single { max-width: 920px; }
.agenda-card,
.agenda-form,
.agenda-single-form {
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}
.month-calendar-header { border-bottom-color: var(--line); }
.calendar-nav-btn,
.calendar-day,
.calendar-time,
.time-panel,
.selected-visit,
.agenda-urgent-line {
  border-radius: 6px;
  box-shadow: none !important;
}
.calendar-day:hover,
.calendar-day:focus-visible,
.calendar-day.is-selected,
.calendar-time:hover,
.calendar-time:focus-visible,
.calendar-time.is-selected {
  transform: none;
  box-shadow: none !important;
}
.time-panel { background: #f8f6f1; }
@media (max-width: 640px) {
  .agenda-hero { text-align: left; }
  .agenda-urgent-card { text-align: left; }
}

/* Ajuste responsive móvil 2026-06-29: más aire y menos sensación apelotonada */
@media (max-width: 760px) {
  html { scroll-padding-top: 78px; }

  .container,
  .site-header .container.nav {
    width: min(100% - 32px, var(--max));
  }

  .site-header .container.nav {
    min-height: 62px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand {
    font-size: 1.02rem;
    line-height: 1.05;
    max-width: 170px;
  }

  .mobile-header-actions { gap: 7px; }

  .mobile-nav-cta {
    min-height: 38px;
    padding: 0 11px;
    border-radius: 6px;
    font-size: .78rem;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
    border-radius: 6px;
  }

  .main-menu {
    left: 16px;
    right: 16px;
    top: calc(100% + 6px);
    gap: 7px;
    padding: 12px;
    border-radius: 10px;
    overflow-y: auto;
  }

  .main-menu:not(.is-open) {
    visibility: hidden;
  }

  .main-menu.is-open {
    visibility: visible;
  }

  .main-menu .nav-link,
  .main-menu .nav-cta,
  .main-menu .nav-phone {
    min-height: 44px;
    padding: 0 13px;
    border-radius: 6px;
    font-size: .92rem;
  }

  .lead-hero {
    padding: 34px 0 48px;
  }

  .lead-hero-grid {
    gap: 30px;
  }

  .lead-hero-copy .pretitle,
  .section-kicker,
  .quick-badge,
  .form-eyebrow,
  .visit-eyebrow {
    font-size: .72rem;
    letter-spacing: .10em;
  }

  .lead-hero-copy h1 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 8.4vw, 2.55rem);
    line-height: 1.12;
    letter-spacing: -.032em;
  }

  .lead-hero-copy .hero-subtitle {
    font-size: 1rem;
    line-height: 1.72;
  }

  .hero-proof {
    display: grid;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
  }

  .hero-proof span {
    display: block;
    padding: 0;
    margin: 0;
    border: 0;
    font-size: .93rem;
    line-height: 1.45;
  }

  .hero-cta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 26px;
  }

  .hero-main-cta,
  .hero-whatsapp-cta,
  .contact-primary,
  .contact-secondary,
  .local-primary,
  .local-secondary {
    width: 100%;
    min-height: 48px;
  }

  .micro-copy {
    margin-top: 14px;
    font-size: .92rem;
    line-height: 1.55;
  }

  .quick-lead-card,
  .lead-card,
  .contact-box,
  .agenda-card,
  .agenda-urgent-card {
    padding: 20px;
    border-radius: 10px;
  }

  .quick-card-top {
    margin-bottom: 18px;
  }

  .quick-card-top h2,
  .form-head h2 {
    font-size: 1.55rem;
    line-height: 1.16;
  }

  .quick-card-top p,
  .form-head p,
  .privacy-line {
    line-height: 1.6;
  }

  .quick-lead-form,
  .survey-form,
  .agenda-form,
  .agenda-single-form {
    gap: 15px;
  }

  .field-group input,
  .field-group select,
  .field-group textarea {
    min-height: 50px;
    font-size: 16px;
  }

  .quick-card-footer,
  .card-footer {
    display: grid;
    gap: 8px;
    margin-top: 16px;
    padding-top: 14px;
    line-height: 1.45;
  }

  .trust-strip {
    padding: 34px 0;
  }

  .trust-strip-grid {
    gap: 22px;
  }

  .trust-strip-grid div {
    padding-top: 0;
  }

  .about-section,
  .service-section,
  .process-section,
  .quote-section,
  .contact-section,
  .local-zones-section,
  .faq-section,
  .conversion-services,
  .work-section {
    padding: 54px 0;
  }

  .service-split {
    gap: 24px;
  }

  .service-image img {
    min-height: 0;
    height: 240px;
  }

  .service-copy h2,
  .about-grid h2,
  .contact-box h2,
  .section-heading h2,
  .agenda-hero h1 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
    line-height: 1.16;
    letter-spacing: -.032em;
  }

  .service-copy p,
  .about-copy p,
  .contact-box p,
  .section-heading p,
  .local-content p,
  .agenda-hero p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .clean-list {
    gap: 12px;
    margin-top: 18px;
  }

  .clean-list li {
    line-height: 1.62;
  }

  .process-grid {
    gap: 14px;
  }

  .process-grid article,
  .faq-grid details,
  .service-card-grid article {
    padding: 20px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .contact-actions {
    width: 100%;
  }

  .agenda-page {
    padding-top: 38px;
  }

  .agenda-hero {
    margin-bottom: 28px;
  }

  .agenda-urgent-card {
    display: grid;
    gap: 10px;
    margin-top: 22px;
  }

  .agenda-urgent-card a {
    width: 100%;
    min-height: 46px;
  }

  .mobile-sticky-cta {
    left: 12px;
    right: 12px;
    gap: 6px;
    padding: 7px;
    border-radius: 10px;
  }

  .mobile-sticky-cta a {
    min-height: 42px;
    border-radius: 6px;
    font-size: .80rem;
    font-weight: 750;
  }

  body { padding-bottom: 76px; }
}

@media (max-width: 380px) {
  .container,
  .site-header .container.nav {
    width: min(100% - 26px, var(--max));
  }

  .brand {
    font-size: .96rem;
    max-width: 150px;
  }

  .mobile-nav-cta {
    padding: 0 9px;
    font-size: .72rem;
  }

  .lead-hero-copy h1 {
    font-size: 1.9rem;
  }

  .quick-lead-card,
  .lead-card,
  .contact-box,
  .agenda-card,
  .agenda-urgent-card {
    padding: 18px;
  }

  .mobile-sticky-cta a {
    font-size: .74rem;
  }
}

/* Correccion móvil 2026-06-30: evitar hero en dos columnas en pantallas pequeñas */
@media (max-width: 1040px) {
  .lead-hero-grid {
    grid-template-columns: 1fr !important;
    align-items: start;
  }

  .lead-hero-copy,
  .quick-lead-card {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .lead-hero {
    padding: 32px 0 42px;
    overflow: visible;
  }

  .lead-hero-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 28px;
    width: 100%;
  }

  .lead-hero-copy {
    width: 100%;
    max-width: none;
  }

  .lead-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9.2vw, 2.85rem);
    line-height: 1.12;
    letter-spacing: -.035em;
  }

  .lead-hero-copy .hero-subtitle {
    max-width: 100%;
  }

  .quick-lead-card {
    position: static;
    width: 100%;
    max-width: none;
    margin: 0;
    box-sizing: border-box;
  }
}


/* Inspiración funcional 2026-06-30: calculadora, enlaces directos y colaboradores */
.calculator-section {
  padding: 86px 0;
  background: #f7f5f0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.calculator-wrap {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
  gap: 46px;
  align-items: start;
}
.calculator-copy h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  color: var(--ink);
}
.calculator-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}
.calculator-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.calculator-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  background: #fff;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: .9rem;
  font-weight: 750;
}
.calculator-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  box-shadow: 0 16px 44px rgba(15,23,42,.07);
}
.calculator-form {
  display: grid;
  gap: 16px;
}
.calc-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.45;
}
.calc-check input { margin-top: 3px; }
.calculator-button {
  min-height: 52px;
  border: 0;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  font-weight: 850;
  cursor: pointer;
  font-family: inherit;
}
.calculator-result {
  padding: 22px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fafafa;
}
.calculator-result-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.calculator-result strong {
  display: block;
  font-family: var(--font-display);
  color: var(--ink);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -.035em;
}
.calculator-result p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}
.calculator-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.calculator-actions a { min-height: 46px; }
.footer-direct-links {
  padding: 34px 0 28px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-direct-links h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.footer-direct-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.footer-direct-links a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-weight: 650;
  font-size: .94rem;
}
.footer-direct-links a:hover,
.footer-direct-links a:focus-visible { color: #fff; }
.collab-hero {
  padding: 86px 0 74px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.collab-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .55fr);
  gap: 44px;
  align-items: center;
}
.collab-hero h1 {
  margin: 0 0 20px;
  max-width: 820px;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 5vw, 5rem);
  line-height: .98;
  letter-spacing: -.06em;
  color: var(--ink);
}
.collab-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}
.collab-summary-card,
.collab-list-card {
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: #f7f5f0;
}
.collab-summary-card h2,
.collab-list-card h2,
.collab-list-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: -.03em;
}
.collab-section {
  padding: 78px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.collab-section-alt { background: #f7f5f0; }
.collab-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.collab-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.collab-grid article span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 850;
  letter-spacing: .12em;
}
.collab-grid article h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.15rem;
}
.collab-grid article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.collab-two-cols {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
}
.collab-two-cols h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.collab-two-cols p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.04rem;
}
.two-column-list {
  columns: 2;
  column-gap: 24px;
}
.two-column-list li { break-inside: avoid; }
.collab-form-card { position: static; }
@media (max-width: 1040px) {
  .calculator-wrap,
  .collab-hero-grid,
  .collab-two-cols {
    grid-template-columns: 1fr;
  }
  .collab-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .calculator-section,
  .collab-section,
  .collab-hero { padding: 52px 0; }
  .calculator-card,
  .collab-summary-card,
  .collab-list-card { padding: 20px; border-radius: 12px; }
  .calculator-notes { display: grid; }
  .calculator-actions { display: grid; }
  .calculator-actions a { width: 100%; }
  .footer-direct-links { padding: 28px 0 24px; }
  .footer-direct-links div { display: grid; gap: 12px; }
  .collab-hero h1 { font-size: clamp(2.05rem, 9.5vw, 3.1rem); line-height: 1.08; }
  .collab-hero p { font-size: 1rem; }
  .two-column-list { columns: 1; }
}


/* Logo textual Maresme / Reformas - actualizado 2026-06-30 */
.brand {
  display: inline-flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: max-content;
  line-height: 1;
  text-decoration: none;
  text-align: center;
}
.brand .brand-main {
  display: block;
  font-family: Inter, "Rethink Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.42rem, 1.95vw, 1.92rem);
  font-weight: 850;
  letter-spacing: -.045em;
  color: #050505;
}
.brand .brand-sub {
  display: block;
  margin-left: 0;
  width: 100%;
  text-align: center;
  font-family: Inter, "Rethink Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(.49rem, .58vw, .62rem) !important;
  font-weight: 700;
  letter-spacing: .32em;
  line-height: 1;
  color: #707070;
}
@media (max-width: 760px) {
  .brand { max-width: none; }
  .brand .brand-main { font-size: 1.38rem; }
  .brand .brand-sub { font-size: .48rem !important; letter-spacing: .28em; }
}
@media (max-width: 380px) {
  .brand .brand-main { font-size: 1.24rem; }
  .brand .brand-sub { font-size: .44rem !important; letter-spacing: .25em; }
}

/* Ajuste cabecera: icono de telefono y CTAs a la derecha - 2026-06-30 */
.lead-header .nav {
  align-items: center;
}

.lead-header .main-menu {
  align-items: center;
}

.lead-header .nav-phone,
.lead-header .nav-cta {
  align-self: center;
  white-space: nowrap;
}

.lead-header .nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.lead-header .nav-phone::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  display: inline-block;
  background: #000;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (min-width: 1081px) {
  .lead-header .main-menu {
    flex: 1 1 auto;
    justify-content: flex-end;
  }

  .lead-header .nav-phone {
    margin-left: clamp(8px, 1.2vw, 22px);
  }
}

@media (max-width: 860px) {
  .lead-header .main-menu .nav-phone {
    width: 100%;
    justify-content: flex-start;
    min-height: 46px;
    padding: 0 14px;
  }
}

/* Ajuste cabecera: separar contacto a la derecha y ocultar telefono en menu movil - 2026-06-30 */
@media (min-width: 1081px) {
  .lead-header .main-menu {
    flex: 1 1 auto;
    justify-content: flex-start;
    align-items: center;
  }

  .lead-header .nav-phone {
    margin-left: auto;
  }

  .lead-header .nav-cta {
    margin-left: 0;
  }
}

@media (max-width: 1080px) {
  .lead-header .main-menu .nav-phone {
    display: none !important;
  }
}

/* Ajustes home/movil solicitados 2026-06-30 */
.lead-hero-grid {
  grid-template-columns: minmax(0, 1fr) !important;
}
.lead-hero-copy {
  max-width: 880px;
}
.lead-hero-copy .hero-subtitle {
  max-width: 760px;
}
.quick-lead-section {
  padding: clamp(34px, 5vw, 70px) 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quick-lead-single {
  display: grid;
  justify-items: center;
}
.quick-lead-section .quick-lead-card {
  width: min(100%, 720px);
}
@media (max-width: 760px) {
  .site-header .container.nav {
    justify-content: flex-start !important;
    gap: 12px;
  }
  .site-header .brand {
    margin-right: auto;
    align-items: flex-start !important;
    text-align: left !important;
  }
  .site-header .brand .brand-sub {
    text-align: center !important;
    width: 100%;
  }
  .lead-hero {
    padding-top: 32px;
    padding-bottom: 34px;
  }
  .quick-lead-section {
    padding: 28px 0 38px;
  }
}


/* Ajustes finos móvil 2026-06-30: más margen lateral y mejor respiración */
@media (max-width: 760px) {
  .container {
    width: min(100% - 40px, var(--max));
  }

  .site-header .container.nav {
    width: min(100% - 32px, var(--max));
    padding-left: 0;
    padding-right: 0;
  }

  .lead-hero-copy,
  .calculator-copy,
  .service-copy,
  .section-heading,
  .contact-box,
  .quick-lead-card,
  .calculator-card,
  .faq-grid details,
  .process-grid article {
    max-width: 100%;
  }

  .lead-hero-copy .pretitle,
  .lead-hero-copy h1,
  .lead-hero-copy .hero-subtitle {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 44px, var(--max));
  }

  .site-header .container.nav {
    width: min(100% - 28px, var(--max));
  }
}


/* SEO service pages */
.service-entry-section {
  padding: 18px 0 54px;
}
.service-entry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.service-entry-card {
  display: block;
  min-height: 166px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  color: var(--text);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.service-entry-card:hover,
.service-entry-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(47,58,69,.35);
  box-shadow: 0 20px 42px rgba(18,18,18,.1);
  outline: none;
}
.service-entry-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: .78rem;
  font-weight: 850;
}
.service-entry-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.18;
  letter-spacing: -.035em;
}
.service-entry-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.52;
}
.service-detail-page {
  padding-bottom: 70px;
}
.service-detail-hero {
  padding: clamp(34px, 6vw, 72px) 0 28px;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, .72fr);
  gap: 22px;
  align-items: start;
}
.service-hero-card,
.service-side-card,
.detail-panel,
.service-quote-card,
.project-card,
.zones-main-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-soft);
}
.service-hero-card {
  padding: clamp(28px, 5vw, 52px);
}
.service-hero-card h1 {
  max-width: 860px;
  margin: 0 0 16px;
  font-size: clamp(2.35rem, 5.3vw, 4.9rem);
  line-height: .97;
  letter-spacing: -.07em;
}
.service-hero-card p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  line-height: 1.68;
}
.service-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.service-proof-list span {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--accent-dark);
  font-weight: 800;
  font-size: .86rem;
}
.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.service-hero-actions a,
.service-quote-card .submit-btn,
.project-cta a,
.zones-cta a {
  min-height: 48px;
}
.service-side-card {
  overflow: hidden;
}
.service-side-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.service-side-card div {
  padding: 20px;
}
.service-side-card h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}
.service-side-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.detail-section {
  padding: 22px 0;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.detail-panel {
  padding: clamp(20px, 3vw, 28px);
}
.detail-panel h2,
.detail-panel h3 {
  margin: 0 0 10px;
  letter-spacing: -.045em;
}
.detail-panel p,
.detail-panel li {
  color: var(--muted);
  line-height: 1.65;
}
.detail-panel ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.detail-panel li {
  position: relative;
  padding-left: 22px;
}
.detail-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 900;
}
.service-quote-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .7fr);
  gap: 20px;
  align-items: start;
}
.service-quote-card {
  padding: clamp(22px, 4vw, 34px);
}
.service-quote-card .quick-lead-form {
  margin-top: 18px;
}
.related-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.related-services a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--surface-soft);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 800;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.project-card {
  overflow: hidden;
}
.project-card img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}
.project-card div {
  padding: 20px;
}
.project-card h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  letter-spacing: -.045em;
}
.project-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}
.project-cta,
.zones-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.zones-main-card {
  padding: clamp(24px, 4vw, 40px);
}
.zones-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.zones-grid a {
  display: block;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  text-decoration: none;
  font-weight: 850;
}
.zones-grid a span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 500;
  font-size: .86rem;
  line-height: 1.4;
}
.footer-cookie-btn {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.footer-cookie-btn:hover,
.footer-cookie-btn:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
}

/* Cookie consent */
.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.cookie-panel {
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(18,18,18,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 24px 80px rgba(18,18,18,.18);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}
.cookie-copy h2,
.cookie-modal-card h2 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  letter-spacing: -.04em;
}
.cookie-copy p,
.cookie-modal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: .94rem;
}
.cookie-copy a,
.cookie-policy-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--accent-dark);
  font-weight: 800;
}
.cookie-eyebrow {
  display: inline-flex;
  margin: 0 0 7px !important;
  color: var(--accent-dark) !important;
  font-size: .78rem !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.cookie-actions,
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.cookie-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(47,58,69,.18);
  cursor: pointer;
  font-weight: 850;
  font-size: .92rem;
}
.cookie-btn-secondary { background: #fff; color: var(--text); }
.cookie-btn-primary { background: var(--accent-soft); color: var(--accent-dark); }
.cookie-btn-dark { background: var(--text); color: #fff; border-color: var(--text); }
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1010;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(18,18,18,.38);
}
.cookie-modal-card {
  position: relative;
  width: min(100%, 640px);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 34px 100px rgba(18,18,18,.28);
}
.cookie-close {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}
.cookie-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
}
.cookie-option strong,
.cookie-option span {
  display: block;
}
.cookie-option span {
  margin-top: 4px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}
.cookie-option input {
  width: 22px;
  height: 22px;
}
.cookie-required {
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--accent-dark) !important;
  font-weight: 850;
  font-size: .82rem !important;
}
.cookie-modal-actions {
  margin-top: 18px;
}
@media (max-width: 980px) {
  .service-entry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-detail-grid,
  .service-quote-layout { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .cookie-banner { bottom: calc(76px + env(safe-area-inset-bottom)); }
  .cookie-panel { grid-template-columns: 1fr; }
  .cookie-actions { display: grid; grid-template-columns: repeat(3, 1fr); }
  .cookie-btn { min-height: 44px; padding-inline: 10px; font-size: .84rem; }
  .projects-grid,
  .service-entry-grid,
  .zones-grid { grid-template-columns: 1fr; }
}
@media (max-width: 430px) {
  .cookie-actions,
  .cookie-modal-actions { grid-template-columns: 1fr; display: grid; }
  .cookie-panel { padding: 16px; }
}



/* Fix global 2026-07-01: el footer debe cerrar la página sin hueco beige posterior */
html {
  min-height: 100%;
  background: #171717;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #171717 !important;
  padding-bottom: 0 !important;
}

main {
  flex: 1 0 auto;
  background: var(--bg);
}

.site-header,
.mobile-sticky-cta,
.cookie-panel,
.cookie-modal {
  flex-shrink: 0;
}

.site-footer {
  flex-shrink: 0;
  margin-bottom: 0 !important;
}

@media (max-width: 860px) {
  body {
    padding-bottom: 0 !important;
  }

  .site-footer {
    padding-bottom: calc(38px + 82px + env(safe-area-inset-bottom)) !important;
  }
}


/* Legal pages fix 2026-07-01: beige margins and identical lead header */
body.legal-body {
  background: var(--bg) !important;
}
body.legal-body main.legal-page {
  flex: 1 0 auto;
  width: min(100% - 40px, 900px);
  max-width: 900px;
  margin-inline: auto;
  padding: 56px 0;
  line-height: 1.75;
  color: #344054;
  background: var(--bg);
}
body.legal-body .legal-page h1 { color: #111827; line-height: 1.05; }
body.legal-body .legal-page table { background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
@media (max-width: 760px) {
  body.legal-body main.legal-page { width: min(100% - 28px, 900px); padding: 34px 0 44px; }
}


/* Iconos de opciones del formulario guiado */
.option-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.option-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 23, 23, .08);
  border-radius: 12px;
  background: rgba(23, 23, 23, .035);
  color: #171717;
  transition: color .16s ease, border-color .16s ease, background .16s ease;
}

.option-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.option-card.is-selected .option-icon,
.option-card:hover .option-icon,
.option-card:focus-visible .option-icon {
  color: var(--accent);
  border-color: rgba(47, 58, 69, .24);
  background: #fff;
}

/* Carpinteria: las tarjetas se adaptan a la proporcion real de cada imagen */
.service-side-card img[src*="carpinteria-"],
.project-card img[src*="carpinteria-"] {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: initial;
  object-position: center center;
  display: block;
  background: transparent;
  padding: 0;
}

.projects-grid {
  align-items: start;
}

.carpentry-projects {
  display: block;
  columns: 2 320px;
  column-gap: 16px;
}

.carpentry-projects .project-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  break-inside: avoid;
}

@media (max-width: 720px) {
  .carpentry-projects {
    columns: 1;
  }
}


/* Localidades fix 2026-07-02: evitar laterales negros en páginas con main.container */
body.local-body {
  background: var(--bg) !important;
}
body.local-body main.local-page {
  background: transparent;
}
body.local-body .site-footer {
  background: #171717;
}


/* Ajuste 2026-07-02: menú completo en localidades y aviso de cookies más discreto en móvil */
.local-body .site-header .main-menu {
  min-width: 0;
}

@media (max-width: 720px) {
  .cookie-banner {
    inset: auto 8px calc(8px + env(safe-area-inset-bottom)) 8px;
    justify-content: center;
  }

  .cookie-panel {
    width: min(100%, 420px);
    gap: 9px;
    padding: 10px;
    border-radius: 16px;
    grid-template-columns: 1fr;
    box-shadow: 0 12px 34px rgba(18,18,18,.18);
  }

  .cookie-copy h2 {
    margin-bottom: 3px;
    font-size: .98rem;
    letter-spacing: -.03em;
  }

  .cookie-eyebrow {
    display: none;
  }

  .cookie-copy p {
    font-size: .76rem;
    line-height: 1.35;
  }

  .cookie-copy a {
    margin-top: 4px;
    font-size: .76rem;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .cookie-btn {
    min-height: 34px;
    padding: 0 7px;
    border-radius: 10px;
    font-size: .74rem;
    line-height: 1.05;
  }

  .cookie-modal {
    padding: 10px;
  }

  .cookie-modal-card {
    max-height: calc(100vh - 20px);
    padding: 18px;
    border-radius: 18px;
  }
}

@media (max-width: 380px) {
  .cookie-copy p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .cookie-btn {
    font-size: .7rem;
    padding-inline: 5px;
  }
}


/* Mejoras SEO/CRO 2026-07-02 */
.seo-depth-section {
  background: #f4efe7;
  padding: 56px 0;
}
.field-help {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.35;
}
.calculator-lead-gate strong {
  color: var(--text);
}
.calc-lead-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(47, 58, 69, .12);
}
.calc-lead-intro {
  display: grid;
  gap: 4px;
  padding: 12px 13px;
  border-radius: 16px;
  background: rgba(244, 239, 231, .75);
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.42;
}
.calc-lead-intro b {
  color: var(--text);
}
.local-unique-note {
  margin-top: 22px;
}
@media (max-width: 700px) {
  .seo-depth-section { padding: 36px 0; }
  .calc-lead-form .quick-two-cols { grid-template-columns: 1fr; }
  .calc-lead-intro { font-size: .85rem; }
}

.trust-proof-section {
  padding: 64px 0;
  background: #fff;
}
.trust-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.trust-proof-grid article {
  padding: 22px;
  border: 1px solid rgba(47, 58, 69, .12);
  border-radius: 22px;
  background: #f8f5ef;
  box-shadow: 0 16px 34px rgba(23, 23, 23, .06);
}
.trust-proof-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.trust-proof-grid h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.trust-proof-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.trust-proof-grid a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--text);
  font-weight: 850;
  text-decoration: none;
}
@media (max-width: 860px) {
  .trust-proof-grid { grid-template-columns: 1fr; }
  .trust-proof-section { padding: 42px 0; }
}

.calc-lead-form:not(.is-ready) { display: none; }

/* Calculadora paso a paso 2026-07-02 */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.calculator-wizard-wrap {
  grid-template-columns: minmax(0, .82fr) minmax(430px, .95fr);
}
.calculator-wizard {
  padding: clamp(20px, 3vw, 34px);
}
.calc-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}
.calc-progress span {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: rgba(23, 23, 23, .12);
}
.calc-progress span.is-active,
.calc-progress span.is-done {
  background: var(--ink);
}
.calc-wizard-form {
  display: grid;
  gap: 18px;
}
.calc-step {
  display: none;
  min-height: 330px;
}
.calc-step.is-active {
  display: grid;
  align-content: start;
  gap: 16px;
}
.calc-step-kicker {
  margin: 0;
  color: var(--accent-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.calc-step h3 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.calc-step p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}
.calc-options {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
.calc-option {
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(47, 58, 69, .16);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease, transform .16s ease;
}
.calc-option:hover,
.calc-option:focus-visible,
.calc-option.is-selected {
  border-color: rgba(23, 23, 23, .38);
  background: #f7f5f0;
  box-shadow: 0 12px 28px rgba(15,23,42,.08);
  transform: translateY(-1px);
}
.calc-big-field input {
  min-height: 70px;
  font-size: 1.65rem;
  font-weight: 850;
  letter-spacing: -.03em;
}
.calc-toggle {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid rgba(47,58,69,.16);
  border-radius: 18px;
  background: #fff;
  color: var(--muted);
  line-height: 1.45;
}
.calc-toggle input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--ink);
}
.calc-toggle b,
.calc-toggle small {
  display: block;
}
.calc-toggle b {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: .98rem;
}
.calc-toggle small {
  color: var(--muted);
}
.calc-final-note {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(244, 239, 231, .75);
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.42;
}
.calc-final-note b { color: var(--ink); }
.calc-wizard-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
}
.calc-back {
  min-height: 50px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid rgba(47,58,69,.18);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}
.calc-submit {
  display: none;
  margin-left: auto;
}
.calc-submit.is-visible {
  display: inline-flex;
}
@media (max-width: 900px) {
  .calculator-wizard-wrap {
    grid-template-columns: 1fr;
  }
  .calc-step {
    min-height: auto;
  }
}
@media (max-width: 700px) {
  .calculator-wizard {
    padding: 18px;
  }
  .calc-step h3 {
    font-size: clamp(1.8rem, 10vw, 2.45rem);
  }
  .calc-wizard-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .calc-back,
  .calculator-button,
  .calc-submit.is-visible {
    width: 100%;
    justify-content: center;
  }
}


/* Ajustes calculadora paso a paso y home 2026-07-02 */
.calc-option {
  display: flex;
  align-items: center;
  gap: 12px;
}
.calc-option-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(23, 23, 23, .04);
  color: currentColor;
}
.calc-option-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.calc-option.is-selected .calc-option-icon,
.calc-option:hover .calc-option-icon,
.calc-option:focus-visible .calc-option-icon {
  background: #fff;
}
.home-carpentry-section .service-image img {
  display: block;
  height: 360px;
  min-height: 360px;
  max-height: 360px;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 900px) {
  .home-carpentry-section .service-image img {
    height: 280px;
    min-height: 280px;
    max-height: 280px;
  }
}

/* Validación discreta calculadora */
.field-error {
  margin: 2px 0 7px;
  color: #9f2f25;
  font-size: .84rem;
  font-weight: 800;
}
.field-group.is-invalid input,
.field-group.is-invalid select,
.field-group.is-invalid textarea {
  border-color: rgba(159, 47, 37, .55);
  box-shadow: 0 0 0 3px rgba(159, 47, 37, .08);
}
.privacy-line.is-invalid {
  border-color: rgba(159, 47, 37, .35);
}
.calc-wizard-actions .calculator-button {
  margin-left: auto;
}
@media (max-width: 700px) {
  .calc-wizard-actions .calculator-button {
    margin-left: 0;
  }
}

/* Ajustes calculadora compacta 2026-07-02 */
.calc-card-header {
  margin-bottom: 18px;
}
.calc-card-header .progress-track {
  width: min(320px, 46vw);
  background: #ebe7df;
}
.calc-card-header .progress-track span {
  background: var(--text);
}
.calc-options-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.calc-options-compact .calc-option {
  min-height: 52px;
  padding: 0 12px;
  justify-content: center;
  text-align: center;
  border-radius: 14px;
  font-size: .94rem;
  line-height: 1.15;
}
.calc-options-compact .calc-option-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}
.calc-options-compact .calc-option-icon svg {
  width: 19px;
  height: 19px;
}
.calc-step {
  min-height: 250px;
}
.calc-step h3 {
  font-size: clamp(1.78rem, 3.2vw, 2.6rem);
}
.calc-big-field {
  margin-top: 2px;
}
.calc-big-field input {
  min-height: 62px;
}
.calc-toggle {
  margin-top: 0;
  padding: 14px 16px;
}
@media (max-width: 700px) {
  .calc-card-header .progress-track {
    width: 100%;
  }
  .calc-options-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }
  .calc-options-compact .calc-option {
    min-height: 50px;
    padding: 8px 6px;
    gap: 6px;
    font-size: .78rem;
  }
  .calc-options-compact .calc-option-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }
  .calc-options-compact .calc-option-icon svg {
    width: 16px;
    height: 16px;
  }
}


/* Ajustes calculadora y gracias 2026-07-02 final */
.calculator-button,
.calc-wizard-actions .calculator-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 10px;
  background: #171717 !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(23,23,23,.14);
}
.calculator-button:hover,
.calculator-button:focus-visible {
  background: #2b343d !important;
}
.calc-wizard-actions .calculator-button[hidden],
.calc-submit[hidden] { display: none !important; }
.calc-submit.is-visible {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}
.calc-step .calc-intro-text {
  max-width: 100%;
  line-height: 1.62;
}
.calc-options-compact .calc-option span:last-child {
  white-space: nowrap;
}
.field-error {
  display: block;
  margin: 0 0 7px;
  color: #9f2f25;
  font-size: .84rem;
  font-weight: 800;
}
.field-error.is-fading { display: none; }
body.thanks-body,
body.thanks-body main.thanks-page {
  background: var(--bg) !important;
}
body.thanks-body {
  color: var(--text);
}
body.thanks-body main.thanks-page {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
}
@media (max-width: 760px) {
  .calc-options-compact .calc-option span:last-child { white-space: normal; }
}

/* Ajustes index + calculadora estilo Estudio previo 2026-07-02 */
body#inicio .lead-hero { background: var(--bg); }
body#inicio .service-section { background: #fff; border-bottom: 1px solid var(--line); }
body#inicio .service-section.service-section-alt { background: #f7f5f0; }
body#inicio .trust-strip { background: #fff; border-top: 0; border-bottom: 1px solid var(--line); }
body#inicio .quick-lead-section { background: #f7f5f0; border-top: 0; border-bottom: 1px solid var(--line); }
body#inicio .calculator-section { background: #fff; border-top: 0; border-bottom: 1px solid var(--line); }
body#inicio .process-section { background: #f7f5f0; }
body#inicio .trust-proof-section { background: #fff; }
body#inicio .quote-section { background: #f7f5f0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
body#inicio .local-zones-section { background: #fff; }
body#inicio .faq-section { background: #f7f5f0; }
body#inicio .contact-section { background: #fff; }

.calc-options-study {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}
.calc-options-study .calc-option {
  position: relative;
  min-height: 72px;
  padding: 16px 16px 16px 18px;
  justify-content: flex-start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  text-align: left;
  box-shadow: none;
  font-weight: 750;
  line-height: 1.35;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}
.calc-options-study .calc-option:hover,
.calc-options-study .calc-option:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(47, 58, 69, .35);
  box-shadow: 0 12px 28px rgba(42, 33, 26, .07);
  outline: none;
}
.calc-options-study .calc-option.is-selected {
  border-color: rgba(47, 58, 69, .60);
  background: #eef1f3;
  box-shadow: 0 14px 34px rgba(47, 58, 69, .12);
}
.calc-options-study .calc-option::after {
  content: "";
  width: 24px;
  height: 24px;
  margin-left: auto;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #fff;
}
.calc-options-study .calc-option.is-selected::after {
  border-color: var(--success);
  background: var(--success);
  box-shadow: inset 0 0 0 5px #fff;
}
.calc-options-study .calc-option-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid rgba(23, 23, 23, .08);
  border-radius: 12px;
  background: rgba(23, 23, 23, .035);
}
.calc-options-study .calc-option-icon svg {
  width: 22px;
  height: 22px;
}
.calc-options-study .calc-option.is-selected .calc-option-icon,
.calc-options-study .calc-option:hover .calc-option-icon,
.calc-options-study .calc-option:focus-visible .calc-option-icon {
  color: var(--accent);
  border-color: rgba(47, 58, 69, .24);
  background: #fff;
}
.calc-m2-input {
  position: relative;
}
.calc-m2-input input {
  width: 100%;
  padding-right: 64px !important;
}
.calc-m2-input span {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-weight: 850;
  pointer-events: none;
}
.calc-wizard-actions .calculator-button[hidden],
.calc-wizard-actions .calculator-button[style*="display: none"] {
  display: none !important;
}
@media (max-width: 700px) {
  .calc-options-study .calc-option {
    min-height: 66px;
    padding: 13px 14px;
  }
  .calc-options-study .calc-option-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }
}

/* Gracias premium 2026-07-02 */
.thanks-card-premium {
  max-width: 860px;
  text-align: left;
  padding: clamp(26px, 5vw, 54px);
}
.thanks-card-premium .eyebrow {
  margin-bottom: 18px;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 6px;
}
.thanks-card-premium h1 {
  max-width: 720px;
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 4.8vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -.065em;
}
.thanks-card-premium .thanks-intro {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.75;
}
.thanks-next {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 18px;
}
.thanks-next article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfaf7;
}
.thanks-next span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted-2);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.thanks-next strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1rem;
}
.thanks-next p {
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.65;
}
.thanks-note {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  align-items: start;
  margin: 18px 0 26px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.thanks-note strong {
  color: var(--text);
  font-size: .98rem;
}
.thanks-note span {
  color: var(--muted);
  line-height: 1.7;
}
.thanks-card-premium .thanks-actions {
  justify-content: flex-start;
  margin: 0 0 12px;
}
.thanks-card-premium .thanks-back {
  min-height: auto;
  margin-top: 8px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.thanks-card-premium .thanks-back:hover,
.thanks-card-premium .thanks-back:focus-visible {
  color: var(--text);
}
@media (max-width: 760px) {
  .thanks-card-premium { text-align: left; }
  .thanks-next { grid-template-columns: 1fr; }
  .thanks-note { grid-template-columns: 1fr; gap: 6px; }
  .thanks-card-premium .thanks-actions { align-items: stretch; flex-direction: column; }
  .thanks-card-premium .thanks-actions a { width: 100%; }
}


/* Ajustes home + gracias 2026-07-03 */
body#inicio .lead-hero h1 { max-width: 760px; }
body#inicio .local-zones-section { background: #fff; border-top: 0; border-bottom: 1px solid var(--line); }
body#inicio .quote-section { background: #f7f5f0; border-top: 0; border-bottom: 1px solid var(--line); }
body#inicio .trust-proof-section { background: #fff; border-top: 0; border-bottom: 1px solid var(--line); }
body#inicio .faq-section { background: #f7f5f0; }
.trust-proof-grid { gap: 16px; }
.trust-proof-grid article {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}
.trust-proof-grid span {
  color: var(--muted-2);
  font-size: .8rem;
  margin-bottom: 22px;
  letter-spacing: .08em;
}
.trust-proof-grid h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 760;
  letter-spacing: -.035em;
}
.trust-proof-grid p { line-height: 1.65; }
@media (max-width: 760px) {
  body#inicio .lead-hero h1 { font-size: clamp(2.25rem, 12vw, 3.15rem); }
}


/* Proyectos realizados - galeria premium */
.projects-premium-page {
  background: linear-gradient(180deg, var(--surface-soft) 0%, #fff 36%, var(--surface-soft) 100%);
}

.projects-hero-premium {
  padding: clamp(34px, 6vw, 76px) 0 30px;
}

.projects-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .78fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
}

.projects-hero-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-soft);
  padding: clamp(28px, 5vw, 58px);
}

.projects-hero-copy h1 {
  max-width: 860px;
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 5vw, 4.85rem);
  line-height: .96;
  letter-spacing: -.07em;
}

.projects-hero-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  line-height: 1.68;
}

.projects-hero-showcase {
  display: grid;
  grid-template-columns: .9fr .72fr;
  grid-auto-rows: minmax(150px, auto);
  gap: 12px;
}

.projects-hero-showcase figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 26px;
  background: #171717;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, .72);
}

.projects-hero-showcase .projects-showcase-main {
  grid-row: span 2;
}

.projects-hero-showcase img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.projects-hero-showcase figure:hover img {
  transform: scale(1.035);
}

.projects-hero-showcase figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 9px 11px;
  border-radius: 16px;
  background: rgba(15, 23, 42, .78);
  color: #fff;
  font-weight: 850;
  font-size: .85rem;
  backdrop-filter: blur(10px);
}

.projects-detail-intro {
  padding: 12px 0 24px;
}

.projects-detail-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.projects-detail-strip article {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.projects-detail-strip span,
.premium-project-info span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--accent-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.projects-detail-strip h2 {
  margin: 14px 0 8px;
  font-size: 1.2rem;
  letter-spacing: -.04em;
}

.projects-detail-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.projects-gallery-section {
  padding-top: 34px;
}

.projects-gallery-heading {
  margin-bottom: 22px;
}

.premium-gallery-grid {
  display: block;
  column-count: 3;
  column-gap: 16px;
}

.premium-project-card {
  display: inline-flex;
  width: 100%;
  margin: 0 0 16px;
  min-height: 0;
  break-inside: avoid;
  flex-direction: column;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.premium-project-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 58, 69, .22);
  box-shadow: 0 22px 55px rgba(15, 23, 42, .13);
}

.premium-project-card-large,
.premium-project-card-wide,
.premium-project-card-tall {
  grid-column: auto;
  grid-row: auto;
}

.premium-project-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f5efe6, #fffaf4);
}

.premium-project-card img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: initial;
  display: block;
  transition: filter .35s ease;
}

.premium-project-card:hover img {
  filter: saturate(1.04) contrast(1.03);
}

.premium-project-card-large img,
.premium-project-card-tall img,
.premium-project-card-wide img {
  aspect-ratio: auto;
}

.premium-project-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(18px, 2.4vw, 24px);
}

.premium-project-info h3 {
  margin: 12px 0 8px;
  font-size: clamp(1.18rem, 1.7vw, 1.48rem);
  line-height: 1.08;
  letter-spacing: -.048em;
}

.premium-project-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.projects-cta-premium .detail-panel {
  background: #171717;
  color: #fff;
  border-color: rgba(255,255,255,.08);
}

.projects-cta-premium .detail-panel p {
  color: rgba(255,255,255,.75);
}

.projects-cta-premium .section-kicker {
  color: #d7b98a;
}
.projects-cta-premium .project-cta .contact-primary {
  background: #fff;
  color: #171717;
  border: 1px solid #fff;
}

.projects-cta-premium .project-cta .contact-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.42);
}

.projects-cta-premium .project-cta .contact-primary:hover,
.projects-cta-premium .project-cta .contact-secondary:hover {
  transform: translateY(-1px);
}


@media (max-width: 980px) {
  .projects-hero-grid {
    grid-template-columns: 1fr;
  }
  .projects-hero-showcase {
    grid-template-columns: 1fr 1fr;
  }
  .projects-detail-strip {
    grid-template-columns: 1fr;
  }
  .premium-gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  .projects-hero-premium {
    padding-top: 24px;
  }
  .projects-hero-copy {
    padding: 24px;
  }
  .projects-hero-copy h1 {
    font-size: clamp(2.1rem, 12vw, 3.1rem);
  }
  .projects-hero-showcase {
    grid-template-columns: 1fr;
  }
  .projects-hero-showcase .projects-showcase-main {
    grid-row: auto;
  }
  .premium-gallery-grid {
    column-count: 1;
    column-gap: 0;
  }
  .premium-project-card {
    border-radius: 24px;
  }
  .premium-project-info {
    padding: 18px;
  }
}


/* Language switch */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  border: 1px solid rgba(23,23,23,.12);
  border-radius: 999px;
  background: rgba(239, 231, 218, .55);
  color: var(--text, #171717);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .06em;
}
.lang-switch a {
  color: inherit;
  text-decoration: none;
  opacity: .58;
  transition: opacity .16s ease, color .16s ease;
}
.lang-switch a:hover,
.lang-switch a:focus-visible,
.lang-switch a.is-active {
  opacity: 1;
  color: #171717;
}
.lang-switch span { opacity: .28; }
@media (max-width: 860px) {
  .main-menu .lang-switch {
    width: fit-content;
    margin: 4px 0 8px;
    padding: 8px 11px;
  }
}

/* Language switch single-link fallback */
a.lang-switch {
  text-decoration: none;
  line-height: 1;
}
a.lang-switch:hover,
a.lang-switch:focus-visible {
  background: #fff;
  border-color: rgba(23,23,23,.22);
  color: #171717;
}

/* Calculadora con resultado visible en web */
.calc-result-panel {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid rgba(23, 23, 23, .10);
  border-radius: 26px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f3ee 100%);
  box-shadow: 0 22px 55px rgba(15, 23, 42, .08);
}
.calc-result-label {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.calc-result-panel strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 7vw, 4rem);
  line-height: .95;
  letter-spacing: -.06em;
}
.calc-result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.calc-result-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(23,23,23,.08);
  color: var(--muted);
  font-size: .86rem;
  font-weight: 750;
}
.calc-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.calc-result-actions a {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}
@media (max-width: 700px) {
  .calc-result-actions { display: grid; }
  .calc-result-actions a { width: 100%; justify-content: center; }
  .calc-result-panel { border-radius: 22px; }
}
