:root {
  --paper: #f7f8f5;
  --ink: #20211e;
  --muted: #686b62;
  --line: #dbddd5;
  --accent: #d5f478;
  --white: #fff;
  --dark: #20221d;
  --radius: 20px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea,
select {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a,
input,
textarea {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
::selection {
  color: var(--ink);
  background: var(--accent);
}
:focus-visible {
  outline: 3px solid #6a7e27;
  outline-offset: 5px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 550;
}
h1,
h2 {
  line-height: 1.02;
  letter-spacing: -0.065em;
}
h3 {
  letter-spacing: -0.035em;
  line-height: 1.15;
}
p {
  max-width: 65ch;
}
.wrap {
  width: min(1440px, calc(100% - 96px));
  margin-inline: auto;
}
.skip {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 50;
  padding: 12px 20px;
  background: var(--accent);
}
.skip:focus {
  top: 12px;
}
.site-header {
  border-bottom: 1px solid var(--line);
}
.nav-bar {
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  font-size: 43px;
  font-weight: 750;
  letter-spacing: -0.09em;
  line-height: 1;
}
.brand-period {
  color: var(--ink);
}
.nav-descriptor {
  font-size: 13px;
  line-height: 1.35;
  margin-right: auto;
  margin-left: 52px;
  color: var(--muted);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 33px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0;
  position: relative;
}
.nav-link[aria-current="page"]:after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
}
.nav-contact {
  font-size: 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 11px 19px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition:
    background 0.2s,
    color 0.2s;
}
.nav-contact:hover,
.nav-contact[aria-current="page"] {
  background: var(--ink);
  color: var(--white);
}
.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 8px 14px;
  font-size: 14px;
}
.eyebrow {
  font-size: 13px;
  font-weight: 550;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  line-height: 1.5;
}
.hero {
  padding-top: 56px;
}
.hero-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.hero-topline .right-note {
  font-size: 13px;
  color: var(--muted);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 56px;
  padding-top: 40px;
  padding-bottom: 58px;
  align-items: end;
}
.hero-title {
  font-size: clamp(72px, 7.75vw, 126px);
  font-weight: 550;
  line-height: 1.01;
  letter-spacing: -0.075em;
}
.hero-title span {
  display: block;
  white-space: nowrap;
}
.hero-title .italic {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.075em;
}
.hero-copy {
  padding-bottom: 9px;
  max-width: 355px;
  justify-self: end;
}
.hero-copy .hero-mark {
  font-size: 94px;
  font-weight: 400;
  line-height: 0.7;
  margin-bottom: 38px;
}
.hero-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: #55594e;
  margin-bottom: 27px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  border: 1px solid var(--ink);
  padding: 16px 23px;
  font-size: 14px;
  font-weight: 550;
  line-height: 1.3;
  min-height: 54px;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  background: #3a4030;
  transform: translateY(-2px);
}
.button-accent {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.button-accent:hover {
  background: #c5e561;
}
.button .icon {
  width: 19px;
  height: 19px;
}
.hero-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
  color: var(--muted);
}
.scroll-link {
  display: flex;
  align-items: center;
  gap: 11px;
}
.scroll-link .icon {
  width: 16px;
  height: 16px;
}
.selected {
  padding: 70px 0 98px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 34px;
}
.section-heading h2 {
  font-size: clamp(38px, 4.2vw, 62px);
  margin-top: 15px;
}
.text-link {
  font-size: 14px;
  font-weight: 550;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  white-space: nowrap;
}
.project-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 26px;
  align-items: start;
}
.project-card:nth-child(2) {
  margin-top: 72px;
}
.project-image {
  height: 365px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: #dee2d8;
}
.project-image img {
  transition: transform 0.5s;
}
.project-card:hover img {
  transform: scale(1.035);
}
.image-tag {
  position: absolute;
  left: 20px;
  top: 20px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 99px;
  padding: 7px 12px;
  font-size: 12px;
  color: var(--ink);
}
.project-arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  display: grid;
  place-items: center;
}
.project-info {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
  padding: 20px 0 0;
}
.project-info h3 {
  font-size: 24px;
  margin-bottom: 5px;
}
.project-info p {
  font-size: 14px;
  color: var(--muted);
}
.project-info .project-number {
  font-size: 13px;
  color: var(--muted);
  padding-top: 5px;
}
.approach {
  background: var(--accent);
  padding: 82px 0 86px;
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 100px;
}
.approach h2 {
  font-size: clamp(40px, 4.3vw, 66px);
  margin-top: 24px;
}
.approach-intro {
  margin-top: 24px;
  max-width: 345px;
  font-size: 16px;
  line-height: 1.7;
}
.service {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 21px;
  padding: 26px 0;
  border-top: 1px solid rgba(32, 33, 30, 0.25);
}
.service:last-child {
  border-bottom: 1px solid rgba(32, 33, 30, 0.25);
}
.service-number {
  font-size: 13px;
  padding-top: 4px;
}
.service h3 {
  font-size: 27px;
  margin-bottom: 11px;
}
.service p {
  font-size: 15px;
  line-height: 1.65;
  max-width: 45ch;
  color: #464e37;
}
.about {
  padding: 90px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 100px;
}
.about h2 {
  font-size: clamp(35px, 3.5vw, 54px);
  margin-bottom: 25px;
  max-width: 750px;
}
.about-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}
.about-copy p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}
.client-line {
  padding-top: 54px;
  margin-top: 50px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-size: 18px;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.client-line span:first-child {
  font-size: 12px;
  font-weight: 450;
  letter-spacing: 0;
  color: var(--muted);
  max-width: 100px;
}
.site-footer {
  background: var(--dark);
  color: var(--paper);
  padding-top: 63px;
}
.footer-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 58px;
  border-bottom: 1px solid #4a4c42;
}
.footer-cta h2 {
  font-size: clamp(42px, 5vw, 78px);
  margin-top: 17px;
}
.footer-cta h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 28px 0 34px;
}
.footer-bottom .brand {
  font-size: 33px;
}
.footer-bottom .brand-period {
  color: var(--accent);
}
.footer-meta {
  font-size: 12px;
  color: #b3b6aa;
}
.footer-email {
  font-size: 14px;
}
.footer-email:hover {
  text-decoration: underline;
}
.inner-intro {
  padding-top: 63px;
  padding-bottom: 57px;
}
.inner-intro h1 {
  font-size: clamp(62px, 7.3vw, 112px);
  margin-top: 25px;
  max-width: 1000px;
  line-height: 1.04;
}
.inner-intro h1 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
.intro-row {
  display: flex;
  justify-content: space-between;
  gap: 45px;
  align-items: end;
  margin-top: 32px;
}
.intro-row p {
  max-width: 560px;
  font-size: 17px;
  color: var(--muted);
}
.intro-counter {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}
.portfolio-list {
  padding-bottom: 55px;
}
.case-study {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 70px;
  padding: 48px 0 65px;
  border-top: 1px solid var(--line);
  align-items: center;
}
.case-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1.3;
  background: #e4e6df;
  position: relative;
}
.case-study:nth-child(even) .case-image {
  order: 2;
}
.case-study:nth-child(even) .case-copy {
  order: 1;
}
.case-copy .eyebrow {
  color: var(--muted);
  font-size: 12px;
}
.case-copy h2 {
  font-size: clamp(33px, 3.4vw, 52px);
  margin: 18px 0 22px;
}
.case-copy > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}
.case-details {
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: grid;
  gap: 14px;
}
.case-detail {
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: 20px;
  font-size: 14px;
}
.case-detail strong {
  font-weight: 500;
}
.case-detail span {
  color: var(--muted);
}
.case-copy .text-link {
  margin-top: 26px;
}
.image-credit {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}
.portfolio-note {
  font-size: 13px;
  color: var(--muted);
  padding: 20px 0 30px;
  border-top: 1px solid var(--line);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding: 0 0 88px;
}
.contact-copy {
  padding-top: 11px;
}
.contact-copy > p {
  max-width: 390px;
  color: var(--muted);
  font-size: 17px;
}
.contact-email {
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 500;
  letter-spacing: -0.04em;
  display: inline-block;
  border-bottom: 1px solid var(--ink);
  margin-top: 35px;
  line-height: 1.5;
}
.contact-email:hover {
  border-color: transparent;
}
.contact-info {
  margin-top: 43px;
  display: grid;
  gap: 25px;
}
.contact-info h2 {
  font-size: 13px;
  letter-spacing: 0;
  margin-bottom: 8px;
  font-weight: 550;
}
.contact-info p {
  font-size: 15px;
  color: var(--muted);
}
.contact-note {
  border-left: 2px solid var(--ink);
  padding-left: 20px;
  margin-top: 36px;
  max-width: 355px;
  font-size: 15px !important;
}
.contact-form {
  background: white;
  border: 1px solid #e3e5de;
  border-radius: 22px;
  padding: 36px;
}
.contact-form h2 {
  font-size: 27px;
  letter-spacing: -0.045em;
  margin-bottom: 9px;
}
.form-intro {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 26px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}
.field label {
  font-size: 14px;
  font-weight: 500;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--paper);
  padding: 12px 14px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  min-width: 0;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #85887f;
}
.field textarea {
  min-height: 136px;
  resize: vertical;
}
.needs {
  border: 0;
  margin: 0 0 22px;
  padding: 0;
}
.needs legend {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}
.need-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.need-options label {
  position: relative;
}
.need-options input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.need-options span {
  display: block;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 13px;
  background: var(--paper);
  cursor: pointer;
}
.need-options input:checked + span {
  background: var(--accent);
  border-color: var(--ink);
}
.need-options input:focus-visible + span {
  outline: 3px solid #6a7e27;
  outline-offset: 3px;
}
.form-submit {
  width: 100%;
  justify-content: space-between;
}
.form-helper {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}
.form-status {
  margin-top: 18px;
  background: var(--paper);
  border-radius: 10px;
  padding: 16px;
  font-size: 14px;
}
.form-status[hidden] {
  display: none;
}
.copy-button {
  margin-top: 12px;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 0;
  color: var(--ink);
  font-size: 14px;
}
.contact-footer {
  padding-top: 0;
}
.contact-footer .footer-bottom {
  border-top: 0;
}
.reveal {
  animation: appear 0.7s both;
}
.reveal-delay {
  animation-delay: 0.12s;
}
@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1600px) {
  .hero-grid {
    gap: 100px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .nav-descriptor {
    margin-left: 24px;
  }
  .hero-grid {
    gap: 28px;
    grid-template-columns: 1.65fr 1fr;
  }
  .hero-title {
    font-size: 8.4vw;
  }
  .hero-copy p {
    font-size: 16px;
  }
  .hero-copy .hero-mark {
    font-size: 72px;
  }
  .project-image {
    height: 300px;
  }
  .approach-grid,
  .about-grid {
    gap: 60px;
  }
  .case-study {
    gap: 42px;
  }
  .contact-layout {
    gap: 45px;
  }
  .contact-form {
    padding: 26px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .nav-bar {
    height: 84px;
    gap: 15px;
  }
  .brand {
    font-size: 36px;
  }
  .nav-descriptor {
    display: none;
  }
  .site-nav {
    gap: 23px;
  }
  .hero {
    padding-top: 35px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 27px;
    padding-bottom: 36px;
  }
  .hero-title {
    font-size: clamp(64px, 12vw, 105px);
  }
  .hero-copy {
    max-width: 100%;
    justify-self: start;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 24px;
  }
  .hero-copy .hero-mark {
    display: none;
  }
  .hero-copy p {
    margin-bottom: 0;
    max-width: 440px;
  }
  .hero-copy .button {
    margin-bottom: 3px;
  }
  .hero-bottom {
    font-size: 12px;
  }
  .hero-topline .right-note {
    display: none;
  }
  .selected {
    padding: 44px 0 60px;
  }
  .project-grid {
    gap: 20px;
  }
  .project-image {
    height: 265px;
  }
  .project-info h3 {
    font-size: 21px;
  }
  .project-info p {
    font-size: 13px;
  }
  .project-card:nth-child(2) {
    margin-top: 45px;
  }
  .approach {
    padding: 57px 0;
  }
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .approach h2 {
    max-width: 500px;
    font-size: 50px;
  }
  .approach-intro {
    max-width: 560px;
  }
  .service p {
    max-width: none;
  }
  .about {
    padding: 59px 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .about-copy {
    gap: 30px;
  }
  .client-line {
    justify-content: start;
    column-gap: 32px;
    row-gap: 18px;
    margin-top: 32px;
    padding-top: 30px;
    font-size: 16px;
  }
  .footer-cta {
    align-items: start;
    gap: 35px;
    padding-bottom: 40px;
    flex-direction: column;
  }
  .site-footer {
    padding-top: 43px;
  }
  .contact-footer {
    padding-top: 0;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
  .footer-meta {
    order: 3;
    width: 100%;
  }
  .inner-intro {
    padding-top: 42px;
    padding-bottom: 40px;
  }
  .inner-intro h1 {
    font-size: 9.7vw;
  }
  .case-study {
    gap: 30px;
  }
  .case-copy h2 {
    font-size: 33px;
  }
  .case-copy > p {
    font-size: 15px;
  }
  .case-detail {
    grid-template-columns: 70px 1fr;
    gap: 10px;
    font-size: 13px;
  }
  .case-image {
    aspect-ratio: 0.83;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 37px;
  }
  .contact-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
  }
  .contact-copy > p {
    max-width: none;
  }
  .contact-email {
    margin-top: 0;
    align-self: center;
    justify-self: start;
    font-size: 26px;
  }
  .contact-info {
    margin-top: 0;
  }
  .contact-note {
    margin-top: 0;
    align-self: start;
  }
  .contact-form {
    padding: 30px;
  }
}
@media (max-width: 520px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .nav-bar {
    height: 78px;
  }
  .menu-toggle {
    display: block;
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 16px 18px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
    z-index: 20;
  }
  .site-nav.is-open {
    display: flex;
  }
  .nav-link {
    padding: 11px 5px;
  }
  .nav-link[aria-current="page"]:after {
    width: 25px;
    left: 5px;
    bottom: 5px;
  }
  .nav-contact {
    justify-content: space-between;
    margin-top: 4px;
  }
  .hero {
    padding-top: 26px;
  }
  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.065em;
  }
  .hero-grid {
    padding-top: 22px;
    gap: 24px;
  }
  .hero-title {
    font-size: clamp(48px, 12vw, 67px);
    letter-spacing: -0.07em;
  }
  .hero-copy {
    display: block;
  }
  .hero-copy p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 22px;
  }
  .button {
    padding: 15px 21px;
    font-size: 14px;
  }
  .hero-bottom {
    align-items: start;
    font-size: 12px;
    gap: 15px;
  }
  .hero-bottom > span {
    max-width: 170px;
  }
  .scroll-link {
    font-size: 12px;
  }
  .selected {
    padding-top: 42px;
  }
  .section-heading {
    align-items: start;
    gap: 20px;
    flex-direction: column;
    margin-bottom: 25px;
  }
  .section-heading h2 {
    font-size: 38px;
    margin-top: 13px;
    max-width: 330px;
  }
  .section-heading .text-link {
    font-size: 13px;
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 31px;
  }
  .project-card:nth-child(2) {
    margin-top: 0;
  }
  .project-image {
    height: auto;
    aspect-ratio: 1.25;
    border-radius: 14px;
  }
  .project-info {
    padding-top: 15px;
  }
  .project-info h3 {
    font-size: 22px;
  }
  .project-info p {
    font-size: 14px;
  }
  .approach {
    padding: 43px 0;
  }
  .approach-grid {
    gap: 32px;
  }
  .approach h2 {
    font-size: 43px;
    margin-top: 17px;
  }
  .approach-intro {
    margin-top: 20px;
  }
  .service {
    gap: 12px;
    padding: 24px 0;
  }
  .service h3 {
    font-size: 25px;
  }
  .service p {
    font-size: 15px;
  }
  .about h2 {
    font-size: 35px;
    line-height: 1.1;
  }
  .about-copy {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .client-line {
    gap: 20px 28px;
  }
  .client-line span:first-child {
    max-width: none;
    width: 100%;
  }
  .footer-cta h2 {
    font-size: 43px;
    line-height: 1.08;
  }
  .footer-bottom {
    gap: 18px;
  }
  .footer-email {
    font-size: 13px;
  }
  .footer-meta {
    font-size: 12px;
  }
  .inner-intro h1 {
    font-size: 14vw;
    line-height: 1.05;
    margin-top: 20px;
  }
  .intro-row {
    display: block;
    margin-top: 23px;
  }
  .intro-row p {
    font-size: 16px;
  }
  .intro-counter {
    display: block;
    margin-top: 22px;
  }
  .case-study {
    grid-template-columns: 1fr;
    padding: 30px 0 39px;
    gap: 24px;
  }
  .case-study:nth-child(even) .case-image,
  .case-study:nth-child(even) .case-copy {
    order: initial;
  }
  .case-image {
    aspect-ratio: 1.23;
    border-radius: 14px;
  }
  .case-copy h2 {
    font-size: 37px;
    margin-top: 12px;
    margin-bottom: 17px;
  }
  .case-copy > p {
    font-size: 16px;
  }
  .case-detail {
    font-size: 14px;
    grid-template-columns: 77px 1fr;
  }
  .case-details {
    margin-top: 20px;
  }
  .case-copy .text-link {
    margin-top: 22px;
  }
  .contact-layout {
    padding-bottom: 48px;
    gap: 30px;
  }
  .contact-copy {
    display: block;
  }
  .contact-copy > p {
    font-size: 16px;
  }
  .contact-email {
    font-size: 29px;
    margin-top: 18px;
    overflow-wrap: anywhere;
  }
  .contact-info {
    margin-top: 24px;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
  }
  .contact-note {
    margin-top: 27px;
  }
  .contact-form {
    padding: 24px 19px;
    border-radius: 15px;
  }
  .contact-form h2 {
    font-size: 26px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .field {
    margin-bottom: 17px;
  }
  .need-options span {
    font-size: 13px;
  }
  .contact-info p {
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

.other-work {
  padding: 26px 0 42px;
}
.other-work .section-heading {
  margin-bottom: 32px;
}
.other-work .section-heading h2 {
  font-size: clamp(34px, 3.6vw, 52px);
}
.work-row {
  display: grid;
  grid-template-columns: 30px 1fr 1.1fr auto;
  gap: 28px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 30px 0;
}
.work-index {
  font-size: 13px;
  color: var(--muted);
  padding-top: 2px;
}
.work-row h3 {
  font-size: 26px;
  margin-top: 11px;
  max-width: 350px;
}
.work-row .eyebrow {
  font-size: 12px;
  color: var(--muted);
}
.work-row > p {
  font-size: 16px;
  color: var(--muted);
  max-width: 450px;
}
.work-label {
  font-size: 12px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 30px;
  white-space: nowrap;
}
.image-credit a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.need-options span {
  font-size: 14px;
}
.service p {
  font-size: 16px;
}
.case-detail {
  font-size: 14px;
}
.hero-mark {
  width: 78px;
  height: 78px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 59px !important;
  line-height: 1 !important;
  margin-left: 1px;
}
.project-image {
  isolation: isolate;
}
.case-study:nth-child(even) > div:first-child {
  order: 2;
}
.case-study:nth-child(even) .case-copy {
  order: 1;
}
@media (max-width: 1100px) {
  .work-row {
    grid-template-columns: 25px 1fr 1.1fr;
  }
  .work-label {
    grid-column: 2;
    justify-self: start;
    margin-top: -10px;
  }
  .hero-mark {
    width: 68px;
    height: 68px;
    font-size: 50px !important;
  }
}
@media (max-width: 800px) {
  .hero-mark {
    display: none !important;
  }
  .work-row {
    gap: 20px;
  }
  .work-row h3 {
    font-size: 24px;
  }
}
@media (max-width: 520px) {
  .work-row {
    grid-template-columns: 22px 1fr;
    gap: 12px 16px;
  }
  .work-row > p {
    grid-column: 2;
  }
  .work-label {
    grid-column: 2;
    margin-top: 4px;
  }
  .work-row h3 {
    font-size: 27px;
  }
  .work-row .eyebrow {
    font-size: 12px;
  }
  .case-study:nth-child(even) > div:first-child,
  .case-study:nth-child(even) .case-copy {
    order: initial;
  }
  .case-detail {
    font-size: 14px;
  }
  .project-info p {
    font-size: 14px;
  }
}

/* Identité fournie par Studio 211 et visuel de l'accueil. */
.brand {
  flex-shrink: 0;
  letter-spacing: 0;
  line-height: 1;
}
.brand-logo {
  display: block;
  width: 76px;
  height: auto;
  object-fit: contain;
}
.site-footer .brand {
  padding: 8px 10px;
  background: var(--accent);
  border-radius: 12px;
}
.site-footer .brand-logo {
  width: 57px;
  height: auto;
}
.hero-grid-with-visual {
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 48px;
}
.hero-main {
  min-width: 0;
}
.hero-grid-with-visual .hero-copy {
  display: block;
  justify-self: auto;
  max-width: 530px;
  padding-bottom: 0;
  margin-top: 28px;
}
.hero-grid-with-visual .hero-copy p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: none;
}
.hero-grid-with-visual .hero-copy .button {
  margin-bottom: 0;
}
.hero-visual {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 30px;
  background: var(--accent);
  border: 1px solid rgba(32, 33, 30, 0.12);
  border-radius: 22px;
  overflow: hidden;
}
.hero-visual img {
  width: 100%;
  height: auto;
  max-width: 480px;
  object-fit: contain;
}
.hero-grid-with-visual .hero-title {
  font-size: clamp(72px, 7.6vw, 120px);
}
@media (max-width: 1100px) {
  .hero-grid-with-visual {
    gap: 34px;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  }
  .hero-grid-with-visual .hero-title {
    font-size: 8vw;
  }
  .hero-grid-with-visual .hero-copy p {
    font-size: 16px;
  }
  .hero-visual {
    min-height: 390px;
    padding: 25px;
  }
}
@media (max-width: 800px) {
  .brand-logo {
    width: 65px;
  }
  .hero-grid-with-visual {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 27px;
    padding-bottom: 32px;
  }
  .hero-grid-with-visual .hero-title {
    font-size: clamp(64px, 12vw, 105px);
  }
  .hero-grid-with-visual .hero-copy {
    max-width: 590px;
    margin-top: 24px;
  }
  .hero-visual {
    min-height: 0;
    aspect-ratio: 2.05;
    padding: 32px;
    border-radius: 19px;
  }
  .hero-visual img {
    width: 68%;
    max-width: 370px;
  }
  .hero-grid-with-visual .hero-copy p {
    max-width: 53ch;
  }
}
@media (max-width: 520px) {
  .brand-logo {
    width: 60px;
  }
  .site-footer .brand-logo {
    width: 51px;
  }
  .site-footer .brand {
    padding: 7px 9px;
    border-radius: 10px;
  }
  .hero-grid-with-visual {
    gap: 27px;
    padding-top: 22px;
  }
  .hero-grid-with-visual .hero-title {
    font-size: clamp(48px, 12vw, 67px);
  }
  .hero-grid-with-visual .hero-copy {
    margin-top: 23px;
  }
  .hero-grid-with-visual .hero-copy p {
    margin-bottom: 22px;
  }
  .hero-visual {
    aspect-ratio: 1.48;
    padding: 24px 27px;
    border-radius: 15px;
  }
  .hero-visual img {
    width: 100%;
    max-width: 300px;
  }
}

/* Photographie éditoriale du bandeau d’accueil. */
.hero-visual {
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 540px;
  background: #1b1d18;
  border: 0;
  isolation: isolate;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 61%;
  transition: transform 0.7s ease;
}
.hero-visual:hover img {
  transform: scale(1.018);
}
.hero-visual figcaption {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(17, 18, 15, 0.72);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  line-height: 1.2;
  backdrop-filter: blur(5px);
}
.hero-visual figcaption a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 1100px) {
  .hero-visual {
    min-height: 470px;
    padding: 0;
  }
}
@media (max-width: 800px) {
  .hero-visual {
    min-height: 0;
    aspect-ratio: 1.7;
    padding: 0;
  }
  .hero-visual img {
    width: 100%;
    max-width: none;
    object-position: 50% 61%;
  }
}
@media (max-width: 520px) {
  .hero-visual {
    aspect-ratio: 1.22;
    padding: 0;
  }
  .hero-visual img {
    width: 100%;
    max-width: none;
    object-position: 50% 63%;
  }
  .hero-visual figcaption {
    right: 9px;
    bottom: 8px;
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-visual img {
    transition: none;
  }
  .hero-visual:hover img {
    transform: none;
  }
}

/* Page des prestations */
.services-list {
  padding: 10px 0 90px;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px 60px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.service-row-head {
  display: flex;
  gap: 22px;
  align-items: start;
}
.service-row-number {
  font-size: 13px;
  color: var(--muted);
  padding-top: 6px;
  min-width: 22px;
}
.service-row-title h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}
.service-row-price {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
}
.service-row-desc {
  grid-column: 1;
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}
.service-row-action {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  white-space: nowrap;
}
.services-note {
  font-size: 14px;
  color: var(--muted);
  padding-top: 34px;
  border-top: 1px solid var(--line);
  max-width: 70ch;
  line-height: 1.6;
}
@media (max-width: 800px) {
  .service-row {
    gap: 18px 30px;
    padding: 28px 0;
  }
  .service-row-desc {
    grid-column: 1 / -1;
  }
  .service-row-action {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    margin-top: 4px;
  }
}
@media (max-width: 520px) {
  .services-list {
    padding-top: 4px;
  }
  .service-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 0;
  }
  .service-row-head {
    gap: 14px;
  }
  .service-row-title h2 {
    font-size: 26px;
  }
  .service-row-desc {
    font-size: 15px;
  }
  .service-row-action {
    margin-top: 6px;
  }
}

/* Liens de prise de rendez-vous Cal.com */
.nav-rdv {
  font-size: 14px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--ink);
  border-radius: 999px;
  padding: 11px 19px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  transition:
    background 0.2s,
    transform 0.2s;
  white-space: nowrap;
}
.nav-rdv:hover {
  background: #c5e561;
  transform: translateY(-2px);
}
.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.button-outline-light {
  background: transparent;
  color: var(--paper);
  border-color: rgba(247, 248, 245, 0.55);
}
.button-outline-light:hover {
  background: rgba(247, 248, 245, 0.1);
  border-color: var(--paper);
  transform: translateY(-2px);
}
.hero-alt {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
}
.hero-alt .text-link {
  border-bottom-color: var(--muted);
}
.booking-section {
  padding: 0 0 70px;
}
.booking-card {
  background: var(--accent);
  border-radius: 22px;
  padding: 42px 48px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 30px 50px;
  align-items: center;
}
.booking-card .eyebrow {
  grid-column: 1 / -1;
  color: var(--ink);
}
.booking-card h2 {
  font-size: clamp(32px, 3.4vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.booking-card p {
  max-width: 55ch;
  color: #464e37;
  font-size: 16px;
  line-height: 1.65;
}
.booking-card .button {
  grid-column: 2;
  justify-self: end;
  align-self: end;
}
.intro-row-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media (max-width: 800px) {
  .booking-card {
    grid-template-columns: 1fr;
    padding: 34px;
    gap: 22px;
  }
  .booking-card .eyebrow {
    grid-column: auto;
  }
  .booking-card .button {
    justify-self: start;
  }
  .intro-row-actions {
    flex-wrap: wrap;
    gap: 18px;
  }
}
@media (max-width: 520px) {
  .booking-card {
    padding: 26px 22px;
    border-radius: 16px;
  }
  .booking-card h2 {
    font-size: 30px;
  }
  .nav-rdv {
    justify-content: space-between;
  }
}

/* Pages d’études de cas détaillées */
.case-page-detail {
  padding: 0 0 90px;
}
.case-page-figure {
  margin: 0 0 60px;
}
.case-hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 2.1;
  background: #e4e6df;
}
.case-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-page-figure .image-credit {
  max-width: 90ch;
}
.case-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-bottom: 42px;
}
.case-detail-block {
  min-width: 0;
}
.case-detail-block h2 {
  font-size: 22px;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}
.case-detail-block p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}
.case-detail-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
}
.next-project {
  padding: 50px 0 80px;
  border-top: 1px solid var(--line);
}
@media (max-width: 1100px) {
  .case-hero-image {
    aspect-ratio: 1.8;
  }
  .case-page-figure {
    margin-bottom: 45px;
  }
  .case-detail-grid {
    gap: 28px;
  }
  .case-detail-block h2 {
    font-size: 20px;
  }
}
@media (max-width: 800px) {
  .case-hero-image {
    aspect-ratio: 1.6;
  }
  .case-page-figure {
    margin-bottom: 36px;
  }
  .case-detail-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .case-page-detail {
    padding-bottom: 55px;
  }
  .next-project {
    padding: 36px 0 60px;
  }
}
@media (max-width: 520px) {
  .case-hero-image {
    aspect-ratio: 1.35;
    border-radius: 14px;
  }
  .case-page-figure {
    margin-bottom: 28px;
  }
  .case-detail-block h2 {
    font-size: 21px;
  }
  .case-detail-cta {
    flex-direction: column;
    align-items: start;
    gap: 14px;
  }
}

/* Pages légales */
.legal-content {
  padding: 10px 0 90px;
  max-width: 820px;
}
.legal-block {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.legal-block:first-child {
  border-top: 0;
  padding-top: 0;
}
.legal-block h2 {
  font-size: 24px;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}
.legal-block p,
.legal-block li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}
.legal-block ul {
  margin: 14px 0 0;
  padding-left: 22px;
  display: grid;
  gap: 8px;
}
.text-link-inline {
  border-bottom: 1px solid var(--ink);
}
.text-link-inline:hover {
  border-color: transparent;
}
@media (max-width: 520px) {
  .legal-content {
    padding-bottom: 55px;
  }
  .legal-block h2 {
    font-size: 22px;
  }
}

/* FAQ */
.faq-list {
  padding: 10px 0 70px;
  max-width: 900px;
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  display: flex;
  gap: 18px;
  align-items: start;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-number {
  font-size: 13px;
  color: var(--muted);
  padding-top: 5px;
  min-width: 28px;
}
.faq-question {
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.04em;
  line-height: 1.2;
  font-weight: 550;
}
.faq-item p {
  margin-top: 18px;
  padding-left: 46px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 65ch;
}
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
@media (max-width: 520px) {
  .faq-list {
    padding-bottom: 50px;
  }
  .faq-item {
    padding: 20px 0;
  }
  .faq-question {
    font-size: 20px;
  }
  .faq-item p {
    padding-left: 0;
    margin-top: 16px;
  }
}

/* Footer */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 13px;
  color: #b3b6aa;
}
.footer-links a:hover {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 800px) {
  .footer-bottom {
    flex-direction: column;
    align-items: start;
    gap: 18px;
  }
  .footer-meta {
    order: initial;
    width: auto;
  }
}

/* Champ anti-spam masqué */
.field-company {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.form-submit[disabled] {
  opacity: 0.65;
  cursor: progress;
}

/* Ajustements UX ciblés */
.button,
.text-link,
.nav-contact,
.nav-rdv {
  max-width: 100%;
  overflow-wrap: anywhere;
}
.situations {
  padding: 34px 0 18px;
  border-top: 1px solid var(--line);
}
.situations-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
  border-top: 1px solid var(--line);
}
.situations-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 18px;
  padding: 22px 24px 22px 0;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}
.situations-list a:not(:last-child) {
  margin-right: 24px;
}
.situations-list span {
  grid-column: 1;
  color: var(--muted);
  font-size: 14px;
}
.situations-list strong {
  grid-column: 1;
  font-size: 17px;
  font-weight: 550;
}
.situations-list .icon {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}
.situations-list a:hover strong {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.selected {
  padding-top: 54px;
}
.contact-intro {
  padding-bottom: 38px;
}
.contact-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 28px;
}
.contact-booking {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.contact-booking h2 {
  font-size: 20px;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.contact-booking p {
  font-size: 14px !important;
  margin-bottom: 17px;
  max-width: 39ch !important;
}
.contact-booking .button {
  min-height: 48px;
  padding: 12px 18px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #70736a;
}
.service-row {
  scroll-margin-top: 120px;
}
.service-row-content {
  grid-column: 1;
  min-width: 0;
}
.service-indications {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 20px 0 0;
}
.service-indications div {
  border-top: 1px solid var(--line);
  padding-top: 13px;
}
.service-indications dt {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
}
.service-indications dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.service-scope-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}
.service-reference {
  margin-top: 18px;
}
.service-start {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 9px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.service-row-featured {
  background: color-mix(in srgb, var(--accent) 22%, transparent);
  margin-inline: -24px;
  padding-inline: 24px;
  border-top-color: var(--ink);
}
.service-row-featured .service-row-action {
  white-space: normal;
  text-align: left;
}
.services-note {
  max-width: 80ch;
}
.booking-card .button {
  grid-column: 2;
}
.case-page-figure .image-credit a {
  font-weight: 550;
}
@media (max-width: 900px) {
  .nav-bar {
    height: 84px;
  }
  .nav-descriptor {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 84px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 16px 32px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
    z-index: 20;
  }
  .site-nav.is-open {
    display: flex;
  }
  .nav-link {
    padding: 11px 5px;
  }
  .nav-contact,
  .nav-rdv {
    justify-content: space-between;
  }
  .situations-list {
    grid-template-columns: 1fr;
  }
  .situations-list a:not(:last-child) {
    margin-right: 0;
  }
  .service-row-content {
    grid-column: 1 / -1;
  }
  .service-row-action {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
  .booking-card .button {
    grid-column: auto;
  }
  .contact-layout {
    align-items: start;
  }
}
@media (max-width: 520px) {
  .site-nav {
    top: 78px;
    padding-inline: 18px;
  }
  .situations {
    padding-top: 28px;
  }
  .situations-list a {
    padding: 18px 0;
  }
  .situations-list strong {
    font-size: 16px;
  }
  .contact-intro {
    padding-bottom: 28px;
  }
  .contact-jump-nav {
    margin-top: 22px;
  }
  .contact-layout {
    display: flex;
    flex-direction: column;
  }
  .contact-form {
    order: -1;
    scroll-margin-top: 96px;
  }
  .contact-booking {
    margin-top: 27px;
  }
  .service-row-featured {
    margin-inline: -12px;
    padding-inline: 12px;
  }
  .service-indications {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .case-page-detail + .next-project {
    padding-top: 32px;
  }
  .case-page-detail .text-link {
    white-space: normal;
  }
  .inner-intro h1 {
    overflow-wrap: anywhere;
  }
}
@media (prefers-reduced-motion: reduce) {
  .project-image img,
  .hero-visual img {
    transition: none !important;
  }
  .project-card:hover img,
  .hero-visual:hover img {
    transform: none !important;
  }
}
