/* Sanchez Landscape — premium single-page styles */
:root {
  --color-primary: #1b4332;
  --color-accent: #d4a017;
  --color-bg: #f5f0e8;
  --color-text: #1a1a1a;
  --color-white: #ffffff;
  --color-light-green: #52b788;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.06);
  --shadow-md: 0 12px 32px rgba(26, 26, 26, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --header-height: 72px;
  --transition: 0.25s ease;
  --container: min(1120px, calc(100% - 2rem));
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  text-decoration: underline;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--color-accent);
  color: var(--color-text);
  font-weight: 700;
  border-radius: 8px;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 16px;
  outline: 3px solid var(--color-white);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 1.35rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.btn--accent {
  background: linear-gradient(145deg, var(--color-accent) 0%, #c49210 100%);
  color: var(--color-text);
  border-color: rgba(0, 0, 0, 0.08);
}

.btn--accent:hover {
  background: linear-gradient(145deg, #e4b32a 0%, var(--color-accent) 100%);
}

.btn--block {
  width: 100%;
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.header--scrolled {
  background: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.header:not(.header--scrolled) {
  background: linear-gradient(180deg, rgba(27, 67, 50, 0.85) 0%, transparent 100%);
}

.header__inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.header__logo:hover {
  color: var(--color-white);
  text-decoration: none;
}

.header__mobile-tools {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
}

@media (min-width: 900px) {
  .header__mobile-tools {
    margin-left: 0;
    flex: 1;
    justify-content: center;
  }
}

.header__quote-mobile {
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.42rem 0.75rem;
  white-space: nowrap;
  line-height: 1.2;
}

@media (min-width: 900px) {
  .header__quote-mobile {
    display: none !important;
  }
}

.logo-img {
  width: auto;
  object-fit: contain;
  max-height: 59px;
  display: block;
}

@media (min-width: 768px) {
  .logo-img {
    max-height: 60px;
  }
}

.footer__logo-img {
  max-height: 72px;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .footer__logo-img {
    max-height: 70px;
  }
}

.header__actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 900px) {
  .header__actions {
    display: flex;
  }
}

.header__phone {
  color: var(--color-white);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.header__phone:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.header__cta {
  white-space: nowrap;
  font-size: 0.95rem;
  padding: 0.6rem 1.15rem;
}

/* Nav */
.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  cursor: pointer;
  z-index: 120;
}

@media (min-width: 900px) {
  .nav__toggle {
    display: none;
  }
}

.nav__toggle-bar {
  display: block;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav--open .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav--open .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav--open .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 899px) {
  .nav {
    position: relative;
  }

  .nav__list {
    position: fixed;
    inset: 0;
    padding: calc(var(--header-height) + 2rem) 2rem 2rem;
    background: var(--color-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.35rem;
    font-weight: 700;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 110;
  }

  .nav--open .nav__list {
    transform: translateX(0);
  }

  .nav__link {
    color: var(--color-white);
    text-decoration: none;
  }

  .nav__link:hover {
    color: var(--color-accent);
    text-decoration: none;
  }

  .nav__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
    max-width: 100%;
    padding-bottom: 1.25rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .nav__contact-link {
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.08rem;
    text-decoration: none;
    text-align: center;
  }

  .nav__contact-link:hover {
    color: var(--color-accent);
    text-decoration: none;
  }

  .nav__contact-link--email {
    font-size: 0.88rem;
    font-weight: 600;
    word-break: break-word;
    max-width: min(100%, 18rem);
  }
}

@media (min-width: 900px) {
  .nav__contact {
    display: none !important;
  }

  .nav__list {
    display: flex;
    flex-direction: row;
    gap: 1.75rem;
    align-items: center;
  }

  .nav__link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    position: relative;
  }

  .nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition);
  }

  .nav__link:hover {
    text-decoration: none;
    color: var(--color-accent);
  }

  .nav__link:hover::after {
    width: 100%;
  }
}

.nav__social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 899px) {
  .nav__social {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}

.nav__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.nav__social-link:hover {
  background: var(--color-accent);
  color: var(--color-text);
  text-decoration: none;
  transform: translateY(-2px);
}

.nav__social-icon {
  display: block;
  flex-shrink: 0;
}

.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 105;
}

.nav__overlay[hidden] {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 3rem;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background-color: var(--color-primary);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 15, 0.55);
  z-index: 1;
  pointer-events: none;
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.12;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero__grid--foreground {
  position: relative;
  z-index: 3;
}

.hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr minmax(320px, 400px);
    gap: 3rem;
  }
}

.hero__content {
  color: var(--color-white);
  max-width: 38rem;
}

.hero__badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(212, 160, 23, 0.25);
  border: 1px solid rgba(212, 160, 23, 0.5);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  color: #fceabb;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero__sub {
  margin: 0;
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 34rem;
}

.hero__established {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fceabb;
  opacity: 0.92;
}

.hero__sub--secondary {
  margin-top: 0.75rem;
  font-style: italic;
  opacity: 0.88;
  font-size: 1rem;
}

.card--quote {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(27, 67, 50, 0.08);
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.5rem;
  color: var(--color-primary);
}

.card__quote-promise {
  margin: 0 0 1.15rem;
  font-size: 0.95rem;
  color: rgba(26, 26, 26, 0.78);
  line-height: 1.4;
}

.card__quote-promise strong {
  color: var(--color-primary);
}

/* Forms */
.form__row {
  margin-bottom: 1rem;
}

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--color-text);
}

.form__input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid rgba(27, 67, 50, 0.15);
  border-radius: 10px;
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form__input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.25);
}

.form__textarea {
  resize: vertical;
  min-height: 80px;
}

.form__error {
  color: #b00020;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.form__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.35rem;
}

.form__radio-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  cursor: pointer;
}

/* Trust bar */
.trust-bar {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 1rem 0;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  overflow-x: hidden;
}

.trust-bar__track {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.trust-bar__track::-webkit-scrollbar {
  display: none;
}

.trust-bar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  min-width: max-content;
}

@media (min-width: 900px) {
  .trust-bar__list {
    justify-content: space-between;
    min-width: auto;
    flex-wrap: wrap;
  }
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.trust-bar__icon {
  color: var(--color-accent);
}

/* Sections */
.section {
  padding-block: 4.5rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
  margin: 0 0 0.75rem;
  color: var(--color-primary);
}

.section__title--left {
  text-align: left;
}

.section__lead {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  color: rgba(26, 26, 26, 0.82);
}

.section--thank-you {
  padding-top: calc(var(--header-height) + 3rem);
}

.section--thank-you .thank-you__actions {
  text-align: center;
  margin-top: 2rem;
}

.section--legal .legal-page {
  max-width: 40rem;
  margin-inline: auto;
}

.section--legal .legal-page__body {
  text-align: left;
}

.section--legal .legal-page__body p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.88);
}

.section--services {
  background: var(--color-bg);
}

.services-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.service-card__icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.75rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: var(--color-primary);
}

.service-card__text {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(26, 26, 26, 0.8);
}

/* Why split */
.section--why {
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg) 100%);
}

.why-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .why-split {
    grid-template-columns: 1.05fr 1fr;
    gap: 3.5rem;
  }
}

.why-split__img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}

.checklist {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
}

.checklist__item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.checklist__mark {
  color: var(--color-light-green);
  flex-shrink: 0;
}

/* Before / after — transformations */
.section--transformations {
  background: var(--color-bg);
}

.transformations-grid {
  display: grid;
  gap: 2rem;
}

@media (max-width: 767px) {
  .transformations-grid {
    gap: 3.75rem;
  }

  .transformation-card {
    margin-bottom: 0.5rem;
  }

  .before-after-slider {
    touch-action: pan-y;
  }
}

@media (min-width: 768px) {
  .transformations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .transformations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.transformation-card {
  margin: 0;
}

.before-after-slider {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: col-resize;
  user-select: none;
  touch-action: none;
  aspect-ratio: 3/2;
  box-shadow: var(--shadow-md);
  background: var(--color-primary);
}

.after-base {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.after-base img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.before-mask {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  width: 50%;
  z-index: 1;
  border-right: 3px solid var(--color-white);
  box-shadow: 6px 0 20px rgba(0, 0, 0, 0.2);
}

.before-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 44px;
  z-index: 10;
  cursor: col-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: none;
  transform: translateX(-50%);
}

.slider-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  margin-left: -2px;
  background: var(--color-white);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
  border-radius: 2px;
  pointer-events: none;
}

.slider-circle {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  color: var(--color-primary);
}

.before-after-slider .label {
  position: absolute;
  bottom: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--color-white);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 2;
}

.before-mask .label {
  left: 12px;
}

.after-base .label {
  right: 12px;
}

/* Gallery — column masonry */
.section--gallery {
  background: var(--color-white);
}

.gallery-grid {
  columns: 2;
  column-gap: 12px;
}

@media (min-width: 900px) {
  .gallery-grid {
    columns: 4;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  font: inherit;
  background: var(--color-bg);
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.gallery-item:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item--collapsed {
  display: none;
}

.gallery-item--collapsed.is-revealed {
  display: block;
}

.gallery-load-more-wrap {
  text-align: center;
  margin: 1.75rem 0 0;
}

.gallery-load-more[hidden] {
  display: none;
}

.gallery-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Testimonials */
.section--testimonials {
  background: var(--color-primary);
  color: var(--color-white);
}

.section__title--on-dark {
  color: var(--color-white);
}

.testimonials__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  margin: 0 -1rem;
  padding: 0 1rem 0.5rem;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 900px) {
  .testimonials__viewport {
    overflow: visible;
    margin: 0;
    padding: 0;
  }
}

.testimonials__track {
  display: flex;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .testimonials__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.testimonial-card {
  flex: 0 0 min(100%, 320px);
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 1.5rem;
}

@media (min-width: 900px) {
  .testimonial-card {
    flex: none;
  }
}

.testimonial-card__stars {
  margin: 0 0 0.75rem;
  color: var(--color-accent);
  letter-spacing: 2px;
  font-size: 1rem;
}

.testimonial-card__text {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.55;
}

.testimonial-card__meta {
  margin: 0;
  opacity: 0.9;
  font-size: 0.95rem;
}

/* Service area */
.section--area {
  background: var(--color-bg);
}

.area-split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .area-split {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
    gap: 3rem;
  }
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--color-white);
  line-height: 0;
}

.map-embed iframe {
  width: 100%;
  height: 380px;
  display: block;
}

.area-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 0.6rem;
}

.area-list li {
  position: relative;
}

.area-list__chip {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--color-white);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  border: 2px solid rgba(27, 67, 50, 0.12);
  cursor: default;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}

.area-list__chip::before {
  content: "📍";
  font-size: 0.75rem;
  flex-shrink: 0;
}

.area-list li:hover .area-list__chip {
  border-color: var(--color-accent);
  background: #fffdf5;
}

.area-list__tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
  transform: translateX(-50%) translateY(4px);
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

.area-list__tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--color-primary);
}

.area-list li:hover .area-list__tooltip,
.area-list li:focus-within .area-list__tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.area-split__cta {
  font-size: 1.1rem;
  font-weight: 700;
}

.area-split__cta a {
  color: var(--color-primary);
  font-weight: 800;
  text-decoration: underline;
}

/* About */
.section--about {
  background: var(--color-white);
}

.about-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-split {
    grid-template-columns: 1fr minmax(260px, 380px);
    gap: 3rem;
  }
}

.about-split__text {
  font-size: 1.08rem;
  margin: 0 0 1rem;
  color: rgba(26, 26, 26, 0.88);
}

.about-split__img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
}

/* Contact */
.section--contact {
  background: linear-gradient(180deg, var(--color-bg) 0%, #ebe4d8 100%);
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.15fr 1fr;
    align-items: start;
  }
}

.contact-grid__form {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 1.25rem;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  border: 2px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
}

.contact-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
  text-decoration: none;
}

.contact-card--static {
  cursor: default;
}

.contact-card--static:hover {
  transform: none;
}

.contact-card__icon {
  font-size: 1.25rem;
}

.contact-card__label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
}

.contact-card__value {
  font-weight: 700;
  word-break: break-word;
}

.contact-social {
  padding: 1.25rem;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius);
}

.contact-social__label {
  display: block;
  font-weight: 800;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
  color: var(--color-accent);
}

.contact-social__links {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  transition: background var(--transition), transform var(--transition);
}

.social-icon:hover {
  background: var(--color-accent);
  color: var(--color-text);
  text-decoration: none;
  transform: scale(1.05);
}

.social-icon--footer {
  width: 48px;
  height: 48px;
  padding: 0;
}

.social-icon--footer svg {
  display: block;
}

/* Footer */
.footer {
  background: #0f281e;
  color: rgba(255, 255, 255, 0.88);
  padding: 3rem 1rem 1.5rem;
}

.footer__grid {
  display: grid;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    text-align: left;
    align-items: start;
  }
}

.footer__logo-link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.footer__logo-link:hover {
  text-decoration: none;
  opacity: 0.92;
}

.footer__tagline {
  margin: 0.5rem 0 0;
  max-width: 22rem;
  font-size: 0.95rem;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 700;
}

.footer__nav a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-top: 1.75rem;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}

.footer__legal a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.footer__legal-btn {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__legal-btn:hover {
  color: var(--color-accent);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer__social {
    justify-content: flex-start;
  }
}

.footer__copy {
  text-align: center;
  margin: 1.5rem 0 0;
  font-size: 0.85rem;
  opacity: 0.65;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie consent modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.cookie-modal[hidden] {
  display: none !important;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 40, 30, 0.55);
}

.cookie-modal__panel {
  position: relative;
  z-index: 1;
  width: min(26rem, 100%);
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
  padding: 1.75rem 1.5rem;
  background: var(--color-white);
  color: var(--color-text);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.cookie-modal__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.75rem;
  color: var(--color-primary);
}

.cookie-modal__intro {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(26, 26, 26, 0.82);
}

.cookie-modal__row {
  margin-bottom: 1.15rem;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
}

.cookie-toggle__label {
  flex: 1;
}

.cookie-toggle__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cookie-toggle__input:focus-visible + .cookie-toggle__switch {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

.cookie-toggle__switch {
  flex-shrink: 0;
  position: relative;
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: #c4ccc8;
  transition: background var(--transition);
}

.cookie-toggle__switch::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  top: 3px;
  left: 4px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.cookie-toggle__input:checked + .cookie-toggle__switch {
  background: var(--color-primary);
}

.cookie-toggle__input:checked + .cookie-toggle__switch::after {
  transform: translateX(18px);
}

.cookie-modal__done {
  width: 100%;
  margin-top: 0.5rem;
}

/* WhatsApp */
.whatsapp-bubble {
  position: fixed;
  bottom: 28px;
  right: 20px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-bubble:hover {
  transform: scale(1.08);
  text-decoration: none;
}

.whatsapp-bubble:focus-visible {
  outline: 3px solid var(--color-white);
  outline-offset: 3px;
}

.whatsapp-bubble__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulse-ring 2s ease-out infinite;
  pointer-events: none;
  opacity: 0.7;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.whatsapp-bubble::after {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-text);
  color: var(--color-white);
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  box-shadow: var(--shadow-md);
}

@media (min-width: 900px) {
  .whatsapp-bubble:hover::after {
    opacity: 1;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  cursor: zoom-out;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__img {
  max-width: min(100%, 1100px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  pointer-events: none;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-text);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  z-index: 151;
}

.lightbox__close:hover {
  background: var(--color-accent);
}

/* FAQ */
.section--faq {
  background: var(--color-white);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item__question {
  cursor: pointer;
  padding: 1.25rem 2rem 1.25rem 0;
  font-weight: 700;
  font-size: 1.05rem;
  list-style: none;
  position: relative;
  color: var(--color-primary);
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-item__question::after {
  content: "−";
}

.faq-item__answer {
  padding: 0 0 1.25rem;
  color: var(--color-text);
  line-height: 1.7;
}

.faq-item__answer p {
  margin: 0 0 0.75rem;
}

.faq-item__answer a {
  color: var(--color-accent-dark, var(--color-accent));
  text-decoration: underline;
}

/* Scroll animations */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-animate-delay="1"] {
  transition-delay: 0.12s;
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}
