:root {
  --surface: #f1f1ef;
  --paper: #f8f6f1;
  --ink: #171918;
  --ink-soft: #626663;
  --sage: #557560;
  --mint: #b8d9bd;
  --line: rgba(23, 25, 24, 0.18);
  --dark-line: rgba(248, 246, 241, 0.16);
  --radius: 8px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 40px;
  --space-6: 64px;
  --space-7: 104px;
  --space-8: 168px;
  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --body: "Manrope", "Avenir Next", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

::selection {
  background: var(--mint);
  color: var(--ink);
}

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

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

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

.site-header {
  position: absolute;
  z-index: 40;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
  color: var(--paper);
}

.site-header.is-floating {
  position: fixed;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: 74px;
  padding: 0 14px;
  border: 1px solid rgba(248, 246, 241, 0.16);
  border-radius: var(--radius);
  background: rgba(23, 25, 24, 0.78);
  box-shadow: 0 14px 36px rgba(23, 25, 24, 0.16);
  backdrop-filter: blur(18px);
  animation: floating-nav-in 220ms ease-out;
}

@keyframes floating-nav-in {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-logo {
  width: 156px;
  overflow: hidden;
  border-radius: 3px;
}

.site-logo img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: none;
}

.menu-toggle {
  position: relative;
  z-index: 44;
  display: grid;
  width: 50px;
  height: 50px;
  place-content: center;
  gap: 8px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 34px;
  height: 2px;
  background: var(--paper);
  transition: transform 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.menu-panel {
  position: fixed;
  z-index: 42;
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  padding: 92px 22px 48px;
  background: var(--ink);
  color: var(--paper);
  opacity: 0;
  transform: translateY(-12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.menu-panel.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.menu-panel > p,
.menu-panel small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-panel > p {
  margin: 0 0 32px;
  color: var(--mint);
}

.menu-panel a {
  padding: 7px 0;
  border-bottom: 1px solid var(--dark-line);
  font-family: var(--display);
  font-size: 46px;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.menu-panel a:hover {
  color: var(--mint);
}

.menu-panel small {
  margin-top: 36px;
  color: rgba(248, 246, 241, 0.62);
}

.hero {
  position: relative;
  min-height: 940px;
  overflow: hidden;
  color: var(--paper);
}

.hero-image,
.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  background: url("assets/video/evermint-hero-poster.webp") 56% center / cover no-repeat;
  transform: scale(1.02);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(23, 25, 24, 0.1), rgba(23, 25, 24, 0.46)),
    linear-gradient(90deg, rgba(23, 25, 24, 0.5), transparent 76%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 790px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 40px;
  padding: 130px 22px 148px;
}

.hero-kicker {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 700;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--display);
  font-size: 64px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.85;
  text-transform: uppercase;
}

.hero-cta {
  display: inline-flex;
  width: min(100%, 240px);
  min-height: 58px;
  align-items: center;
  align-self: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: 14px 18px;
  border: 1px solid rgba(248, 246, 241, 0.36);
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.hero-cta span:last-child {
  font-size: 22px;
  font-weight: 500;
  transition: transform 180ms ease;
}

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

.hero-cta:hover span:last-child {
  transform: translate(3px, -3px);
}

.hero-services {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 18px;
  left: 12px;
  display: grid;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
  background: rgba(23, 25, 24, 0.42);
  backdrop-filter: blur(8px);
}

.hero-services > div {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(248, 246, 241, 0.24);
}

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

.hero-services span,
.hero-services strong {
  font-size: 10px;
  letter-spacing: 0.04em;
}

.hero-services strong {
  text-align: right;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 206px;
  display: none;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(248, 246, 241, 0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 96px 22px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 56px;
}

.section-label span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(23, 25, 24, 0.08);
  font-size: 17px;
}

.section-label p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.section-label.light span {
  background: rgba(248, 246, 241, 0.12);
}

.about {
  background: var(--surface);
}

.about-main h2 {
  max-width: 1020px;
  margin: 0;
  color: #8a8d8a;
  font-size: 39px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.15;
}

.about-main h2 span {
  color: var(--ink);
}

.about-detail {
  max-width: 620px;
  margin: 56px 0 0 auto;
}

.about-detail > p {
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
}

.text-link span {
  font-size: 18px;
  transition: transform 160ms ease;
}

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

.principle-grid {
  display: grid;
  gap: 12px;
  margin-top: 72px;
}

.principle {
  min-height: 260px;
  padding: 26px;
  border-radius: var(--radius);
  background: #98b8a0;
}

.principle:nth-child(1) {
  background: #557560;
  color: var(--paper);
}

.principle:nth-child(2) {
  background: #98b8a0;
}

.principle:nth-child(3) {
  background: #c9dfcf;
}

.principle > span {
  display: block;
  margin-bottom: 56px;
  color: var(--ink-soft);
  font-size: 11px;
}

.principle h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.15;
}

.principle p {
  margin: 0;
  color: var(--ink-soft);
}

.principle:nth-child(1) > span,
.principle:nth-child(1) p {
  color: rgba(248, 246, 241, 0.78);
}

.focus-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.focus-strip span {
  display: grid;
  min-height: 96px;
  place-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #777b78;
  font-family: var(--display);
  font-size: 27px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.focus-strip span:nth-child(2n) {
  border-right: 0;
}

.focus-strip span:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.projects {
  background: var(--surface);
}

.projects-heading {
  margin-bottom: 72px;
}

.projects-heading h2,
.services-heading h2,
.process-main > h2,
.faq-main > h2,
.contact-intro h2 {
  margin: 0;
  font-size: 58px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.94;
}

.projects-heading > div:last-child > p {
  max-width: 550px;
  margin: 24px 0 0;
  color: var(--ink-soft);
}

.work-list {
  display: grid;
  gap: 18px;
}

.work-feature {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.work-feature:hover {
  background: #edf2ed;
  transform: translateY(-4px);
}

.work-visual {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #d7d9d6;
}

.work-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.work-feature:hover .work-visual img {
  transform: scale(1.025);
}

.work-copy {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  padding: 28px;
}

.work-index {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.work-index span:last-child {
  text-align: right;
}

.work-copy h3 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.work-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.work-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.work-link b {
  font-size: 20px;
  font-weight: 500;
  transition: transform 180ms ease;
}

.work-feature:hover .work-link b {
  transform: translate(4px, -4px);
}

.web-project {
  display: grid;
  place-items: center;
  padding: 34px;
  background:
    linear-gradient(rgba(23, 25, 24, 0.06), rgba(23, 25, 24, 0.2)),
    url("assets/evermint-coast.webp") center / cover no-repeat;
}

.browser-shell {
  width: 92%;
  box-shadow: 16px 18px 0 rgba(23, 25, 24, 0.34);
}

.browser-top {
  display: flex;
  height: 32px;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  background: var(--ink);
}

.browser-top i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--paper);
  opacity: 0.72;
}

.browser-page {
  min-height: 240px;
  padding: 30px 26px;
  background: var(--paper);
}

.browser-page > * {
  display: block;
}

.browser-page small {
  width: 38%;
  height: 6px;
  margin-bottom: 48px;
  background: var(--sage);
}

.browser-page strong {
  width: 84%;
  height: 20px;
  margin-bottom: 8px;
  background: var(--ink);
}

.browser-page strong.short {
  width: 58%;
}

.browser-page b {
  width: 102px;
  height: 28px;
  margin-top: 24px;
  background: var(--mint);
}

.app-project {
  background: #303634;
}

.device {
  position: absolute;
  display: flex;
  width: 42%;
  aspect-ratio: 0.55;
  flex-direction: column;
  align-items: center;
  padding: 18px;
  border: 2px solid var(--paper);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 16px 20px 0 rgba(184, 217, 189, 0.2);
}

.device-back {
  top: 13%;
  left: 13%;
  background: var(--sage);
  transform: rotate(-8deg);
}

.device-front {
  right: 12%;
  bottom: -12%;
  transform: rotate(7deg);
}

.device > i {
  width: 34%;
  height: 6px;
  margin-bottom: 48px;
  border-radius: 4px;
  background: var(--ink);
}

.device > span {
  display: block;
  width: 100%;
  height: 7px;
  margin: 8px 0;
  background: var(--ink);
  opacity: 0.76;
}

.device > span:last-child {
  width: 68%;
  align-self: flex-start;
}

.metric-ring {
  width: 86px;
  height: 86px;
  border: 14px solid var(--mint);
  border-right-color: var(--sage);
  border-radius: 50%;
}

.device b {
  margin: -59px 0 45px;
  font-size: 26px;
}

.search-project {
  padding: 34px 26px;
  background: var(--mint);
}

.query {
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border: 2px solid var(--ink);
  background: var(--paper);
}

.query span {
  width: 56%;
  height: 6px;
  background: var(--ink);
}

.query i {
  width: 20px;
  height: 20px;
  border: 3px solid var(--sage);
  border-radius: 50%;
}

.result {
  display: grid;
  gap: 9px;
  margin-top: 22px;
  padding: 20px;
  background: var(--paper);
}

.result > * {
  display: block;
}

.result small {
  width: 34%;
  height: 5px;
  background: var(--sage);
}

.result strong {
  width: 68%;
  height: 15px;
  background: var(--ink);
}

.result i {
  width: 92%;
  height: 4px;
  background: var(--ink-soft);
}

.result i:last-child {
  width: 76%;
}

.result-two {
  opacity: 0.72;
  transform: translateX(28px);
}

.foundation-project {
  background: var(--ink);
}

.foundation-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(23, 25, 24, 0.12), rgba(23, 25, 24, 0.56)),
    url("assets/evermint-coast.webp") center 70% / cover no-repeat;
}

.foundation-copy {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  color: var(--paper);
}

.foundation-copy small,
.foundation-copy strong {
  display: block;
}

.foundation-copy small {
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.foundation-copy strong {
  font-family: var(--display);
  font-size: 52px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

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

.services-heading {
  display: grid;
  gap: 40px;
  margin-bottom: 72px;
}

.services-heading .section-label {
  margin-bottom: 0;
}

.services-heading h2 {
  font-size: 80px;
}

.button {
  display: inline-flex;
  width: fit-content;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding: 14px 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.button span {
  font-size: 18px;
  transition: transform 160ms ease;
}

.button:hover span {
  transform: translate(3px, -3px);
}

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

.button-light:hover {
  background: var(--mint);
}

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

.service-item {
  border-bottom: 1px solid var(--dark-line);
}

.service-item > button {
  display: grid;
  width: 100%;
  min-height: 88px;
  align-items: center;
  gap: 14px;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: var(--paper);
  text-align: left;
}

.service-number {
  color: rgba(248, 246, 241, 0.56);
  font-size: 12px;
}

.service-title {
  font-size: 18px;
  font-weight: 700;
}

.service-toggle {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--dark-line);
  border-radius: 50%;
  font-size: 23px;
  font-weight: 400;
}

.service-detail {
  display: grid;
  gap: 26px;
  padding: 8px 0 48px 56px;
}

.service-detail[hidden] {
  display: none;
}

.service-thumb {
  display: block;
  width: 100%;
  height: 190px;
  min-height: 190px;
  overflow: hidden;
  border-radius: var(--radius);
  object-fit: cover;
}

.service-detail > p {
  margin: 0;
  color: rgba(248, 246, 241, 0.68);
}

.service-detail ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail li {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(248, 246, 241, 0.09);
  font-size: 11px;
  font-weight: 700;
}

.process {
  display: grid;
  background: var(--surface);
}

.process-main > h2 {
  max-width: 780px;
  margin-bottom: 64px;
}

.process ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.process li {
  display: grid;
  gap: 24px;
  grid-template-columns: 42px minmax(0, 1fr);
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.process li > span {
  color: var(--ink-soft);
  font-size: 12px;
}

.process h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.process li p {
  max-width: 600px;
  margin: 0;
  color: var(--ink-soft);
}

.faq {
  display: grid;
  background: var(--paper);
}

.faq-main > h2 {
  margin-bottom: 56px;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.faq-item button span {
  flex: 0 0 auto;
  font-size: 26px;
  font-weight: 400;
  transition: transform 160ms ease;
}

.faq-item button[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 680px;
  padding: 0 36px 28px 0;
}

.faq-answer p {
  margin: 0;
  color: var(--ink-soft);
}

.contact {
  display: grid;
  gap: 72px;
  padding: 104px 22px;
  background: #1c1e1d;
  color: var(--paper);
}

.eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-intro h2 {
  max-width: 700px;
  margin: 24px 0;
  font-size: 58px;
}

.contact-intro > p:last-child {
  max-width: 600px;
  margin: 0;
  color: rgba(248, 246, 241, 0.7);
}

.project-form {
  padding-top: 36px;
  border-top: 1px solid var(--dark-line);
}

.form-honey {
  position: absolute;
  left: -9999px;
}

.field-row {
  display: grid;
}

.field {
  margin-bottom: 28px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(248, 246, 241, 0.44);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--paper);
}

.field select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--paper) 50%) calc(100% - 14px) 23px / 7px 7px no-repeat,
    linear-gradient(135deg, var(--paper) 50%, transparent 50%) calc(100% - 7px) 23px / 7px 7px no-repeat;
}

.field select option {
  color: var(--ink);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--mint);
  box-shadow: 0 2px 0 var(--mint);
}

.field [aria-invalid="true"] {
  border-bottom-color: #ffd3c2;
}

.field-error {
  display: block;
  min-height: 20px;
  padding-top: 4px;
  color: #ffd3c2;
  font-size: 12px;
}

.project-form .button {
  width: 100%;
}

.project-form .button:disabled {
  cursor: wait;
  opacity: 0.56;
}

.form-status {
  min-height: 28px;
  margin: 16px 0 0;
  color: var(--mint);
  font-size: 13px;
}

.site-footer {
  padding: 88px 22px 34px;
  overflow: hidden;
  border-top: 1px solid var(--dark-line);
  background: #1c1e1d;
  color: var(--paper);
}

.footer-top {
  display: grid;
  gap: 56px;
}

.footer-top h2 {
  margin: 0 0 24px;
  font-size: 38px;
  line-height: 1.05;
}

.footer-top > div > p,
.footer-top nav > p {
  margin: 0;
  color: rgba(248, 246, 241, 0.62);
  font-size: 12px;
}

.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}

.footer-top nav > p {
  width: 100%;
  margin-bottom: 8px;
}

.footer-top nav a {
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(248, 246, 241, 0.08);
  font-size: 11px;
  font-weight: 700;
}

.footer-top nav a:hover {
  background: var(--sage);
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--dark-line);
  color: rgba(248, 246, 241, 0.58);
  font-size: 11px;
  margin-top: 64px;
}

.footer-meta p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  .site-header {
    top: 0;
    left: 0;
    width: 100%;
    height: 108px;
    padding: 0 40px;
  }

  .site-header.is-floating {
    top: 14px;
    left: 14px;
    width: calc(100% - 28px);
    height: 82px;
    padding: 0 24px;
  }

  .site-logo {
    width: 202px;
  }

  .hero-content {
    min-height: 770px;
    padding: 152px 40px 148px;
  }

  .hero h1 {
    font-size: 94px;
  }

  .hero-cta {
    width: 240px;
    margin-left: auto;
  }

  .hero-services {
    right: 24px;
    left: 24px;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-services > div {
    min-height: 72px;
    border-right: 1px solid rgba(248, 246, 241, 0.24);
    border-bottom: 0;
  }

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

  .section {
    padding: 120px 40px;
  }

  .about-main h2 {
    font-size: 54px;
  }

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

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

  .focus-strip span {
    min-height: 118px;
    border-bottom: 0;
  }

  .focus-strip span:nth-child(2n) {
    border-right: 1px solid var(--line);
  }

  .focus-strip span:nth-child(3n) {
    border-right: 0;
  }

  .work-feature {
    grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.8fr);
  }

  .work-feature.is-reversed {
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.6fr);
  }

  .work-feature.is-reversed .work-visual {
    grid-column: 2;
  }

  .work-feature.is-reversed .work-copy {
    grid-row: 1;
    grid-column: 1;
  }

  .work-visual {
    height: 100%;
    min-height: 430px;
    aspect-ratio: auto;
  }

  .work-copy {
    min-height: 430px;
    padding: 34px;
  }

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

  .service-thumb {
    grid-row: 1 / 3;
  }

  .process,
  .faq {
    gap: 72px;
    grid-template-columns: 0.55fr 1.45fr;
  }

  .field-row {
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .footer-top h2 {
    font-size: 52px;
  }
}

@media (min-width: 1050px) {
  body {
    font-size: 17px;
  }

  .site-header {
    top: 0;
    left: 0;
    width: 100%;
    height: 114px;
    padding: 0 64px;
  }

  .site-header.is-floating {
    top: 18px;
    left: 24px;
    width: calc(100% - 48px);
    height: 86px;
    padding: 0 34px;
  }

  .site-logo {
    width: 218px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
    color: var(--paper);
    font-size: 13px;
    font-weight: 700;
  }

  .desktop-nav a:not(.nav-cta) {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-cta {
    padding: 11px 16px;
    border: 1px solid rgba(248, 246, 241, 0.62);
    border-radius: 999px;
  }

  .nav-cta:hover {
    background: var(--paper);
    color: var(--ink);
  }

  .menu-toggle {
    margin-left: 18px;
  }

  .menu-panel {
    padding: 116px 64px 56px;
  }

  .menu-panel a {
    max-width: 940px;
    font-size: 78px;
  }

  .hero {
    min-height: 920px;
    margin: 0 24px 24px;
    border-radius: 0 0 56px 56px;
  }

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

  .hero-content {
    min-height: 790px;
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
    gap: 80px;
    padding: 160px 62px 132px;
  }

  .hero h1 {
    font-size: 122px;
  }

  .hero-cta {
    width: 240px;
    margin: 0;
  }

  .hero-services {
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 0 0 56px 56px;
  }

  .hero-services > div {
    padding-right: 34px;
    padding-left: 34px;
  }

  .hero-services span,
  .hero-services strong {
    font-size: 12px;
  }

  .scroll-cue {
    display: flex;
  }

  .section {
    padding: 168px 64px;
  }

  .about {
    display: grid;
    gap: 48px 84px;
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .about .section-label {
    align-self: start;
  }

  .about-main h2 {
    font-size: 68px;
  }

  .about-detail {
    max-width: 580px;
  }

  .principle-grid {
    margin-top: 72px;
    grid-column: 2;
  }

  .projects-heading {
    display: grid;
    gap: 84px;
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .projects-heading h2 {
    font-size: 104px;
  }

  .focus-strip {
    padding: 0 24px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .focus-strip span {
    min-height: 144px;
    border-right: 1px solid var(--line);
    font-size: 34px;
  }

  .focus-strip span:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .focus-strip span:last-child {
    border-right: 0;
  }

  .services {
    margin: 0 24px;
    border-radius: 48px;
  }

  .services-heading {
    align-items: center;
    gap: 48px;
    grid-template-columns: 230px minmax(0, 1fr) auto;
  }

  .services-heading h2 {
    font-size: 118px;
  }

  .service-item > button {
    min-height: 108px;
    grid-template-columns: 170px minmax(0, 1fr) 50px;
  }

  .service-number {
    font-size: 13px;
  }

  .service-title {
    font-size: 24px;
  }

  .service-detail {
    gap: 36px;
    grid-template-columns: 260px minmax(260px, 0.72fr) minmax(280px, 1fr);
    padding: 4px 0 58px 170px;
  }

  .service-thumb {
    height: 150px;
    min-height: 150px;
    grid-row: auto;
  }

  .service-detail ul {
    align-content: center;
  }

  .process,
  .faq {
    gap: 84px;
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .process-main > h2,
  .faq-main > h2 {
    font-size: 78px;
  }

  .process li {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .contact {
    min-height: 850px;
    align-items: start;
    gap: 96px;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
    padding: 168px 64px;
  }

  .contact-intro h2 {
    font-size: 96px;
  }

  .site-footer {
    padding: 104px 64px 38px;
  }

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

  .footer-top h2 {
    font-size: 58px;
  }

}

/* Case studies */
.case-page {
  background: var(--paper);
}

.case-page .site-header {
  color: var(--paper);
}

.case-page .desktop-nav a:not(.nav-cta) {
  color: var(--paper);
}

.case-hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.case-hero-copy {
  position: relative;
  z-index: 2;
  padding: 132px 22px 0;
}

.case-eyebrow {
  margin: 0 0 18px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-hero h1 {
  max-width: 1000px;
  margin: 0;
  font-family: var(--display);
  font-size: 68px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.86;
  text-transform: uppercase;
}

.case-hero-copy > p:not(.case-eyebrow) {
  max-width: 580px;
  margin: 22px 0 0;
  color: rgba(248, 246, 241, 0.72);
  font-size: 15px;
}

.case-hero-copy .text-link {
  margin-top: 32px;
}

.case-hero-media {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 48%;
  overflow: hidden;
  background: #303432;
}

.case-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 25, 24, 0.22), transparent 28%);
  content: "";
  pointer-events: none;
}

.case-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.case-intro {
  display: grid;
  gap: 64px;
  padding: 92px 22px;
  background: var(--surface);
}

.case-facts {
  display: grid;
  gap: 0;
  margin: 0;
}

.case-facts div {
  display: grid;
  gap: 6px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.case-facts dt {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-facts dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.case-intro-main h2 {
  max-width: 900px;
  margin: 0;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
}

.case-intro-main > p {
  max-width: 660px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.case-story {
  padding: 96px 22px;
  background: var(--paper);
}

.case-story-heading {
  max-width: 920px;
  margin-bottom: 64px;
}

.case-story-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 56px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.case-story-grid {
  display: grid;
  border-top: 1px solid var(--line);
}

.case-story-card {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.case-story-card span {
  display: block;
  margin-bottom: 42px;
  color: var(--sage);
  font-size: 11px;
  font-weight: 800;
}

.case-story-card h3 {
  margin: 0 0 14px;
  font-size: 21px;
}

.case-story-card p {
  max-width: 570px;
  margin: 0;
  color: var(--ink-soft);
}

.case-gallery {
  display: grid;
  gap: 12px;
  padding: 12px;
  background: #dfe3df;
}

.case-shot {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
}

.case-shot img {
  width: 100%;
  height: auto;
}

.case-shot.is-crop {
  aspect-ratio: 16 / 10;
}

.case-shot.is-crop img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.case-statement {
  display: grid;
  min-height: 560px;
  place-items: center;
  padding: 96px 22px;
  background: #1c1e1d;
  color: var(--paper);
  text-align: center;
}

.case-statement p {
  max-width: 1050px;
  margin: 0;
  font-size: 39px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
}

.case-next {
  display: grid;
  gap: 54px;
  padding: 96px 22px;
  background: var(--mint);
}

.case-next small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-next h2 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display);
  font-size: 64px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: uppercase;
}

.case-next span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 25, 24, 0.34);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-next span b {
  font-size: 24px;
  font-weight: 500;
  transition: transform 180ms ease;
}

.case-next:hover span b {
  transform: translate(5px, -5px);
}

@media (min-width: 720px) {
  .case-hero {
    min-height: 900px;
  }

  .case-hero-copy {
    padding: 152px 40px 0;
  }

  .case-hero h1 {
    font-size: 104px;
  }

  .case-hero-copy > p:not(.case-eyebrow) {
    font-size: 17px;
  }

  .case-hero-media {
    height: 54%;
  }

  .case-intro {
    gap: 70px;
    padding: 120px 40px;
    grid-template-columns: minmax(190px, 0.45fr) minmax(0, 1.55fr);
  }

  .case-intro-main h2 {
    font-size: 54px;
  }

  .case-story {
    padding: 120px 40px;
  }

  .case-story-heading h2 {
    font-size: 78px;
  }

  .case-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-story-card {
    min-height: 340px;
    padding: 38px;
  }

  .case-story-card:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .case-gallery {
    gap: 18px;
    padding: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-shot.is-wide {
    grid-column: 1 / -1;
  }

  .case-statement {
    min-height: 720px;
    padding: 120px 40px;
  }

  .case-statement p {
    font-size: 64px;
  }

  .case-next {
    padding: 120px 40px;
  }

  .case-next h2 {
    font-size: 94px;
  }
}

@media (min-width: 1050px) {
  .case-hero-copy {
    padding: 166px 64px 0;
  }

  .case-hero h1 {
    font-size: 132px;
  }

  .case-intro,
  .case-story,
  .case-next {
    padding-right: 64px;
    padding-left: 64px;
  }

  .case-intro {
    gap: 120px;
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .case-story-heading h2 {
    font-size: 96px;
  }

  .case-story-card {
    min-height: 380px;
    padding: 48px;
  }

  .case-statement p {
    font-size: 78px;
  }

  .case-next h2 {
    font-size: 118px;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-video {
    display: none;
  }
}
