/* ===================== TOKENS ===================== */
:root {
  --teal:        #2D3F45;
  --teal-mid:    #3D5560;
  --teal-light:  #4A6470;
  --cream:       #F7F3EE;
  --cream-dark:  #EDE8E0;
  --gold:        #C9A96E;
  --gold-light:  #E2CFA4;
  --white:       #FDFAF6;
  --text:        #1A2426;
  --muted:       #5A6E73;
  --radius:      2px;
  --ease:        cubic-bezier(0.4,0,0.2,1);
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ===================== TYPOGRAPHY ===================== */
.serif { font-family: 'Cormorant Garamond', serif; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.15; color: var(--teal); }
h1 { font-size: clamp(2.8rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
em { font-style: italic; color: var(--gold); }
p { line-height: 1.85; color: var(--muted); }

/* ===================== NAVBAR ===================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,250,246,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-dark);
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  transition: box-shadow 0.3s var(--ease);
}
nav.scrolled { box-shadow: 0 2px 24px rgba(45,63,69,0.08); }
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 500;
  color: var(--teal); letter-spacing: 0.03em;
}
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.79rem; font-weight: 500;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--muted); transition: color 0.25s;
}
.nav-links a:hover, .nav-links a.current { color: var(--teal); }
.nav-cta {
  background: var(--teal); color: var(--white) !important;
  padding: 10px 22px; border-radius: var(--radius);
  transition: background 0.25s !important;
}
.nav-cta:hover { background: var(--teal-mid) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--teal); transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--cream-dark);
  padding: 24px 32px; z-index: 999; flex-direction: column; gap: 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem; color: var(--teal); padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.79rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 32px; border-radius: var(--radius);
  transition: all 0.25s var(--ease); text-align: center;
}
.btn-dark { background: var(--teal); color: var(--white); }
.btn-dark:hover { background: var(--teal-mid); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--teal); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 1px solid var(--teal); color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-outline-light { background: transparent; border: 1px solid rgba(253,250,246,0.4); color: var(--white); }
.btn-outline-light:hover { border-color: var(--white); }
.btn-sm { padding: 10px 22px; font-size: 0.73rem; }

/* ===================== LAYOUT ===================== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.pt-nav { padding-top: 72px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

/* ===================== SECTION LABELS ===================== */
.eyebrow {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }

/* ===================== SYMBOL ===================== */
.sym {
  display: inline-block; color: var(--gold);
  animation: breath 3.5s ease-in-out infinite;
}
@keyframes breath {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* ===================== DIVIDER ===================== */
.divider {
  text-align: center; padding: 20px 0;
  font-size: 1.1rem; letter-spacing: 0.5em; color: var(--gold-light);
}

/* ===================== CREDENTIALS BAR ===================== */
.cred-bar {
  background: var(--cream); padding: 20px 0;
  border-top: 1px solid var(--cream-dark); border-bottom: 1px solid var(--cream-dark);
}
.cred-bar .container {
  display: flex; flex-wrap: wrap; gap: 12px 40px;
  justify-content: center; align-items: center;
}
.cred-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
}
.cred-item .sym { font-size: 0.6rem; }

/* ===================== TESTIMONIALS ===================== */
.testimonial {
  background: var(--white);
  border-top: 2px solid var(--gold);
  padding: 36px 32px;
}
.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 16px; font-size: 0.9rem; }
.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic; font-weight: 400;
  color: var(--teal); line-height: 1.7; margin-bottom: 20px;
}
.testimonial cite { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ===================== PULL QUOTE ===================== */
.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 24px 32px; margin: 40px 0;
  background: var(--cream);
}
.pull-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-style: italic; font-weight: 300;
  color: var(--teal); line-height: 1.5; margin: 0;
}

/* ===================== CTA BAND ===================== */
.cta-band {
  background: var(--teal); text-align: center; padding: 96px 40px;
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band h2 em { color: var(--gold-light); }
.cta-band p { color: rgba(253,250,246,0.7); max-width: 480px; margin: 0 auto 36px; }

/* ===================== NEWSLETTER ===================== */
.newsletter { background: var(--cream-dark); padding: 72px 40px; text-align: center; }
.newsletter h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 400; color: var(--teal); margin-bottom: 10px;
}
.newsletter p { color: var(--muted); margin-bottom: 28px; }
.nl-form { display: flex; max-width: 460px; margin: 0 auto; }
.nl-form input {
  flex: 1; padding: 14px 18px;
  border: 1px solid var(--cream-dark); border-right: none;
  background: var(--white); color: var(--text);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  outline: none; border-radius: var(--radius) 0 0 var(--radius);
}
.nl-form input:focus { border-color: var(--teal); }
.nl-form button {
  background: var(--teal); color: var(--white);
  padding: 14px 24px; border: none; cursor: pointer;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background 0.25s;
}
.nl-form button:hover { background: var(--teal-mid); }

/* ===================== FOOTER ===================== */
footer {
  background: var(--teal); color: rgba(253,250,246,0.65);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(253,250,246,0.1); margin-bottom: 28px;
}
.footer-brand .logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--gold-light);
  display: block; margin-bottom: 14px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.8; max-width: 280px; }
.footer-col h4 {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--white); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 0.87rem; color: rgba(253,250,246,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 0.77rem; color: rgba(253,250,246,0.35);
}
.social-links { display: flex; gap: 18px; }
.social-links a { font-size: 0.82rem; color: rgba(253,250,246,0.45); transition: color 0.2s; }
.social-links a:hover { color: var(--gold-light); }

/* ===================== SCROLL REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
