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

:root {
  --black: #0A0A0A;
  --beige: #F5F0E8;
  --tan: #D4C5A9;
  --tan-dark: #8B7355;
  --white: #FFFFFF;
  --gray: #6B6560;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--beige); color: var(--black); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212,197,169,0.15);
}
.nav-logo img { height: 50px; width: auto; filter: brightness(0) invert(1); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--tan); text-decoration: none; font-size: 0.78rem;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--tan-dark) !important; color: var(--white) !important;
  padding: 0.5rem 1.2rem; font-size: 0.72rem !important;
}
.nav-cta:hover { background: var(--tan) !important; color: var(--black) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--tan); }

/* PAGE HERO (non-home pages) */
.page-hero {
  padding: 10rem 3rem 5rem;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.3;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-eyebrow { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--tan); margin-bottom: 1rem; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 400; color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(212,197,169,0.7); font-size: 1rem; max-width: 500px; margin: 0 auto; }

/* SECTIONS */
section { padding: 6rem 3rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--tan-dark); margin-bottom: 1rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; color: var(--black); line-height: 1.2; margin-bottom: 1.5rem; }
.section-title.light { color: var(--white); }
.section-rule { width: 50px; height: 2px; background: var(--tan-dark); margin-bottom: 2rem; }

/* TRUST BAR */
.trust-bar {
  background: var(--black); padding: 1.2rem 3rem;
  display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap;
  border-bottom: 1px solid rgba(212,197,169,0.1);
}
.trust-item { color: var(--tan); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; display: flex; align-items: center; gap: 0.5rem; }
.trust-item::before { content: '✦'; color: var(--tan-dark); font-size: 0.55rem; }

/* BUTTONS */
.btn-primary {
  display: inline-block; background: var(--tan-dark); color: var(--white);
  padding: 0.9rem 2.2rem; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  border: 2px solid var(--tan-dark); transition: all 0.25s; cursor: pointer; font-family: 'Inter', sans-serif;
}
.btn-primary:hover { background: transparent; color: var(--tan-dark); }
.btn-outline {
  display: inline-block; background: transparent; color: var(--white);
  padding: 0.9rem 2.2rem; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4); transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--tan); color: var(--tan); }

/* FOOTER */
footer { background: var(--black); padding: 3rem; border-top: 1px solid rgba(212,197,169,0.1); }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(212,197,169,0.1); margin-bottom: 2rem;
}
.footer-logo img { height: 55px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--tan); font-size: 0.95rem; margin-bottom: 0.8rem; }
.footer-desc { font-size: 0.8rem; color: rgba(212,197,169,0.5); line-height: 1.7; }
.footer-col h4 { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tan); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(212,197,169,0.5); text-decoration: none; font-size: 0.8rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--tan); }
.footer-col p { color: rgba(212,197,169,0.5); font-size: 0.8rem; line-height: 1.7; }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: rgba(212,197,169,0.3); font-size: 0.72rem; }

/* ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* MOBILE */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 4rem 1.5rem; }
  .trust-bar { padding: 1rem 1.5rem; gap: 1.2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .page-hero { padding: 8rem 1.5rem 3rem; }
}
