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

:root {
  --grey: #4b4f4f;
  --amber: #e2b159;
  --rust: #934626;
  --teal: #0e8282;
  --teal-dark: #0a6464;
  --teal-light: #e8f4f4;
  --black: #0d0d0d;
  --white: #ffffff;
  --cream: #f8f5f0;
  --stone: #eeebe5;
  --muted: #6b6b6b;
  --border: rgba(0,0,0,0.08);
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: var(--white); color: var(--black); font-size: 15px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Alexandria', sans-serif; font-weight: 300; line-height: 1.1; }
a { text-decoration: none; }
img { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; }
.fade-up-2 { animation: fadeUp 0.7s 0.15s ease forwards; opacity: 0; }
.fade-up-3 { animation: fadeUp 0.7s 0.3s ease forwards; opacity: 0; }
.fade-up-4 { animation: fadeUp 0.7s 0.45s ease forwards; opacity: 0; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 72px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-cta {
  background: var(--teal); color: var(--white);
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 12px 28px; border-radius: var(--r-sm);
  transition: background 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--teal-dark); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif; font-weight: 500;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 15px 32px; border-radius: var(--r-sm);
  transition: all 0.2s; cursor: pointer;
}
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-ghost-light { background: rgba(255,255,255,0.12); color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.2); }
.btn-ghost-dark { background: transparent; color: var(--teal); border: 1px solid var(--teal); }
.btn-ghost-dark:hover { background: var(--teal); color: var(--white); }
.btn-white { background: var(--white); color: var(--teal); }
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }

/* PAGE HERO (non-homepage) */
.page-hero {
  margin-top: 72px;
  background: var(--grey);
  padding: 96px 56px 80px;
  position: relative; overflow: hidden;
}
.page-hero.has-photo {
  min-height: 480px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 96px 56px 72px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.80) 0%, rgba(13,13,13,0.35) 60%, rgba(13,13,13,0.15) 100%);
  z-index: 1;
}
.page-hero.has-photo .page-hero-eyebrow,
.page-hero.has-photo h1,
.page-hero.has-photo p { position: relative; z-index: 2; }
@media(max-width:768px){
  .page-hero.has-photo { min-height: 360px; padding: 72px 24px 48px; }
}
.page-hero::after {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.03);
  top: -200px; right: -100px;
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 24px;
}
.page-hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--amber); }
.page-hero h1 { font-size: clamp(36px, 5vw, 60px); color: var(--white); font-weight: 200; max-width: 700px; letter-spacing: -0.02em; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 560px; margin-top: 20px; line-height: 1.75; }

/* SECTIONS */
.section { padding: 96px 56px; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--grey); }
.section-black { background: var(--black); }
.label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 20px;
}
.label::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--teal); }
.label-amber { color: var(--amber) !important; }
.label-amber::before { background: var(--amber) !important; }
.section-h { font-size: clamp(28px, 4vw, 48px); font-weight: 200; color: var(--grey); letter-spacing: -0.02em; max-width: 680px; }
.section-h-white { color: var(--white); }
.section-p { font-size: 15px; line-height: 1.8; color: var(--muted); max-width: 560px; margin-top: 16px; }
.section-p-white { color: rgba(255,255,255,0.55); }

/* CTA BANNER */
.cta-banner {
  background: var(--teal); padding: 96px 56px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: rgba(255,255,255,0.04); top: -200px; right: -100px; }
.cta-banner::after { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.04); bottom: -150px; left: -50px; }
.cta-banner h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 200; color: var(--white); margin-bottom: 16px; letter-spacing: -0.02em; position: relative; z-index: 1; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 16px; justify-content: center; position: relative; z-index: 1; flex-wrap: wrap; }

/* FOOTER */
footer {
  background: var(--white); padding: 32px 56px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
  border-top: 1px solid var(--stone);
}
.footer-top { display: none; }
.footer-bottom { display: none; }
.footer-logo img { height: 36px; width: auto; }
.footer-logos { display: flex; align-items: center; gap: 20px; }
.footer-logos img { height: 36px; width: auto; opacity: 0.7; transition: opacity 0.2s; }
.footer-logos img:hover { opacity: 1; }
.footer-nav { display: flex; gap: 28px; list-style: none; flex-wrap: wrap; align-items: center; }
.footer-nav a { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); transition: color 0.2s; }
.footer-nav a:hover { color: var(--teal); }
.footer-note { font-size: 10px; color: var(--muted); letter-spacing: 0.06em; }

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 0 20px; height: 64px; }
  .nav-links { display: none; }
  .nav-cta { padding: 10px 18px; font-size: 10px; }
  .page-hero { padding: 72px 24px 56px; }
  .section { padding: 64px 24px; }
  .cta-banner { padding: 72px 24px; }
  .cta-btns { flex-direction: column; align-items: center; }
  footer { padding: 28px 24px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-nav { gap: 16px; }
  .btn { padding: 14px 24px; }
}
