:root {
  --black: #0e0e0f;
  --black-2: #171719;
  --gold: #b49455;
  --gold-light: #d7c28e;
  --gold-dark: #866a34;
  --paper: #e8e6e1;
  --white: #ffffff;
  --ink: #18130d;
  --muted: #51483b;
  --line: rgba(180, 148, 85, 0.28);
  --radius: 24px;
  --shadow: 0 22px 65px rgba(24, 20, 13, 0.12);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(180,148,85,.24), transparent 28%),
    radial-gradient(circle at 90% 42%, rgba(90,65,28,.12), transparent 34%),
    linear-gradient(135deg, #f6f0e4 0%, #e3d3b6 48%, #fbf8f1 100%);
  background-attachment: fixed;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(24,20,15,0.97);
  border-bottom: 1px solid rgba(215,194,142,.24);
  box-shadow: 0 10px 30px rgba(0,0,0,.16);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  width: 228px;
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 2px solid rgba(215,194,142,.92);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0,0,0,.38), 0 0 0 5px rgba(180,148,85,.16);
}
.logo img { width: 100%; height: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}
.main-nav a {
  position: relative;
  font-size: 0.91rem;
  font-weight: 750;
  color: #fffaf0;
  text-shadow: 0 1px 2px rgba(0,0,0,.7);
}
.main-nav a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--gold);
  transition: right .22s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { right: 0; }
.nav-contact {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white) !important;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0 12px;
  border: 0;
  border-radius: 50%;
  background: var(--black);
  cursor: pointer;
}
.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--gold-light);
  transition: transform .22s ease, opacity .22s ease;
}
.menu-button.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button.open span:nth-child(2) { opacity: 0; }
.menu-button.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  padding: 84px 0 96px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 22%, rgba(215,194,142,.25), transparent 28%),
    radial-gradient(circle at 10% 90%, rgba(180,148,85,.16), transparent 34%),
    linear-gradient(135deg, #211b15 0%, #3a2f23 52%, #171411 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .5;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 54px 54px;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  align-items: center;
  gap: 70px;
}
.kicker {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.kicker.dark { color: var(--gold-dark); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  line-height: 1.08;
}
h1 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 6.5vw, 6.1rem);
  font-weight: 500;
  letter-spacing: -.045em;
}
h1 span { color: #e2c87f; text-shadow: 0 2px 18px rgba(180,148,85,.18); }
h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.3vw, 4.45rem);
  font-weight: 500;
  letter-spacing: -.035em;
}
h3 { font-size: 1.45rem; }
.hero-subtitle {
  max-width: 720px;
  color: #ddd8cd;
  font-size: clamp(1.08rem, 1.8vw, 1.36rem);
}
.hero-subtitle strong { color: #fff; }
.hero-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.hero-areas span {
  padding: 8px 12px;
  border: 1px solid rgba(215,194,142,.26);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: #e3dfd5;
  font-size: .82rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold, .button-whatsapp { background: #c9a85f; color: #17130f; box-shadow: 0 15px 36px rgba(180,148,85,.22); }
.button-gold:hover, .button-whatsapp:hover { background: #ddc47e; }
.button-call { background: #f3ecdf; color: #211b15; border-color: rgba(215,194,142,.5); }
.button-call:hover { background: #fff; }
.button-outline { color: #fff; border-color: rgba(255,255,255,.27); }
.button-outline:hover { background: rgba(255,255,255,.07); }
.button-dark { width: 100%; color: #fff; background: var(--black); }

.hero-panel {
  overflow: hidden;
  border: 1px solid rgba(215,194,142,.28);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.hero-logo-wrap {
  margin: 20px;
  padding: 24px;
  border: 2px solid rgba(215,194,142,.92);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(0,0,0,.34), 0 0 0 5px rgba(180,148,85,.12);
}
.hero-logo-wrap img { width: 100%; height: auto; }
.hero-data { padding: 0 22px 22px; }
.hero-data > div {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,.09);
}
.hero-data small {
  color: #aaa59b;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.hero-data p, .hero-data a { margin: 0; color: #fff; font-weight: 750; }

.section { padding: 104px 0; }
.section-title { max-width: 760px; }
.section-title.centered { margin: 0 auto 48px; text-align: center; }

.profile-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: start;
}
.profile-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, #f7f2e7);
  box-shadow: var(--shadow);
}
.profile-card::after {
  content: "§";
  position: absolute;
  right: 14px;
  bottom: -82px;
  color: rgba(180,148,85,.12);
  font: 250px/1 Georgia, serif;
}
.profile-card > p { max-width: 500px; font-size: 1.2rem; }
.experience {
  position: absolute;
  left: 38px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.experience strong {
  color: var(--gold-dark);
  font: 4.8rem/1 Georgia, serif;
}
.experience span {
  max-width: 110px;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.areas { background: rgba(243,237,225,.94); border-block: 1px solid rgba(134,106,52,.16); }
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.area-grid article {
  position: relative;
  min-height: 195px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(23,19,12,.055);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.area-grid article:hover {
  transform: translateY(-5px);
  border-color: var(--line);
  box-shadow: var(--shadow);
}
.area-grid article::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 110px;
  height: 110px;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.area-grid span { color: var(--gold-dark); font-size: .77rem; font-weight: 900; letter-spacing: .12em; }
.area-grid h3 { margin: 0; max-width: 210px; }

.services { background: rgba(251,248,241,.95); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.service-card {
  padding: 32px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 34px rgba(23,19,12,.055);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  box-shadow: var(--shadow);
}
.service-card-featured { background: linear-gradient(145deg, #fbf8f1, #fff); border-color: var(--line); }
.service-card-dark { color: #fff; background: var(--black-2); border-color: rgba(215,194,142,.2); }
.service-card-dark li { color: #e8e5dd; border-color: rgba(255,255,255,.09); }
.service-heading {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 20px;
}
.service-heading > span {
  padding-top: 5px;
  color: var(--gold-dark);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.service-card-dark .service-heading > span { color: var(--gold-light); }
.service-heading h3 { margin: 0; }
.service-card ul { margin: 0; padding: 0; list-style: none; }
.service-card li {
  position: relative;
  padding: 11px 0 11px 23px;
  border-top: 1px solid rgba(0,0,0,.07);
  color: #37342f;
}
.service-card li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 19px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.coverage {
  color: #fff;
  background:
    radial-gradient(circle at 80% 50%, rgba(215,194,142,.2), transparent 30%),
    linear-gradient(135deg, #211b15, #33291f 55%, #181512);
}
.coverage-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: center;
}
.coverage-copy { max-width: 480px; color: #d9d5cc; font-size: 1.08rem; }
.places { display: flex; flex-wrap: wrap; gap: 10px; }
.places span {
  padding: 12px 15px;
  border: 1px solid rgba(215,194,142,.24);
  border-radius: 999px;
  color: #eeeae1;
  background: rgba(255,255,255,.035);
}

.contact { background: linear-gradient(135deg, rgba(239,229,210,.97), rgba(252,249,243,.98)); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: start;
}
.contact-name { font-size: 1.22rem; font-weight: 800; }
.contact-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
}
.contact-item {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 15px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.contact-item:first-child { padding-top: 0; }
.contact-item small {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.contact-item p, .contact-item a { margin: 0; font-weight: 750; }
.contact-card .button { margin-top: 22px; }

.gold-text {
  color: #b8860b;
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(255,255,255,.70);
}

.penal-card {
  border-color: rgba(180,148,85,.48);
  box-shadow: 0 14px 38px rgba(92,69,28,.10);
}
.penal-card .service-heading h3 {
  color: #6f4d0e;
}

.whatsapp-link {
  color: #9a742b !important;
  font-weight: 900 !important;
}
.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}
.contact-actions .button { margin-top: 0; }
.footer-contact { display: grid; gap: 3px; }
.footer-contact p { margin-top: 6px; }

.footer {
  padding: 58px 0 24px;
  color: #d8d4ca;
  background: #080809;
}
.footer-grid {
  display: grid;
  grid-template-columns: 210px 1fr 1fr 1fr;
  gap: 34px;
  align-items: center;
}
.footer-grid img {
  width: 205px;
  padding: 10px;
  border: 1px solid rgba(215,194,142,.55);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.32);
}
.footer-grid strong { color: #fff; }
.footer-grid p { margin: 4px 0 0; }
.footer-grid a { color: var(--gold-light); font-weight: 800; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: #969188;
  font-size: .86rem;
}

@media (max-width: 980px) {
  .menu-button { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(215,194,142,.3);
    border-radius: 18px;
    background: #211b15;
    box-shadow: 0 20px 55px rgba(0,0,0,.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 13px 14px; }
  .main-nav a:not(.nav-contact)::after { display: none; }
  .nav-contact { margin-top: 4px; text-align: center; }
  .hero { min-height: auto; }
  .hero-grid, .profile-grid, .coverage-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-panel { max-width: 610px; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav { min-height: 72px; }
  .logo { width: 190px; padding: 7px 9px; }
  .main-nav { left: 14px; right: 14px; }
  .hero { padding: 62px 0 72px; }
  h1 { font-size: clamp(2.65rem, 13vw, 4.4rem); }
  h2 { font-size: clamp(2rem, 10vw, 3.15rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-data > div { grid-template-columns: 1fr; gap: 4px; }
  .section { padding: 76px 0; }
  .profile-card { min-height: 310px; padding: 27px; }
  .experience { left: 27px; bottom: 26px; }
  .area-grid, .service-grid { grid-template-columns: 1fr; }
  .area-grid article { min-height: 160px; }
  .service-card { padding: 25px; }
  .service-heading { grid-template-columns: 34px 1fr; }
  .contact-card { padding: 24px; }
  .contact-actions { grid-template-columns: 1fr; }
  .contact-item { grid-template-columns: 1fr; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}


@media (max-width: 420px) {
  .logo { width: 172px; }
  .menu-button { width: 42px; height: 42px; }
}


/* Requested contrast reinforcement */
.profile, .areas, .services, .contact { color: var(--ink); }
.area-grid h3, .service-card h3, .profile h2, .services h2, .contact h2 { color: #18130d; }
.service-card-dark h3 { color: #ffffff; }
