:root {
  --navy: #012a56;
  --navy-soft: #0b3f77;
  --white: #ffffff;
  --ice: #f3f7fb;
  --text: #13263d;
  --muted: #617389;
  --border: rgba(1, 42, 86, 0.12);
  --shadow: 0 18px 45px rgba(1, 42, 86, 0.12);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: .92rem;
}
.topbar-content {
  display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0;
}
.header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.94); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(1,42,86,.08);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 78px;
}
.brand { display: flex; align-items: center; gap: .9rem; }
.brand img { width: 58px; height: 58px; object-fit: contain; border-radius: 50%; }
.brand strong { display:block; font-size: 1.15rem; }
.brand span { display:block; font-size: .84rem; color: var(--muted); }
.nav { display: flex; align-items: center; gap: 1.2rem; }
.nav a { font-weight: 600; }
.menu-toggle {
  display:none; background: var(--navy); color:#fff; border:none; width: 44px; height:44px; border-radius: 10px;
}
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  background: var(--navy); color:#fff; padding: .95rem 1.4rem; border-radius: 999px; font-weight: 700;
  box-shadow: var(--shadow); transition: .3s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-secondary { background: #fff; color: var(--navy); }
.btn-outline {
  background: transparent; color: var(--navy); box-shadow: inset 0 0 0 1px rgba(1,42,86,.18);
}
.hero {
  position: relative; min-height: 86vh; display:flex; align-items:center; overflow:hidden;
}
.hero-bg, .hero-overlay { position:absolute; inset:0; width:100%; height:100%; }
.hero-bg { object-fit: cover; }
.hero-overlay {
  background: linear-gradient(90deg, rgba(1,18,38,.8) 0%, rgba(1,42,86,.64) 45%, rgba(1,42,86,.25) 100%);
}
.hero-content {
  position:relative; z-index:1; display:grid; grid-template-columns: 1.3fr .8fr; gap: 2rem; align-items:center; padding: 5rem 0;
}
.eyebrow, .section-tag {
  display:inline-block; padding: .45rem .85rem; background: rgba(255,255,255,.16); color:#fff; border-radius:999px;
  text-transform: uppercase; letter-spacing: .08em; font-size: .75rem; font-weight:800;
}
.section-tag { background: rgba(1,42,86,.08); color: var(--navy); }
.hero h1 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2.6rem, 6vw, 5rem); line-height: .95; color:#fff; margin: 1rem 0;
}
.hero p { color: rgba(255,255,255,.92); font-size: 1.08rem; max-width: 720px; }
.hero-actions { display:flex; flex-wrap:wrap; gap: 1rem; margin-top: 1.7rem; }
.glass-card {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(14px);
  color:#fff; padding: 1.6rem; border-radius: var(--radius); box-shadow: var(--shadow);
}
.glass-card h3 { margin-top:0; }
.glass-card ul { list-style:none; padding:0; margin:0; display:grid; gap:.75rem; }
.section { padding: 5.5rem 0; }
.two-col { display:grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items:center; }
.two-col h2, .section-heading h2, .video-card h2, .social-card h2, .contact-copy h2 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; margin: .75rem 0 1rem;
}
.info-card img { border-radius: var(--radius); box-shadow: var(--shadow); width:100%; }
.stats { display:grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.stats article, .service-card, .team-card, .social-card, .video-card, .contact-form, .contact-copy {
  background: var(--ice); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow);
}
.stats article { padding: 1.2rem; }
.stats strong, .service-card h3, .team-card h3 { color: var(--navy); }
.section-heading { max-width: 760px; margin-bottom: 2rem; }
.services-grid, .team-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.service-card, .team-card { padding: 1.5rem; }
.credentials { background: linear-gradient(180deg, #fff 0%, #f6f9fd 100%); }
.media-grid, .contact-grid { display:grid; grid-template-columns: 1.15fr .85fr; gap: 1.5rem; align-items:start; }
.video-card, .social-card, .contact-form, .contact-copy { padding: 1.5rem; }
.video-wrapper {
  position:relative; padding-bottom: 56.25%; height: 0; overflow:hidden; border-radius: 18px; margin-top:1rem;
}
.video-wrapper iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }
.social-links { display:flex; flex-wrap:wrap; gap: .8rem; margin-top: 1rem; }
.social-links a {
  padding: .85rem 1rem; background: var(--navy); color:#fff; border-radius: 999px; font-weight:700;
}
.gallery-grid {
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.gallery-item {
  border:none; padding:0; background:none; cursor:pointer; border-radius: 18px; overflow:hidden; box-shadow: var(--shadow);
}
.gallery-item img { width:100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.contact-list { display:grid; gap: .8rem; margin-top: 1rem; }
.contact-list a { color: var(--navy); font-weight: 700; }
.field { display:grid; gap:.45rem; margin-bottom:1rem; }
.field label { font-weight:700; color: var(--navy); }
.field input, .field textarea {
  width:100%; padding: .9rem 1rem; border-radius: 14px; border: 1px solid rgba(1,42,86,.16); background:#fff;
}
.footer { background: var(--navy); color:#fff; padding: 1.4rem 0; }
.footer-content { display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; }
.floating-whatsapp {
  position: fixed; right: 20px; bottom: 20px; width: 62px; height:62px; border-radius:50%; background:#25d366; color:#fff;
  display:grid; place-items:center; box-shadow: 0 18px 40px rgba(0,0,0,.25); z-index: 30;
}
.floating-whatsapp svg { width:32px; fill: currentColor; }
.lightbox {
  position: fixed; inset: 0; background: rgba(3,11,24,.88); display:flex; align-items:center; justify-content:center;
  padding: 1rem; opacity: 0; visibility: hidden; transition: .3s ease; z-index: 50;
}
.lightbox.open { opacity:1; visibility: visible; }
.lightbox img { max-width:min(900px, 94vw); max-height:88vh; border-radius: 18px; }
.lightbox-close {
  position:absolute; top: 18px; right: 18px; width: 46px; height:46px; border:none; border-radius:50%; background:#fff; color:var(--navy); font-size:2rem; cursor:pointer;
}
.reveal { opacity:0; transform: translateY(30px); transition: .8s ease; }
.reveal.visible { opacity:1; transform: translateY(0); }
@media (max-width: 980px) {
  .hero-content, .two-col, .media-grid, .contact-grid, .services-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .stats, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .topbar-content, .hero-content, .two-col, .media-grid, .contact-grid, .services-grid, .team-grid, .stats, .gallery-grid { grid-template-columns: 1fr; display:grid; }
  .topbar-content { display:flex; flex-direction:column; align-items:flex-start; }
  .menu-toggle { display:block; }
  .nav {
    position:absolute; top:100%; left:0; right:0; background:#fff; border-bottom:1px solid rgba(1,42,86,.08);
    padding: 1rem; display:none; flex-direction:column; align-items:flex-start;
  }
  .nav.open { display:flex; }
  .hero { min-height:auto; }
  .hero-content { padding: 4rem 0; }
  .hero h1 { font-size: clamp(2.3rem, 12vw, 4rem); }
  .footer-content { flex-direction:column; }
}
