/* ── GROWTH EDGE · SHARED STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Chivo:ital,wght@0,700;0,900;1,700&family=Livvic:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --ink:          #1a1714;
  --paper:        #faf8f4;
  --warm-mid:     #6b6258;
  --light:        #9a9088;
  --accent:       #b5432a;
  --accent-light: #f0e8e4;
  --gold:         #c9943a;
  --navy:         #1e3a5f;
  --navy-light:   #e8eef5;
  --rule:         #ddd8ce;
  --section-bg:   #f5f2ec;
  --t1: #b5432a;
  --t2: #1e3a5f;
  --t3: #c9943a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Livvic", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  font-size: 17px;
}

/* ── SHARED BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Livvic", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  background: var(--accent);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 5px;
  transition: background 0.15s;
  letter-spacing: 0.2px;
  cursor: pointer;
  border: none;
}

.btn-primary:hover { background: #9e3a24; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Livvic", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  padding: 0;
}

.btn-secondary:hover { border-bottom-color: var(--accent); }

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 5%;
  position: sticky;
  top: 0;
  z-index: 100;
  background: #F7F5F1;
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  height: auto;
  justify-content: flex-start;
}

.nav-brand {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none;
  flex-shrink: 0;
  width: 28%;
}

.nav-brand img {
  height: 28px;
  width: auto;
  display: block;
}

.nav-brand .slash { display: none; }
.nav-brand span { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 60%;
  justify-content: center;
  overflow-x: visible;
  padding-bottom: 0;
}

.nav-spacer {
  flex-shrink: 0;
  width: 28%;
}

.nav-links a {
  font-family: "Livvic", sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: var(--warm-mid);
  text-decoration: none;
  transition: color 0.15s;
  border-bottom: none;
  padding-bottom: 0;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--ink); }

.nav-links a.active {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: none;
  padding-bottom: 0;
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
  width: 32px;
  height: 32px;
  position: relative;
}

.nav-hamburger .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: absolute;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-hamburger .bar:nth-child(1) { transform: translateY(-6px); }
.nav-hamburger .bar:nth-child(2) { transform: translateY(0); }
.nav-hamburger .bar:nth-child(3) { transform: translateY(6px); }
.nav-hamburger.open .bar:nth-child(1) { transform: translateY(0) rotate(45deg); }
.nav-hamburger.open .bar:nth-child(2) { opacity: 0; }
.nav-hamburger.open .bar:nth-child(3) { transform: translateY(0) rotate(-45deg); }

/* ── MOBILE MENU ── */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 62px;
  right: 16px;
  width: 220px;
  background: #F7F5F1;
  border-radius: 10px;
  padding: 8px 0;
  flex-direction: column;
  z-index: 99;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu a {
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 24px;
  text-align: center;
  transition: background 0.1s;
}

.nav-mobile-menu a:hover { background: var(--section-bg); }
.nav-mobile-menu a.active { font-weight: 600; }

/* ── NAV RESPONSIVE ── */
@media (max-width: 640px) {
  .nav { padding: 0 20px; gap: 16px; }
  .nav-brand { width: auto; }
  .nav-spacer { display: none; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── SHARED FOOTER ── */
.site-footer {
  background: var(--ink);
  padding: 48px 32px;
  text-align: center;
}

.site-footer-inner { max-width: 480px; margin: 0 auto; }

.site-footer-title {
  font-family: 'Chivo', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  line-height: 1.3;
}

.site-footer-body {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}

.site-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  margin-bottom: 24px;
}

.site-footer-contact a {
  color: var(--gold);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.site-footer-contact a:hover { text-decoration: underline; }

.site-footer-divider {
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto 16px;
}

.site-footer-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}

.site-footer-nav a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.15s;
}

.site-footer-nav a:hover { color: rgba(255,255,255,0.7); }

.site-footer-small {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.3px;
}

/* ── SECTION EYEBROW ── */
.section-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

/* ── QUOTE CAROUSEL ── */
.quote-carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  padding: 0 48px;
}

.carousel-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -8px;
  display: block;
}

.carousel-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 20px;
}

.carousel-quote-attr {
  font-size: 11px;
  font-weight: 600;
  color: var(--warm-mid);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.carousel-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s;
  flex-shrink: 0;
}

.carousel-btn:hover { border-color: var(--accent); background: var(--accent-light); }

.carousel-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rule);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

@media (max-width: 600px) {
  .carousel-slide { padding: 0 24px; }
}
