:root {
  --ink: #3a3a3a;
  --ink-soft: #5c5752;
  --brown: #5f5348;
  --gold: #c4a574;
  --gold-deep: #a88b5f;
  --cream: #f7f4ef;
  --cream-2: #eee8de;
  --paper: #fbfaf7;
  --white: #fff;
  --sage: #7a8a7c;
  --sage-soft: #eef1ee;
  --wa: #128c4b;
  --line: rgba(58, 58, 58, .12);
  --shadow: 0 20px 50px rgba(58, 58, 58, .07);
  --radius: 20px;
  --header: 92px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-weight: 400;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brown); text-decoration: none; }
a:hover { color: var(--gold-deep); }
ul { padding-left: 1.15rem; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
}
p { margin: 0 0 1rem; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: #fff; padding: .6rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: .6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 48px;
  padding: .7rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: .2s ease;
  text-decoration: none;
}
.btn-nav {
  background: var(--brown);
  color: #fff !important;
  min-height: 42px;
  padding: .45rem 1.05rem;
}
.btn-nav:hover { background: var(--gold-deep); color: #fff !important; }
.btn-whatsapp { background: var(--wa); color: #fff !important; }
.btn-whatsapp:hover { filter: brightness(.95); color: #fff !important; }
.btn-phone, .btn-dark {
  background: var(--ink);
  color: #fff !important;
}
.btn-phone:hover, .btn-dark:hover { background: var(--brown); color: #fff !important; }
.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink) !important;
}
.btn-outline:hover { border-color: var(--brown); background: #fff; }
.btn-gold {
  background: var(--gold);
  color: #fff !important;
}
.btn-gold:hover { background: var(--gold-deep); color: #fff !important; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 239, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand, .brand-footer {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--ink);
}
.brand img, .brand-footer img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream-2);
}
.brand-footer img {
  width: 52px; height: 52px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 700;
}
.brand-text small {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}
.site-nav > a, .has-sub .nav-sub-row > a {
  color: var(--ink);
  font-weight: 500;
  font-size: .95rem;
}
.site-nav > a.is-active, .has-sub.is-active .nav-sub-row > a { color: var(--brown); }
.has-sub { position: relative; }
.nav-sub-row {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.sub-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0;
  cursor: pointer;
  border-radius: 10px;
}
.sub-toggle svg { display: block; margin: auto; transition: transform .2s ease; }
.has-sub.is-open .sub-toggle svg { transform: rotate(180deg); }
.submenu {
  display: none;
  position: absolute;
  top: calc(100% + .6rem);
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: .55rem;
  z-index: 20;
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu { display: grid; }
.submenu a {
  display: block;
  padding: .55rem .75rem;
  border-radius: 10px;
  color: var(--ink);
  font-size: .92rem;
}
.submenu a:hover { background: var(--cream); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 0; background: transparent;
  padding: 10px;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--ink); margin: 6px 0; border-radius: 2px;
}

.hero {
  padding: 3.2rem 0 4rem;
  background:
    radial-gradient(circle at 85% 10%, rgba(196, 165, 116, .2), transparent 28%),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  margin: 0 0 1rem;
}
.hero .lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 38rem;
}
.hero-photo {
  position: relative;
}
.hero-photo img {
  width: 100%;
  height: min(640px, 78vh);
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 1.2rem -1.1rem -1.1rem 1.4rem;
  border: 1px solid var(--gold);
  border-radius: 28px;
  z-index: -1;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.6rem;
}
.chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .4rem .85rem;
  font-size: .82rem;
  color: var(--ink-soft);
}

.section { padding: 4.2rem 0; }
.section-head {
  margin-bottom: 2.2rem;
}
.section-head h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.45rem);
  margin: .2rem 0 0.7rem;
  white-space: nowrap;
}
.section-head .muted { max-width: 42rem; }
.muted { color: var(--ink-soft); }

.band-cream { background: var(--cream); }
.band-sage { background: var(--sage-soft); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem 1.2rem;
  box-shadow: 0 10px 30px rgba(44, 36, 28, .04);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card h3 { margin: .3rem 0 .6rem; font-size: 1.45rem; }
.card p { flex: 1; color: var(--ink-soft); }
.card-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--cream);
  display: grid; place-items: center;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.2rem;
}
.text-link { font-weight: 600; color: var(--brown); }
.text-link:hover { color: var(--gold-deep); }

.split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 3rem;
  align-items: center;
}
.split img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: 50% 12%;
  border-radius: 24px;
}
.split.reverse { grid-template-columns: 1.08fr .92fr; }

.region-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.region {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid var(--line);
}

.page-hero {
  padding: 2.4rem 0 1.6rem;
  background: linear-gradient(180deg, var(--cream), var(--paper));
}
.page-hero h1 {
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  margin: 0;
  white-space: nowrap;
}
.page-about .page-hero h1 {
  font-size: clamp(1.35rem, 2.2vw, 2.15rem);
}
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: .4rem;
  font-size: .86rem; color: var(--ink-soft); margin-bottom: .7rem;
}
.breadcrumb a { color: var(--ink-soft); }

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2.2rem;
  align-items: start;
}
.article-figure img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 22px;
  margin-bottom: 1.6rem;
}
.prose h2 { font-size: 1.85rem; margin: 1.8rem 0 .8rem; }
.prose h3 { font-size: 1.35rem; margin: 1.4rem 0 .55rem; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose li { margin-bottom: .35rem; }

.sidebar { position: sticky; top: calc(var(--header) + 1rem); }
.side-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.side-card h2 { font-size: 1.25rem; margin: 0 0 .6rem; }
.side-cta {
  background: linear-gradient(180deg, #3d3229, #2c241c);
  color: #f6f1ea;
  border: 0;
}
.side-cta h2, .side-cta .eyebrow { color: #f6f1ea; }
.side-cta p { color: rgba(246,241,234,.82); }
.side-cta .eyebrow { color: var(--gold); }
.side-cta .btn { margin-top: .55rem; }
.side-cta .btn-gold {
  background: var(--gold);
  color: #fff !important;
  border-color: transparent;
}
.side-cta .btn-gold:hover { background: var(--gold-deep); color: #fff !important; }
.side-links { list-style: none; padding: 0; margin: 0; }
.side-links a {
  display: block;
  padding: .45rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.accordion details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .85rem 1rem;
  margin-bottom: .65rem;
}
.accordion summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion details p { margin: .7rem 0 0; color: var(--ink-soft); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form {
  display: grid;
  gap: .85rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
}
.form label { font-weight: 600; font-size: .92rem; }
.form input, .form textarea, .form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .8rem .9rem;
  font: inherit;
  background: var(--paper);
}
.form textarea { min-height: 140px; resize: vertical; font-family: var(--sans); }
.honeypot { position: absolute; left: -9999px; }
.alert {
  padding: .9rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.alert-ok { background: var(--sage-soft); }
.alert-err { background: #f8e8e4; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 280px;
}
.map-wrap iframe { width: 100%; height: 320px; border: 0; }

.site-footer {
  background: #241c16;
  color: #efe6d9;
  padding: 3.2rem 0 1.2rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr .9fr 1.1fr;
  gap: 2rem;
}
.site-footer h2 {
  color: #fff;
  font-size: 1.2rem;
  margin: 0 0 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer a, .site-footer p, .site-footer li { color: #d9cfc3; }
.site-footer a:hover { color: #fff; }
.footer-lead { margin-top: 1rem; }
.socials { display: flex; gap: .8rem; margin-top: 1rem; }
.footer-bottom {
  margin-top: 2.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .88rem;
}
.btn-footer { margin-top: 1rem; }

.float-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.float-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  color: #fff !important;
  position: relative;
}
.float-label {
  position: absolute;
  right: 68px;
  background: #fff;
  color: var(--ink);
  padding: .35rem .65rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  transition: .2s ease;
}
.float-btn:hover .float-label, .float-btn:focus .float-label { opacity: 1; transform: none; }
.float-call { background: var(--gold-deep); }
.float-wa { background: var(--wa); }
.float-svg {
  width: 26px;
  height: 26px;
  display: block;
}
.float-call::before,
.float-call::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(184, 149, 106, .55);
  animation: pulse 2s ease-out infinite;
}
.float-call::after { animation-delay: .7s; }
@keyframes pulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.7); opacity: 0; }
}

.cta-band {
  background: linear-gradient(120deg, #3d3229, #6a4b39);
  color: #fff;
  border-radius: 28px;
  padding: 2.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}
.cta-band h2 { color: #fff; margin: 0 0 .4rem; font-size: 2rem; }
.cta-band p { margin: 0; color: rgba(255,255,255,.82); }

.list-services { display: grid; gap: .8rem; }
.list-services a {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  color: var(--ink);
}
.list-services a:hover { border-color: var(--gold); }

@media (max-width: 980px) {
  .hero-grid, .split, .split.reverse, .card-grid, .service-grid, .contact-grid, .footer-grid, .region-grid {
    grid-template-columns: 1fr;
  }
  .hero-photo img, .split img { height: 420px; }
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.2rem 1.4rem;
    border-bottom: 1px solid var(--line);
    gap: .4rem;
  }
  .site-nav.is-open { display: flex; }
  .nav-sub-row { width: 100%; justify-content: space-between; }
  .sub-toggle { display: grid; place-items: center; }
  .has-sub:hover .submenu,
  .has-sub:focus-within .submenu { display: none; }
  .submenu {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: .2rem 0 .2rem .7rem;
  }
  .has-sub.is-open .submenu { display: grid; }
  .sidebar { position: static; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .section-head h2,
  .page-hero h1 { white-space: normal; }
}

@media (max-width: 640px) {
  .hero { padding: 2rem 0 2.5rem; }
  .float-label { display: none; }
}
