:root {
  --bg: #ffffff;
  --text: #171717;
  --muted: #626262;
  --line: #e9e4dd;
  --soft: #faf7f2;
  --navy: #16243a;
  --gold: #b98a3a;
  --gold-dark: #8a6426;
  --wine: #5b1824;
  --shadow: 0 24px 70px rgba(18, 28, 44, 0.12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
}
.section-pad { padding: 90px 0; }
.soft-bg { background: linear-gradient(180deg, #fff 0%, var(--soft) 100%); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(233, 228, 221, 0.9);
}
.navbar {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--wine));
  color: #fff;
  font-weight: 800;
  letter-spacing: .5px;
  box-shadow: 0 12px 28px rgba(22,36,58,.18);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-size: 15px; }
.brand-text small { color: var(--muted); font-size: 12px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #343434;
  font-size: 14px;
  font-weight: 700;
}
.nav-links a:hover { background: var(--soft); color: var(--wine); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; }

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background:
    radial-gradient(circle at 10% 5%, rgba(185,138,58,.13), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(91,24,36,.10), transparent 27%),
    #fff;
}
.hero:before {
  content: "";
  position: absolute;
  inset: auto -120px -220px auto;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 80px solid rgba(22,36,58,.05);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 54px;
}
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  background: rgba(185,138,58,.12);
  border: 1px solid rgba(185,138,58,.22);
  border-radius: 999px;
  padding: 7px 13px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .2px;
}
.section-kicker.light { color: #f4d9a6; border-color: rgba(244,217,166,.3); background: rgba(244,217,166,.08); }
h1 {
  font-size: clamp(40px, 7vw, 76px);
  line-height: .96;
  margin: 22px 0 18px;
  letter-spacing: -2.5px;
  color: var(--navy);
}
.hero-subtitle {
  font-size: clamp(21px, 3vw, 31px);
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--wine);
  font-weight: 800;
}
.hero-text { color: var(--muted); font-size: 18px; max-width: 640px; margin-bottom: 28px; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--wine), var(--navy)); color: #fff; box-shadow: 0 15px 34px rgba(22,36,58,.2); }
.btn-secondary { border: 1px solid var(--line); color: var(--navy); background: #fff; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}
.hero-stats article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.72);
}
.hero-stats strong { display: block; font-size: 30px; color: var(--gold-dark); line-height: 1; }
.hero-stats span { display: block; color: var(--muted); font-size: 13px; margin-top: 7px; }
.photo-card {
  position: relative;
  padding: 14px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(185,138,58,.32), rgba(22,36,58,.12));
  box-shadow: var(--shadow);
}
.photo-card img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  object-position: center;
  border-radius: 27px;
  border: 8px solid #fff;
}
.photo-badge {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}
.photo-badge strong, .photo-badge span { display: block; }
.photo-badge strong { color: var(--navy); }
.photo-badge span { color: var(--muted); font-size: 14px; }

.intro-strip { padding: 24px 0; background: var(--navy); color: #fff; }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.strip-grid div { padding: 16px 18px; border-left: 1px solid rgba(255,255,255,.18); }
.strip-number { display: block; color: #f4d9a6; font-weight: 900; font-size: 20px; margin-bottom: 4px; }
.strip-grid p { margin: 0; color: rgba(255,255,255,.78); font-size: 14px; }

.split-section {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 46px;
  align-items: center;
}
.split-section.reverse { grid-template-columns: 1.1fr .9fr; }
.section-heading h2, .center-heading h2, .dark-panel h2, .contact-card h2 {
  color: var(--navy);
  font-size: clamp(31px, 4.2vw, 50px);
  line-height: 1.05;
  margin: 18px 0 12px;
  letter-spacing: -1.5px;
}
.section-heading p, .center-heading p, .contact-card p { color: var(--muted); margin: 0; }
.content-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}
.content-card p { color: #454545; margin-top: 0; }
.content-card p:last-child { margin-bottom: 0; }
.center-heading { text-align: center; max-width: 780px; margin: 0 auto 42px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  min-height: 250px;
  box-shadow: 0 18px 45px rgba(18,28,44,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.icon-circle {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), var(--wine));
  color: #fff;
  font-weight: 900;
  margin-bottom: 22px;
}
.service-card h3 { color: var(--navy); font-size: 24px; margin: 0 0 10px; }
.service-card p { color: var(--muted); margin: 0; }
.specialty-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.specialty-card {
  min-height: 170px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,255,255,.96)),
    radial-gradient(circle at 20% 10%, rgba(185,138,58,.35), transparent 45%);
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  align-items: end;
  box-shadow: 0 18px 40px rgba(18,28,44,.07);
}
.specialty-card span { color: var(--wine); font-size: 21px; line-height: 1.15; font-weight: 900; }
.dark-panel-section { padding-top: 30px; }
.dark-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(185,138,58,.18), transparent 35%),
    linear-gradient(135deg, var(--navy), #0f1727 70%);
  color: #fff;
  border-radius: 36px;
  padding: clamp(30px, 5vw, 58px);
  box-shadow: var(--shadow);
}
.dark-panel h2 { color: #fff; }
.dark-panel p { color: rgba(255,255,255,.78); margin: 0; }
.timeline { display: grid; gap: 18px; }
.timeline-item { display: grid; grid-template-columns: 20px 1fr; gap: 14px; align-items: start; }
.timeline-item span {
  width: 14px;
  height: 14px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(185,138,58,.14);
}
.timeline-item p { border-bottom: 1px solid rgba(255,255,255,.16); padding-bottom: 18px; font-weight: 800; color: #fff; }
.education-list { display: grid; gap: 14px; }
.education-list article { border: 1px solid var(--line); border-radius: 20px; padding: 20px; background: var(--soft); }
.education-list h3 { margin: 0; color: var(--navy); }
.education-list p { margin: 8px 0 0; color: var(--muted); }
.contact-section { background: linear-gradient(180deg, var(--soft), #fff); }
.contact-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: clamp(28px, 5vw, 54px);
  box-shadow: var(--shadow);
}
.contact-details { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.contact-details a, .contact-details span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--navy);
  font-weight: 800;
}
.contact-actions { justify-content: flex-end; }
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  background: #1f8f4d;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(31,143,77,.25);
}
.footer { border-top: 1px solid var(--line); padding: 32px 0; background: #fff; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--muted); }
.footer strong { color: var(--navy); }
.footer p { margin: 4px 0 0; }
.footer a { color: var(--wine); font-weight: 800; }

.reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }
.js-enabled .reveal { opacity: 0; transform: translateY(18px); }
.js-enabled .reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .18s; }
.delay-3 { transition-delay: .26s; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .nav-links.active { display: flex; }
  .hero-grid, .split-section, .split-section.reverse, .dark-panel, .contact-card { grid-template-columns: 1fr; }
  .hero { padding-top: 42px; }
  .hero-stats, .strip-grid, .service-grid, .specialty-grid { grid-template-columns: 1fr; }
  .contact-actions { justify-content: flex-start; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .section-pad { padding: 64px 0; }
  .brand-text strong { font-size: 13px; }
  .brand-text small { display: none; }
  h1 { letter-spacing: -1.4px; }
  .hero-stats article { padding: 15px; }
  .photo-badge { position: static; margin: -18px 12px 0; }
  .btn { width: 100%; }
  .whatsapp-float { right: 12px; bottom: 12px; min-width: 104px; height: 44px; font-size: 13px; }
}
