:root {
  --bg: #111110;
  --bg-soft: #1a1918;
  --surface: rgba(240, 238, 235, 0.04);
  --line: rgba(240, 238, 235, 0.12);
  --text: #f0eeeb;
  --muted: #9a9690;
  --cream: #f0eeeb;
  --ink: #111110;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Montserrat", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(240, 238, 235, 0.04), transparent 55%),
    var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

address {
  font-style: normal;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h2 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
}

h3 {
  font-size: 1.35rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

p {
  margin: 0;
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-lead {
  margin-top: 0.9rem;
  max-width: 42ch;
  color: var(--muted);
  font-size: 1.02rem;
}

.icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.btn-icon {
  gap: 0.55rem;
}

.btn-icon .icon {
  width: 1.05rem;
  height: 1.05rem;
}

.btn-lg.btn-icon .icon {
  width: 1.15rem;
  height: 1.15rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(17, 17, 16, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.topbar.is-scrolled {
  background: rgba(17, 17, 16, 0.96);
  border-bottom-color: var(--line);
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  width: auto;
  height: 2.6rem;
  object-fit: contain;
  border-radius: 0.35rem;
}

.logo-img--footer {
  height: 2.2rem;
  margin-bottom: 0.5rem;
}

.nav {
  display: none;
  gap: 1.35rem;
}

.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}

.nav a:hover {
  color: var(--cream);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  margin-inline: auto;
  background: var(--cream);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.topbar.is-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.topbar.is-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-lg {
  min-height: 3.2rem;
  padding: 0.9rem 1.55rem;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--cream);
  color: var(--ink);
}

.btn-primary:hover {
  background: #fff;
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(240, 238, 235, 0.04);
  color: var(--cream);
}

.btn-ghost:hover {
  border-color: rgba(240, 238, 235, 0.35);
  background: rgba(240, 238, 235, 0.08);
}

.topbar .btn {
  display: none;
}

.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 16, 0.35) 0%, rgba(17, 17, 16, 0.78) 62%, var(--bg) 100%),
    linear-gradient(90deg, rgba(17, 17, 16, 0.65) 0%, rgba(17, 17, 16, 0.2) 55%, transparent 100%),
    url("assets/images/hero.jpg") center / cover no-repeat;
  transform: scale(1.04);
  animation: hero-zoom 9s var(--ease) both;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 12vw, 7rem) clamp(1rem, 4vw, 2.5rem) clamp(2.5rem, 7vw, 4rem);
  max-width: 680px;
  animation: rise 0.9s var(--ease) 0.15s both;
}

.hero h1 {
  font-size: clamp(3.4rem, 11vw, 6.5rem);
  color: var(--cream);
}

.hero-lead {
  margin-top: 0.75rem;
  max-width: 26ch;
  font-size: clamp(1.05rem, 2.3vw, 1.25rem);
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.trust {
  padding: 0 clamp(1rem, 4vw, 2.5rem) clamp(2rem, 5vw, 3rem);
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 1.35rem 1.25rem;
  display: grid;
  gap: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: var(--surface);
}

.trust-list strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-list span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 4vw, 2.5rem);
}

.section-head {
  max-width: 640px;
  margin-bottom: 2rem;
}

.services {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  max-width: 980px;
}

.services li {
  padding: 1.35rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.services li:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 238, 235, 0.28);
}

.services h3 {
  margin-bottom: 0.4rem;
}

.services p {
  color: var(--muted);
  font-size: 0.96rem;
}

.about {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  background: var(--bg-soft);
}

.about-copy {
  max-width: 34rem;
}

.about-copy > p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.about-copy .btn {
  margin-top: 1.5rem;
}

.about-media {
  min-height: 18rem;
  border-radius: 1.2rem;
  border: 1px solid var(--line);
  overflow: hidden;
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
}

.gallery {
  display: grid;
  gap: 0.85rem;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--line);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  transition: transform 0.8s var(--ease);
}

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

.reviews {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  max-width: 980px;
}

.reviews li {
  padding: 1.5rem 1.35rem;
  border-top: 1px solid var(--line);
}

.reviews p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  line-height: 1.45;
  font-weight: 500;
}

.reviews cite {
  display: block;
  margin-top: 0.9rem;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.local {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

.local-copy address {
  margin: 1rem 0 1.4rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hours {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  max-width: 28rem;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.hours strong {
  color: var(--cream);
  font-weight: 600;
}

.local-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.local-map {
  min-height: 18rem;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--line);
}

.local-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 18rem;
  border: 0;
  filter: grayscale(0.6) contrast(1.05) invert(0.92) hue-rotate(180deg);
}

.cta {
  text-align: center;
  background:
    radial-gradient(ellipse 55% 70% at 50% 0%, rgba(240, 238, 235, 0.06), transparent 65%),
    var(--bg);
}

.cta h2 {
  margin-bottom: 0.75rem;
}

.cta p {
  max-width: 34ch;
  margin: 0 auto 1.6rem;
  color: var(--muted);
}

.footer {
  display: grid;
  gap: 1.25rem;
  padding: 1.75rem clamp(1rem, 4vw, 2.5rem) 6rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-copy {
  margin: 0;
  line-height: 1.45;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 500;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 238, 235, 0.35);
  background: rgba(240, 238, 235, 0.08);
}

.social-link .icon {
  width: 1rem;
  height: 1rem;
}

.footer-copy a {
  color: var(--cream);
  font-weight: 600;
  transition: opacity 0.25s var(--ease);
}

.footer-copy a:hover {
  opacity: 0.75;
}

.footer-legal {
  margin: 0;
  font-size: 0.78rem;
  opacity: 0.7;
}

.footer-legal a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.25s var(--ease), opacity 0.25s var(--ease);
}

.footer-legal a:hover {
  color: var(--cream);
  opacity: 1;
}

.legal-page {
  max-width: 40rem;
  margin: 0 auto;
  padding: 6.5rem clamp(1rem, 4vw, 2.5rem) 3rem;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0.35rem 0 1.5rem;
}

.legal-page p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.legal-page strong {
  color: var(--cream);
  font-weight: 600;
}

.legal-page a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.legal-back {
  margin-top: 2rem !important;
}

.legal-back a {
  text-decoration: none;
  font-weight: 500;
}

.legal-back a:hover {
  opacity: 0.75;
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  border: 1px solid rgba(240, 238, 235, 0.2);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  animation: float-in 0.7s var(--ease) 0.8s both;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.whatsapp-float .icon {
  width: 1.45rem;
  height: 1.45rem;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  background: #fff;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s var(--ease) var(--reveal-delay, 0ms),
    transform 0.85s var(--ease) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@keyframes hero-zoom {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1.04);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 720px) {
  .nav-toggle {
    display: none;
  }

  .nav,
  .topbar .btn {
    display: inline-flex;
  }

  .trust-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1.5rem 1.75rem;
  }

  .services {
    grid-template-columns: repeat(2, 1fr);
  }

  .about,
  .local {
    grid-template-columns: 1fr 1.05fr;
    gap: 2.5rem;
  }

  .about-media,
  .about-media img,
  .local-map,
  .local-map iframe {
    min-height: 26rem;
  }

  .gallery {
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: 32rem;
  }

  .gallery-item--wide {
    grid-column: 1;
    grid-row: 1 / -1;
  }

  .gallery-item--wide img,
  .gallery-item img {
    aspect-ratio: auto;
    min-height: 100%;
    height: 100%;
  }

  .reviews {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .reviews li {
    border-top: 0;
    border-left: 1px solid var(--line);
    padding: 0.25rem 0 0.25rem 1.25rem;
  }

  .reviews li:first-child {
    border-left: 0;
    padding-left: 0;
  }

  .footer {
    grid-template-columns: 1fr auto minmax(0, 16rem);
    align-items: end;
    padding-bottom: 2rem;
    padding-right: max(clamp(1rem, 4vw, 2.5rem), 5.5rem);
  }

  .footer-copy {
    max-width: 28ch;
    text-align: right;
    justify-self: end;
  }

  .footer-legal {
    grid-column: 1 / -1;
  }
}

@media (max-width: 719px) {
  .footer {
    justify-items: center;
    text-align: center;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .footer > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-copy {
    max-width: 22rem;
  }

  .topbar.is-open .nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    background: rgba(17, 17, 16, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .topbar.is-open .nav a {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--line);
  }
}
