@import "tailwindcss";

:root {
  --ink: #18332f;
  --ink-deep: #112723;
  --cream: #f6f0e6;
  --paper: #fbf8f1;
  --coral: #d97962;
  --coral-soft: #eca590;
  --sage: #a9bcae;
  --sage-light: #dfe7de;
  --gold: #d4a955;
  --text: #283c38;
  --muted: #687975;
  --line: rgba(24, 51, 47, 0.16);
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

main[id],
section[id] {
  scroll-margin-top: 24px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

::selection {
  color: var(--cream);
  background: var(--coral);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-wrap {
  /* Keep decorative artwork clipped horizontally without turning the
     entire page wrapper into a vertical scroll container. */
  overflow-x: clip;
  overflow-y: visible;
}

.shell {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}

.section-pad {
  padding-block: 132px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1240px, calc(100% - 64px));
  height: 100px;
  transform: translateX(-50%);
}

.brand {
  display: flex;
  align-items: center;
  justify-self: start;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
}

.brand-rule {
  width: 22px;
  height: 1px;
  margin-inline: 6px;
  background: var(--coral);
  transform: rotate(-48deg);
}

.desktop-nav {
  display: flex;
  gap: 34px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-self: end;
  padding: 11px 17px;
  color: var(--cream);
  background: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: var(--coral);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.8fr);
  grid-template-rows: minmax(650px, auto) auto;
  gap: 0 70px;
  min-height: 780px;
  padding-top: 132px;
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -2;
  width: 100vw;
  content: "";
  background: var(--cream);
  transform: translateX(-50%);
}

.hero::after {
  position: absolute;
  top: 112px;
  right: 35%;
  z-index: -1;
  width: 110px;
  height: 110px;
  content: "";
  border: 1px solid rgba(217, 121, 98, 0.55);
  border-radius: 50%;
}

.hero-copy {
  align-self: center;
  max-width: 680px;
  padding: 52px 0 58px;
  animation: reveal-up 800ms 80ms both cubic-bezier(0.2, 0.7, 0.2, 1);
}

.availability-pill {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 7px 12px;
  color: #47605a;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.availability-dot {
  width: 7px;
  height: 7px;
  background: #6e9a71;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(110, 154, 113, 0.14);
}

.kicker {
  margin: 30px 0 14px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(58px, 6.2vw, 96px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.hero h1 span {
  display: block;
  margin-left: clamp(22px, 3vw, 52px);
  color: var(--coral);
  font-style: italic;
  white-space: normal;
}

.hero-intro {
  max-width: 610px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.72;
}

.hero-intro strong {
  color: var(--ink);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 15px 21px;
  border: 0;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.button-dark {
  color: var(--cream);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--coral);
  transform: translateY(-2px);
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
}

.button-outline:hover {
  color: var(--cream);
  background: var(--ink);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  padding-bottom: 3px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  color: var(--coral);
  border-color: var(--coral);
}

.hero-portrait {
  position: relative;
  align-self: stretch;
  min-height: 620px;
  animation: reveal-up 900ms 180ms both cubic-bezier(0.2, 0.7, 0.2, 1);
}

.portrait-backdrop {
  position: absolute;
  top: 70px;
  right: -30px;
  bottom: 28px;
  left: 55px;
  background: var(--sage-light);
  border-radius: 48% 48% 8px 8px;
}

.portrait-backdrop::before {
  position: absolute;
  top: -26px;
  right: -26px;
  width: 74%;
  height: 74%;
  content: "";
  border: 1px solid rgba(24, 51, 47, 0.18);
  border-radius: 50%;
}

.portrait-frame {
  position: absolute;
  inset: 22px 8px 0 0;
  overflow: hidden;
  border-radius: 46% 46% 5px 5px;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.portrait-note {
  position: absolute;
  z-index: 2;
  display: flex;
  color: var(--ink);
  background: rgba(251, 248, 241, 0.94);
  border: 1px solid rgba(24, 51, 47, 0.12);
  box-shadow: 0 16px 50px rgba(17, 39, 35, 0.12);
  backdrop-filter: blur(12px);
}

.portrait-note-top {
  top: 190px;
  right: -25px;
  gap: 9px;
  align-items: center;
  padding: 13px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.portrait-note-top svg {
  color: var(--coral);
}

.portrait-note-bottom {
  bottom: 54px;
  left: 0;
  flex-direction: column;
  padding: 15px 20px;
}

.note-label {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portrait-note-bottom strong {
  margin-top: 2px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  animation: reveal-up 800ms 330ms both cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-stats div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 26px 32px;
  border-right: 1px solid var(--line);
}

.hero-stats div:first-child {
  padding-left: 0;
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
}

.hero-stats span {
  max-width: 130px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  padding: 19px 0;
  color: var(--cream);
  background: var(--coral);
  transform: rotate(-1deg) scale(1.01);
}

.marquee-track {
  display: flex;
  gap: 24px;
  align-items: center;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  white-space: nowrap;
}

.marquee-track i {
  width: 5px;
  height: 5px;
  background: var(--cream);
  border-radius: 50%;
}

.section-label {
  color: var(--coral);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about {
  display: grid;
  grid-template-columns: 0.35fr 1.1fr 0.8fr;
  gap: 70px;
  align-items: start;
}

.about-heading p {
  margin: 0 0 14px;
  color: var(--coral);
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
}

.about-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(45px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.about-copy > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.principle {
  margin-top: 36px;
  padding: 22px 0 0 24px;
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--coral);
}

.principle span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.principle strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
}

.services {
  position: relative;
  color: var(--cream);
  background: var(--ink);
}

.services::before {
  position: absolute;
  top: 0;
  right: 8%;
  width: 1px;
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.06);
}

.section-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.section-topline > p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.section-topline.light {
  border-color: rgba(255, 255, 255, 0.16);
}

.section-topline.light .section-label {
  color: var(--coral-soft);
}

.section-topline.light > p {
  color: rgba(246, 240, 230, 0.58);
}

.services-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: end;
  margin: 64px 0 70px;
}

.services-heading h2,
.work-heading h2,
.tools-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6.3vw, 86px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.services-heading p {
  max-width: 400px;
  margin: 0;
  color: rgba(246, 240, 230, 0.64);
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.service-card {
  position: relative;
  min-height: 300px;
  padding: 34px;
  overflow: hidden;
  color: var(--ink);
  transition: transform 250ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card:nth-child(2),
.service-card:nth-child(3) {
  min-height: 255px;
}

.service-card.coral {
  background: var(--coral);
}

.service-card.sage {
  margin-top: 45px;
  background: var(--sage);
}

.service-card.cream {
  margin-top: -45px;
  background: var(--cream);
}

.service-card.ink {
  color: var(--cream);
  background: var(--ink-deep);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-number {
  display: block;
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
}

.service-card h3 {
  max-width: 380px;
  margin: 54px 0 14px;
  font-family: var(--serif);
  font-size: clamp(31px, 3.2vw, 46px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.service-card p {
  max-width: 490px;
  margin: 0;
  opacity: 0.72;
  font-size: 14px;
  line-height: 1.75;
}

.service-arrow {
  position: absolute;
  top: 30px;
  right: 30px;
  transition: transform 240ms ease;
}

.service-card:hover .service-arrow {
  transform: translate(4px, 4px);
}

.work-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr;
  gap: 90px;
  align-items: end;
  margin: 68px 0 80px;
}

.work-heading h2 {
  color: var(--ink);
}

.work-heading h2 em {
  color: var(--coral);
  font-weight: 400;
}

.work-heading p {
  margin: 0 0 6px;
  color: var(--muted);
  line-height: 1.8;
}

.work-list {
  border-top: 1px solid var(--line);
}

.work-card {
  display: grid;
  grid-template-columns: 70px 1fr minmax(310px, 0.72fr);
  gap: 42px;
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
}

.work-index {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-meta span:last-child {
  color: var(--coral);
}

.work-main h3 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(31px, 3.6vw, 48px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.work-role {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.work-summary {
  max-width: 580px;
  margin: 25px 0 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
}

.work-card ul {
  align-self: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-card li {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.55;
}

.work-card li:last-child {
  border-bottom: 0;
}

.work-card li svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--coral);
}

.career-strip {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 0.8fr);
  margin-top: 90px;
  color: var(--cream);
  background: var(--coral);
}

.career-strip > div {
  min-height: 210px;
  padding: 28px;
  border-right: 1px solid rgba(246, 240, 230, 0.25);
}

.career-strip > div:last-child {
  border-right: 0;
}

.career-intro span,
.career-item span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.career-intro h3 {
  max-width: 280px;
  margin: 47px 0 0;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.08;
}

.career-item {
  display: flex;
  flex-direction: column;
}

.career-item strong {
  margin-top: auto;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.1;
}

.career-item p {
  margin: 8px 0 0;
  opacity: 0.72;
  font-size: 11px;
  line-height: 1.4;
}

.tools {
  background: var(--cream);
}

.tools-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 110px;
}

.tools-heading {
  position: sticky;
  top: 50px;
  align-self: start;
}

.tools-heading h2 {
  margin-top: 38px;
  color: var(--ink);
}

.tools-heading > p {
  max-width: 430px;
  margin: 30px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.tool-list {
  border-top: 1px solid var(--line);
}

.tool-row {
  display: grid;
  grid-template-columns: 45px 0.7fr 1fr;
  gap: 24px;
  align-items: center;
  min-height: 112px;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, background 180ms ease;
}

.tool-row:hover {
  padding-inline: 18px;
  background: rgba(255, 255, 255, 0.35);
}

.tool-row > span {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

.tool-row h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.tool-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.contact {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background: var(--ink-deep);
}

.contact::before {
  position: absolute;
  right: -15vw;
  bottom: -38vw;
  width: 70vw;
  height: 70vw;
  content: "";
  border: 1px solid rgba(236, 165, 144, 0.14);
  border-radius: 50%;
}

.contact::after {
  position: absolute;
  right: -5vw;
  bottom: -30vw;
  width: 55vw;
  height: 55vw;
  content: "";
  border: 1px solid rgba(236, 165, 144, 0.1);
  border-radius: 50%;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 0.72fr;
  gap: 120px;
  align-items: center;
}

.light-label {
  color: var(--coral-soft);
}

.contact-kicker {
  margin: 44px 0 15px;
  color: var(--coral-soft);
  font-family: var(--serif);
  font-size: 23px;
  font-style: italic;
}

.contact-copy h2 {
  max-width: 700px;
}

.contact-intro {
  max-width: 600px;
  margin: 30px 0 0;
  color: rgba(246, 240, 230, 0.62);
  line-height: 1.8;
}

.contact-details {
  display: grid;
  gap: 13px;
  margin-top: 42px;
}

.contact-details a,
.contact-details span {
  display: flex;
  gap: 12px;
  align-items: center;
  width: fit-content;
  color: rgba(246, 240, 230, 0.82);
  font-size: 13px;
}

.contact-details svg {
  color: var(--coral-soft);
}

.contact-details a:hover {
  color: var(--coral-soft);
}

.form-panel {
  min-height: 620px;
  padding: 42px;
  color: var(--text);
  background: var(--paper);
  box-shadow: 28px 28px 0 var(--coral);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  min-height: 536px;
}

.form-heading span {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
}

.form-heading p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-fields {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.form-fields label > span {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.form-fields input,
.form-fields textarea {
  width: 100%;
  padding: 10px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  transition: border-color 180ms ease;
}

.form-fields textarea {
  resize: vertical;
}

.form-fields input::placeholder,
.form-fields textarea::placeholder {
  color: #9aa6a2;
}

.form-fields input:focus,
.form-fields textarea:focus {
  border-color: var(--coral);
}

.submit-button,
.form-message button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 14px 20px;
  color: var(--cream);
  background: var(--ink);
  border: 0;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.submit-button:hover,
.form-message button:hover {
  background: var(--coral);
  transform: translateY(-2px);
}

.submit-button:disabled {
  opacity: 0.58;
  cursor: wait;
  transform: none;
}

.hidden-field {
  display: none;
}

.form-error {
  margin: 18px 0 0;
  color: #a84236;
  font-size: 12px;
}

.form-success {
  margin: 18px 0 0;
  color: #2f6b4f;
  font-size: 12px;
  font-weight: 600;
}

.form-message {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 536px;
}

.form-message svg {
  color: var(--coral);
}

.form-message h3 {
  margin: 24px 0 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
}

.form-message p {
  max-width: 350px;
  margin: 0;
  color: var(--muted);
}

.form-message button {
  margin-top: 34px;
}

footer {
  color: rgba(246, 240, 230, 0.66);
  background: var(--ink-deep);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 50px;
  align-items: center;
  min-height: 110px;
  border-top: 1px solid rgba(246, 240, 230, 0.12);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-brand {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: none;
}

.footer-brand em {
  color: var(--coral-soft);
  font-weight: 400;
}

.footer-inner p {
  margin: 0;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr 0.75fr;
    gap: 0 30px;
  }

  .hero h1 {
    font-size: clamp(54px, 6.8vw, 78px);
  }

  .about {
    grid-template-columns: 0.28fr 1fr 0.8fr;
    gap: 42px;
  }

  .work-card {
    grid-template-columns: 45px 1fr;
  }

  .work-card ul {
    grid-column: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .work-card li {
    align-items: flex-start;
    border-bottom: 0;
  }

  .career-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .career-intro {
    grid-column: 1 / -1;
  }

  .career-intro h3 {
    margin-top: 25px;
  }

  .contact-grid {
    gap: 65px;
  }
}

@media (max-width: 820px) {
  .shell,
  .site-header {
    width: min(100% - 36px, 680px);
  }

  .section-pad {
    padding-block: 92px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 600px auto;
    min-height: 0;
    padding-top: 130px;
  }

  .hero::after {
    top: 50%;
    right: -20px;
  }

  .hero-copy {
    padding: 20px 0 65px;
  }

  .hero h1 {
    font-size: clamp(54px, 11vw, 78px);
  }

  .hero-portrait {
    width: min(100%, 560px);
    min-height: 560px;
    margin-inline: auto;
  }

  .hero-stats {
    grid-column: auto;
    margin-top: 24px;
  }

  .hero-stats div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 16px;
  }

  .hero-stats div:first-child {
    padding-left: 0;
  }

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

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

  .about-copy {
    max-width: 580px;
    margin-left: auto;
  }

  .services-heading,
  .work-heading,
  .tools-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-heading {
    margin-bottom: 54px;
  }

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

  .service-card,
  .service-card:nth-child(2),
  .service-card:nth-child(3) {
    min-height: 270px;
    margin-top: 0;
  }

  .work-card ul {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .work-card li {
    border-bottom: 1px solid var(--line);
  }

  .career-strip {
    grid-template-columns: 1fr 1fr;
  }

  .career-intro {
    grid-column: 1 / -1;
  }

  .career-strip > div {
    border-bottom: 1px solid rgba(246, 240, 230, 0.25);
  }

  .tools-heading {
    position: static;
  }

  .contact-grid {
    gap: 70px;
  }

  .form-panel {
    width: calc(100% - 18px);
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-inner p {
    display: none;
  }
}

@media (max-width: 560px) {
  .shell,
  .site-header {
    width: calc(100% - 28px);
  }

  .site-header {
    height: 82px;
  }

  .header-cta {
    padding: 9px 13px;
    font-size: 12px;
  }

  .section-pad {
    padding-block: 75px;
  }

  .hero {
    grid-template-rows: auto 480px auto;
    padding-top: 105px;
  }

  .availability-pill {
    font-size: 9px;
  }

  .kicker {
    margin-top: 25px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 64px);
    line-height: 0.92;
  }

  .hero h1 span {
    margin-left: 20px;
  }

  .hero-intro {
    margin-top: 30px;
    font-size: 16px;
  }

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

  .hero-portrait {
    min-height: 450px;
  }

  .portrait-backdrop {
    top: 54px;
    left: 34px;
  }

  .portrait-frame {
    inset: 16px 0 0;
  }

  .portrait-note-top {
    top: 125px;
    right: -5px;
  }

  .portrait-note-bottom {
    bottom: 35px;
  }

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

  .hero-stats div,
  .hero-stats div:first-child {
    grid-template-columns: 75px 1fr;
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .hero-stats strong {
    font-size: 36px;
  }

  .hero-stats span {
    max-width: 160px;
  }

  .about {
    gap: 30px;
  }

  .about-heading h2,
  .services-heading h2,
  .work-heading h2,
  .tools-heading h2,
  .contact-copy h2 {
    font-size: clamp(43px, 13vw, 61px);
  }

  .section-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .services-heading,
  .work-heading {
    gap: 28px;
    margin: 48px 0 55px;
  }

  .service-card {
    min-height: 255px;
    padding: 27px;
  }

  .service-card h3 {
    margin-top: 45px;
    font-size: 34px;
  }

  .work-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 42px 0;
  }

  .work-card ul {
    grid-column: auto;
    margin-top: 6px;
  }

  .career-strip {
    grid-template-columns: 1fr;
  }

  .career-intro {
    grid-column: auto;
  }

  .career-strip > div {
    min-height: 175px;
    border-right: 0;
  }

  .tool-row {
    grid-template-columns: 35px 1fr;
    gap: 14px;
    padding-block: 20px;
  }

  .tool-row p {
    grid-column: 2;
  }

  .form-panel {
    min-height: 590px;
    padding: 30px 24px;
    box-shadow: 15px 15px 0 var(--coral);
  }

  .form-panel form,
  .form-message {
    min-height: 530px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 5px;
    align-content: center;
  }
}

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

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