/* Karina Gutierrez. Somatic Therapy and Intimacy Coaching.
   Palette: Sangria (her brand) + gold + warm ivory. Fonts: Marcellus / Newsreader / Mulish. */
:root {
  --wine: #6e1f2a; --wine-deep: #4c151e; --wine-soft: #8a3744;
  --gold: #c2904a; --gold-soft: #e2bf85; --gold-deep: #a4763a;
  --ivory: #f7f1e7; --ivory-2: #efe4d4; --blush: #ead7c9;
  --ink: #2a1c1a; --ink-soft: #6e5b54; --ink-faint: #a08d84;
  --cream: #f5e9dd; --cream-soft: rgba(245, 233, 221, 0.66); --cream-faint: rgba(245, 233, 221, 0.42);
  --line: rgba(42, 28, 26, 0.13); --line-strong: rgba(42, 28, 26, 0.26); --line-cream: rgba(245, 233, 221, 0.2);
  --display: 'Marcellus', Georgia, serif;
  --accent: 'Newsreader', Georgia, serif;
  --body: 'Mulish', system-ui, sans-serif;
  --shadow: 0 14px 50px rgba(42, 20, 22, 0.12); --shadow-lg: 0 30px 80px rgba(42, 20, 22, 0.2);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--ivory); color: var(--ink); line-height: 1.7; font-weight: 400; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: 1.1; letter-spacing: 0.005em; color: var(--ink); }
.it { font-family: var(--accent); font-style: italic; font-weight: 400; color: var(--wine); }
a { color: inherit; text-decoration: none; transition: color 0.25s; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
::selection { background: var(--gold-soft); color: var(--wine-deep); }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 720px) { .wrap { padding: 0 24px; } }
.eyebrow { font-family: var(--body); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.1s cubic-bezier(0.16,1,0.3,1), transform 1.1s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }

/* nav */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(247,241,231,0); transition: background 0.4s, border-color 0.4s, padding 0.4s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(247,241,231,0.92); backdrop-filter: blur(14px); border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 40px; }
.nav.scrolled .nav-inner { padding: 13px 40px; }
@media (max-width: 720px) { .nav-inner, .nav.scrolled .nav-inner { padding: 14px 24px; } }
.logo img { height: 30px; width: auto; transition: filter 0.4s; }
.nav:not(.scrolled) .logo img { filter: brightness(0) invert(1); }
.logo.text { font-family: var(--display); font-size: 21px; letter-spacing: 0.04em; color: var(--wine); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a:not(.nav-cta) { font-size: 13px; letter-spacing: 0.06em; color: var(--ink-soft); text-transform: uppercase; }
.nav-links a:not(.nav-cta):hover, .nav-links a.active { color: var(--wine); }
.nav-links a.active { position: relative; }
.nav-cta { padding: 11px 24px; background: var(--wine); color: var(--cream); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; transition: background 0.25s, transform 0.25s; }
.nav-cta:hover { background: var(--wine-deep); transform: translateY(-1px); }
.nav-toggle { display: none; background: transparent; border: 0; cursor: pointer; width: 44px; height: 44px; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.nav-toggle span { width: 24px; height: 1.5px; background: var(--wine); transition: transform 0.35s, opacity 0.25s; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links { position: fixed; inset: 0 0 0 auto; width: 82%; max-width: 360px; background: var(--ivory); flex-direction: column; align-items: flex-start; justify-content: center; padding: 60px 40px; gap: 6px; transform: translateX(100%); transition: transform 0.45s cubic-bezier(0.16,1,0.3,1); box-shadow: -30px 0 80px rgba(42,20,22,0.18); }
  .nav.open .nav-links { transform: translateX(0); }
  .nav-links a:not(.nav-cta) { font-family: var(--display); font-size: 26px; text-transform: none; letter-spacing: 0.01em; padding: 12px 0; }
  .nav-cta { margin-top: 18px; }
}

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 34px; font-family: var(--body); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; border: 1px solid transparent; transition: all 0.3s; }
.btn-wine { background: var(--wine); color: var(--cream); }
.btn-wine:hover { background: var(--wine-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold); color: var(--wine-deep); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--wine); color: var(--wine); }
.btn-ghost-cream { background: transparent; border-color: var(--line-cream); color: var(--cream); }
.btn-ghost-cream:hover { background: rgba(245,233,221,0.08); border-color: var(--cream); }

/* sections */
.section { padding: 120px 0; }
@media (max-width: 720px) { .section { padding: 80px 0; } }
.section--wine { background: var(--wine); color: var(--cream); }
.section--wine h1, .section--wine h2, .section--wine h3 { color: var(--cream); }
.section--wine .eyebrow { color: var(--gold-soft); }
.section--wine .it { color: var(--gold-soft); }
.section--ivory2 { background: var(--ivory-2); }
.section--blush { background: var(--blush); }

/* home hero */
.hero { position: relative; min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; background: var(--wine-deep); color: var(--cream); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.32; filter: saturate(0.9); transform: scale(1.05); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, var(--wine-deep) 28%, rgba(76,21,30,0.7) 55%, rgba(76,21,30,0.35)); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 56px; align-items: center; width: 100%; padding-top: 90px; padding-bottom: 60px; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.hero .eyebrow { color: var(--gold-soft); display: inline-block; margin-bottom: 26px; }
.hero h1 { color: var(--cream); font-size: clamp(44px, 6.4vw, 88px); line-height: 1.04; margin-bottom: 26px; }
.hero h1 .it { color: var(--gold-soft); }
.hero-sub { font-family: var(--accent); font-style: italic; font-size: clamp(19px, 2.2vw, 26px); color: var(--cream-soft); max-width: 520px; margin-bottom: 38px; line-height: 1.5; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-portrait { aspect-ratio: 4/5; border-radius: 2px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line-cream); }
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .hero-portrait { max-width: 360px; } }
.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 1; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream-faint); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero-scroll::after { content: ''; width: 1px; height: 40px; background: linear-gradient(var(--gold-soft), transparent); }

/* interior page hero */
.page-hero { padding: 180px 0 80px; text-align: center; background: var(--wine); color: var(--cream); }
.page-hero .eyebrow { color: var(--gold-soft); display: inline-block; margin-bottom: 20px; }
.page-hero h1 { color: var(--cream); font-size: clamp(42px, 6vw, 78px); line-height: 1.05; }
.page-hero h1 .it { color: var(--gold-soft); }
.page-hero p { max-width: 600px; margin: 22px auto 0; color: var(--cream-soft); font-family: var(--accent); font-style: italic; font-size: clamp(18px, 2vw, 23px); line-height: 1.5; }

/* generic blocks */
.lede { font-family: var(--accent); font-style: italic; font-weight: 300; font-size: clamp(24px, 3.4vw, 42px); line-height: 1.3; color: var(--ink); max-width: 860px; }
.lede .hl { color: var(--wine); font-style: italic; }
.section--wine .lede { color: var(--cream); } .section--wine .lede .hl { color: var(--gold-soft); }
.measure { max-width: 680px; }
.body-p { font-size: clamp(16px, 1.7vw, 18px); color: var(--ink-soft); line-height: 1.8; margin-bottom: 1.3em; }
.section--wine .body-p { color: var(--cream-soft); }
.center { text-align: center; } .mx { margin-left: auto; margin-right: auto; }

/* two-column intro */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split-img { aspect-ratio: 4/5; overflow: hidden; border-radius: 2px; box-shadow: var(--shadow); }
.split-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s cubic-bezier(0.16,1,0.3,1); }
.split-img:hover img { transform: scale(1.04); }
.h-section { font-size: clamp(32px, 4.4vw, 54px); line-height: 1.08; margin-bottom: 24px; }
.h-section .it { color: var(--wine); }
.section--wine .h-section .it { color: var(--gold-soft); }

/* who-list editorial */
.who { border-top: 1px solid var(--line-cream); }
.who-row { display: flex; gap: 26px; align-items: baseline; padding: 26px 0; border-bottom: 1px solid var(--line-cream); }
.who-row .n { font-family: var(--accent); font-style: italic; font-size: 19px; color: var(--gold-soft); min-width: 36px; }
.who-row .t { font-family: var(--display); font-size: clamp(20px, 2.6vw, 30px); line-height: 1.3; color: var(--cream); }

/* full-bleed photo band */
.band { position: relative; min-height: 62vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band::after { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(42,20,22,0.5), rgba(76,21,30,0.55)); }
.band-q { position: relative; z-index: 1; font-family: var(--accent); font-style: italic; font-size: clamp(26px, 4vw, 50px); line-height: 1.28; color: var(--cream); max-width: 880px; padding: 40px 32px; }
.band-q .hl { color: var(--gold-soft); }
.band-cite { display: block; font-family: var(--body); font-style: normal; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-soft); margin-top: 26px; }

/* offerings editorial rows */
.offer { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; padding: 56px 0; border-bottom: 1px solid var(--line); }
.offer:nth-child(even) .offer-media { order: 2; }
@media (max-width: 820px) { .offer { grid-template-columns: 1fr; gap: 28px; } .offer:nth-child(even) .offer-media { order: 0; } }
.offer-media { aspect-ratio: 5/4; overflow: hidden; border-radius: 2px; box-shadow: var(--shadow); background: var(--ivory-2); }
.offer-media img { width: 100%; height: 100%; object-fit: cover; }
.offer-num { font-family: var(--accent); font-style: italic; font-size: 18px; color: var(--gold-deep); }
.offer h3 { font-size: clamp(26px, 3.4vw, 40px); margin: 8px 0 14px; }
.offer-meta { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 16px; }
.offer p { font-size: 16px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 22px; max-width: 520px; }
.offer-link { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--wine); border-bottom: 1px solid var(--gold); padding-bottom: 5px; transition: gap 0.25s; }
.offer-link:hover { gap: 15px; }

/* credentials */
.cred-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; border-top: 1px solid var(--line-cream); }
@media (max-width: 720px) { .cred-grid { grid-template-columns: 1fr; } }
.cred { padding: 22px 0; border-bottom: 1px solid var(--line-cream); }
.cred .c-name { font-family: var(--display); font-size: 19px; color: var(--cream); }
.cred .c-src { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-soft); margin-top: 5px; }

/* trust marquee */
.trust { padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.trust .eyebrow { display: block; margin-bottom: 20px; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 38px; }
.trust-row span { font-family: var(--display); font-size: clamp(15px, 1.8vw, 20px); color: var(--ink-soft); }
.trust-row span::before { content: '·'; color: var(--gold); margin-right: 38px; }
.trust-row span:first-child::before { content: none; }

/* testimonial */
.testi { max-width: 880px; margin: 0 auto; text-align: center; }
.testi .mark { font-family: var(--accent); font-style: italic; font-size: 120px; line-height: 0.4; color: var(--gold-soft); opacity: 0.5; }
.testi blockquote { font-family: var(--accent); font-style: italic; font-weight: 300; font-size: clamp(24px, 3.2vw, 40px); line-height: 1.34; color: var(--cream); margin: 16px 0 28px; }
.testi blockquote .hl { color: var(--gold-soft); }
.testi cite { font-style: normal; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); }

/* podcast videos */
.pod-feature { max-width: 960px; margin: 0 auto; }
.video { position: relative; aspect-ratio: 16/9; background: #1a0d0f; border-radius: 3px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line-cream); }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.pod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 22px; }
@media (max-width: 720px) { .pod-grid { grid-template-columns: 1fr; } }
.pod-cover { display: flex; gap: 24px; align-items: center; max-width: 720px; margin: 0 auto 12px; }
.pod-cover img { width: 150px; height: 150px; border-radius: 3px; object-fit: cover; box-shadow: var(--shadow); }
@media (max-width: 540px) { .pod-cover { flex-direction: column; text-align: center; } }

/* booking band */
.book { background: var(--wine-deep); color: var(--cream); text-align: center; }
.book h2 { color: var(--cream); font-size: clamp(34px, 5vw, 64px); margin-bottom: 18px; }
.book h2 .it { color: var(--gold-soft); }
.book p { color: var(--cream-soft); max-width: 540px; margin: 0 auto 34px; font-family: var(--accent); font-style: italic; font-size: clamp(17px, 1.9vw, 21px); }
.book-form { max-width: 540px; margin: 0 auto; display: grid; gap: 14px; text-align: left; }
.book-form input, .book-form textarea { width: 100%; padding: 15px 18px; background: rgba(245,233,221,0.06); border: 1px solid var(--line-cream); color: var(--cream); font-family: var(--body); font-size: 15px; transition: border-color 0.2s; }
.book-form input::placeholder, .book-form textarea::placeholder { color: var(--cream-faint); }
.book-form input:focus, .book-form textarea:focus { outline: none; border-color: var(--gold-soft); }
.book-form textarea { min-height: 96px; resize: vertical; }
.book-note { font-size: 12px; color: var(--cream-faint); font-style: italic; font-family: var(--accent); margin-top: 6px; }
.book-meta { display: flex; gap: 14px 30px; justify-content: center; flex-wrap: wrap; margin-top: 30px; font-size: 13px; color: var(--cream-soft); }
.book-meta a { color: var(--gold-soft); }

/* footer */
.footer { background: #2a1216; color: var(--cream-soft); padding: 70px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 44px; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.footer .logo img { height: 30px; margin-bottom: 14px; }
.footer-tag { font-family: var(--accent); font-style: italic; font-size: 16px; max-width: 320px; line-height: 1.6; color: var(--cream-soft); }
.footer h4 { font-family: var(--body); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 16px; }
.footer a.fl { display: block; color: var(--cream-soft); font-size: 14px; padding: 5px 0; }
.footer a.fl:hover { color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid var(--line-cream); margin-top: 48px; padding-top: 26px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-faint); }
.footer-bottom a { color: var(--gold-soft); }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } .reveal { opacity: 1; transform: none; } }
