:root {
  --ink: #121110;
  --ink-2: #1c1a17;
  --ink-3: #26231f;
  --paper: #f1ebe0;
  --paper-2: #e4ddd0;
  --stone: #b7a99a;
  --muted: #9a9286;
  --line: #2c2924;
  --whatsapp: #1f6b4a;
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, [role="button"] { cursor: pointer; font-family: inherit; }
h1, h2, h3 { font-family: var(--display); font-weight: 500; letter-spacing: -0.03em; text-wrap: balance; line-height: 1.1; margin: 0; }
p { text-wrap: pretty; }
::selection { background: var(--stone); color: var(--ink); }

.wrap { max-width: 80rem; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .wrap { padding: 0 2rem; } }

.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: 4.5rem; display: flex; align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.header.is-on, .header.is-open {
  background: rgba(18,17,16,.95);
  border-bottom-color: var(--line);
  backdrop-filter: blur(8px);
}
.header-inner { width: 100%; max-width: 80rem; margin: 0 auto; padding: 0 1.25rem; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand strong { font-size: 11px; font-weight: 500; letter-spacing: .28em; }
.brand span { margin-top: 4px; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.nav { display: none; gap: 2rem; }
.nav a { font-size: 13px; letter-spacing: .04em; color: var(--muted); }
.nav a:hover, .nav a.is-active { color: var(--paper); }
.header-cta { display: none; }
.burger { width: 44px; height: 44px; background: none; border: 0; color: var(--paper); }
.mobile-panel { display: none; border-top: 1px solid var(--line); background: var(--ink); }
.header.is-open .mobile-panel { display: block; }
.mobile-panel a { display: block; padding: 1rem 1.25rem; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 1.25rem; }
@media (min-width: 1024px) {
  .nav, .header-cta { display: flex; align-items: center; gap: .75rem; }
  .burger { display: none; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  height: 3rem; padding: 0 1.5rem; border-radius: .5rem;
  font-size: .875rem; font-weight: 500; letter-spacing: .04em;
  border: 1px solid transparent; transition: opacity .2s var(--ease), transform .2s var(--ease), background .2s var(--ease);
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--paper); color: var(--ink); }
.btn-primary:hover { background: var(--paper-2); }
.btn-ghost { background: transparent; color: var(--paper); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--stone); }
.btn-sm { height: 2.25rem; padding: 0 .9rem; font-size: .75rem; border-radius: .25rem; }

.hero { position: relative; min-height: 100svh; overflow: hidden; display: flex; align-items: flex-end; }
.hero img, .hero video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(to top, var(--ink) 0%, rgba(18,17,16,.35) 45%, rgba(18,17,16,.1) 100%); }
.hero-copy { position: relative; width: 100%; max-width: 80rem; margin: 0 auto; padding: 7rem 1.25rem 4rem; }
.eyebrow { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--stone); }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); max-width: 18ch; margin-top: 1rem; }
.hero .lede { max-width: 34rem; margin-top: 1.25rem; color: var(--paper-2); font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

.section { padding: 4rem 0; border-top: 1px solid var(--line); }
.split { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .split-12 { grid-template-columns: 3fr 9fr; } .split-2 { grid-template-columns: 1fr 1fr; } }
.kicker { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.display { font-size: clamp(2rem, 4vw, 3rem); max-width: 22ch; }
.muted { color: var(--muted); }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line); }
@media (min-width: 640px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stats dt { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.stats dd { margin: .25rem 0 0; font-family: var(--display); font-size: 1.5rem; }

.reviews { display: grid; gap: 2rem; margin-top: 2.5rem; }
@media (min-width: 768px) { .reviews { grid-template-columns: 1fr 1fr 1fr; } }
.reviews blockquote { margin: 0; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.reviews p { font-family: var(--display); font-size: 1.25rem; line-height: 1.35; margin: 0; }
.reviews footer { margin-top: 1rem; font-size: .85rem; color: var(--muted); }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.grid-2 { display: grid; gap: 1rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.card { position: relative; overflow: hidden; border-radius: .875rem; min-height: 320px; display: block; color: var(--paper); }
.card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover img { transform: scale(1.04); }
.card-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,17,16,.8), transparent 55%); }
.card-copy { position: absolute; inset: auto 0 0; padding: 1.35rem; }
.card-copy .tag { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--stone); }
.card-copy h3 { font-size: 1.6rem; margin-top: .2rem; }

.svc-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: .875rem; overflow: hidden; margin-top: 2.5rem; }
@media (min-width: 768px) { .svc-grid { grid-template-columns: 1fr 1fr 1fr; } }
.svc { background: var(--ink-2); padding: 1.5rem; }
.svc img { aspect-ratio: 4/3; width: 100%; object-fit: cover; border-radius: .5rem; }
.svc h3 { font-size: 1.5rem; margin-top: 1.1rem; }
.svc p { color: var(--muted); font-size: .9rem; margin: .5rem 0 0; }

.process { display: grid; gap: 2rem; margin-top: 2.5rem; }
@media (min-width: 768px) { .process { grid-template-columns: repeat(4, 1fr); } }
.process li { list-style: none; border-top: 1px solid var(--line); padding-top: 1.25rem; }
.process { padding: 0; margin-left: 0; }
.process .num { font-family: var(--display); font-size: 1.8rem; color: var(--stone); }
.process h3 { font-size: 1.5rem; margin-top: .6rem; }
.process p { color: var(--muted); font-size: .9rem; margin: .5rem 0 0; }

.band { display: grid; }
@media (min-width: 768px) { .band { grid-template-columns: 1fr 1fr; } }
.band img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.band-copy { display: flex; flex-direction: column; justify-content: center; padding: 3rem 1.25rem; }
@media (min-width: 768px) { .band-copy { padding: 3rem; } }

.cta { position: relative; overflow: hidden; text-align: center; padding: 6rem 1.25rem; }
.cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .4; }
.cta .veil { position: absolute; inset: 0; background: rgba(18,17,16,.7); }
.cta-inner { position: relative; max-width: 40rem; margin: 0 auto; }
.cta h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-top: .6rem; }
.cta p { color: var(--paper-2); margin: 1rem auto 0; max-width: 28rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 2rem; }

.footer { border-top: 1px solid var(--line); }
.footer-grid { display: grid; gap: 2.5rem; padding: 4rem 0; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 5fr 3fr 2fr 2fr; } }
.footer h3 { font-size: 1.8rem; margin-top: 1rem; max-width: 16ch; }
.footer .label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.footer p, .footer li { font-size: .9rem; color: var(--paper-2); }
.footer ul { list-style: none; padding: 0; margin: .75rem 0 0; }
.footer li { margin: .35rem 0; }
.footer a:hover { color: var(--paper); }
.legal { border-top: 1px solid var(--line); padding: 1.1rem 0; font-size: 11px; letter-spacing: .04em; color: var(--muted); display: flex; flex-direction: column; gap: .4rem; }
@media (min-width: 768px) { .legal { flex-direction: row; justify-content: space-between; } }

.wa {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 40;
  height: 3.5rem; padding: 0 1.25rem; border-radius: 999px;
  background: var(--whatsapp); color: var(--paper);
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .875rem; font-weight: 500;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.wa:hover { transform: scale(1.03); }
.wa svg { width: 20px; height: 20px; fill: currentColor; }

.page-hero { padding: 7.5rem 0 2rem; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); max-width: 18ch; }
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.75rem; }
.chip { height: 2.5rem; padding: 0 1rem; border-radius: 999px; border: 1px solid var(--line); background: transparent; color: var(--muted); font-size: .875rem; }
.chip.is-on { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.masonry { display: grid; gap: .75rem; padding: 2.5rem 0 5rem; }
@media (min-width: 640px) { .masonry { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .masonry { grid-template-columns: 1fr 1fr 1fr; } }
.masonry .card { min-height: 340px; border: 0; background: none; width: 100%; text-align: left; padding: 0; }
.masonry .card.tall { min-height: 520px; }
@media (min-width: 640px) { .masonry .card.tall { grid-row: span 2; min-height: 100%; } }

.lightbox { position: fixed; inset: 0; z-index: 60; background: rgba(18,17,16,.9); display: none; align-items: center; justify-content: center; padding: 1rem; }
.lightbox.is-on { display: flex; }
.lightbox img { max-height: 78vh; max-width: 64rem; border-radius: .5rem; object-fit: contain; }
.lightbox figcaption { text-align: center; margin-top: 1rem; }
.lb-close { position: absolute; top: 1rem; right: 1rem; width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--line); background: transparent; color: var(--paper); font-size: 1.4rem; }

.svc-row { display: grid; gap: 2rem; align-items: center; border-top: 1px solid var(--line); padding-top: 2.5rem; margin-top: 2.5rem; }
@media (min-width: 768px) { .svc-row { grid-template-columns: 1fr 1fr; gap: 3rem; } .svc-row.flip .media { order: 2; } }
.svc-row img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: .875rem; }
.svc-row .num { font-family: var(--display); font-size: 1.8rem; color: var(--stone); }

.extras { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: .875rem; overflow: hidden; margin: 2rem 0 3rem; }
@media (min-width: 640px) { .extras { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .extras { grid-template-columns: 1fr 1fr 1fr; } }
.extras div { background: var(--ink); padding: 1.5rem; }
.extras h3 { font-size: 1.2rem; }
.extras p { color: var(--muted); font-size: .9rem; margin: .4rem 0 0; }

.panel { border: 1px solid var(--line); border-radius: .875rem; padding: 2rem 1.5rem; background: var(--ink-2); }

.form { background: var(--ink-2); border: 1px solid var(--line); border-radius: .875rem; padding: 1.5rem; }
label { display: block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 1.1rem; }
label:first-child { margin-top: 0; }
input, select, textarea {
  width: 100%; margin-top: .5rem; height: 3rem; padding: 0 1rem;
  border-radius: .5rem; border: 1px solid var(--line); background: var(--ink);
  color: var(--paper); font-family: inherit; font-size: .9rem;
}
textarea { height: auto; min-height: 7rem; padding: .85rem 1rem; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--stone); }
.map { width: 100%; height: 380px; border: 0; border-radius: .875rem; filter: grayscale(1) contrast(1.15); }
.facts dt { color: var(--muted); font-size: .85rem; margin-top: 1rem; }
.facts dd { margin: .2rem 0 0; color: var(--paper); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card img, .wa, .btn { transition: none; }
}
