/* ============= HOME — page-specific styles ============= */

/* The home page sets its running text one weight lighter than the rest. */
.page-home { font-weight: 300; }

/* ---------- Hero (image only, no copy — by design) ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: clamp(560px, 82vh, 880px);
  background: var(--night);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero__bg,
.hero__bg picture {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
}
/* Cover, anchored centre-bottom so the seating motif is preserved. */
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
  opacity: 0;
  transform: scale(1.15);
  /* Slow zoom-out reveal: 1.15 → 1.0 over 6s (baked from the design tweak). */
  animation: heroImgReveal 6s var(--ease-reveal) 0.05s forwards;
}
@keyframes heroImgReveal {
  from { opacity: 0; transform: scale(1.15); }
  to   { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg img { animation: none; opacity: 1; transform: none; }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top,  rgba(var(--night-rgb), 0.22) 0%, rgba(var(--night-rgb), 0) 45%),
    linear-gradient(to right, rgba(var(--night-rgb), 0.10) 0%, rgba(var(--night-rgb), 0) 55%);
}
/* Tablet & mobile: portrait floor. */
@media (max-width: 900px) {
  .hero { min-height: clamp(420px, 68vh, 600px); }
  .hero__bg img { object-position: 50% 55%; }
}

/* ---------- Philosophy ---------- */
.philosophy {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 96px);
  align-items: start;
}
.philosophy__visual {
  aspect-ratio: 4 / 5;
  background: var(--bg-alt);
  overflow: hidden;
  position: relative;
}
.philosophy__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 24%;
}
.philosophy__copy h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: 1.02;
  margin: 0 0 36px;
  letter-spacing: 0.005em;
}
.philosophy__copy h2 em { font-style: italic; color: var(--accent); }
.philosophy__list {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
}
.philosophy__list li {
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
}
.philosophy__list li b {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 6px;
}
.philosophy__list li span {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}
@media (max-width: 900px) {
  .philosophy { grid-template-columns: 1fr; }
  .philosophy__list { grid-template-columns: 1fr; }
}

/* ---------- Disciplines ---------- */
.disciplines-head { margin-bottom: clamp(32px, 4vw, 56px); }
.disciplines-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}
.disciplines {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.discipline {
  aspect-ratio: 4 / 5;
  padding: 40px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-soft);
  background: transparent;
  transition: background .35s ease, border-color .35s ease;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.discipline:hover {
  background: color-mix(in oklab, var(--bg-alt) 60%, transparent);
  border-color: var(--line);
}
.discipline:hover h3 { transform: translateX(4px); }
.discipline .num {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: var(--tracking-mid);
  text-transform: uppercase;
  font-weight: 500;
}
.discipline__body {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.discipline h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.75rem;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
  transition: transform .35s ease;
}
.discipline p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1024px) {
  .disciplines-shell { padding: 0 48px; }
  .disciplines { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 640px) {
  .disciplines-shell { padding: 0 24px; }
  .disciplines { grid-template-columns: 1fr; gap: 16px; }
  .discipline { aspect-ratio: auto; padding: 28px; }
  .discipline__body { margin-top: 56px; }
}

/* ---------- Editorial quote ---------- */
.editorial {
  padding: clamp(80px, 12vw, 180px) 0;
  text-align: center;
}
.editorial blockquote {
  margin: 0 auto;
  max-width: 22ch;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(40px, 6vw, 92px);
  line-height: 1.05;
  letter-spacing: 0.005em;
  color: var(--ink);
}
.editorial blockquote::before { content: "\201C"; color: var(--accent); }
.editorial blockquote::after  { content: "\201D"; color: var(--accent); }
.editorial cite {
  display: block;
  margin-top: 32px;
  font-style: normal;
  font-size: 11px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 96px); align-items: start; }
.process__intro .body-text { margin-top: 24px; }
.process__intro .btn { margin-top: 18px; }
.process__list { display: flex; flex-direction: column; }
.process__step {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--line-soft);
}
.process__step:last-child { border-bottom: 1px solid var(--line-soft); }
.process__step .num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.process__step h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 8px;
}
.process__step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 50ch;
}
@media (max-width: 900px) { .process { grid-template-columns: 1fr; } }

/* ---------- Big CTA ---------- */
.big-cta {
  padding: clamp(80px, 12vw, 180px) 0;
  text-align: center;
}
.big-cta h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 132px);
  line-height: 0.96;
  margin: 0 0 36px;
  letter-spacing: 0.005em;
}
.big-cta h2 em { font-style: italic; color: var(--accent); }
.big-cta p {
  max-width: 56ch;
  margin: 0 auto 40px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
}
