@font-face {
  font-family:Instrument Serif;
  src:url('fonts/InstrumentSerif-Regular.ttf') format('truetype');
  font-display:swap;
  font-weight:400;
}

:root {
  --ink:#263a2e;
  --muted:#647064;
  --paper:#f8f7f3;
  --white:#fff;
  --line:#d9ded5;
  --soft:#e9ece4;
  --serif:'Instrument Serif',Georgia,serif;
  --sans:Arial,Helvetica,sans-serif;
  --gutter:clamp(24px,5.6vw,100px);
}

* {
  box-sizing:border-box;
}

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

body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font:16px/1.65 var(--sans);
  -webkit-font-smoothing:antialiased;
}

body.menu-open {
  overflow:hidden;
}

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

button,input,select,textarea {
  font:inherit;
}

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

button {
  cursor:pointer;
}

img {
  display:block;
  max-width:100%;
  height:auto;
}

figure,p,h1,h2,h3,blockquote {
  margin:0;
}

p+p {
  margin-top:1.2em;
}

h1,h2,h3 {
  font-family:var(--serif);
  font-weight:400;
  line-height:1.06;
  letter-spacing:-.018em;
}

h1 {
  font-size:clamp(54px,6.7vw,110px);
}

h2 {
  font-size:clamp(40px,4.15vw,68px);
}

h3 {
  font-size:clamp(27px,2.35vw,38px);
}

button {
  color:inherit;
}

::selection {
  background:#ccd6bb;
  color:#18291d;
}

:focus-visible {
  outline:2px solid currentColor;
  outline-offset:6px;
}

[hidden] {
  display:none!important;
}

.wrap {
  width:100%;
  max-width:1700px;
  margin-inline:auto;
  padding-inline:var(--gutter);
}

.eyebrow {
  text-transform:uppercase;
  letter-spacing:.15em;
  font-size:12px;
  font-weight:500;
  line-height:1.7;
}

.arrow {
  font-family:var(--sans);
  font-size:22px;
  font-weight:400;
  line-height:1;
  display:inline-block;
  transition:transform .25s;
}

.text-link {
  display:inline-flex;
  gap:30px;
  align-items:center;
  padding:9px 0;
  border-bottom:1px solid currentColor;
  font-size:14px;
}

.text-link:hover .arrow,.button:hover .arrow {
  transform:translate(3px,-3px);
}

.button {
  display:inline-flex;
  gap:35px;
  align-items:center;
  justify-content:space-between;
  padding:17px 24px;
  background:var(--ink);
  border:1px solid var(--ink);
  color:var(--paper);
  font-size:15px;
}

.button:hover {
  background:#3c5140;
}

.section-bottom {
  padding-bottom:130px;
}

.skip-link {
  position:fixed;
  z-index:30;
  top:12px;
  left:20px;
  padding:10px 20px;
  background:var(--paper);
  color:var(--ink);
  transform:translateY(-160%);
}

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

.site-header {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:112px;
  padding:22px var(--gutter);
  display:flex;
  align-items:center;
  justify-content:space-between;
  z-index:10;
  gap:40px;
  color:var(--paper);
  transition:background .25s,color .25s;
}

.inner-page .site-header {
  position:relative;
  color:var(--ink);
  border-bottom:1px solid var(--line);
}

.brand {
  display:inline-flex;
  flex-direction:column;
  line-height:1;
  flex-shrink:0;
}

.brand-main {
  font:44px/.95 var(--serif);
  letter-spacing:.115em;
}

.brand-sub {
  font-size:9px;
  letter-spacing:.28em;
  text-transform:uppercase;
  margin-top:8px;
}

.navigation {
  display:flex;
  align-items:center;
  gap:clamp(24px,3vw,52px);
  font-size:14px;
}

.navigation>a {
  position:relative;
  padding:8px 0;
}

.navigation>a:not(.nav-contact):after {
  content:'';
  position:absolute;
  bottom:2px;
  left:0;
  width:0;
  height:1px;
  background:currentColor;
  transition:width .25s;
}

.navigation>a:hover:after,.navigation>a[aria-current]:after {
  width:100%;
}

.navigation .nav-contact {
  display:flex;
  align-items:center;
  gap:28px;
  border-bottom:1px solid currentColor;
  margin-left:15px;
}

.menu-toggle {
  display:none;
  background:none;
  border:0;
  padding:12px 0;
  align-items:center;
  gap:14px;
}

.menu-lines {
  display:block;
  width:25px;
  height:12px;
  border-top:1px solid;
  border-bottom:1px solid;
}

.hero {
  position:relative;
  min-height:770px;
  height:100svh;
  max-height:1120px;
  display:flex;
  align-items:flex-end;
  color:var(--paper);
  background:#343b32;
  isolation:isolate;
}

.hero-image {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 54%;
  z-index:-2;
}

.hero-shade {
  position:absolute;
  inset:0;
  z-index:-1;
  background:linear-gradient(180deg,rgba(13,21,16,.43),rgba(13,21,16,.06) 28%,rgba(13,21,16,.26) 48%,rgba(13,21,16,.76)),linear-gradient(90deg,rgba(13,21,16,.32),transparent 80%);
}

.hero-content {
  padding-bottom:112px;
}

.hero-content .eyebrow {
  margin-bottom:28px;
}

.hero h1 {
  font-size:clamp(62px,7.6vw,128px);
  line-height:1.02;
  max-width:1050px;
}

.hero-bottom {
  margin-top:38px;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:50px;
}

.hero-bottom p {
  font-size:16px;
  max-width:390px;
  line-height:1.55;
}

.hero-cta {
  display:flex;
  align-items:center;
  gap:55px;
  font-size:14px;
  border-bottom:1px solid #ffffff90;
  padding-bottom:15px;
}

.hero-cta span {
  font-size:28px;
  line-height:1;
}

.hero-scroll {
  position:absolute;
  left:var(--gutter);
  bottom:30px;
  right:var(--gutter);
  border-top:1px solid #ffffff50;
  padding-top:16px;
  display:flex;
  justify-content:space-between;
  text-transform:uppercase;
  letter-spacing:.15em;
  font-size:10px;
}

.intro-section {
  padding-top:145px;
  padding-bottom:145px;
  display:grid;
  grid-template-columns:1fr 2.45fr;
  gap:50px;
}

.intro-section>.eyebrow {
  padding-top:12px;
  max-width:170px;
}

.intro-section h2 {
  max-width:1020px;
}

.intro-copy {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:45px;
  max-width:890px;
  margin:40px 0 25px;
  color:var(--muted);
}

.intro-copy p+p {
  margin:0;
}

.section-heading {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:40px;
  margin-bottom:52px;
}

.section-heading .eyebrow {
  margin-bottom:20px;
}

.section-heading>p {
  max-width:300px;
  color:var(--muted);
}

.section-heading .text-link {
  flex-shrink:0;
}

.service-section {
  padding-bottom:140px;
}

.service-layout {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:8%;
}

.service-photo img {
  width:100%;
  height:470px;
  object-fit:cover;
}

.service-photo figcaption {
  font-size:12px;
  color:var(--muted);
  padding-top:14px;
}

.service-list {
  align-self:center;
}

.service-row {
  display:grid;
  grid-template-columns:35px 1fr 25px;
  gap:20px;
  align-items:start;
  padding:26px 0;
  border-bottom:1px solid var(--line);
}

.service-row:first-child {
  border-top:1px solid var(--line);
}

.row-number {
  font-size:12px;
  padding-top:5px;
  color:var(--muted);
}

.service-row h3 {
  font-size:clamp(26px,2.6vw,42px);
}

.service-row .arrow {
  padding-top:7px;
}

.service-row:hover h3 {
  transform:translateX(6px);
}

.service-row h3 {
  transition:transform .25s;
}

.projects-section {
  background:var(--soft);
  padding:105px 0 120px;
}

.project-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:65px 36px;
}

.featured-grid .project-card:first-child {
  grid-column:1/-1;
}

.project-image {
  position:relative;
  display:block;
  overflow:hidden;
}

.project-image img {
  width:100%;
  height:auto;
  aspect-ratio:1.28;
  object-fit:cover;
  transition:transform .6s;
}

.featured-grid .project-card:first-child .project-image img {
  aspect-ratio:2.3;
}

.project-image:hover img {
  transform:scale(1.035);
}

.image-link {
  position:absolute;
  right:24px;
  bottom:24px;
  background:var(--paper);
  padding:14px 18px;
  display:flex;
  align-items:center;
  gap:24px;
  font-size:13px;
}

.project-meta {
  display:flex;
  justify-content:space-between;
  text-transform:uppercase;
  font-size:11px;
  letter-spacing:.12em;
  padding-top:20px;
  color:var(--muted);
}

.project-card h3 {
  margin-top:8px;
  font-size:clamp(30px,3vw,48px);
}

.project-card h3 a:hover {
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:6px;
}

.about-feature {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12%;
  padding-block:140px;
  align-items:center;
}

.portrait {
  position:relative;
}

.portrait img {
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  object-position:center 25%;
  background:var(--soft);
}

.portrait-caption {
  position:absolute;
  bottom:20px;
  left:20px;
  right:20px;
  padding:15px 18px;
  font-size:13px;
  background:var(--paper);
}

.about-feature-copy .eyebrow {
  margin-bottom:24px;
}

.about-feature h2 {
  margin-bottom:30px;
}

.about-feature-copy>p:not(.eyebrow) {
  color:var(--muted);
}

.about-feature .text-link {
  margin-top:28px;
}

.quote-section {
  background:var(--ink);
  color:var(--paper);
  padding:95px 0;
}

.quote-layout {
  display:grid;
  grid-template-columns:1fr 2.45fr;
  gap:50px;
}

.quote-layout>.eyebrow {
  padding-top:12px;
}

.quote-section blockquote {
  font:clamp(32px,3.55vw,58px)/1.15 var(--serif);
  max-width:1020px;
}

.quote-credit {
  font-size:14px;
  margin-top:30px;
}

.quote-credit span {
  display:block;
  font-size:12px;
  opacity:.65;
  margin-top:4px;
}

.quote-section .text-link {
  margin-top:25px;
}

.process-section {
  padding-block:140px;
}

.process-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:35px;
}

.process-grid article {
  border-top:1px solid var(--line);
  padding-top:23px;
}

.step-number {
  display:block;
  font:50px/1 var(--serif);
  margin-bottom:44px;
  color:#71836b;
}

.process-grid h3 {
  font-size:28px;
  margin-bottom:20px;
}

.process-grid p {
  font-size:15px;
  color:var(--muted);
}

.podcast-section {
  padding-block:80px;
  display:grid;
  grid-template-columns:1fr 2.1fr 1fr;
  gap:40px;
  background:var(--soft);
}

.podcast-section h2 {
  font-size:clamp(36px,3.5vw,55px);
}

.podcast-section p:not(.eyebrow) {
  max-width:510px;
  color:var(--muted);
  margin-top:25px;
}

.podcast-section .text-link {
  margin-top:20px;
}

.podcast-mark {
  align-self:center;
  justify-self:end;
  transform:rotate(-8deg);
  width:160px;
  height:160px;
  border:1px solid #9eac98;
  border-radius:50%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  font:50px/1 var(--serif);
}

.podcast-mark small {
  font:9px/2.5 var(--sans);
  text-transform:uppercase;
  letter-spacing:.15em;
}

.contact-band {
  display:grid;
  grid-template-columns:1fr 2.45fr;
  gap:50px;
  padding-block:120px;
}

.contact-band>.eyebrow {
  padding-top:12px;
}

.contact-band h2 {
  font-size:clamp(42px,4.6vw,76px);
  margin-bottom:25px;
}

.footer {
  background:var(--ink);
  color:var(--paper);
}

.footer-top {
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:45px;
  padding-block:70px;
}

.footer-about p {
  font-size:13px;
  opacity:.7;
  margin-top:25px;
  line-height:1.7;
}

.footer-top>div:not(:first-child)>a,.footer-top>div>span {
  display:block;
  font-size:14px;
  margin-top:9px;
}

.footer .eyebrow {
  opacity:.55;
  margin-bottom:22px;
}

.footer a:hover {
  opacity:.7;
}

.footer-bottom {
  display:flex;
  gap:40px;
  align-items:center;
  justify-content:space-between;
  padding-block:23px;
  border-top:1px solid #ffffff28;
  font-size:11px;
  color:#c2cbbd;
}

.footer-bottom .back-top {
  margin-left:auto;
}

.page-intro {
  padding-block:95px 85px;
}

.page-intro .eyebrow {
  margin-bottom:24px;
}

.page-intro h1 {
  max-width:1200px;
}

.page-lead {
  font-size:18px;
  line-height:1.65;
  color:var(--muted);
  max-width:780px;
  margin-top:35px;
}

.catalog-section {
  display:grid;
  grid-template-columns:1fr 1.5fr;
  gap:12%;
  padding-block:65px;
  border-top:1px solid var(--line);
}

.catalog-section .eyebrow {
  margin-bottom:18px;
}

.catalog-section h2 {
  font-size:clamp(36px,3.6vw,58px);
  margin-bottom:24px;
}

.catalog-items {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:38px;
}

.catalog-items h3,.catalog-items h2 {
  font-size:29px;
  margin:0 0 16px;
}

.catalog-items p {
  font-size:15px;
  color:var(--muted);
}

.detail-service {
  display:grid;
  grid-template-columns:1fr 1.6fr;
  gap:12%;
  padding-top:25px;
}

.sticky-note>p {
  max-width:300px;
  font-size:22px;
  line-height:1.5;
  margin-bottom:30px;
}

.sticky-note .button {
  margin-bottom:30px;
}

.sticky-note .text-link {
  display:table;
}

.detail-service .catalog-items article {
  border-top:1px solid var(--line);
  padding-top:25px;
}

.case-filters {
  display:none;
  flex-wrap:wrap;
  gap:10px;
  border-top:1px solid var(--line);
  padding-top:25px;
}

.has-js .case-filters {
  display:flex;
}

.filter {
  background:transparent;
  border:1px solid var(--line);
  border-radius:30px;
  font-size:14px;
  padding:10px 18px;
}

.filter.is-active,.filter:hover {
  background:var(--ink);
  border-color:var(--ink);
  color:var(--paper);
}

.filter-count {
  margin:20px 0 35px;
  color:var(--muted);
  font-size:13px;
}

.all-projects {
  row-gap:65px;
}

.case-hero {
  margin-bottom:75px;
}

.case-hero img {
  width:100%;
  max-height:750px;
  object-fit:cover;
  aspect-ratio:1.8;
}

.article-layout {
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:10%;
}

.article-layout aside .text-link {
  margin-top:30px;
}

.article-layout aside>p:nth-child(2) {
  margin-top:12px;
}

.article-body {
  max-width:900px;
  font-size:17px;
  line-height:1.85;
}

.article-body p {
  margin-bottom:26px;
}

.article-body h2 {
  font-size:40px;
  margin:45px 0 22px;
}

.article-body figure {
  margin:36px 0;
}

.article-body figure img {
  width:100%;
  height:auto;
}

.article-body ul {
  padding-left:22px;
}

.news-row {
  display:grid;
  grid-template-columns:1fr 1.4fr;
  gap:7%;
  padding:55px 0;
  border-top:1px solid var(--line);
}

.news-image img {
  width:100%;
  aspect-ratio:1.5;
  object-fit:cover;
}

.news-row h2 {
  font-size:clamp(34px,3.4vw,55px);
  margin:16px 0 20px;
}

.news-row p:not(.eyebrow) {
  color:var(--muted);
  font-size:15px;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.news-row .text-link {
  margin-top:20px;
}

.about-page {
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:10%;
}

.about-page>figure>img {
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  object-position:50% 25%;
}

.about-page figcaption {
  font-size:12px;
  color:var(--muted);
  margin-top:15px;
}

.about-page .eyebrow {
  margin-bottom:25px;
}

.customer-section {
  background:var(--soft);
  padding:100px 0;
}

.customer-section h2 {
  margin-top:20px;
}

.testimonial-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:55px 70px;
  margin-top:55px;
}

.testimonial-grid figure {
  border-top:1px solid #bec8b8;
  padding-top:26px;
}

.testimonial-grid blockquote {
  font:27px/1.3 var(--serif);
}

.testimonial-grid figcaption {
  font-size:13px;
  margin-top:25px;
}

.testimonial-grid figcaption span {
  display:block;
  color:var(--muted);
  margin-top:3px;
}

.partner-section {
  padding-block:80px 0;
}

.partner-logos {
  display:grid;
  grid-template-columns:repeat(6,1fr);
  align-items:center;
  gap:35px;
  margin-top:35px;
}

.partner-logos img {
  width:100%;
  max-height:70px;
  object-fit:contain;
  filter:grayscale(1);
}

.contact-page {
  display:grid;
  grid-template-columns:1fr 1.25fr;
  gap:12%;
  padding-bottom:110px;
}

.contact-info h2 {
  font-size:42px;
  margin-bottom:25px;
}

.contact-info>p {
  max-width:360px;
  color:var(--muted);
}

.direct-contact {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
  margin-top:36px;
}

.direct-contact>a {
  font:32px/1.3 var(--serif);
  border-bottom:1px solid var(--line);
}

.contact-person {
  margin-top:45px;
  display:flex;
  gap:20px;
  align-items:center;
}

.contact-person img {
  width:75px;
  height:85px;
  object-fit:cover;
  object-position:50% 20%;
}

.contact-person p {
  font-size:14px;
  line-height:1.5;
}

.contact-person span {
  display:block;
  color:var(--muted);
  font-size:12px;
}

.contact-form {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px 24px;
}

.form-field {
  display:flex;
  flex-direction:column;
  gap:8px;
}

.form-field.wide,.contact-form>.wide {
  grid-column:1/-1;
}

.form-field label {
  font-size:14px;
}

.form-field input,.form-field textarea,.form-field select {
  width:100%;
  border:0;
  border-bottom:1px solid #9ba997;
  border-radius:0;
  background:transparent;
  color:var(--ink);
  padding:10px 0 15px;
  min-height:48px;
}

.form-field input::placeholder,.form-field textarea::placeholder {
  color:#7b8278;
  font-size:15px;
}

.form-field textarea {
  resize:vertical;
  min-height:130px;
}

.form-field input:focus,.form-field select:focus,.form-field textarea:focus {
  outline:0;
  border-bottom:2px solid var(--ink);
  padding-bottom:14px;
}

.form-field [aria-invalid=true] {
  border-color:#a52e24;
}

.field-error {
  font-size:13px;
  color:#a52e24;
}

.form-note {
  font-size:12px;
  color:var(--muted);
  line-height:1.6;
}

.form-note a {
  text-decoration:underline;
}

.form-note+.button {
  margin-top:0;
}

.contact-form .button {
  width:100%;
  text-align:left;
}

.form-alert {
  padding:20px 24px;
  background:#e5ecde;
  border-left:3px solid #526b40;
  margin-bottom:25px;
  font-size:15px;
}

.form-alert.error {
  background:#f4e8e2;
  border-color:#a52e24;
}

.form-alert h2 {
  font:24px/1.3 var(--serif);
  margin-bottom:8px;
}

.form-alert ul {
  margin-bottom:0;
  padding-left:20px;
}

.honeypot {
  position:absolute;
  left:-10000px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.legal-page {
  max-width:1000px;
}

.legal-page h2 {
  font-size:36px;
  margin-top:40px;
}

.legal-page p {
  margin-top:20px;
  color:var(--muted);
}

@media(min-width:1600px) {
  .hero-scroll {
    left:calc((100vw - 1700px)/2 + var(--gutter));
    right:calc((100vw - 1700px)/2 + var(--gutter));
  }

}

@media(max-width:1100px) {
  .navigation {
    gap:22px;
  }

  .navigation .nav-contact {
    margin-left:0;
    gap:18px;
  }

  .intro-section,.quote-layout,.contact-band {
    grid-template-columns:1fr 3fr;
    gap:35px;
  }

  .intro-copy {
    gap:28px;
  }

  .service-layout {
    gap:5%;
  }

  .service-photo img {
    height:410px;
  }

  .service-row {
    gap:12px;
    padding-block:24px;
  }

  .about-feature {
    gap:7%;
  }

  .process-grid {
    gap:25px;
  }

  .podcast-section {
    grid-template-columns:1fr 3fr;
  }

  .podcast-mark {
    display:none;
  }

  .footer-top {
    grid-template-columns:1.6fr 1fr 1fr;
    gap:30px;
  }

  .footer-top>div:last-child {
    grid-column:2/4;
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px 25px;
  }

  .footer-top>div:last-child .eyebrow {
    margin:0 10px 0 0;
  }

  .footer-top>div:last-child>a {
    margin:0;
  }

  .contact-page {
    gap:8%;
  }

}

@media(max-width:780px) {
  .site-header {
    height:90px;
    padding-block:18px;
  }

  .brand-main {
    font-size:37px;
  }

  .brand-sub {
    font-size:8px;
  }

  .has-js .menu-toggle {
    display:flex;
  }

  .has-js .navigation {
    display:none;
  }

  .has-js .site-header.is-open {
    position:fixed;
    inset:0;
    height:100svh;
    align-content:start;
    align-items:flex-start;
    flex-wrap:wrap;
    background:var(--ink);
    color:var(--paper);
    gap:0;
    overflow-y:auto;
  }

  .has-js .is-open .navigation {
    display:flex;
    flex-basis:100%;
    flex-direction:column;
    align-items:stretch;
    padding-block:35px;
    gap:0;
  }

  .has-js .is-open .navigation>a {
    font-family:var(--serif);
    font-size:39px;
    padding-block:12px;
    border-bottom:1px solid #ffffff35;
  }

  .has-js .is-open .navigation .nav-contact {
    font-family:var(--sans);
    font-size:15px;
    margin-top:30px;
    justify-content:space-between;
  }

  .has-js .is-open .menu-lines {
    transform:rotate(-45deg);
  }

  .hero {
    min-height:700px;
    max-height:950px;
  }

  .hero h1 {
    font-size:clamp(53px,9.3vw,75px);
  }

  .hero-content {
    padding-bottom:105px;
  }

  .hero-bottom {
    display:block;
    margin-top:28px;
  }

  .hero-bottom p {
    max-width:370px;
    font-size:15px;
  }

  .hero-cta {
    display:inline-flex;
    margin-top:25px;
    font-size:13px;
    gap:40px;
    padding-bottom:10px;
  }

  .hero-content .eyebrow {
    font-size:10px;
    margin-bottom:23px;
  }

  .hero-image {
    object-position:55% center;
  }

  .intro-section,.quote-layout,.contact-band {
    grid-template-columns:1fr;
    gap:30px;
  }

  .intro-section>.eyebrow {
    max-width:none;
    padding:0;
  }

  .intro-section {
    padding-block:85px;
  }

  .intro-copy {
    gap:24px;
    margin-top:25px;
  }

  .section-heading {
    margin-bottom:35px;
    gap:20px;
    align-items:start;
  }

  .section-heading h2 {
    font-size:45px;
  }

  .section-heading .text-link {
    font-size:12px;
    gap:15px;
  }

  .service-layout {
    grid-template-columns:1fr;
    gap:32px;
  }

  .service-photo img {
    height:auto;
    aspect-ratio:1.6;
  }

  .service-row {
    grid-template-columns:25px 1fr 22px;
    padding-block:22px;
  }

  .service-row h3 {
    font-size:31px;
  }

  .service-section {
    padding-bottom:80px;
  }

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

  .project-grid {
    gap:40px 22px;
  }

  .featured-grid .project-card:first-child .project-image img {
    aspect-ratio:1.5;
  }

  .project-image img {
    aspect-ratio:1;
  }

  .image-link {
    right:12px;
    bottom:12px;
    font-size:11px;
    gap:12px;
    padding:10px;
  }

  .image-link .arrow {
    font-size:17px;
  }

  .project-card h3 {
    font-size:32px;
  }

  .project-meta {
    font-size:10px;
    letter-spacing:.04em;
  }

  .about-feature {
    padding-block:80px;
    gap:35px;
  }

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

  .about-feature-copy>p:not(.eyebrow) {
    font-size:15px;
  }

  .portrait-caption {
    left:12px;
    right:12px;
    bottom:12px;
    padding:10px;
    font-size:11px;
  }

  .quote-section {
    padding-block:65px;
  }

  .quote-section blockquote {
    font-size:37px;
  }

  .process-section {
    padding-block:80px;
  }

  .process-grid {
    grid-template-columns:1fr 1fr;
    gap:40px 30px;
  }

  .process-section .section-heading {
    display:block;
  }

  .process-section .section-heading>p {
    margin-top:22px;
  }

  .step-number {
    margin-bottom:25px;
  }

  .podcast-section {
    grid-template-columns:1fr;
    gap:20px;
    padding-block:55px;
  }

  .contact-band {
    padding-block:80px;
  }

  .contact-band h2 {
    font-size:46px;
  }

  .footer-top {
    grid-template-columns:1.2fr 1fr;
    padding-block:55px;
    gap:45px 25px;
  }

  .footer-top>div:last-child {
    display:block;
    grid-column:auto;
  }

  .footer-top>div:last-child .eyebrow {
    margin-bottom:22px;
  }

  .footer-top>div:last-child>a {
    margin-top:9px;
  }

  .footer-bottom {
    gap:15px;
    flex-wrap:wrap;
    font-size:10px;
  }

  .footer-bottom .back-top {
    margin:0;
  }

  .page-intro {
    padding-block:65px;
  }

  .page-intro h1 {
    font-size:clamp(50px,8vw,70px);
  }

  .page-lead {
    font-size:17px;
    margin-top:26px;
  }

  .catalog-section {
    gap:40px;
    grid-template-columns:1fr;
    padding-block:45px;
  }

  .catalog-section h2 {
    max-width:550px;
    margin-bottom:15px;
  }

  .detail-service {
    grid-template-columns:1fr;
    gap:45px;
  }

  .sticky-note>p {
    max-width:100%;
    font-size:19px;
  }

  .catalog-items {
    gap:35px;
  }

  .section-bottom {
    padding-bottom:80px;
  }

  .article-layout {
    grid-template-columns:1fr;
    gap:40px;
  }

  .case-hero {
    margin-bottom:40px;
  }

  .case-hero img {
    aspect-ratio:1.4;
  }

  .news-row {
    gap:25px;
  }

  .news-row h2 {
    font-size:35px;
  }

  .news-row .eyebrow {
    font-size:10px;
  }

  .about-page {
    gap:40px;
    grid-template-columns:1fr;
  }

  .about-page>figure {
    max-width:520px;
  }

  .testimonial-grid {
    gap:35px;
  }

  .testimonial-grid blockquote {
    font-size:25px;
  }

  .customer-section {
    padding-block:70px;
  }

  .partner-logos {
    grid-template-columns:repeat(3,1fr);
    gap:25px;
  }

  .contact-page {
    grid-template-columns:1fr;
    gap:60px;
  }

  .contact-info {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px 30px;
  }

  .contact-info h2 {
    grid-column:1/-1;
    margin-bottom:0;
  }

  .contact-info>p {
    margin:0;
  }

  .direct-contact {
    margin-top:0;
  }

  .direct-contact>a {
    font-size:27px;
  }

  .contact-person {
    margin-top:15px;
  }

  .navigation {
    font-size:12px;
    gap:12px;
    flex-wrap:wrap;
  }

  .navigation .nav-contact {
    display:none;
  }

  .site-header:has(.navigation:not([hidden])) {
    gap:20px;
  }

}

@media(max-width:520px) {
  .intro-copy {
    grid-template-columns:1fr;
    gap:20px;
  }

  .section-heading {
    display:block;
  }

  .section-heading>.text-link {
    margin-top:22px;
  }

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

  .featured-grid .project-card:first-child {
    grid-column:auto;
  }

  .project-image img,.featured-grid .project-card:first-child .project-image img {
    aspect-ratio:1.25;
  }

  .project-card h3 {
    font-size:37px;
  }

  .about-feature {
    grid-template-columns:1fr;
    gap:40px;
  }

  .portrait {
    max-width:420px;
  }

  .portrait-caption {
    font-size:13px;
    padding:15px;
  }

  .about-feature h2 {
    font-size:48px;
  }

  .process-grid h3 {
    font-size:27px;
  }

  .process-grid p {
    font-size:14px;
  }

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

  .footer-about {
    grid-column:1/-1;
  }

  .footer-about p {
    max-width:280px;
  }

  .footer-top>div:last-child {
    grid-column:1/-1;
    display:flex;
    gap:12px 22px;
  }

  .footer-top>div:last-child .eyebrow {
    flex-basis:100%;
    margin-bottom:0;
  }

  .footer-top>div:last-child>a {
    font-size:13px;
  }

  .footer-bottom {
    display:grid;
    grid-template-columns:1fr auto;
    gap:10px;
  }

  .footer-bottom>a:nth-child(2) {
    grid-column:1;
    grid-row:2;
  }

  .footer-bottom .back-top {
    grid-column:2;
    grid-row:1/3;
  }

  .catalog-items {
    grid-template-columns:1fr;
  }

  .all-projects {
    row-gap:42px;
  }

  .case-filters {
    gap:8px;
  }

  .filter {
    padding:8px 14px;
    font-size:13px;
  }

  .news-row {
    grid-template-columns:1fr;
    gap:25px;
    padding-block:35px;
  }

  .news-row h2 {
    font-size:39px;
  }

  .news-row .eyebrow {
    font-size:11px;
  }

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

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

  .direct-contact {
    margin-top:15px;
  }

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

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

  .contact-person {
    margin-top:20px;
  }

  .page-intro .eyebrow {
    font-size:11px;
  }

  .hero-scroll {
    font-size:9px;
  }

  .hero h1 {
    font-size:clamp(40px,12.5vw,60px);
  }

  .hero {
    min-height:710px;
  }

  .hero-image {
    object-position:59% center;
  }

  .hero-cta {
    margin-top:23px;
  }

  .hero-shade {
    background:linear-gradient(180deg,#101b1680,transparent 25%,#101b1640 40%,#101b16df);
  }

  .navigation {
    gap:5px 14px;
    font-size:11px;
  }

  .site-header {
    gap:18px;
  }

  .navigation>a {
    padding:3px 0;
  }

}

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

  *,*:before,*:after {
    transition:none!important;
    animation:none!important;
  }

}

