:root {
  --bg: #fcfbf8;
  --panel: #ffffff;
  --line: #ece7df;
  --gold: #dc9415;
  --ink: #1a1714;
  --muted: #6f675e;
  --gutter: 1.25rem;
  --nav-h: 5.2rem;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; color-scheme: light; background: var(--bg); }
body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.45;
  font-size: 1rem;
  padding-top: var(--nav-h);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select { font: inherit; color: inherit; }
.wrap { width: min(100% - (var(--gutter) * 2), 1080px); margin-inline: auto; }
.eyebrow {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}
.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 5.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  font-weight: 600;
}
.muted { color: var(--muted); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .85rem 1.25rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  background: none;
  cursor: pointer;
}
.btn-accent { background: var(--ink); color: var(--bg); }
.btn-line { border-color: var(--gold); color: var(--ink); }
.btn:focus-visible,
.nav-links a:focus-visible,
.float:focus-visible,
.feat a:focus-visible,
.redes-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  width: 100%;
  background: rgba(252, 251, 248, .55);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  border-bottom: none;
  transform: translateY(0);
  transition: transform .28s ease, background .25s ease;
  will-change: transform;
}
.nav.is-scrolled { background: rgba(252, 251, 248, .88); }
.nav.is-away { transform: translateY(-110%); pointer-events: none; }
.nav.is-open {
  transform: none;
  pointer-events: auto;
  background: rgba(252, 251, 248, .96);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  min-height: var(--nav-h);
}
.nav-end { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 0 1 auto;
}
.brand img {
  height: 68px;
  width: auto;
  max-width: min(70vw, 320px);
  display: block;
  object-fit: contain;
  object-position: left center;
}
.nav-links { display: flex; gap: 1.1rem; }
.nav-links a {
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-toggle {
  display: none;
  width: 2.7rem; height: 2.7rem;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  background: none; border: 1px solid rgb(220 148 21 / .55); border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 1.15rem; height: 2px; background: var(--ink); }
@media (max-width: 799px) {
  :root { --nav-h: 4.6rem; }
  .brand img { height: 52px; max-width: min(64vw, 240px); }
  .nav-toggle { display: flex; }
  .nav-end .btn { display: none; }
  .nav-links {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; gap: 0;
    background: rgba(252, 251, 248, .96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: .4rem 1.25rem 1rem;
  }
  .nav.is-open .nav-links { display: flex; }
  .nav-links a {
    font-size: 1.05rem;
    padding: .9rem 0;
    border-bottom: 1px solid rgb(220 148 21 / .28);
  }
}

.hero {
  position: relative;
  min-height: min(86svh, 760px);
  overflow: hidden;
  background: var(--bg);
}
.hero-media { position: absolute; inset: 0; background: var(--bg); }
.hero-media .ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(-45deg, #f4f0e8, #f4f0e8 14px, #ebe6dc 14px, #ebe6dc 28px);
  color: rgb(111 103 94 / .7);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-copy {
  position: relative; z-index: 2;
  display: flex; align-items: flex-end;
  min-height: inherit;
  padding: 2.2rem 0 2rem;
}
.hero-copy .eyebrow {
  font-size: clamp(1.05rem, 3.2vw, 1.35rem);
  margin-bottom: .45rem;
}
.hero-copy h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 5vw, 2.9rem);
  line-height: 1.1;
  font-weight: 600;
  max-width: 16ch;
  color: var(--ink);
}
.hero-copy .lead {
  margin: .7rem 0 0;
  max-width: 36ch;
  color: var(--muted);
  font-weight: 500;
}
.hero-copy .btn { margin-top: .85rem; }
.hero-copy .proof {
  margin-top: .85rem;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 500;
}

.servicios { padding: 3rem 0 2.4rem; }
.servicios .display { margin: .2rem 0 .4rem; }
.servicios .muted { margin: 0; }
.feat-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .feat-grid { grid-template-columns: 1fr 1fr 1fr; } }
.feat {
  background: var(--panel);
  border: 1px solid var(--line);
}
.feat .shot { height: 180px; }
@media (min-width: 800px) { .feat .shot { height: 210px; } }
.feat-body { padding: 1rem 1rem 1.15rem; display: grid; gap: .35rem; }
.feat h3 { font-size: 1.05rem; letter-spacing: -.01em; }
.feat p { color: var(--muted); font-size: .95rem; }
.feat .btn { justify-self: start; margin-top: .4rem; padding: .5rem 1rem; }

.shot {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(-45deg, #f4f0e8, #f4f0e8 12px, #ebe6dc 12px, #ebe6dc 24px);
}
.shot-ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 1rem;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgb(111 103 94 / .7);
}

.contacto { padding: 3.8rem 0 4.2rem; background: #f5f3ee; }
.contacto-grid { display: grid; gap: 2.2rem; }
@media (min-width: 860px) { .contacto-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.contacto-copy { display: grid; gap: 1.15rem; align-content: start; }
.contacto-copy .display { line-height: 1.12; max-width: none; }
.contacto-copy .muted { margin: 0; max-width: 32ch; }
.form {
  display: grid; gap: .7rem;
  border: 1px solid var(--line);
  padding: 1.2rem;
  background: var(--bg);
}
.form label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.form input, .form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  padding: .55rem 0;
  border-radius: 0;
}
.form .row { display: grid; gap: .7rem; }
@media (min-width: 600px) { .form .row { grid-template-columns: 1fr 1fr; } }
.form .btn { margin-top: .4rem; justify-self: start; }

.visitar { padding: 3.2rem 0 2.4rem; }
.visit { display: grid; gap: 1.2rem; }
@media (min-width: 860px) { .visit { grid-template-columns: 1fr 1.2fr; align-items: start; } }
.visit-title {
  font-size: clamp(1.05rem, 3.2vw, 1.35rem);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin: 0;
}
.visit-copy { display: grid; gap: .7rem; }
.nap {
  display: grid;
  gap: .7rem;
  line-height: 1.45;
}
.visit-copy .btn { justify-self: start; }
.map-ph {
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(-45deg, #f4f0e8, #f4f0e8 14px, #ebe6dc 14px, #ebe6dc 28px);
  color: rgb(111 103 94 / .7);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.visit-shots { display: grid; gap: 10px; grid-column: 1 / -1; }
@media (min-width: 860px) { .visit-shots { grid-template-columns: 1fr 1fr; } }
.visit-shots .shot { min-height: 180px; }

.redes { padding: 2.4rem 0 3.4rem; border-top: 1px solid var(--line); }
.redes .muted { margin-top: .5rem; }
.redes-list { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1rem; }
.redes-item {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .7rem 1rem;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}
.redes-item.is-soon { cursor: default; }
.redes-item[href^="http"],
.redes-item[data-wa] { color: var(--ink); border-color: var(--gold); }

footer { padding: 2.4rem 0 5.5rem; border-top: 1px solid var(--line); }
.foot-top { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.foot-links { display: flex; gap: 1rem; font-size: .72rem; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); }
.wordmark {
  text-align: center;
  padding: 2.4rem 0 1.2rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 700;
}
.foot-note {
  display: grid;
  gap: .7rem;
  justify-items: center;
  text-align: center;
  font-size: .85rem;
  opacity: .7;
  line-height: 1.45;
}
.foot-note a { text-decoration: underline; }

.float {
  position: fixed;
  right: max(.85rem, env(safe-area-inset-right));
  bottom: max(.85rem, env(safe-area-inset-bottom));
  z-index: 50;
  width: 3.4rem; height: 3.4rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: #25D366; color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.float svg { width: 1.7rem; height: 1.7rem; fill: currentColor; }

#servicios, #contacto, #visitar, #redes { scroll-margin-top: 5.4rem; }

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