*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-primary: #042224;
  --c-primary-light: #0f766e;
  --c-accent: #C9A227;
  --c-bg: #FFFFFF;
  --c-surface: #F7F9F9;
  --c-text: #1A1A1A;
  --c-text-soft: #555555;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 4px;
  --radius-lg: 12px;
  --max-w: 1200px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* NAV */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
}
.site-nav.scrolled {
  background: var(--c-primary);
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}
.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name { font-family: var(--font-display); font-size: 1.15rem; color: #fff; letter-spacing: -0.01em; }
.nav-logo-sub { font-size: 0.65rem; color: rgba(255,255,255,0.55); letter-spacing: 0.08em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links a { font-size: 0.875rem; color: rgba(255,255,255,0.8); padding: 0.4rem 0.75rem; border-radius: var(--radius); transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: var(--c-accent); }
.btn-nav-cta {
  font-size: 0.875rem; font-weight: 600;
  color: var(--c-primary); background: var(--c-accent);
  padding: 0.5rem 1.25rem; border-radius: var(--radius); border: none;
  transition: filter 0.2s, transform 0.15s; white-space: nowrap;
}
.btn-nav-cta:hover { filter: brightness(1.08); transform: translateY(-1px); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 0.5rem;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.25s, opacity 0.2s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile-menu {
  display: none; position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--c-primary); z-index: 99;
  flex-direction: column; padding: 2rem 1.5rem; gap: 0.25rem;
  overflow-y: auto;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a { color: rgba(255,255,255,0.85); font-size: 1.2rem; padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); transition: color 0.2s; }
.nav-mobile-menu a:hover, .nav-mobile-menu a.active { color: var(--c-accent); }

/* STICKY BOTTOM BAR */
.sticky-bottom {
  display: none; position: fixed;
  bottom: 0; left: 0; right: 0; z-index: 98;
  background: var(--c-primary);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.75rem 1rem; gap: 0.75rem;
}
.sticky-bottom a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 0.4rem; padding: 0.75rem 1rem; border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 600;
}
.sticky-bottom .btn-book { background: var(--c-accent); color: var(--c-primary); }
.sticky-bottom .btn-call { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.18); }

/* WHATSAPP FAB */
.fab-whatsapp {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 97;
  width: 54px; height: 54px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.fab-whatsapp:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }
.fab-whatsapp svg { width: 28px; height: 28px; fill: #fff; }

/* UTILITY */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 0.65rem; }
.section-headline { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -0.02em; color: var(--c-primary); }
.section-headline.inv { color: #fff; }
.section-subline { font-size: 1.05rem; color: var(--c-text-soft); margin-top: 0.75rem; max-width: 560px; }
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.75rem 1.75rem; border-radius: var(--radius);
  font-weight: 600; font-size: 0.9rem; border: none;
  transition: filter 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--c-accent); color: var(--c-primary); }
.btn-primary:hover { filter: brightness(1.07); box-shadow: 0 6px 20px rgba(201,162,39,0.3); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: rgba(255,255,255,0.8); }
.btn-dark { background: var(--c-primary); color: #fff; }
.btn-dark:hover { filter: brightness(1.2); }
.btn-ghost { background: transparent; color: var(--c-primary); border: 1.5px solid rgba(4,34,36,0.25); }
.btn-ghost:hover { border-color: var(--c-primary); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* HERO */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; overflow: hidden;
  background: var(--c-primary);
}
.hero-bg { position: absolute; inset: 0; background: linear-gradient(140deg, #021618 0%, #073c3a 100%); }
.hero-overlay { position: absolute; inset: 0; background: rgba(4,34,36,0.5); }
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 1.5rem; padding-top: var(--nav-h);
}
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 1.25rem; }
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--c-accent); }
.hero h1 { font-family: var(--font-display); font-size: clamp(2.75rem, 7vw, 5.5rem); line-height: 1.0; letter-spacing: -0.03em; color: #fff; max-width: 660px; }
.hero h1 em { font-style: italic; color: var(--c-accent); }
.hero-sub { font-size: clamp(1rem, 2vw, 1.1rem); color: rgba(255,255,255,0.72); margin-top: 1.25rem; max-width: 480px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }
.hero-mini { min-height: 42vh; align-items: flex-end; padding-bottom: 3.5rem; }
.hero-mini .hero-content { padding-top: calc(var(--nav-h) + 1rem); }
.hero-mini h1 { font-size: clamp(2rem, 5vw, 3.5rem); }

/* TRUST STRIP */
.trust-strip { background: var(--c-surface); border-top: 1px solid rgba(4,34,36,0.06); border-bottom: 1px solid rgba(4,34,36,0.06); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 2rem 1.5rem; display: flex; align-items: center; gap: 1rem; border-right: 1px solid rgba(4,34,36,0.07); }
.trust-item:last-child { border-right: none; }
.trust-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--c-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 20px; height: 20px; stroke: var(--c-accent); fill: none; stroke-width: 1.8; }
.trust-text strong { display: block; font-size: 0.975rem; font-weight: 600; color: var(--c-primary); }
.trust-text span { font-size: 0.78rem; color: var(--c-text-soft); }

/* SERVICE CARDS */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.service-card { background: var(--c-surface); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(4,34,36,0.08); transition: transform 0.25s, box-shadow 0.25s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(4,34,36,0.1); }
.service-card-img { aspect-ratio: 4/3; background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.service-card-body { padding: 1.5rem; }
.service-card-price { display: inline-block; font-size: 0.72rem; font-weight: 600; color: var(--c-accent); background: rgba(201,162,39,0.1); padding: 0.2rem 0.6rem; border-radius: 100px; margin-bottom: 0.75rem; }
.service-card h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--c-primary); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; color: var(--c-text-soft); line-height: 1.65; }
.service-card-link { display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 1rem; font-size: 0.83rem; font-weight: 600; color: var(--c-primary-light); transition: gap 0.2s; }
.service-card-link:hover { gap: 0.6rem; }
.service-card-link svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* SPLIT */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img { aspect-ratio: 4/5; background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 3rem; overflow: hidden; }
.split-text p { font-size: 1rem; color: var(--c-text-soft); line-height: 1.8; margin-top: 1rem; }
.split-text p + p { margin-top: 0.75rem; }

/* LOCATION CARDS */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.location-card { border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid rgba(4,34,36,0.09); background: var(--c-surface); }
.location-card-img { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.location-card-body { padding: 1.75rem; }
.location-card h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--c-primary); margin-bottom: 1rem; }
.location-meta { display: flex; flex-direction: column; gap: 0.5rem; }
.location-meta-row { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; color: var(--c-text-soft); }
.location-meta-row svg { width: 15px; height: 15px; stroke: var(--c-primary-light); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 3px; }

/* CTA BANNER */
.cta-banner { background: var(--c-primary); border-radius: var(--radius-lg); padding: 4rem 3rem; text-align: center; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.75rem); color: #fff; letter-spacing: -0.02em; }
.cta-banner p { color: rgba(255,255,255,0.68); margin-top: 0.75rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-top: 2.25rem; }

/* FOOTER */
footer { background: var(--c-primary); color: rgba(255,255,255,0.72); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand-name { font-family: var(--font-display); font-size: 1.2rem; color: #fff; margin-bottom: 0.75rem; }
.footer-tagline { font-size: 0.84rem; color: rgba(255,255,255,0.48); line-height: 1.65; }
.footer-col h4 { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 1rem; }
.footer-col p, .footer-col address { font-size: 0.875rem; font-style: normal; line-height: 1.9; color: rgba(255,255,255,0.62); }
.footer-col a { color: rgba(255,255,255,0.62); transition: color 0.2s; }
.footer-col a:hover { color: var(--c-accent); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 1.75rem; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.38); }
.footer-legal { display: flex; gap: 1.5rem; list-style: none; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.38); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 1px solid rgba(4,34,36,0.07); }
  .trust-item:nth-child(4) { border-right: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links, .btn-nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .sticky-bottom { display: flex; }
  .fab-whatsapp { bottom: 5.5rem; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 2rem; direction: ltr; }
  .location-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(4,34,36,0.07); }
  .service-grid { grid-template-columns: 1fr; }
}
