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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; }

img { display: block; max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.section { padding: 96px 0; }
.section-alt { background: var(--c-surface); }

.section-eyebrow {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--c-accent); margin-bottom: 14px;
}

.section-h2 {
  font-size: clamp(30px, 4vw, 50px); font-weight: 600;
  color: var(--c-text); line-height: 1.2; margin-bottom: 48px;
}

.section-h2.centered { text-align: center; }

/* Buttons */
.btn-primary, .btn-outline, .btn-white {
  display: inline-block; padding: 14px 34px; border-radius: 4px;
  font-size: 15px; font-weight: 500; text-decoration: none; letter-spacing: 0.02em;
  cursor: pointer; font-family: 'Outfit', sans-serif;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-primary { background: var(--c-primary); color: white; border: 2px solid var(--c-primary); }
.btn-primary:hover { background: var(--c-primary-dark); border-color: var(--c-primary-dark); }

.btn-outline { background: transparent; color: var(--c-primary); border: 2px solid var(--c-primary); }
.btn-outline:hover { background: var(--c-primary); color: white; }

.btn-white { background: white; color: var(--c-primary); border: 2px solid white; }
.btn-white:hover { background: transparent; color: white; }

/* Navbar */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; height: 80px;
  background: var(--c-nav-bg); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border); z-index: 98;
  transition: box-shadow 0.3s;
}

#navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.07); }

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 48px; width: auto; }
.nav-logo span {
  font-family: 'Cormorant Garamond', serif; font-size: 22px;
  font-weight: 600; color: var(--c-primary);
}

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--c-text); font-size: 14.5px;
  font-weight: 400; letter-spacing: 0.02em; position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1.5px; background: var(--c-primary); transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--c-primary); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--c-primary) !important; color: white !important;
  padding: 9px 22px; border-radius: 4px; font-weight: 500 !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--c-primary-dark) !important; }

/* Hamburger */
#hamburger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
#hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--c-text); border-radius: 2px;
}

/* Mobile menu */
#mobile-menu {
  position: fixed; inset: 0; background: var(--c-bg); z-index: 200;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#mobile-menu.open { transform: translateX(0); }

#close-menu {
  position: absolute; top: 24px; right: 28px; background: none;
  border: none; font-size: 40px; line-height: 1; color: var(--c-text); cursor: pointer;
}

#mobile-menu ul { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 32px; }
#mobile-menu a {
  font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 600;
  color: var(--c-text); text-decoration: none; transition: color 0.2s;
}
#mobile-menu a:hover, #mobile-menu a.active { color: var(--c-primary); }

/* Inner page hero */
.page-hero {
  background: var(--c-primary); padding: 152px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 85% 50%, rgba(255,255,255,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 10% 80%, rgba(212,121,58,0.1) 0%, transparent 55%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--c-accent); margin-bottom: 14px;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px); font-weight: 600;
  color: white; line-height: 1.1; margin-bottom: 16px;
}
.page-sub { font-size: 17px; color: rgba(255,255,255,0.58); max-width: 520px; line-height: 1.75; }

/* Footer */
footer { background: var(--c-footer-bg); color: rgba(255,255,255,0.5); padding: 72px 0 40px; }

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 64px; margin-bottom: 56px;
}
.footer-brand img { height: 42px; filter: brightness(0) invert(1); opacity: 0.75; margin-bottom: 14px; }
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif; font-size: 22px;
  font-weight: 600; color: white; margin-bottom: 12px;
}
.footer-brand p { font-size: 14px; line-height: 1.85; }

.footer-col h4 {
  font-family: 'Outfit', sans-serif; font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-col address { font-style: normal; font-size: 14px; line-height: 2; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px;
  font-size: 13px; text-align: center;
}

/* Responsive */
@media (max-width: 1024px) { .nav-links { gap: 22px; } }

@media (max-width: 768px) {
  .nav-links { display: none; }
  #hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 64px 0; }
}

@media (max-width: 480px) { .container { padding: 0 20px; } }
