/* ==========================================================================
   The Mindfulness Bae / Baddie Be Well — site styles
   All-black canvas, white type, photography left un-cropped and left-justified
   so black-backed photos dissolve straight into the page. Bebas Neue for
   display type, Helvetica Neue for body copy. No cards, no borders, no radius.
   ========================================================================== */

:root {
  --black: #000000;
  --white: #ffffff;
  --grey: #B3B3B3;
  --line: #262626;
  --display: 'Bebas Neue', 'Helvetica Neue', Arial, sans-serif;
  --sans: 'Helvetica Neue', Helvetica, Arial, -apple-system, BlinkMacSystemFont, sans-serif;
  --max: 1320px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
  font-size: 17px;
}

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

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
  line-height: 0.95;
  margin: 0 0 0.35em;
}

h1 { font-size: clamp(3.2rem, 8vw, 7.5rem); }
h2 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h3 { font-size: 1.6rem; letter-spacing: 0.02em; }

p { margin: 0 0 1.1em; color: var(--grey); max-width: 46ch; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  display: inline-block;
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 34px;
  border: 1.5px solid var(--white);
  color: var(--white);
  background: transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  font-size: 0.78rem;
}
.btn:hover { background: var(--white); color: var(--black); }
.btn-solid { background: var(--white); color: var(--black); }
.btn-solid:hover { background: transparent; color: var(--white); }

/* ---------- header ---------- */

header.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 5vw;
  max-width: var(--max);
  margin: 0 auto;
}

.logo {
  font-family: var(--display);
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-cta {
  color: var(--white) !important;
  border: 1.5px solid var(--white);
  padding: 8px 18px !important;
}
.nav-cta:hover { background: var(--white); color: var(--black) !important; }

/* ---------- hero (top of home page) ----------
   Uses the same photo-block pattern as the rest of the site: the photo
   is shown whole (never cropped), anchored to one side, on a matching
   black canvas — so portrait photos never lose their subject to a crop. */

.tagline {
  font-family: var(--sans);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: var(--white);
  margin: 0 0 30px;
}
.tagline span { margin: 0 10px; opacity: 0.5; }

.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 30px; }

.social-row {
  display: flex;
  gap: 22px;
  margin-top: 32px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}
.social-row a {
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
}
.social-row a:hover { opacity: 0.6; }

/* ---------- photo-block: the core pattern ----------
   Photo shown whole (never cropped to a box), pushed to one side; a
   matching black canvas means black-backed photos read as part of the
   page itself. Text sits directly in the remaining black space. */

.photo-block {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line);
}
.photo-block .pb-photo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.photo-block.reverse .pb-photo { justify-content: flex-start; }
.photo-block .pb-photo img {
  height: 100%;
  max-height: 100vh;
  width: auto;
  max-width: 62%;
  object-fit: contain;
  object-position: bottom;
}
.photo-block .pb-text {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 8vh 5vw;
  max-width: 620px;
}
.photo-block.reverse .pb-text { margin-left: auto; text-align: left; }
.photo-block .pb-text p { max-width: 46ch; }

/* ---------- section ---------- */

section { padding: 100px 5vw; }
section.photo-block { padding: 0; }
.photo-block.hero-block .pb-text { max-width: 680px; }
.photo-block.hero-block { border-top: none; }
.photo-block.hero-block .pb-photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22vh;
  background: linear-gradient(0deg, var(--black) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}
section.signup-section { padding: 100px 5vw; border-top: 1px solid var(--line); }
.wrap { max-width: var(--max); margin: 0 auto; }

.section-head { max-width: 640px; margin: 0 0 60px; }

/* ---------- practice list (no cards, just left-aligned rows) ---------- */

.practice-list {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.practice-item {
  padding: 40px 40px 40px 0;
  border-top: 1px solid var(--line);
}
.practice-item .num {
  font-family: var(--display);
  font-size: 3rem;
  color: var(--grey);
  line-height: 1;
  margin-bottom: 14px;
}
.practice-item h3 { margin-bottom: 12px; }
.practice-item p { margin: 0; }

/* ---------- photo gallery strip ---------- */

.gallery {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  max-width: var(--max);
  margin: 0 auto;
  -webkit-overflow-scrolling: touch;
}
.gallery img {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 300px;
  height: 400px;
  object-fit: cover;
  object-position: center 15%;
  filter: grayscale(15%);
}
.gallery::-webkit-scrollbar { height: 3px; }
.gallery::-webkit-scrollbar-thumb { background: var(--white); }
.gallery-hint {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 20px;
}

/* ---------- manifesto / mission statement ---------- */

.manifesto { border-bottom: 1px solid var(--line); }
.manifesto h2 { max-width: 900px; }
.manifesto-lead {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--white);
  max-width: 60ch;
  margin-top: 24px;
}

.footer-mantra {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 18px;
  max-width: 640px;
}

/* ---------- about: "why I do this" ---------- */

.why-section { border-bottom: 1px solid var(--line); }
.why-lead {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  text-transform: uppercase;
  line-height: 1.05;
  max-width: 18ch;
  margin-bottom: 34px;
}
.why-body { max-width: 680px; }
.why-body p { font-size: 1.06rem; }

/* ---------- about: single-flow bio + right-hand carousel ---------- */

.about-main {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}
.about-bio p {
  max-width: 58ch;
  font-size: 1.08rem;
}
.about-carousel {
  position: sticky;
  top: 110px;
  margin-left: auto;
  width: 100%;
  max-width: 420px;
}
.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--black);
  overflow: hidden;
}
.carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.carousel img.active { opacity: 1; }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}
.carousel-controls button {
  background: transparent;
  border: 1.5px solid var(--white);
  color: var(--white);
  width: 40px;
  height: 40px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}
.carousel-controls button:hover { background: var(--white); color: var(--black); }
.carousel-count {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--grey);
}

/* ---------- signup ---------- */

.signup {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  text-align: left;
}
.signup p { max-width: 52ch; }

.signup-form {
  display: flex;
  gap: 0;
  margin-top: 34px;
  flex-wrap: wrap;
  max-width: 560px;
  border-bottom: 1.5px solid var(--white);
}
.signup-form input[type="email"] {
  flex: 1 1 260px;
  padding: 14px 0;
  border: none;
  background: transparent;
  color: var(--white);
  font-family: var(--sans);
  font-size: 1rem;
}
.signup-form input[type="email"]::placeholder { color: #777; }
.signup-form button {
  border: none;
  background: transparent;
  color: var(--white);
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 14px 4px;
  cursor: pointer;
}
.signup-form button:hover { color: var(--grey); }
.signup-note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: #666;
}

/* ---------- footer ---------- */

footer {
  border-top: 1px solid var(--line);
  padding: 60px 5vw 36px;
}
.footer-wrap { max-width: var(--max); margin: 0 auto; }
.footer-wrap .logo { display: inline-block; margin-bottom: 14px; }
.footer-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--grey);
  margin-bottom: 26px;
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  flex-wrap: wrap;
}
.footer-links a { text-decoration: none; font-size: 0.82rem; color: var(--grey); }
.footer-links a:hover { color: var(--white); }

.social-line {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  flex-wrap: wrap;
}
.social-line a {
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}
.social-line a:hover { color: var(--white); border-color: var(--white); }

.footer-fine { font-size: 0.76rem; color: #555; }

/* ---------- page hero (about/contact) ---------- */

.page-hero {
  padding: 160px 5vw 60px;
  max-width: var(--max);
  margin: 0 auto;
}
.page-hero p { max-width: 60ch; font-size: 1.05rem; }

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}
.contact-form { display: grid; gap: 30px; }
.contact-form label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
  color: var(--grey);
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1.5px solid var(--line);
  font-family: var(--sans);
  font-size: 1rem;
  background: transparent;
  color: var(--white);
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--white); }
.contact-form textarea { min-height: 120px; resize: vertical; }

.pull-quote {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
  margin: 0 0 32px;
  max-width: 14ch;
}

.contact-socials { list-style: none; padding: 0; margin: 22px 0 0; }
.contact-socials li { margin-bottom: 10px; font-size: 1rem; color: var(--grey); }
.contact-socials a { color: var(--white); text-decoration: underline; font-weight: 600; }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .photo-block { min-height: auto; padding-top: 60px; display: block; }
  .photo-block .pb-photo { position: relative; inset: auto; justify-content: center !important; margin-bottom: 40px; }
  .photo-block .pb-photo img { max-width: 90%; max-height: 70vh; }
  .photo-block .pb-text { max-width: 100%; margin-left: 0 !important; padding: 0 5vw 60px; }
  .practice-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-main { grid-template-columns: 1fr; gap: 40px; }
  .about-carousel { position: static; max-width: 100%; order: -1; }
  .nav-links { display: none; }
  section { padding: 70px 5vw; }
}
