:root {
  --navy: #12233a;
  --navy-soft: #1b3350;
  --gold: #b8954f;
  --gold-light: #d4b56a;
  --white: #ffffff;
  --off: #f8f6f2;
  --paper: #f1eee7;
  --ink: #1d2430;
  --text: #3a4250;
  --muted: #6b7280;
  --line: #e6e1d6;
  --shadow: 0 18px 50px rgba(18, 35, 58, 0.08);
  --radius: 18px;
  --max: 1180px;
  --header: 86px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
h1, h2, h3, .serif { font-family: "Playfair Display", serif; color: var(--navy); font-weight: 600; }
h1 { font-size: clamp(36px, 5vw, 64px); line-height: 1.12; letter-spacing: -.02em; }
h2 { font-size: clamp(30px, 3.4vw, 46px); line-height: 1.2; }
h3 { font-size: 24px; line-height: 1.3; }
p { margin-top: 14px; }
.lead { font-size: 18px; color: var(--muted); max-width: 680px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  transition: .25s ease;
  cursor: pointer;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #a5833f; transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-soft); }
.btn-line { background: transparent; border-color: rgba(255,255,255,.45); color: #fff; }
.btn-line:hover { background: #fff; color: var(--navy); }
.btn-ghost { background: #fff; border-color: var(--line); color: var(--navy); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Topbar */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.9);
  font-size: 14px;
  line-height: 1;
  letter-spacing: .01em;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 0;
  padding: 7px 0;
  gap: 16px;
}
.topbar a:hover { color: var(--gold-light); }
.topbar-right { display: flex; gap: 22px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 20px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.logo strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--navy);
  line-height: 1;
}
.logo-text small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav { display: flex; align-items: center; gap: 6px; }
.nav > li { position: relative; }
.nav a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--navy);
}
.nav a:hover, .nav a.active { color: var(--gold); }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}
.nav > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.dropdown a { padding: 9px 12px; font-size: 13px; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  margin-left: auto;
  flex: none;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--navy);
  margin: 4px auto;
}

/* Hero slider */
.hero {
  position: relative;
  height: min(86vh, 820px);
  min-height: 560px;
  overflow: hidden;
  background: var(--navy);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(10,18,32,.82) 0%, rgba(10,18,32,.48) 58%, rgba(10,18,32,.22) 100%);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.hero-copy h1 { color: #fff; max-width: 760px; }
.hero-copy p { color: rgba(255,255,255,.84); max-width: 560px; font-size: 18px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-nav {
  position: absolute;
  right: 40px;
  bottom: 36px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 34px;
  height: 3px;
  border: 0;
  background: rgba(255,255,255,.35);
  cursor: pointer;
}
.hero-dot.active { background: var(--gold); }
.hero-counter {
  position: absolute;
  left: max(20px, calc((100% - var(--max)) / 2));
  bottom: 36px;
  z-index: 3;
  color: rgba(255,255,255,.7);
  letter-spacing: .2em;
  font-size: 12px;
}

/* Page hero */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 70px 0 56px;
  overflow: hidden;
  background: var(--navy);
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,20,34,.25), rgba(12,20,34,.78));
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1, .page-hero p { color: #fff; }
.breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  margin-bottom: 16px;
}
.breadcrumb a:hover { color: var(--gold-light); }

/* Sections */
.section { padding: 90px 0; }
.section-off { background: var(--off); }
.section-navy { background: var(--navy); color: rgba(255,255,255,.82); }
.section-navy h2, .section-navy h3 { color: #fff; }
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.split-media {
  position: relative;
}
.split-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.split-media .frame {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.35);
  pointer-events: none;
}
.caption-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: #fff;
  padding: 18px 20px;
  min-width: 180px;
  box-shadow: var(--shadow);
}
.caption-card b { display: block; color: var(--navy); font-size: 28px; font-family: "Playfair Display", serif; }
.caption-card span { font-size: 13px; color: var(--muted); }

.grid-3, .grid-4, .grid-2 { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

.card, .service-card, .area-card, .faq, .review {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
}
.service-card { padding: 0; overflow: hidden; transition: .25s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card img { height: 210px; width: 100%; object-fit: cover; }
.service-card .body { padding: 24px; }
.service-card h3 { font-size: 22px; }
.more {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.icon-list { margin-top: 22px; display: grid; gap: 12px; }
.icon-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.icon-list i {
  width: 22px;
  height: 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex: none;
  font-style: normal;
  font-size: 12px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.stat { border-top: 1px solid var(--line); padding-top: 18px; }
.stat b { display: block; font-family: "Playfair Display", serif; font-size: 36px; color: var(--navy); }
.section-navy .stat { border-color: rgba(255,255,255,.12); }
.section-navy .stat b { color: var(--gold-light); }

.process { counter-reset: step; }
.process li {
  counter-increment: step;
  padding: 22px 0 22px 72px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.process li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 22px;
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 26px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 12px;
}
.gallery a:first-child { grid-row: 1 / 3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }

.review { height: 100%; }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.review p { font-style: italic; color: var(--ink); }
.review cite { display: block; margin-top: 18px; font-style: normal; font-size: 13px; color: var(--muted); }

.faq + .faq { margin-top: 12px; }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); }
.faq[open] summary::after { content: "–"; }
.faq p { color: var(--muted); }

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
th, td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
th { color: var(--navy); font-weight: 500; background: var(--off); }

.cta-band {
  background:
    linear-gradient(90deg, rgba(18,35,58,.88), rgba(18,35,58,.62)),
    url("https://images.unsplash.com/photo-1489987707025-afc232f7ea0f?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #fff;
  padding: 80px 0;
}
.cta-band h2 { color: #fff; }

form { display: grid; gap: 14px; }
label { font-size: 13px; color: var(--navy); }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px 16px;
  color: var(--ink);
}
textarea { min-height: 140px; resize: vertical; }
.map {
  width: 100%;
  min-height: 380px;
  border: 0;
  filter: grayscale(.25) contrast(1.05);
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .35);
}
.whatsapp svg { width: 28px; height: 28px; fill: currentColor; }

.inner-slider .hero-copy { padding-top: 48px; padding-bottom: 64px; }
.inner-slider .hero-copy h2 { color: #fff; max-width: 720px; }

footer {
  background: #0d1828;
  color: rgba(255,255,255,.72);
  padding: 70px 0 24px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 36px;
}
footer h3 { color: #fff; font-size: 18px; margin-bottom: 16px; }
footer a:hover { color: var(--gold-light); }
footer .logo strong { color: #fff; }
footer .logo-text small { color: var(--gold-light); }
.footer-bottom {
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
}

.blog-card { padding: 0; overflow: hidden; transition: .25s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card img { height: 220px; width: 100%; object-fit: cover; }
.blog-card .body { padding: 24px; }
.blog-card time, .article-meta { font-size: 13px; color: var(--muted); letter-spacing: .04em; }
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
}
.article-body h2 { margin-top: 36px; font-size: 30px; }
.article-body h3 { margin-top: 26px; }
.article-body p { margin-top: 14px; }
.article-body ul { margin-top: 14px; padding-left: 20px; list-style: disc; }
.article-body li { margin-top: 8px; }
.article-body a { color: var(--gold); }
.article-side { position: sticky; top: 120px; display: grid; gap: 16px; }
.article-side .card h3 { font-size: 20px; margin-bottom: 12px; }
.article-side a { display: block; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.article-side a:hover { color: var(--gold); }

@media (max-width: 980px) {
  .split, .grid-3, .grid-4, .stats, .footer-grid, .gallery, .article-layout { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-rows: 200px 200px; }
  .gallery a:first-child { grid-row: auto; }
  .menu-toggle { display: block; }
  .nav-wrap {
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: none;
    padding: 12px 20px 20px;
  }
  .nav-wrap.open { display: block; }
  .nav { flex-direction: column; align-items: stretch; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding-left: 10px; }
  .hero-nav { right: 20px; }
  .header-cta { display: none; }
  .topbar { display: none; }
}
@media (max-width: 700px) {
  .grid-2, .grid-3, .grid-4, .stats, .footer-grid, .gallery, .split, .article-layout { grid-template-columns: 1fr; }
  .hero, .page-hero { min-height: 480px; }
  .split-media img { height: 360px; }
  .footer-bottom { flex-direction: column; }
}
