/* ═══════════════════════════════════════
   SORORITY SUPPORT — shared.css
   Used by all pages
   ═══════════════════════════════════════ */

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

body {
  font-family: 'DM Sans', sans-serif;
  background: #FBF7F4;
  color: #2C1B14;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── NAV ── */
nav.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: #FBF7F4;
  border-bottom: 1px solid #E8D8CC;
  position: sticky;
  top: 0;
  z-index: 200;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #7A3B2E;
  text-decoration: none;
  user-select: none;
}
.logo span { font-style: italic; font-weight: 400; }

.top-nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}
.top-nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #6B4E3D;
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.15s;
  display: inline-block;
}
.top-nav-links a:hover { background: #F0E4DC; color: #7A3B2E; }
.top-nav-links a.active { background: #7A3B2E; color: #FBF7F4; }
.top-nav-links a.cta { background: #7A3B2E; color: #FBF7F4; }
.top-nav-links a.cta:hover { background: #5C2B1E; }

/* ── PAGE HERO ── */
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B07050;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: #B07050;
}

h1.pg {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  color: #2C1B14;
  margin-bottom: 14px;
}
h1.pg em { font-style: italic; color: #7A3B2E; }

.pg-sub {
  font-size: 15px;
  line-height: 1.7;
  color: #6B4E3D;
  font-weight: 300;
  max-width: 520px;
}

.pg-hero {
  padding: 52px 40px 40px;
  border-bottom: 1px solid #E8D8CC;
}

/* ── SECTIONS ── */
.sec { padding: 44px 40px; flex: 1; }
.sec-alt {
  padding: 44px 40px;
  background: #FFF9F6;
  border-top: 1px solid #E8D8CC;
  border-bottom: 1px solid #E8D8CC;
}

h2.sec-h {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #2C1B14;
  margin-bottom: 24px;
}
h2.sec-h em { font-style: italic; color: #7A3B2E; }

/* ── BUTTONS ── */
.btn-p {
  background: #7A3B2E;
  color: #FBF7F4;
  border: none;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.btn-p:hover { background: #5C2B1E; }
.btn-sm { padding: 9px 18px; font-size: 12px; }

.btn-o {
  background: transparent;
  color: #7A3B2E;
  border: 1.5px solid #C4977A;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}
.btn-o:hover { background: #F0E4DC; border-color: #7A3B2E; }

/* ── FORM INPUTS ── */
.field-input {
  width: 100%;
  background: #FBF7F4;
  border: 1px solid #E8D8CC;
  border-radius: 10px;
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #2C1B14;
  outline: none;
  transition: border-color 0.2s;
  display: block;
}
.field-input:focus { border-color: #C4977A; }

.field-textarea {
  width: 100%;
  background: #FBF7F4;
  border: 1px solid #E8D8CC;
  border-radius: 10px;
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #2C1B14;
  outline: none;
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.2s;
  display: block;
  width: 100%;
}
.field-textarea:focus { border-color: #C4977A; }

/* ── FOOTER ── */
footer.site-footer {
  background: #2C1B14;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.foot-logo {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: #FBF7F4;
}
.foot-logo span { font-style: italic; color: #D4A58A; }
.foot-links { display: flex; gap: 20px; list-style: none; }
.foot-links a {
  font-size: 11px;
  color: #9B7060;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.15s;
}
.foot-links a:hover { color: #D4A58A; }
.foot-copy { font-size: 11px; color: #6B4E3D; }
