:root {
  --primary: #0f766e;
  --primary-dark: #134e4a;
  --accent: #f59e0b;
  --accent-soft: #fef3c7;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #f8fafc;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--bg); }
h1, h2, h3, h4 { font-family: 'Lora', serif; }
.hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,.22), rgba(15,118,110,.72)); }
.card-hover { transition: transform .25s ease, box-shadow .25s ease; }
.card-hover:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,0,0,.08); }
.nav-link { position: relative; }
.nav-link::after { content:''; position:absolute; left:50%; transform:translateX(-50%); bottom:-5px; width:0; height:2px; background:var(--accent); transition:width .25s ease; }
.nav-link:hover::after, .nav-link.active::after { width:100%; }
.section-title { position: relative; display: inline-block; }
.section-title::after { content:''; display:block; width:68px; height:4px; background:var(--accent); margin-top:12px; border-radius:999px; }
.gallery-grid img { width:100%; height:100%; object-fit:cover; }
.legal-list li { margin-bottom: .5rem; }