/* ══════════════════════════════════════════════
   Build with Charmayne — Shared Styles
   ══════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --bg: #F5F0E8;
  --bg-alt: #EDE7DD;
  --white: #FDFCFA;
  --ink: #241F1C;
  --ink-light: #50453E;
  --muted: #8E857A;
  --border: #D9D2C7;
}

/* ── RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
h1, h2, h3 { font-weight: 600; }

/* ── BODY ── */
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: #3a3632;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 56px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(245, 240, 232, 0.9);
  backdrop-filter: blur(20px);
}
.logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.logo a {
  text-decoration: none;
  color: inherit;
}
.nav-right { display: flex; gap: 36px; align-items: center; }
.nav-right a {
  text-decoration: none; color: var(--muted);
  font-size: 0.82rem; font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.nav-right a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink) !important;
  color: var(--bg) !important;
  padding: 12px 28px;
  border-radius: 100px;
  transition: all 0.25s !important;
}
.nav-cta:hover { opacity: 0.85; }

/* ── DIVIDER ── */
.divider {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 56px;
}
.divider hr { border: none; border-top: 1px solid var(--border); }

/* ── SECTION NUMBER ── */
.section-num {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 32px;
}

/* ── SECTION INNER (for full-bleed background sections) ── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-inner--narrow {
  max-width: 800px;
}

/* ── ABOUT IMAGE (shared component) ── */
.about-image-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.about-image-placeholder {
  width: 100%;
  max-width: 350px;
  aspect-ratio: 3/4;
  background: var(--bg-alt);
  border-radius: 200px 200px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--border);
  overflow: hidden;
}
.about-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ── FINAL CTA (shared base) ── */
.final-cta {
  text-align: center;
  padding: 80px 56px;
  max-width: 1100px;
  margin: 0 auto;
}
.final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.final-cta h2 em { font-style: normal; }
.final-cta p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 400px;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.final-cta a {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: var(--bg);
  padding: 18px 40px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.final-cta a:hover { gap: 18px; }

/* ── FOOTER ── */
footer {
  padding: 36px 56px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--ink); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE: TABLET ── */
@media (max-width: 768px) {
  nav { padding: 18px 24px; }
  .nav-right a:not(.nav-cta) { display: none; }
  .divider { padding: 0 24px; }
  .final-cta { padding: 48px 24px; }
  footer { padding: 28px 24px; flex-direction: column; gap: 12px; text-align: center; }
  .about-image-col { align-items: center; width: 100%; }
  .about-image-placeholder { max-width: none; }
  .section-num { font-size: 0.62rem; margin-bottom: 24px; }
}

/* ── RESPONSIVE: SMALL MOBILE ── */
@media (max-width: 480px) {
  nav { padding: 14px 16px; }
  .nav-cta { padding: 10px 22px; font-size: 0.75rem; }
  .divider { padding: 0 16px; }
  .final-cta { padding: 48px 16px; }
  .final-cta h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .final-cta p { font-size: 0.88rem; margin-bottom: 32px; }
  .final-cta a { padding: 16px 32px; font-size: 0.78rem; }
  footer { padding: 24px 16px; font-size: 0.68rem; }
}
