/* ── CALM CREATOR STUDIO — Shared Styles ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --sage:        #7B9E87;
  --sage-dark:   #5a7a65;
  --sage-mid:    #6a8e77;
  --sage-light:  #EAF0EC;
  --cream:       #FAF7F2;
  --gold:        #C9A96E;
  --gold-light:  #f0e4cc;
  --dark:        #2C2C2C;
  --medium:      #5A5A5A;
  --light:       #9a9a9a;
  --white:       #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123,158,135,0.15);
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--sage-dark);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.nav-logo em { font-style: italic; color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--medium);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--sage); }

.nav-cta {
  background: var(--sage);
  color: var(--white) !important;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--sage-dark) !important; transform: translateY(-1px); }

/* Hamburger hidden — using always-visible top nav */
.nav-toggle { display: none !important; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(123,158,135,0.3);
}
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(123,158,135,0.35); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,169,110,0.3);
}
.btn-gold:hover { background: #b8905a; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--sage);
  border: 1.5px solid var(--sage);
}
.btn-outline:hover { background: var(--sage); color: var(--white); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* ── SECTION UTILITIES ── */
.section { padding: 6rem 2rem; }
.section-sm { padding: 4rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.container-sm { max-width: 760px; margin: 0 auto; }
.container-md { max-width: 900px; margin: 0 auto; }

.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.15; }

/* ── GOLD DIVIDER ── */
.gold-bar { height: 4px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ── FOOTER ── */
footer {
  background: var(--sage-dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 2rem;
  text-align: center;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}
.footer-logo em { font-style: italic; color: var(--gold-light); }
.footer-links { display: flex; gap: 2rem; justify-content: center; margin: 1.2rem 0; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.08em; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 1.2rem; }

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

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 1rem; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.68rem; letter-spacing: 0.08em; }
  .nav-cta { padding: 0.45rem 0.9rem; font-size: 0.68rem; }
  .nav-logo { font-size: 1rem; }
  .section { padding: 4rem 1.5rem; }
}

@media (max-width: 480px) {
  .nav-links { gap: 0.6rem; }
  .nav-links a { font-size: 0.6rem; letter-spacing: 0.04em; }
  .nav-cta { padding: 0.4rem 0.7rem; }
  .nav-logo { font-size: 0.88rem; }
}
