@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Mulish:wght@300;400;500;600;700&display=swap');

:root {
  --teal: #1A7A8A;
  --teal-dark: #0F5A68;
  --teal-light: #2AA8BC;
  --teal-pale: #E8F5F7;
  --teal-xpale: #f0f9fa;
  --white: #FFFFFF;
  --gray-light: #F4F6F7;
  --gray-mid: #C8D0D3;
  --gray: #6B7A80;
  --black: #111518;
  --black-soft: #1E2528;
  --accent: #2CBCCC;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Mulish', sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(17,21,24,0.97);
  backdrop-filter: blur(10px);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  border-bottom: 1px solid rgba(26,122,138,0.3);
}

.nav-logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.nav-logo .brand { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--white); letter-spacing: 0.02em; }
.nav-logo .tagline { font-size: 0.62rem; color: var(--teal-light); letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; margin-top: 2px; }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { color: var(--gray-mid); text-decoration: none; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--teal-light); }

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 2px !important;
}
.nav-cta:hover { background: var(--teal-light) !important; color: var(--white) !important; }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s;
  border: 2px solid var(--teal);
  display: inline-block;
}
.btn-primary:hover { background: var(--teal-light); border-color: var(--teal-light); }

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s;
  border: 2px solid rgba(255,255,255,0.4);
  display: inline-block;
}
.btn-outline:hover { border-color: var(--teal-light); color: var(--teal-light); }

/* ── SECTION LABELS ── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: var(--gray-mid);
  padding: 4rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .brand { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); display: block; margin-bottom: 0.25rem; }
.footer-brand .sub { font-size: 0.7rem; color: var(--teal-light); letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: var(--gray); }

.footer-contact { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 1.25rem; }
.footer-contact a { color: var(--gray-mid); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-contact a:hover { color: var(--teal-light); }

.footer-col h4 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 0.95rem; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: var(--gray); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal-light); }

.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; font-size: 0.78rem; color: var(--gray); margin-bottom: 1.5rem; }

.footer-disclaimer { font-size: 0.72rem; color: var(--gray); line-height: 1.6; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.05); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--black); padding: 1.5rem 5%; gap: 1rem; border-bottom: 1px solid rgba(26,122,138,0.2); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
}
