/* ===================================================
   FIRST CHAPTER — Sections
   =================================================== */

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--sp-6) + var(--sp-2)) 0 var(--sp-6);
  overflow: visible;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,20,15,0.05) 0%, rgba(20,20,15,0.15) 45%, rgba(20,20,15,0.62) 100%);
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__copy { color: var(--paper); max-width: 460px; }
.hero__logo {
  width: min(280px, 65vw);
  height: auto;
  margin: 0 auto var(--sp-4);
}
.hero__actions {
  margin-top: var(--sp-2);
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 780px) {
  .hero__copy { max-width: 100%; }
}

/* ---- Envelope seal: overlaps hero bottom, reveals with scroll ---- */
.hero__seal {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: min(320px, 55%);
  z-index: 5;
  filter: drop-shadow(0 24px 44px rgba(20,20,15,0.28));
}
.hero__seal img { width: 100%; height: auto; display: block; }
@media (max-width: 780px) {
  .hero__seal { width: min(240px, 68%); transform: translate(-50%, 50%); }
}

/* ---- TAGLINE STRIP ---- */
.tagline-strip { padding: var(--sp-6) 0 var(--sp-4); }
.tagline-strip__row {
  display: grid;
  grid-template-columns: 1fr 340px 1fr;
  align-items: center;
  gap: var(--sp-4);
}
@media (max-width: 780px) {
  .tagline-strip__row { grid-template-columns: 1fr; text-align: center; }
  .tagline-strip__spacer { display: none; }
}
.tagline-strip__text {
  font-family: var(--f-display);
  text-transform: none;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--ink);
}
.tagline-strip__text .script { font-size: calc(1em - 3pt); color: var(--olive); }
.tagline-strip__text.right { text-align: right; }
@media (max-width: 780px) {
  .tagline-strip__text.right { text-align: center; }
}

/* ---- WHY (letter) ---- */
.why {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--sp-6);
  align-items: start;
}
@media (max-width: 900px) {
  .why { grid-template-columns: 1fr; gap: var(--sp-4); }
}
.why__portrait img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(1);
}
@media (max-width: 900px) {
  .why__portrait { max-width: 320px; margin: 0 auto; }
}

/* ---- SECTION HEAD (shared) ---- */
.section-head { max-width: var(--max-w-text); }
.section-head .eyebrow { margin-bottom: var(--sp-2); }
.section-head__title {
  font-family: var(--f-display);
  text-transform: none;
  font-size: var(--fs-h2);
}
.section-head__title .script {
  font-family: var(--f-script);
  font-size: calc(1em - 3pt);
  color: inherit;
}

/* ---- BUNDLES ---- */
.bundles-section__head {
  max-width: 720px;
  margin: 0 auto var(--sp-5);
  text-align: center;
}
.bundles-section__intro {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-top: var(--sp-2);
}

/* ---- WORK / CAROUSEL ---- */
.work-section__head { text-align: center; }
.work-section__head .section-head { margin: 0 auto; }

.side-events__head .section-head__title { font-size: clamp(1.9rem, 4vw, 2.8rem); }

/* ---- CONTACT ---- */
.contact__title {
  font-family: var(--f-display);
  font-size: var(--fs-h2);
  text-transform: none;
}
.contact__title .script { font-family: var(--f-script); font-size: calc(1em - 3pt); color: var(--olive-deep); }
