:root {
  --ink: #171b22;
  --ink-soft: #242a33;
  --paper: #f6f3ee;
  --paper-deep: #ebe5dc;
  --red: #b41e23;
  --red-deep: #781a20;
  --gold: #b99250;
  --muted: #666a70;
  --line: rgba(23, 27, 34, 0.14);
  --radius: 1.5rem;
  --shadow: 0 24px 70px rgba(30, 35, 43, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; }

img { max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 30;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: white;
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.world-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0;
  color: white;
}

.world-brand img {
  display: block;
  width: min(280px, 46vw);
  height: auto;
}

.world-header nav,
.world-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.world-header nav a,
.world-footer a {
  font-size: 0.87rem;
  font-weight: 700;
  text-decoration: none;
}

.header-action {
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
}

.mobile-menu {
  display: none;
}

.world-header nav .profile-link {
  display: inline-flex;
  width: 44px;
  min-width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: transparent;
}

.world-header nav .profile-link img {
  display: block;
  width: 24px;
  height: 24px;
}

.world-header nav .profile-link:hover,
.world-header nav .profile-link:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.personal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  min-height: min(850px, 92vh);
  background:
    radial-gradient(circle at 18% 30%, rgba(180, 30, 35, 0.25), transparent 24rem),
    linear-gradient(145deg, #101318, var(--ink-soft));
  color: white;
  overflow: hidden;
}

.personal-hero__copy {
  align-self: center;
  width: min(680px, calc(100% - 3rem));
  margin: 5rem auto 2rem;
  padding-left: clamp(0rem, 5vw, 3rem);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.personal-hero .eyebrow,
.contact-intro .eyebrow {
  color: #e5c98d;
}

.personal-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5.6vw, 5.9rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.personal-hero__copy > p:not(.eyebrow, .credentials) {
  max-width: 630px;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.personal-hero__portrait {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
}

.personal-hero__portrait::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink-soft) 0%, transparent 28%), linear-gradient(0deg, rgba(23, 27, 34, 0.38), transparent 42%);
  content: "";
}

.personal-hero__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.hero-actions,
.card-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.2rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button--light {
  background: white;
  color: var(--ink);
}

.button--red {
  background: var(--red);
  color: white;
}

.button:hover { transform: translateY(-2px); }

.text-link {
  color: white;
  font-weight: 780;
  text-underline-offset: 0.28rem;
}

.text-link--dark { color: var(--ink); }

.credentials {
  margin-top: 2.25rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  font-weight: 700;
}

.quick-start {
  padding: clamp(3.5rem, 7vw, 6rem) 1rem;
  background: var(--ink);
  color: white;
}

.quick-start__shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.quick-start__intro {
  max-width: 760px;
}

.quick-start__intro .eyebrow {
  color: #e5c98d;
}

.quick-start__intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4.6vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.quick-start__intro > p:last-child {
  max-width: 650px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.7;
}

.quick-start__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.quick-start__link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  min-height: 9.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.quick-start__link strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 500;
  line-height: 1.08;
}

.quick-start__link small {
  display: block;
  max-width: 19rem;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.5;
}

.quick-start__link > span:last-child {
  flex: 0 0 auto;
  color: #e5c98d;
  font-size: 1.7rem;
  line-height: 1;
}

.quick-start__link:hover {
  border-color: rgba(229, 201, 141, 0.8);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-0.2rem);
}

.worlds {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 2.25rem;
}

.section-heading > p {
  margin: 0 0 0.8rem;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-heading h2,
.about h2,
.heart-projects h2,
.contact-intro h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4.6vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.offer-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  margin-top: 2rem;
  border: 1px solid rgba(23, 27, 34, 0.08);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.offer-card--dnd {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.offer-card--dnd .offer-card__media { order: 2; }

.offer-card__media {
  position: relative;
  min-height: 430px;
}

.offer-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-card__ai-note {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-shadow: 0 1px 7px rgba(0, 0, 0, 0.86), 0 0 2px rgba(0, 0, 0, 0.8);
}

.offer-card__copy {
  align-self: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.offer-card__copy h3 {
  max-width: 580px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 3.7rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.offer-card__copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.offer-card__copy ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.offer-card__copy li {
  position: relative;
  padding-left: 1.4rem;
}

.offer-card__copy li::before {
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.about {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7.5rem) 1rem;
  background:
    radial-gradient(circle at 8% 12%, rgba(180, 30, 35, 0.07), transparent 23rem),
    linear-gradient(180deg, #fff 0%, #f8f5f0 100%);
  color: var(--ink);
  overflow: hidden;
}

.about::after {
  position: absolute;
  right: -12rem;
  bottom: -19rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(180, 30, 35, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(180, 30, 35, 0.025),
    0 0 0 8rem rgba(23, 27, 34, 0.018);
  content: "";
  pointer-events: none;
}

.about__shell {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.about__top {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.about .eyebrow { color: var(--red); }

.about__intro h2 { max-width: 620px; }

.about__story {
  max-width: 690px;
  padding-top: 0.3rem;
}

.about__story p {
  margin: 0;
  color: #4f5359;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.78;
}

.about__story p + p { margin-top: 1rem; }

.about__proofs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
}

.about__proof {
  min-height: 245px;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(23, 27, 34, 0.09);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(30, 35, 43, 0.07);
}

.about__signal {
  margin: 0 0 1.7rem;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about__proof h3,
.about__cta h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.about__proof h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.about__proof > p:last-child {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.about__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 1.15rem;
  background: var(--ink);
  color: white;
}

.about__cta h3 {
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.about__cta p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.about__cta .button { flex: 0 0 auto; }

.heart-projects {
  padding: clamp(4.5rem, 9vw, 8rem) 1rem;
  border-top: 1px solid rgba(23, 27, 34, 0.08);
  border-bottom: 1px solid rgba(23, 27, 34, 0.08);
  background: var(--paper-deep);
}

.heart-projects__shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.heart-projects__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
}

.heart-projects__heading h2 {
  max-width: 680px;
}

.heart-projects__heading > p {
  max-width: 670px;
  margin: 0 0 0.4rem;
  color: #4f5359;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.78;
}

.heart-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
}

.heart-project {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  min-height: 430px;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(23, 27, 34, 0.1);
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 48px rgba(30, 35, 43, 0.09);
}

.heart-project--money {
  border-color: rgba(255, 255, 255, 0.13);
  border-top-color: var(--red);
  background: var(--ink);
  color: white;
}

.heart-project__label {
  margin: 0 0 2rem;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.heart-project--money .heart-project__label {
  color: #e5c98d;
}

.heart-project h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
}

.heart-project > p:not(.heart-project__label, .heart-project__note) {
  margin: 1.2rem 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.heart-project--money > p:not(.heart-project__label, .heart-project__note) {
  color: rgba(255, 255, 255, 0.74);
}

.heart-project__note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.heart-project--money .heart-project__note {
  color: rgba(255, 255, 255, 0.52);
}

.project-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  align-self: end;
  min-height: 48px;
  width: min(100%, 19rem);
  margin-top: 2rem;
  padding-top: 0.8rem;
  border-top: 2px solid var(--red);
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.project-link img {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 180ms ease;
}

.project-link--light {
  color: white;
}

.project-link--light img {
  filter: invert(1);
}

.project-link:hover img,
.project-link:focus-visible img {
  transform: translateX(0.3rem);
}

.project-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-self: end;
  gap: 0.8rem;
  width: min(100%, 22rem);
  margin-top: 2rem;
}

.project-actions .project-link {
  margin-top: 0;
}

.project-link--primary {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--red);
  border-radius: 0.75rem;
  background: var(--red);
  color: white;
}

.project-secondary-link {
  width: auto;
  max-width: 100%;
  justify-self: start;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 750;
  overflow-wrap: anywhere;
  text-underline-offset: 0.25rem;
}

.project-secondary-link:hover,
.project-secondary-link:focus-visible {
  color: white;
}

.project-secondary-link--dark {
  color: var(--ink);
}

.project-secondary-link--dark:hover,
.project-secondary-link--dark:focus-visible {
  color: var(--red-deep);
}

.world-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  padding: 1.25rem max(1rem, calc((100% - 1180px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: #0f1216;
  color: rgba(255, 255, 255, 0.64);
}

.world-footer__brand { color: white; font-weight: 850; }

.contact-page {
  min-height: 100vh;
  background: linear-gradient(150deg, #12161c 0%, var(--ink-soft) 42%, var(--paper-deep) 42.1%, var(--paper) 100%);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 7vw, 7rem);
  width: min(1180px, calc(100% - 2rem));
  min-height: calc(100vh - 5rem);
  margin: 0 auto;
  padding: clamp(8rem, 13vw, 11rem) 0 clamp(4rem, 8vw, 7rem);
}

.contact-intro {
  align-self: start;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: clamp(1rem, 2vw, 1.5rem);
  background: #171b22;
  box-shadow: 0 1.25rem 2.75rem rgba(10, 12, 16, 0.18);
  color: #fff;
}

.contact-intro > p:not(.eyebrow, .sensitive-note) {
  max-width: 570px;
  color: #c9cdd3;
  line-height: 1.75;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.contact-points span {
  padding: 0.5rem 0.7rem;
  border: 1px solid #52606d;
  border-radius: 999px;
  color: #d8dce1;
  font-size: 0.78rem;
}

.sensitive-note {
  max-width: 570px;
  margin-top: 2rem;
  padding: 1rem;
  border-left: 3px solid #e5c98d;
  background: #242a33;
  color: #dfe3e8;
  font-size: 0.84rem;
  line-height: 1.6;
}

.calendly-card {
  margin-top: 1.6rem;
  padding: 1.2rem;
  border: 1px solid rgba(229, 201, 141, 0.42);
  border-radius: 1rem;
  background: #242a33;
}

.calendly-card .eyebrow {
  margin-bottom: 0.5rem;
}

.calendly-card h2 {
  margin: 0 0 0.7rem;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 500;
  line-height: 1.15;
}

.calendly-card p:not(.eyebrow) {
  color: #dfe3e8;
  line-height: 1.6;
}

.calendly-card .button {
  margin-top: 0.25rem;
}

.calendly-card__note {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
}

.contact-form {
  align-self: start;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border: 1px solid rgba(23, 27, 34, 0.08);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 0.45rem;
  font-weight: 760;
}

.field > span { font-size: 0.85rem; }

.field small { color: var(--muted); font-weight: 500; }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.84rem 0.9rem;
  border: 1px solid rgba(23, 27, 34, 0.2);
  border-radius: 0.7rem;
  background: #fbfaf8;
  color: var(--ink);
  font: inherit;
}

.field textarea { resize: vertical; }

.field--wide { grid-column: 1 / -1; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.5;
}

.consent input { margin-top: 0.22rem; }

.contact-form__status {
  margin: 0;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--gold);
  background: rgba(184, 138, 59, 0.1);
  color: var(--ink);
  line-height: 1.55;
}

.contact-form__status[data-state="success"] {
  border-color: #3d6e50;
  background: rgba(61, 110, 80, 0.1);
}

.contact-form__status[data-state="error"],
.contact-form__status[data-state="warning"] {
  border-color: var(--red);
  background: rgba(180, 30, 35, 0.08);
}

.bot-field { position: absolute; left: -9999px; }

.button:focus-visible,
.text-link:focus-visible,
.quick-start__link:focus-visible,
.world-header a:focus-visible,
.mobile-menu summary:focus-visible,
.world-footer a:focus-visible,
.project-link:focus-visible,
.skip-link:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #e5c98d;
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  .world-header nav {
    position: absolute;
    top: 1rem;
    right: 0;
    flex-wrap: nowrap;
    gap: 0.6rem;
  }

  .world-header nav a:not(.header-action):not(.profile-link) { display: none; }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 800;
    list-style: none;
    cursor: pointer;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary::after {
    width: 0.45rem;
    height: 0.45rem;
    margin: -0.2rem 0 0 0.55rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: "";
    transform: rotate(45deg);
    transition: transform 180ms ease;
  }

  .mobile-menu[open] summary::after {
    margin-top: 0.2rem;
    transform: rotate(225deg);
  }

  .mobile-menu__panel {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    display: grid;
    width: min(18rem, calc(100vw - 2rem));
    gap: 0.2rem;
    padding: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 1rem;
    background: rgba(23, 27, 34, 0.98);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.32);
  }

  .world-header nav .mobile-menu__panel a {
    display: block !important;
    padding: 0.75rem 0.8rem;
    border-radius: 0.65rem;
    color: white;
  }

  .world-header nav .mobile-menu__panel a:hover,
  .world-header nav .mobile-menu__panel a:focus-visible {
    background: rgba(255, 255, 255, 0.1);
  }
}

@media (min-width: 1041px) and (max-width: 1180px) {
  .world-brand img { width: min(240px, 22vw); }

  .world-header nav {
    flex-wrap: nowrap;
    gap: 0.75rem;
  }

  .world-header nav a { font-size: 0.82rem; }
}

@media (max-width: 900px) {

  .contact-page .world-header nav {
    top: 4.5rem;
  }

  .personal-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .personal-hero__copy {
    width: min(740px, calc(100% - 2rem));
    margin-top: 8rem;
    padding: 0 0 2rem;
  }

  .personal-hero__portrait { min-height: 480px; }

  .personal-hero__portrait::after {
    background: linear-gradient(180deg, var(--ink-soft) 0%, transparent 28%);
  }

  .offer-card,
  .offer-card--dnd,
  .about__top,
  .heart-projects__heading,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .offer-card--dnd .offer-card__media { order: 0; }

  .about__proofs { grid-template-columns: 1fr; }

  .quick-start__links { grid-template-columns: 1fr; }

  .heart-projects__grid { grid-template-columns: minmax(0, 1fr); }

  .heart-project { min-width: 0; }

  .about__proof { min-height: auto; }

  .about__signal { margin-bottom: 1.4rem; }

  .contact-page {
    background: linear-gradient(180deg, #12161c 0%, var(--ink-soft) 40%, var(--paper-deep) 40.1%, var(--paper) 100%);
  }

  .contact-shell { padding-top: 8rem; }
}

@media (min-width: 901px) and (max-width: 1040px) {
  .heart-projects__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .world-brand img { width: min(220px, 58vw); }

  .world-header nav {
    top: 4.4rem;
    left: 0;
    justify-content: flex-end;
  }

  .mobile-menu {
    position: static;
  }

  .mobile-menu__panel {
    right: 0;
    left: 0;
    width: 100%;
  }

  .personal-hero__copy {
    margin-top: 10rem;
    padding-bottom: 1.35rem;
  }

  .personal-hero h1 {
    font-size: clamp(2.35rem, 10.5vw, 2.8rem);
  }

  .personal-hero__copy > p:not(.eyebrow, .credentials) {
    margin-top: 1.15rem;
    line-height: 1.58;
  }

  .hero-actions { margin-top: 1.25rem; }

  .credentials { margin-top: 1.35rem; }

  .personal-hero__portrait { min-height: 400px; }

  .offer-card__media { min-height: 290px; }

  .about__top { gap: 1.5rem; }

  .about__cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form { grid-template-columns: 1fr; }

  .field--wide { grid-column: auto; }

  .world-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
