/* ============================================================
   Enhance by Tamara — Main Site Design System
   enhancebytamara.com
   Warm light luxury. Cormorant Garamond + Inter.
   ============================================================ */

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

:root {
  --bg:               #FAF7F3;
  --bg-alt:           #F0EAE3;
  --bg-dark:          #1C1A18;
  --text:             #1C1A18;
  --text-muted:       #625E59;
  --text-on-dark:     #F0EAE3;
  --text-muted-dark:  #9A9490;
  --accent:           #C8145C;
  --accent-hover:     #A01049;
  --border:           rgba(28, 26, 24, 0.1);
  --border-dark:      rgba(240, 234, 227, 0.12);

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;

  --max-content: 680px;
  --max-wide:    1000px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY ──────────────────────────────────── */

.label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.label-muted { color: var(--text-muted); }

h1 { font-family: var(--serif); font-weight: 400; line-height: 1.1; font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-family: var(--serif); font-weight: 400; line-height: 1.15; font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-family: var(--serif); font-weight: 400; line-height: 1.2; font-size: clamp(1.3rem, 2.5vw, 1.75rem); }

p { font-size: 0.95rem; line-height: 1.8; }

.text-serif {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  font-style: italic;
}

/* ── NAVIGATION ──────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(250, 247, 243, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: clamp(44px, 4.5vw, 72px);
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text);
  transition: color 0.2s;
}

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

.nav-cta {
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  color: white !important;
  background: var(--text);
  padding: 0.65rem 1.4rem;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--accent) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 201;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

/* ── BUTTONS ─────────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary  { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-hover); }

.btn-dark     { background: var(--text); color: var(--bg); }
.btn-dark:hover { background: var(--accent); color: white; }

.btn-outline  { background: transparent; color: var(--text); border: 1px solid rgba(28,26,24,0.25); }
.btn-outline:hover { border-color: var(--text); }

.btn-outline-light { background: transparent; color: var(--text-on-dark); border: 1px solid var(--border-dark); }
.btn-outline-light:hover { border-color: var(--text-on-dark); }

/* ── SECTIONS ────────────────────────────────────── */

.section     { padding: var(--space-xl) var(--space-md); }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section-dark p { color: var(--text-muted-dark); }
.section-dark .label { color: var(--text-muted-dark); }

.inner      { max-width: var(--max-content); margin: 0 auto; }
.inner-wide { max-width: var(--max-wide); margin: 0 auto; }

/* ── GRID UTILITY ────────────────────────────────── */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ── HERO ────────────────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 5rem 6rem 7rem;
}

.hero-text .label     { margin-bottom: 1.75rem; }
.hero-text h1         { margin-bottom: 1.5rem; font-size: clamp(1.9rem, 3.2vw, 2.9rem); }
.hero-text .hero-rule {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 1.5rem 0 2rem;
  flex-shrink: 0;
}
.hero-text p          { margin-bottom: 2.5rem; max-width: 420px; color: var(--text-muted); }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image {
  padding: 2rem 4rem 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  max-height: 68vh;
  border-radius: 12px;
  overflow: hidden;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

/* ── PAGE HERO ───────────────────────────────────── */

.page-hero {
  padding: 10rem var(--space-md) var(--space-lg);
  text-align: center;
}

.page-hero .label { margin-bottom: 0; }
.page-hero h1     { margin-top: 1rem; }
.page-hero p      { margin-top: 1rem; max-width: 560px; margin-left: auto; margin-right: auto; color: var(--text-muted); }

/* ── LEAD MAGNET / DARK CTA ──────────────────────── */

.lead-magnet {
  background: var(--bg-dark);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  color: var(--text-on-dark);
}

.lead-magnet .label    { margin-bottom: 0; color: var(--text-muted-dark); }
.lead-magnet h2        { margin-top: 1rem; color: var(--text-on-dark); }
.lead-magnet > p       { color: var(--text-muted-dark); max-width: 520px; margin: 1rem auto 2rem; }

.lead-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
}

.lead-form input[type="email"] {
  flex: 1;
  padding: 0.85rem 1.25rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-dark);
  color: var(--text-on-dark);
  outline: none;
  min-width: 0;
}

.lead-form input::placeholder { color: var(--text-muted-dark); }

.lead-success {
  display: none;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-on-dark);
  margin-top: 1.5rem;
}

.lead-note {
  font-size: 0.72rem;
  color: var(--text-muted-dark);
  margin-top: 1.25rem;
}

/* ── CARDS ───────────────────────────────────────── */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}

.card {
  background: var(--bg);
  padding: 2.5rem 2rem;
}

.card .label   { margin-bottom: 1.25rem; }
.card h3       { margin-bottom: 1rem; }
.card p        { font-size: 0.88rem; color: var(--text); margin-bottom: 1.75rem; line-height: 1.7; }

/* ── STATS ───────────────────────────────────────── */

.stat-row { display: flex; gap: 3rem; flex-wrap: wrap; }

.stat-number {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  color: var(--accent);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  line-height: 1.4;
}

/* ── TESTIMONIAL ─────────────────────────────────── */

.testimonial {
  border-left: 2px solid var(--accent);
  padding-left: 1.75rem;
}

.testimonial blockquote {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 1rem;
}

.testimonial cite {
  font-size: 0.75rem;
  font-style: normal;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ── SPLIT (photo + text) ────────────────────────── */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.split-photo { overflow: hidden; min-height: 480px; }
.split-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.split-text {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-text .label { margin-bottom: 1.25rem; }
.split-text h2     { margin-bottom: 1.25rem; }
.split-text p      { color: var(--text-muted); margin-bottom: 1rem; }
.split-text p:last-of-type { margin-bottom: 0; }

/* ── CREDENTIALS ─────────────────────────────────── */

.credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

.credential { background: var(--bg); padding: 1.5rem; }

.credential-title {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.credential-value {
  font-family: var(--serif);
  font-size: 1.05rem;
}

/* ── BELIEFS ─────────────────────────────────────── */

.beliefs { display: flex; flex-direction: column; }

.belief {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.belief:first-child { border-top: 1px solid var(--border); }

.belief p {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  max-width: 560px;
}

/* ── OFFERING PATHS ──────────────────────────────── */

.path {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border);
}

.path:last-of-type { border-bottom: none; }

.path-header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.path-number {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
}

.path h2      { margin-bottom: 0.75rem; }
.path p       { color: var(--text); margin-bottom: 0.85rem; }
.path .path-meta {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem !important;
}

.path .btn { margin-top: 0.75rem; }

/* ── FAQ ─────────────────────────────────────────── */

.faq { border-top: 1px solid var(--border); }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-item summary {
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-family: var(--sans);
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: '−'; }

.faq-answer {
  padding: 0 2rem 1.5rem 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
  max-width: 580px;
}

/* ── EVENT CARD ──────────────────────────────────── */

.event-card {
  background: var(--bg-alt);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 2.5rem;
}

.event-meta .label   { margin-bottom: 0.75rem; }
.event-meta h3       { margin-bottom: 0.75rem; }
.event-meta p        { color: var(--text); font-size: 0.88rem; margin-bottom: 0.5rem; }

.event-details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ── FULL-WIDTH PHOTO ────────────────────────────── */

.photo-full { height: 60vh; overflow: hidden; }
.photo-full img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }

/* ── PROBLEM LIST ────────────────────────────────── */

.problem-list { display: flex; flex-direction: column; margin-top: 2rem; }

.problem-item {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
}

.problem-item:first-child { border-top: 1px solid var(--border); }

/* ── FOOTER ──────────────────────────────────────── */

.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: var(--space-lg) var(--space-md);
}

.footer-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-muted-dark);
  line-height: 1.65;
  max-width: 260px;
}

.footer-nav h4 {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  margin-bottom: 1rem;
}

.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 0.5rem; }

.footer-nav a {
  font-size: 0.82rem;
  color: var(--text-on-dark);
  opacity: 0.65;
  transition: opacity 0.2s;
}

.footer-nav a:hover { opacity: 1; }

.footer-bottom {
  max-width: var(--max-wide);
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: var(--text-muted-dark);
}

.footer-social { display: flex; gap: 1.5rem; }

.footer-social a {
  font-size: 0.72rem;
  color: var(--text-muted-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--accent); }

/* ── HERO CENTERED ───────────────────────────────── */

.hero-centered {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 2rem 5rem;
}

.hero-centered .label    { margin-bottom: 2rem; }
.hero-centered h1        { max-width: 700px; }
.hero-centered .hero-rule {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 2rem auto;
  flex-shrink: 0;
}
.hero-centered p         { max-width: 460px; margin: 0 auto 2.5rem; color: var(--text-muted); }
.hero-centered .hero-btns { justify-content: center; }

/* ── PHOTO PLACEHOLDER ───────────────────────────── */

.ph {
  background: #EAE3DC;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.ph::after {
  content: attr(data-label);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B0A89F;
}

/* Placeholder sizes */
.ph--wide     { height: 460px; }
.ph--medium   { height: 360px; }
.ph--slim     { height: 240px; }
.ph--portrait {
  height: 500px;
  max-width: 380px;
  margin: 0 auto;
  display: flex;
}

/* ── MOBILE ──────────────────────────────────────── */

@media (max-width: 860px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 2.5rem;
  }

  /* Nav */
  .nav { padding: 1rem 1.25rem; }
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 199;
  }

  .nav-links.open { opacity: 1; pointer-events: all; }
  .nav-links a { font-size: 1.1rem; }

  /* Hero */
  .hero { grid-template-columns: 1fr; min-height: auto; align-items: start; }
  .hero-text { padding: 7rem 1.5rem 3rem; }
  .hero-text h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .hero-image { padding: 0 1.25rem 2rem; }
  .hero-frame { max-width: 100%; max-height: 70vw; aspect-ratio: 4 / 3; }

  /* Sections */
  .section { padding: var(--space-xl) 1.25rem; }
  .page-hero { padding: 8rem 1.25rem var(--space-lg); }

  /* Split */
  .split { grid-template-columns: 1fr; }
  .split-photo { min-height: 280px; max-height: 360px; }
  .split-text { padding: 2.5rem 1.25rem; }

  /* Cards */
  .cards { grid-template-columns: 1fr; }

  /* Grid 2 */
  .grid-2 { grid-template-columns: 1fr; gap: 3rem; }

  /* Lead form */
  .lead-form { flex-direction: column; }
  .lead-form input[type="email"] { width: 100%; }

  /* Event card */
  .event-card { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Credentials */
  .credentials { grid-template-columns: 1fr; }

  /* Stat row */
  .stat-row { gap: 2rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  /* Photo full */
  .photo-full { height: 45vw; min-height: 220px; }

  /* Path header */
  .path-header { flex-wrap: wrap; gap: 0.5rem; }
  .path-number { font-size: 2.2rem; }
}
