/* =========================================================================
   juliaross.com — site-specific layout (built on shared design system)
   ========================================================================= */

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding-top: clamp(8rem, 7rem + 6vw, 12rem);
  padding-bottom: clamp(3rem, 2rem + 4vw, 6rem);
  background:
    radial-gradient(120% 90% at 85% 0%, var(--rose-wash) 0%, transparent 55%),
    var(--bg);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}
.hero__title {
  font-size: clamp(3rem, 2rem + 4.2vw, 5.4rem);
  line-height: 0.98;
  margin: 1.6rem 0 1.8rem;
  text-wrap: balance;
}
.hero__title .italic { color: var(--accent-strong); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero__portrait {
  position: relative;
  border-radius: 260px 260px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
}
.hero__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%);
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--faint);
}
.hero__scroll span { position: relative; }
.hero__scroll span::after {
  content: ""; position: absolute; left: 50%; top: 2rem; width: 1px; height: 2.4rem;
  background: linear-gradient(var(--faint), transparent);
  animation: scrollpulse 2.4s var(--ease-soft) infinite;
}
@keyframes scrollpulse { 0%,100% { opacity: 0.2; transform: translateY(-6px); } 50% { opacity: 1; transform: translateY(0); } }

/* ---------- QUOTE BAND ---------- */
.quote-band { text-align: center; }
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.2rem + 3vw, 3.4rem);
  line-height: 1.24;
  color: var(--heading);
  font-weight: 400;
}
.pull-quote .italic { color: var(--accent-strong); }
.signature { height: clamp(56px, 8vw, 84px); width: auto; margin: 1.5rem auto 0; opacity: 0.9; }

/* ---------- STORY ---------- */
.story__grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.story__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow); }
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.stat-row {
  list-style: none; padding: 1.6rem 0 0; margin-top: 1rem;
  display: grid; grid-template-columns: repeat(3, auto); gap: clamp(1.5rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
}
.stat-row strong {
  display: block; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2rem, 1.4rem + 2vw, 3rem); color: var(--accent-strong); line-height: 1;
}
.stat-row span { font-size: 0.8rem; letter-spacing: 0.06em; color: var(--muted); }

/* ---------- Section head ---------- */
.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.section-head h2 { margin: 1rem 0 1.2rem; }
.section-head.text-center { margin-inline: auto; }

/* ---------- VENTURES ---------- */
.ventures__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ventures__grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 840px; margin-inline: auto; }
.venture-card { display: block; }
.venture-card .card__body { min-height: 230px; display: flex; flex-direction: column; }
.venture-card .link-underline { margin-top: auto; }
.venture-card__tag {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--faint);
}

/* ---------- WELLNESS ---------- */
.wellness__grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.wellness__media { border-radius: var(--radius-lg) var(--radius-lg) 200px 200px; overflow: hidden; aspect-ratio: 3 / 4; box-shadow: var(--shadow); }
.wellness__media img { width: 100%; height: 100%; object-fit: cover; }
.inline-form { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; margin-top: 0.5rem; }
.inline-form input {
  flex: 1 1 240px; padding: 0.95rem 1.1rem;
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius);
}
.inline-form input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--rose-wash); }
.inline-form .form-note { flex-basis: 100%; }

/* ---------- GIVING ---------- */
.giving__logos { margin-top: 3rem; }

/* ---------- CONTACT ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.contact__meta { list-style: none; padding: 0; display: flex; gap: 2rem; }
.contact__form .btn { justify-content: center; margin-top: 0.5rem; }
.section--ink .field input, .section--ink .field textarea {
  background: rgba(255,255,255,0.04); border-color: rgba(243,235,225,0.22); color: var(--cream);
}
.section--ink .field label { color: var(--rose); }
.section--ink .field input:focus, .section--ink .field textarea:focus {
  border-color: var(--rose); box-shadow: 0 0 0 3px rgba(201,138,130,0.2);
}
.section--ink .form-note { color: var(--rose); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid, .story__grid, .wellness__grid, .contact__grid { grid-template-columns: 1fr; }
  .hero__portrait { max-width: 460px; margin-inline: auto; order: -1; }
  .story__media { max-width: 460px; }
  .ventures__grid { grid-template-columns: 1fr; }
  .story__media, .wellness__media { order: -1; max-width: 460px; margin-inline: auto; }
}
@media (max-width: 560px) {
  .stat-row { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .contact__meta { gap: 1.2rem; }
}
