:root {
  --ink: #1d252c;
  --muted: #5b6670;
  --paper: #fffdf8;
  --soft: #f4f1e8;
  --gold: #c4aa66;
  --gold-dark: #8e7638;
  --teal: #12a6a6;
  --rose: #e33c74;
  --brick: #a84f3d;
  --line: rgba(29, 37, 44, .14);
  --shadow: 0 18px 45px rgba(29, 37, 44, .14);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 92px;
  height: auto;
}

.brand span {
  display: block;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--gold-dark);
  font-size: .78rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
  font-size: 1.35rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a,
.submenu-button {
  border: 0;
  background: transparent;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-links a:hover,
.submenu:hover .submenu-button,
.nav-links a[aria-current="page"] {
  background: var(--soft);
  color: var(--gold-dark);
}

.submenu {
  position: relative;
}

.submenu-panel {
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 25;
  min-width: 240px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;
}

.submenu:hover .submenu-panel,
.submenu:focus-within .submenu-panel,
.submenu.is-open .submenu-panel {
  display: grid;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--gold);
  color: #171717;
  text-decoration: none;
  font-weight: 800;
}

.btn.secondary {
  background: white;
  border-color: var(--line);
}

.btn.accent {
  background: var(--teal);
  color: white;
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: end;
  background: linear-gradient(90deg, rgba(15, 20, 24, .76), rgba(15, 20, 24, .28)), var(--hero-image) center/cover;
  color: white;
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0 58px;
}

.hero h1 {
  max-width: 820px;
  margin: 0 0 16px;
  font-size: clamp(2.35rem, 6vw, 5.2rem);
  line-height: .98;
  letter-spacing: 0;
}

.hero p {
  max-width: 680px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  margin: 0 0 28px;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.inline-actions + .grid-3,
.inline-actions + .grid-4 {
  margin-top: 24px;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--soft);
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  color: var(--gold-dark);
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .08em;
  font-weight: 900;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.12;
  margin: 8px 0 18px;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.lead {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.08rem;
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 20px;
}

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

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(29, 37, 44, .06);
}

.card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.card-link:hover h2,
.card-link:hover h3,
.read-more {
  color: var(--gold-dark);
}

.card-body {
  padding: 22px;
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature {
  border-left: 4px solid var(--gold);
  padding: 8px 0 8px 18px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}

.split img,
.wide-img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}

.wide-img {
  max-height: 520px;
}

.breadcrumb {
  width: min(1180px, calc(100% - 32px));
  margin: 26px auto 0;
  color: var(--muted);
  font-size: .92rem;
}

.breadcrumb a {
  color: var(--gold-dark);
  font-weight: 800;
  text-decoration: none;
}

.page-hero {
  padding: 58px 0 38px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.stat {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.stat strong {
  display: block;
  color: var(--teal);
  font-size: 2rem;
  line-height: 1;
}

.cta-band {
  background: var(--ink);
  color: white;
  padding: 42px 0;
}

.news-meta,
.tag {
  color: var(--rose);
  font-weight: 800;
  font-size: .9rem;
}

.read-more {
  display: inline-block;
  margin-top: 8px;
  font-weight: 900;
}

.content-list {
  margin: 18px 0 0;
  padding-left: 20px;
}

.content-list li {
  margin: 8px 0;
}

.mini-card {
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.contact-list li {
  margin: 10px 0;
}

.map {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
}

.site-footer {
  background: #161b20;
  color: white;
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}

.site-footer a {
  color: white;
  text-decoration-color: rgba(255, 255, 255, .35);
}

.social-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.social-link img {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  margin-top: 32px;
  padding-top: 18px;
  color: rgba(255, 255, 255, .72);
  font-size: .92rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(37, 211, 102, .34);
  font-weight: 900;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    padding: 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    align-items: stretch;
    flex-direction: column;
  }

  .nav-links.is-open {
    display: flex;
  }

  .submenu-panel {
    position: static;
    box-shadow: none;
    display: grid;
    border: 0;
    padding-left: 16px;
  }

  .grid-3,
  .grid-2,
  .grid-4,
  .split,
  .footer-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 78vh;
  }
}
