:root {
   --v2-ink: #30262d;
   --v2-ink-deep: #231a20;
   --v2-muted: #6f6468;
   --v2-paper: #fffdf9;
   --v2-cream: #f7f1e9;
   --v2-cream-deep: #efe5da;
   --v2-coral: #e65d60;
   --v2-coral-dark: #c94750;
   --v2-rose: #ecd8d2;
   --v2-line: #e1d7cf;
   --v2-white: #ffffff;
   --v2-serif: "Newsreader", Georgia, "Times New Roman", serif;
   --v2-sans: "Source Sans 3", "Segoe UI", Arial, sans-serif;
}

html {
   scroll-behavior: smooth;
}

body.home-v2 {
   min-width: 320px;
   background: var(--v2-paper);
   color: var(--v2-ink);
   font-family: var(--v2-sans);
   font-size: 17px;
   line-height: 1.65;
   -webkit-font-smoothing: antialiased;
   text-rendering: optimizeLegibility;
}

.home-v2 ::selection {
   background: rgba(230, 93, 96, 0.22);
   color: var(--v2-ink-deep);
}

.home-v2 img {
   max-width: 100%;
   height: auto;
}

.home-v2 a,
.home-v2 a:visited {
   color: var(--v2-coral-dark);
   text-decoration-color: rgba(201, 71, 80, 0.36);
   text-decoration-thickness: 1px;
   text-underline-offset: 0.2em;
}

.home-v2 a:hover {
   color: #a8323e;
   text-decoration-color: currentColor;
}

.home-v2 a:focus-visible {
   outline: 3px solid rgba(230, 93, 96, 0.34);
   outline-offset: 4px;
   border-radius: 2px;
}

.skip-link {
   position: fixed;
   top: 12px;
   left: 12px;
   z-index: 1000;
   padding: 9px 14px;
   color: var(--v2-white) !important;
   background: var(--v2-ink-deep);
   border-radius: 3px;
   transform: translateY(-180%);
   transition: transform 160ms ease;
}

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

/* Centered navigation retained from the existing site structure. */

.site-header {
   position: relative;
   z-index: 20;
   background: rgba(255, 253, 249, 0.97);
   border-top: 4px solid var(--v2-coral);
   border-bottom: 1px solid var(--v2-line);
}

.header-inner {
   display: flex;
   justify-content: center;
   width: min(100% - 40px, 1160px);
   min-height: 78px;
   margin: 0 auto;
}

#nav-wrap {
   display: flex;
   align-items: center;
}

#nav-wrap ul,
#nav-wrap li {
   margin: 0;
   padding: 0;
}

ul#nav {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 12px;
   min-height: 74px;
   list-style: none;
}

ul#nav li {
   list-style: none;
}

ul#nav li a,
ul#nav li a:visited {
   display: block;
   position: relative;
   padding: 10px 12px;
   color: var(--v2-ink);
   font-size: 14px;
   font-weight: 600;
   letter-spacing: 0.075em;
   line-height: 1.2;
   text-decoration: none;
   text-transform: uppercase;
}

ul#nav li a::after {
   content: "";
   position: absolute;
   right: 12px;
   bottom: 3px;
   left: 12px;
   height: 2px;
   background: var(--v2-coral);
   transform: scaleX(0);
   transform-origin: center;
   transition: transform 160ms ease;
}

ul#nav li a:hover,
ul#nav li a:focus-visible,
ul#nav li a[aria-current="page"] {
   color: var(--v2-coral-dark);
}

ul#nav li a:hover::after,
ul#nav li a[aria-current="page"]::after {
   transform: scaleX(1);
}

/* Editorial hero */

.hero-section {
   position: relative;
   overflow: hidden;
   background:
      radial-gradient(circle at 84% 9%, rgba(230, 93, 96, 0.09), transparent 27%),
      linear-gradient(135deg, var(--v2-cream) 0%, #fbf7f1 56%, var(--v2-paper) 100%);
   border-bottom: 1px solid var(--v2-line);
}

.hero-section::after {
   content: "";
   position: absolute;
   bottom: 0;
   left: 0;
   width: 31%;
   height: 5px;
   background: var(--v2-coral);
}

.hero-grid {
   display: grid;
   grid-template-columns: minmax(0, 1.45fr) minmax(285px, 0.75fr);
   gap: 76px;
   align-items: center;
   width: min(100% - 80px, 1120px);
   margin: 0 auto;
   padding: 86px 0 94px;
}

.hero-copy {
   position: relative;
   z-index: 2;
}

.eyebrow,
.section-kicker {
   margin: 0 0 18px;
   color: var(--v2-coral-dark);
   font-size: 13px;
   font-weight: 700;
   letter-spacing: 0.18em;
   line-height: 1.35;
   text-transform: uppercase;
}

.hero-copy h1 {
   max-width: 760px;
   margin: 0;
   color: var(--v2-ink-deep);
   font-family: var(--v2-serif);
   font-size: clamp(55px, 5.7vw, 76px);
   font-weight: 500;
   letter-spacing: -0.045em;
   line-height: 0.98;
}

.hero-role {
   margin: 20px 0 25px;
   color: var(--v2-muted);
   font-family: var(--v2-serif);
   font-size: 25px;
   line-height: 1.3;
}

.hero-summary {
   max-width: 670px;
   margin: 0;
   color: #51484d;
   font-size: 19px;
   line-height: 1.72;
}

.hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 13px;
   margin-top: 34px;
}

.button,
.button:visited {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-height: 48px;
   padding: 11px 21px;
   border: 1px solid transparent;
   border-radius: 3px;
   font-size: 15px;
   font-weight: 600;
   line-height: 1.2;
   text-decoration: none;
   transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.home-v2 .button-primary,
.home-v2 .button-primary:visited {
   color: var(--v2-white);
   background: var(--v2-coral-dark);
   border-color: var(--v2-coral-dark);
}

.home-v2 .button-primary:hover {
   color: var(--v2-white);
   background: #ad3541;
   border-color: #ad3541;
}

.home-v2 .button-secondary,
.home-v2 .button-secondary:visited {
   color: var(--v2-ink);
   background: rgba(255, 255, 255, 0.42);
   border-color: #cfc2b9;
}

.home-v2 .button-secondary:hover {
   color: var(--v2-coral-dark);
   background: var(--v2-white);
   border-color: var(--v2-coral-dark);
}

.portrait-figure {
   position: relative;
   width: min(100%, 370px);
   margin: 0 0 0 auto;
   isolation: isolate;
}

.portrait-figure::before {
   content: "";
   position: absolute;
   z-index: -1;
   top: -17px;
   right: -17px;
   width: 48%;
   height: 54%;
   background: var(--v2-coral);
}

.portrait-figure::after {
   content: "";
   position: absolute;
   z-index: -1;
   bottom: -16px;
   left: -16px;
   width: 54%;
   height: 46%;
   border: 2px solid var(--v2-ink);
}

.hero-portrait {
   display: block;
   width: 100%;
   aspect-ratio: 4 / 5;
   object-fit: cover;
   object-position: 50% 42%;
   background: var(--v2-cream-deep);
   box-shadow: 0 24px 55px rgba(55, 38, 47, 0.19);
}

/* Contact and profile links */

.contact-band {
   color: var(--v2-white);
   background: var(--v2-ink-deep);
}

.contact-inner {
   display: grid;
   grid-template-columns: 215px minmax(0, 1fr);
   gap: 54px;
   align-items: center;
   width: min(100% - 80px, 1120px);
   margin: 0 auto;
   padding: 46px 0;
}

.contact-heading .section-kicker {
   margin-bottom: 8px;
   color: var(--v2-coral);
}

.contact-heading h2 {
   margin: 0;
   color: var(--v2-white);
   font-family: var(--v2-serif);
   font-size: 29px;
   font-weight: 500;
   letter-spacing: -0.025em;
   line-height: 1.08;
}

.profile-links {
   display: grid;
   grid-template-columns: repeat(4, minmax(0, 1fr));
   margin: 0;
   padding: 0;
   list-style: none;
}

.profile-links li {
   min-width: 0;
   margin: 0;
   padding: 0 18px;
   border-left: 1px solid rgba(255, 255, 255, 0.16);
   list-style: none;
}

.profile-link,
.profile-link:visited {
   display: flex;
   align-items: center;
   gap: 13px;
   color: rgba(255, 255, 255, 0.88) !important;
   text-decoration: none;
}

.profile-link:hover {
   color: var(--v2-white) !important;
}

.profile-link svg {
   flex: 0 0 auto;
   width: 25px;
   height: 25px;
   fill: none;
   stroke: var(--v2-coral);
   stroke-linecap: round;
   stroke-linejoin: round;
   stroke-width: 1.55;
}

.profile-link svg.profile-brand-logo {
   color: var(--v2-coral);
   width: 22px;
   height: 22px;
   fill: currentColor;
   stroke: none;
}

.profile-link svg.profile-brand-logo-x {
   width: 20px;
   height: 20px;
}

.profile-link span {
   display: block;
   min-width: 0;
}

.profile-link strong,
.profile-link small {
   display: block;
}

.profile-link strong {
   color: inherit;
   font: 600 14px/1.3 var(--v2-sans);
   white-space: nowrap;
}

.profile-link small {
   margin-top: 2px;
   color: rgba(255, 255, 255, 0.5);
   font-size: 12.5px;
   line-height: 1.3;
   white-space: nowrap;
}

/* Longer biography, kept separate from the concise hero. */

.about-section {
   display: grid;
   grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.45fr);
   gap: 90px;
   width: min(100% - 80px, 1040px);
   margin: 0 auto;
   padding: 91px 0 96px;
}

.about-heading {
   position: relative;
   padding-top: 7px;
}

.about-heading::after {
   content: "";
   display: block;
   width: 76px;
   height: 4px;
   margin-top: 28px;
   background: var(--v2-coral);
}

.about-heading h2 {
   margin: 0;
   color: var(--v2-ink-deep);
   font-family: var(--v2-serif);
   font-size: clamp(38px, 4.2vw, 52px);
   font-weight: 500;
   letter-spacing: -0.035em;
   line-height: 1.02;
}

.about-copy {
   color: #51484d;
}

.about-copy p {
   margin: 0 0 1.35em;
   font-size: 17.5px;
   line-height: 1.78;
}

.about-copy p:first-child {
   color: var(--v2-ink);
   font-size: 20px;
   line-height: 1.68;
}

.about-copy p:last-child {
   margin-bottom: 0;
}

.beyond-research {
   background: var(--v2-rose);
   border-top: 1px solid rgba(48, 38, 45, 0.08);
   border-bottom: 1px solid rgba(48, 38, 45, 0.08);
}

.beyond-research-inner {
   display: flex;
   align-items: baseline;
   justify-content: space-between;
   gap: 40px;
   width: min(100% - 80px, 1040px);
   margin: 0 auto;
   padding: 37px 0;
}

.beyond-research h2 {
   margin: 0;
   color: var(--v2-ink-deep);
   font-family: var(--v2-serif);
   font-size: 27px;
   font-weight: 500;
}

.beyond-research-links {
   display: flex;
   flex-wrap: wrap;
   justify-content: flex-end;
   gap: 14px 32px;
}

.beyond-research-links a,
.beyond-research-links a:visited {
   color: var(--v2-ink);
   font-size: 15px;
   font-weight: 600;
   text-decoration: none;
}

.beyond-research-links a:hover {
   color: var(--v2-coral-dark);
}

.beyond-research-links span {
   margin-left: 4px;
   color: var(--v2-coral-dark);
}

.site-footer {
   padding: 25px 30px 29px;
   color: #81767b;
   background: var(--v2-paper);
   text-align: center;
}

.site-footer p {
   margin: 0;
   font-size: 13px;
   letter-spacing: 0.04em;
}

@media only screen and (max-width: 980px) {
   .hero-grid {
      grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
      gap: 48px;
      width: min(100% - 60px, 880px);
   }

   .hero-copy h1 {
      font-size: clamp(48px, 6.3vw, 62px);
   }

   .hero-summary {
      font-size: 17.5px;
   }

   .contact-inner {
      grid-template-columns: 1fr;
      gap: 28px;
      width: min(100% - 60px, 880px);
   }

   .contact-heading {
      display: flex;
      align-items: baseline;
      gap: 18px;
   }

   .contact-heading .section-kicker {
      margin: 0;
   }

   .about-section {
      gap: 58px;
      width: min(100% - 60px, 880px);
   }
}

@media only screen and (max-width: 720px) {
   .header-inner {
      width: calc(100% - 20px);
      min-height: 69px;
   }

   ul#nav {
      gap: 0;
      min-height: 65px;
   }

   ul#nav li a,
   ul#nav li a:visited {
      padding: 10px 8px;
      font-size: 12.5px;
      letter-spacing: 0.045em;
   }

   ul#nav li a::after {
      right: 8px;
      left: 8px;
   }

   .hero-grid {
      display: flex;
      flex-direction: column;
      gap: 50px;
      width: min(100% - 48px, 600px);
      padding: 58px 0 66px;
   }

   .portrait-figure {
      order: -1;
      width: min(76vw, 330px);
      margin: 6px auto 0;
   }

   .hero-copy {
      width: 100%;
   }

   .hero-copy h1 {
      font-size: clamp(46px, 12vw, 62px);
      line-height: 1;
   }

   .hero-role {
      margin-top: 16px;
      font-size: 23px;
   }

   .hero-summary {
      font-size: 17px;
      line-height: 1.7;
   }

   .hero-section::after {
      width: 48%;
   }

   .contact-inner {
      width: min(100% - 48px, 600px);
      padding: 42px 0 46px;
   }

   .profile-links {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px 0;
   }

   .profile-links li:nth-child(odd) {
      padding-left: 0;
      border-left: 0;
   }

   .about-section {
      grid-template-columns: 1fr;
      gap: 43px;
      width: min(100% - 48px, 600px);
      padding: 70px 0 75px;
   }

   .about-heading {
      max-width: 470px;
   }

   .about-heading h2 {
      font-size: 43px;
   }

   .about-heading::after {
      margin-top: 22px;
   }

   .about-copy p,
   .about-copy p:first-child {
      font-size: 17px;
      line-height: 1.76;
   }

   .beyond-research-inner {
      display: block;
      width: min(100% - 48px, 600px);
   }

   .beyond-research-links {
      display: grid;
      justify-content: start;
      gap: 10px;
      margin-top: 17px;
   }
}

@media only screen and (max-width: 460px) {
   .header-inner {
      width: calc(100% - 12px);
   }

   ul#nav li a,
   ul#nav li a:visited {
      padding-right: 5px;
      padding-left: 5px;
      font-size: 11.5px;
      letter-spacing: 0.015em;
   }

   ul#nav li a::after {
      right: 5px;
      left: 5px;
   }

   .hero-grid,
   .contact-inner,
   .about-section,
   .beyond-research-inner {
      width: calc(100% - 36px);
   }

   .portrait-figure {
      width: min(78vw, 300px);
   }

   .portrait-figure::before {
      top: -11px;
      right: -11px;
   }

   .portrait-figure::after {
      bottom: -11px;
      left: -11px;
   }

   .hero-copy h1 {
      font-size: clamp(42px, 13vw, 54px);
   }

   .hero-actions {
      display: grid;
      grid-template-columns: 1fr;
   }

   .button {
      width: 100%;
   }

   .contact-heading {
      display: block;
   }

   .contact-heading .section-kicker {
      margin-bottom: 8px;
   }

   .profile-links {
      grid-template-columns: 1fr;
      gap: 0;
   }

   .profile-links li,
   .profile-links li:nth-child(odd) {
      padding: 15px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.13);
      border-left: 0;
   }

   .about-heading h2 {
      font-size: 39px;
   }
}

@media (prefers-reduced-motion: reduce) {
   html {
      scroll-behavior: auto;
   }

   *,
   *::before,
   *::after {
      transition-duration: 0.01ms !important;
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
   }
}
