/* ============================================================
   GET SHIT DONE HQ — Homepage v2
   New + overriding section styles for the restructured copy.
   Loads AFTER style.css — reuses its tokens (:root vars).
   ============================================================ */

/* ------------------------------------------------------------
   HERO — long headline + framework preview + tech stack
------------------------------------------------------------ */
.hero__badge--link {
  cursor: pointer;
  transition: var(--trans);
}
.hero__badge--link:hover {
  background: rgba(255, 92, 0, 0.18);
  border-color: rgba(255, 92, 0, 0.55);
}

.hero__headline--long {
  font-size: clamp(33px, 5.5vw, 70px);
  line-height: 1;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}
.hero__headline--long .text--orange {
  display: inline;
}
.hero__headline--long .yet {
  color: var(--orange);
  text-shadow: 0 0 50px rgba(255, 92, 0, 0.6), 0 0 90px rgba(255, 92, 0, 0.35);
}

/* 4-pillar framework preview */
.hero__framework {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 980px;
  margin: 60px auto 0;
  text-align: left;
}
.fw-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 24px 22px;
  transition: var(--trans);
}
.fw-card:hover {
  border-color: rgba(255, 92, 0, 0.45);
  background: rgba(255, 92, 0, 0.06);
  transform: translateY(-5px);
}
.fw-card__n {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--orange);
  line-height: 1;
}
.fw-card__t {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  margin: 12px 0 7px;
  line-height: 1.25;
}
.fw-card__d {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
}

/* Built-using tech strip */
.hero__stack {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
.hero__stack-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}
.hero__stack-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.hero__stack-tools span {
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 7px 15px;
  border-radius: 100px;
  white-space: nowrap;
}

/* Safety: never leave hero content stuck hidden if motion is reduced */
@media (prefers-reduced-motion: reduce) {
  .hero__badge,
  .hero__headline,
  .hero__sub,
  .hero__ctas,
  .hero__stats {
    opacity: 1 !important;
    animation: none !important;
  }
}

/* ------------------------------------------------------------
   EMPATHY — "Have You Been in This Position?"
------------------------------------------------------------ */
.empathy {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.empathy__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.empathy__intro {
  font-size: 17px;
  color: #888;
  margin-top: 18px;
  line-height: 1.75;
}
.empathy__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.pain {
  background: var(--cream);
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: var(--trans);
}
.pain:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 var(--orange);
  background: var(--white);
}
.pain__icon {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--orange);
  letter-spacing: 0.06em;
  line-height: 1;
}
.pain h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--obsidian);
  letter-spacing: -0.01em;
  margin: 14px 0 10px;
  line-height: 1.3;
}
.pain p {
  font-size: 14.5px;
  color: #777;
  line-height: 1.7;
}

/* Dreaded message dramatic bar */
.dreaded {
  max-width: 960px;
  margin: 28px auto 0;
  background: var(--obsidian);
  border-radius: var(--r-xl);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dreaded__pre {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 18px;
}
.dreaded__msg {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
}
.dreaded__msg .strike {
  color: var(--orange);
}

/* ------------------------------------------------------------
   LETTER — Jana's empathy / personal story
------------------------------------------------------------ */
.letter {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.letter__ghost {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(120px, 24vw, 300px);
  color: rgba(255, 92, 0, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  letter-spacing: 0.04em;
}
.letter__card {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid rgba(0, 0, 0, 0.07);
  border-left: 6px solid var(--orange);
  border-radius: var(--r-xl);
  padding: clamp(36px, 6vw, 64px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.07);
}
.letter__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 26px;
}
.letter__card p {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.85;
  color: #444;
  margin-bottom: 22px;
}
.letter__card p:last-of-type {
  margin-bottom: 0;
}
.letter__card em {
  font-style: italic;
  color: var(--obsidian);
  font-weight: 600;
}
.letter__card strong {
  color: var(--orange);
  font-weight: 700;
}
.letter__know {
  border-left: 3px solid rgba(255, 92, 0, 0.3);
  padding-left: 22px;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.letter__know span {
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 600;
  color: var(--obsidian);
  line-height: 1.5;
}
.letter__sign {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 2px solid rgba(0, 0, 0, 0.07);
}
.letter__sign-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.letter__sign-name {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.04em;
  color: var(--obsidian);
  line-height: 1;
}
.letter__sign-role {
  font-size: 13px;
  color: #999;
  font-weight: 600;
  margin-top: 3px;
}

/* ------------------------------------------------------------
   OUTCOMES — "Imagine Having All of This — Solved."
------------------------------------------------------------ */
.outcomes {
  padding: 120px 0;
  background: var(--white);
}
.outcomes__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.outcomes__intro {
  font-size: 17px;
  color: #888;
  margin-top: 18px;
  line-height: 1.75;
}
.outcomes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.outcome {
  background: var(--white);
  border: 3px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--r-xl);
  padding: 40px 34px;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}
.outcome:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: 8px 8px 0 var(--orange);
}
.outcome__n {
  font-family: var(--font-display);
  font-size: 92px;
  line-height: 1;
  color: rgba(255, 92, 0, 0.1);
  position: absolute;
  top: 8px;
  right: 20px;
  pointer-events: none;
}
.outcome__check {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--green);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.outcome h3 {
  font-size: 21px;
  font-weight: 800;
  color: var(--obsidian);
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.outcome p {
  font-size: 15px;
  color: #777;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.outcomes__cta {
  text-align: center;
  margin-top: 56px;
}

/* ------------------------------------------------------------
   TEACH — "What We Teach Inside GSD HQ" (2x2 framework)
------------------------------------------------------------ */
.teach {
  padding: 120px 0;
  background: var(--cream);
}
.teach__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.teach__intro {
  font-size: 17px;
  color: #888;
  margin-top: 18px;
  line-height: 1.75;
}
.teach__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.tcard {
  background: var(--white);
  border: 3px solid transparent;
  border-radius: var(--r-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}
.tcard:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 8px 8px 0 var(--orange);
}
.tcard__n {
  font-family: var(--font-display);
  font-size: 110px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 6px;
  right: 22px;
  pointer-events: none;
  user-select: none;
}
.tcard__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.tcard h3 {
  font-size: 25px;
  font-weight: 800;
  color: var(--obsidian);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.tcard p {
  font-size: 15px;
  color: #777;
  line-height: 1.75;
  max-width: 90%;
  position: relative;
  z-index: 1;
}
/* dark emphasis card */
.tcard--dark {
  background: var(--obsidian);
  border-color: var(--obsidian);
}
.tcard--dark:hover {
  border-color: var(--orange);
}
.tcard--dark .tcard__n {
  color: rgba(255, 255, 255, 0.07);
}
.tcard--dark h3 {
  color: var(--white);
}
.tcard--dark p {
  color: rgba(255, 255, 255, 0.55);
}
.tcard--dark .tcard__pill {
  background: rgba(255, 92, 0, 0.16);
}
/* orange emphasis card */
.tcard--orange {
  background: var(--orange);
  border-color: var(--orange);
}
.tcard--orange:hover {
  border-color: var(--obsidian);
  box-shadow: 8px 8px 0 var(--obsidian);
}
.tcard--orange .tcard__n {
  color: rgba(255, 255, 255, 0.14);
}
.tcard--orange h3 {
  color: var(--white);
}
.tcard--orange p {
  color: rgba(255, 255, 255, 0.85);
}
.tcard--orange .tcard__pill {
  background: rgba(0, 0, 0, 0.16);
  color: var(--white);
}
.teach__cta {
  text-align: center;
  margin-top: 52px;
}

/* ------------------------------------------------------------
   COACH — Meet Jana (midnight split)
------------------------------------------------------------ */
.coach {
  padding: 120px 0;
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}
.coach__ghost {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(140px, 26vw, 320px);
  color: rgba(255, 255, 255, 0.03);
  bottom: -50px;
  right: -30px;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.coach__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
/* photo placeholder */
.coach__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #16161f;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.025) 0,
    rgba(255, 255, 255, 0.025) 1px,
    transparent 1px,
    transparent 11px
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
}
.coach__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(255, 92, 0, 0.35);
  border-radius: calc(var(--r-xl) - 6px);
  margin: 14px;
  pointer-events: none;
}
.coach__photo-tag {
  font-family: "Courier New", monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}
.coach__photo-note {
  font-family: "Courier New", monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}
.coach__photo-icon {
  font-size: 30px;
  margin-bottom: 4px;
}
.coach__bio .section__label {
  margin-bottom: 18px;
}
.coach__name {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 78px);
  color: var(--white);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.coach__tagline {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 26px;
}
.coach__bio p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 18px;
}
.coach__bio p strong {
  color: var(--white);
  font-weight: 700;
}
.coach__quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  border-left: 4px solid var(--orange);
  padding-left: 24px;
  margin: 30px 0;
}
.coach__quote span {
  color: var(--orange);
}

/* ------------------------------------------------------------
   PROCESS — The 3 D's: Diagnose / Design / Deploy
------------------------------------------------------------ */
.process {
  padding: 120px 0;
  background: var(--white);
}
.process__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.pstep {
  background: var(--cream);
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--r-xl);
  padding: 40px 34px;
  position: relative;
  transition: var(--trans);
}
.pstep:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 6px 6px 0 var(--orange);
}
.pstep__n {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.pstep__word {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 72px);
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--obsidian);
  margin-bottom: 8px;
}
.pstep__word b {
  color: var(--orange);
  font-weight: inherit;
}
.pstep__sub {
  font-size: 15px;
  font-weight: 700;
  color: var(--obsidian);
  margin-bottom: 14px;
}
.pstep p {
  font-size: 14.5px;
  color: #777;
  line-height: 1.75;
}
.pstep__arrow {
  position: absolute;
  top: 50%;
  right: -22px;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--orange);
  z-index: 2;
  font-weight: 700;
}

/* ------------------------------------------------------------
   MASTERCLASS — final CTA (midnight, reuses .optin shell)
------------------------------------------------------------ */
.optin__eyebrowline {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 460px;
}
.mc-date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 92, 0, 0.14);
  border: 1px solid rgba(255, 92, 0, 0.4);
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.mc-date .badge__dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}
.optin__note-fine {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 22px;
  font-weight: 500;
}
.optin__note-fine strong {
  color: rgba(255, 255, 255, 0.7);
}

/* ------------------------------------------------------------
   RESPONSIVE
------------------------------------------------------------ */
@media (max-width: 1024px) {
  .hero__framework {
    grid-template-columns: repeat(2, 1fr);
  }
  .outcomes__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
  .process__steps {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
  .pstep__arrow {
    display: none;
  }
  .coach__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .coach__photo {
    max-width: 380px;
  }
}

@media (max-width: 768px) {
  .empathy__grid,
  .teach__grid {
    grid-template-columns: 1fr;
  }
  .hero__framework {
    grid-template-columns: 1fr;
    max-width: 380px;
  }
  .dreaded {
    padding: 40px 28px;
  }
  .letter__card {
    border-left-width: 4px;
  }
}

/* ------------------------------------------------------------
   SUB-PAGES — Contact Us / Partner With Us shells
------------------------------------------------------------ */
.subhero {
  position: relative;
  background: var(--midnight);
  padding: 180px 0 110px;
  overflow: hidden;
}
.subhero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 92, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 92, 0, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle at 35% 30%, #000, transparent 75%);
  mask-image: radial-gradient(circle at 35% 30%, #000, transparent 75%);
}
.subhero__ghost {
  position: absolute;
  right: -30px;
  bottom: -90px;
  font-family: var(--font-display);
  font-size: clamp(140px, 26vw, 360px);
  color: rgba(255, 255, 255, 0.03);
  line-height: 0.8;
  letter-spacing: 0.04em;
  pointer-events: none;
  user-select: none;
}
.subhero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.subhero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 92, 0, 0.1);
  border: 1px solid rgba(255, 92, 0, 0.3);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.subhero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 132px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.subhero__title .text--orange {
  color: var(--orange);
}
.subhero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 560px;
}

/* shared section for sub-page bodies */
.page-section {
  padding: 110px 0;
  background: var(--white);
}
.page-section--cream {
  background: var(--cream);
}

/* Contact layout */
.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact__info .section__label {
  margin-bottom: 18px;
}
.contact__info h2 {
  font-family: var(--font-ui);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--obsidian);
  margin-bottom: 18px;
}
.contact__info > p {
  font-size: 16px;
  color: #777;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 420px;
}
.contact__rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact__row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--cream);
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--r-lg);
  transition: var(--trans);
}
.contact__row:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}
.contact__row-icon {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--orange);
  background: var(--orange-pale);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__row-k {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
}
.contact__row-v {
  font-size: 16px;
  font-weight: 700;
  color: var(--obsidian);
  margin-top: 2px;
}

/* Contact form card (reuses optin field styling) */
.contact__card {
  background: var(--white);
  border: 3px solid transparent;
  border-radius: var(--r-xl);
  padding: 44px;
  box-shadow: 8px 8px 0 var(--orange);
  border-color: var(--orange);
}
.contact__card h3 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 44px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--obsidian);
  line-height: 1;
  margin-bottom: 8px;
}
.contact__card > p {
  font-size: 15px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 26px;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contact__field label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--obsidian);
}
.contact__field input,
.contact__field textarea {
  padding: 14px 18px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--r);
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--obsidian);
  background: var(--white);
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
  width: 100%;
  resize: vertical;
}
.contact__field input:focus,
.contact__field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 92, 0, 0.1);
}
.contact__note {
  font-size: 13px;
  color: #bbb;
  text-align: center;
  font-weight: 500;
}

/* Work With Us — service cards */
.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.work__card {
  background: var(--white);
  border: 3px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--r-xl);
  padding: 38px 32px;
  transition: var(--trans);
}
.work__card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: 8px 8px 0 var(--orange);
}
.work__card-n {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--orange);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 16px;
}
.work__card h3 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--obsidian);
  margin-bottom: 12px;
}
.work__card p {
  font-size: 15px;
  color: #777;
  line-height: 1.75;
}
.work__cta {
  text-align: center;
  margin-top: 56px;
}
.page-soon {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}

@media (max-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .work__grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
}

/* ------------------------------------------------------------
   STORY — Jana's personal story (bold dark editorial)
   Replaces the old .letter card treatment.
------------------------------------------------------------ */
.story {
  padding: 130px 0;
  background: var(--obsidian);
  position: relative;
  overflow: hidden;
}
.story__ghost {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(150px, 30vw, 420px);
  color: rgba(255, 255, 255, 0.028);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  letter-spacing: 0.04em;
}
.story__inner {
  position: relative;
  z-index: 1;
  max-width: 940px;
}
.story__lead {
  font-size: clamp(17px, 1.9vw, 21px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  max-width: 720px;
  margin-top: 26px;
}
.story__knows {
  margin: 52px 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-left: 4px solid var(--orange);
  padding-left: clamp(22px, 4vw, 44px);
}
.story__know {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: clamp(23px, 3.3vw, 40px);
  line-height: 1.16;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 18ch;
}
.story__know:nth-child(1) {
  max-width: 24ch;
}
.story__know em {
  font-style: italic;
  color: var(--orange);
  font-weight: 800;
}
.story__hl {
  color: var(--orange);
}
.story__punch {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
}
.story__punch span {
  color: var(--orange);
  text-shadow: 0 0 60px rgba(255, 92, 0, 0.35);
}
.story__sign {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 52px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.story__sign-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.story__sign-name {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}
.story__sign-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  margin-top: 4px;
}
@media (max-width: 600px) {
  .story {
    padding: 90px 0;
  }
  .story__knows {
    gap: 22px;
    margin: 40px 0;
  }
}
