@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600&display=swap");

:root {
  --teal: #1f454a;
  --teal-soft: #dce7e3;
  --ivory: #f6f2eb;
  --paper: #fbf9f5;
  --ink: #172326;
  --muted: #667375;
  --line: rgba(31, 69, 74, 0.16);

  --shell: min(1180px, calc(100vw - 48px));
  --radius-lg: 30px;
  --radius-md: 20px;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

/* =========================================================
   Reset and shared styles
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

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

::selection {
  background: var(--teal);
  color: var(--ivory);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--teal);
  color: var(--ivory);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(246, 242, 235, 0.65);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition:
    transform 0.25s var(--ease),
    background 0.25s ease,
    color 0.25s ease;
}

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

.button-primary {
  background: var(--teal);
  color: var(--ivory);
  box-shadow: 0 14px 34px rgba(31, 69, 74, 0.14);
}

.button-primary:hover {
  background: #173b40;
}

.button-text {
  min-height: auto;
  padding-inline: 0;
  border-radius: 0;
}

.button-text span,
.text-link span {
  transition: transform 0.25s var(--ease);
}

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

/* =========================================================
   Header
   ========================================================= */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 249, 245, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 158px;
  height: 75px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
}

.site-nav a {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transition: right 0.3s var(--ease);
}

.site-nav a:not(.nav-cta):hover::after {
  right: 0;
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid var(--teal);
  border-radius: 999px;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.nav-cta:hover {
  background: var(--teal);
  color: var(--ivory);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 0.25s ease;
}

/* =========================================================
   Hero â€” intentionally simple
   ========================================================= */

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 8%,
      rgba(220, 231, 227, 0.52),
      transparent 30%
    ),
    linear-gradient(180deg, var(--paper), var(--ivory));
}

.hero-inner {
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero-copy {
  width: 100%;
  max-width: 1040px;
}

.hero h1 {
  max-width: 1000px;
  margin: 0 auto;
  font-size: clamp(64px, 8.2vw, 124px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.hero-lede {
  max-width: 650px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 42px;
}

/* =========================================================
   General section structure
   ========================================================= */

.section {
  padding: clamp(100px, 12vw, 176px) 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 64px;
}

.section-heading h2,
.statement-copy h2,
.founder-copy h2,
.contact-copy h2,
.process-heading h2 {
  margin: 0;
  font-size: clamp(44px, 5.3vw, 78px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

/* =========================================================
   Selected work
   ========================================================= */

.work-section {
  background: var(--paper);
}

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

.project-wide {
  grid-column: 1 / -1;
}

.project-link {
  display: block;
}

.project-preview {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius-md);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.project:not(.project-wide) .project-preview {
  min-height: 320px;
}

.project-link:hover .project-preview {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(23, 35, 38, 0.1);
}

.browser-chrome {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 46px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.browser-chrome i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.45;
}

.preview-content {
  min-height: inherit;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 86px 8% 48px;
}

.preview-label {
  margin-bottom: 32px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.preview-content strong {
  font-size: clamp(68px, 10vw, 150px);
  line-height: 0.84;
  letter-spacing: -0.08em;
}

.preview-azka {
  background: #8d2223;
  color: #f7eddd;
}

.preview-azka .preview-content {
  align-items: center;
  text-align: center;
}

.preview-pill {
  margin-top: 34px;
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
}

.preview-az {
  background:
    linear-gradient(rgba(22, 39, 40, 0.62), rgba(22, 39, 40, 0.62)),
    linear-gradient(135deg, #537270, #1f3638);
  color: #f4efe5;
}

.preview-lines {
  width: 65%;
  margin-top: 44px;
}

.preview-lines b {
  display: block;
  height: 1px;
  margin-top: 12px;
  background: currentColor;
  opacity: 0.42;
}

.preview-lines b:nth-child(2) {
  width: 84%;
}

.preview-lines b:nth-child(3) {
  width: 58%;
}

.preview-maram {
  background: #e9d8c8;
  color: #442b25;
}

.preview-maram .preview-content strong {
  font-size: clamp(58px, 7.6vw, 105px);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.preview-stamp {
  width: 74px;
  height: 74px;
  align-self: flex-end;
  display: grid;
  place-items: center;
  margin-top: -24px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
}

.project-meta h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.project-meta p {
  max-width: 650px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.project-arrow {
  font-size: 24px;
  transition: transform 0.3s var(--ease);
}

.project-link:hover .project-arrow {
  transform: translate(4px, -4px);
}

.work-note {
  margin: 54px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* =========================================================
   No generated websites
   ========================================================= */

.statement-section {
  overflow: hidden;
  background: var(--teal);
  color: var(--ivory);
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(70px, 9vw, 130px);
}

.statement-visual {
  position: relative;
  min-height: 570px;
}

.concept-card {
  position: absolute;
  width: 76%;
  padding: 22px;
  border: 1px solid rgba(246, 242, 235, 0.16);
  border-radius: 22px;
  background: rgba(246, 242, 235, 0.075);
  box-shadow: 0 28px 70px rgba(8, 31, 34, 0.18);
  backdrop-filter: blur(10px);
}

.concept-generic {
  top: 0;
  left: 0;
  opacity: 0.72;
  transform: rotate(-3deg);
}

.concept-custom {
  right: 0;
  bottom: 0;
  transform: rotate(2.5deg);
}

.concept-card-label {
  margin-bottom: 18px;
  color: rgba(246, 242, 235, 0.62);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.generic-layout,
.custom-layout {
  min-height: 238px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(246, 242, 235, 0.09);
}

.generic-hero {
  display: block;
  height: 72px;
  border-radius: 10px;
  background: rgba(246, 242, 235, 0.18);
}

.generic-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 13px;
}

.generic-cards i {
  height: 62px;
  border-radius: 8px;
  background: rgba(246, 242, 235, 0.15);
}

.generic-line {
  display: block;
  width: 80%;
  height: 7px;
  margin-top: 17px;
  border-radius: 999px;
  background: rgba(246, 242, 235, 0.14);
}

.generic-line.short {
  width: 52%;
  margin-top: 9px;
}

.custom-layout {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 0;
  overflow: hidden;
  background: rgba(246, 242, 235, 0.93);
}

.custom-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 22px;
  background: rgba(31, 69, 74, 0.1);
}

.custom-rail i {
  width: 17px;
  height: 17px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  opacity: 0.5;
}

.custom-content {
  padding: 35px 24px;
}

.custom-kicker,
.custom-content strong,
.custom-copy i,
.custom-button {
  display: block;
  border-radius: 999px;
  background: var(--teal);
}

.custom-kicker {
  width: 62px;
  height: 5px;
  margin-bottom: 25px;
  opacity: 0.38;
}

.custom-content strong {
  width: 90%;
  height: 13px;
  margin-top: 9px;
}

.custom-content strong.short {
  width: 62%;
}

.custom-copy {
  margin-top: 28px;
}

.custom-copy i {
  width: 75%;
  height: 5px;
  margin-top: 8px;
  opacity: 0.18;
}

.custom-copy i:last-child {
  width: 54%;
}

.custom-button {
  width: 92px;
  height: 31px;
  margin-top: 32px;
}

.statement-copy .eyebrow {
  color: rgba(246, 242, 235, 0.65);
}

.statement-copy p {
  max-width: 760px;
  margin: 34px 0 0;
  color: rgba(246, 242, 235, 0.74);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.75;
}

/* =========================================================
   Services
   ========================================================= */

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 60px;
}

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

.service {
  min-height: 184px;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(300px, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 38px 16px 38px 0;
  border-bottom: 1px solid var(--line);
  transition:
    padding 0.35s var(--ease),
    background 0.35s var(--ease);
}

.service:hover {
  padding-left: 22px;
  background: rgba(220, 231, 227, 0.32);
}

.service-heading {
  display: grid;
  gap: 9px;
}

.service-type {
  color: var(--teal);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service h3 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.service > p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.service-mark {
  color: var(--teal);
  font-size: 26px;
  transition: transform 0.3s var(--ease);
}

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

/* =========================================================
   Process timeline
   ========================================================= */

.process-section {
  overflow: hidden;
  background: var(--ivory);
}

.process-heading {
  margin-bottom: 92px;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 23px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
}

.process-step {
  position: relative;
}

.process-point {
  position: relative;
  z-index: 1;
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border: 1px solid var(--teal);
  border-radius: 50%;
  background: var(--ivory);
  color: var(--teal);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s var(--ease);
}

.process-step:hover .process-point {
  background: var(--teal);
  color: var(--ivory);
  transform: translateY(-3px);
}

.process-point span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.process-content {
  padding-top: 34px;
}

.process-content h3 {
  margin: 0 0 14px;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.process-content p {
  max-width: 245px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* =========================================================
   About the studio
   ========================================================= */

.founder-section {
  background: var(--paper);
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 80px;
}

.founder-card {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius-md);
  background: var(--teal);
}

.founder-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.founder-copy {
  max-width: 650px;
}

.founder-copy > p:not(.eyebrow) {
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  font-size: 14px;
  font-weight: 600;
}

/* =========================================================
   Contact
   ========================================================= */

.contact-section {
  padding: clamp(100px, 12vw, 164px) 0;
  background: var(--teal);
  color: var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 9vw, 130px);
}

.contact-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 30px 0 0;
  color: rgba(246, 242, 235, 0.72);
  font-size: 17px;
}

.contact-email {
  display: inline-block;
  margin-top: 34px;
  border-bottom: 1px solid rgba(246, 242, 235, 0.45);
  font-size: 16px;
}

.contact-form {
  display: grid;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 9px;
}

.contact-form label > span {
  color: rgba(246, 242, 235, 0.7);
  font-size: 12px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(246, 242, 235, 0.35);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ivory);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--ivory);
}

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

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

.contact-form ::placeholder {
  color: rgba(246, 242, 235, 0.42);
}

.button-light {
  justify-self: start;
  margin-top: 10px;
  background: var(--ivory);
  color: var(--teal);
}

.form-note {
  margin: -8px 0 0;
  color: rgba(246, 242, 235, 0.48);
  font-size: 11px;
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  padding: 72px 0 30px;
  background: #17383c;
  color: var(--ivory);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 80px;
}

.footer-logo {
  width: 200px;
  height: 176px;
  object-fit: contain;
  object-position: left center;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-links > div {
  display: grid;
  gap: 8px;
}

.footer-links span {
  color: rgba(246, 242, 235, 0.48);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links p {
  margin: 0;
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 30px;
  margin-top: 70px;
  border-top: 1px solid rgba(246, 242, 235, 0.14);
  color: rgba(246, 242, 235, 0.5);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

/* =========================================================
   Reveal animation
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

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

/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-logo {
    width: 140px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    padding: 180px 24px;
    background: var(--paper);
    font-size: 28px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav .nav-cta {
    padding: 0;
    border: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(1) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    min-height: 88svh;
    padding: 138px 0 90px;
  }

  .hero h1 {
    font-size: clamp(62px, 12vw, 96px);
  }

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

  .project-wide {
    grid-column: auto;
  }

  .project-preview,
  .project:not(.project-wide) .project-preview {
    min-height: 430px;
  }

  .statement-grid,
  .split-heading,
  .founder-grid,
  .contact-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .statement-grid {
    gap: 76px;
  }

  .statement-visual {
    width: 100%;
    max-width: 660px;
    min-height: 520px;
    margin-inline: auto;
  }

  .service {
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .service > p {
    grid-column: 1 / -1;
  }

  .process-heading {
    margin-bottom: 70px;
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 58px 36px;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step::before {
    content: "";
    position: absolute;
    top: 47px;
    bottom: -58px;
    left: 23px;
    width: 1px;
    background: var(--line);
  }

  .process-step:nth-last-child(-n + 2)::before {
    display: none;
  }

  .founder-grid {
    gap: 60px;
  }

  .founder-card {
    width: min(100%, 620px);
    margin-inline: auto;
    aspect-ratio: 1 / 1;
  }

  .founder-copy {
    max-width: 680px;
  }

  .contact-grid {
    gap: 80px;
  }

  .footer-main {
    gap: 60px;
  }
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 28px);
    --radius-lg: 22px;
    --radius-md: 16px;
  }

  .hero {
    min-height: 86svh;
    padding: 112px 0 72px;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 76px);
    line-height: 0.96;
  }

  .hero-lede {
    max-width: 420px;
    margin-top: 26px;
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 18px;
    margin-top: 34px;
  }

  .section {
    padding: 96px 0;
  }

  .section-heading {
    margin-bottom: 46px;
  }

  .section-heading h2,
  .statement-copy h2,
  .founder-copy h2,
  .contact-copy h2,
  .process-heading h2 {
    font-size: clamp(40px, 12vw, 62px);
  }

  .project-preview,
  .project:not(.project-wide) .project-preview {
    min-height: 160px;
  }

  .project-meta {
    align-items: flex-start;
  }

  .statement-visual {
    min-height: 460px;
  }

  .concept-card {
    width: 84%;
    padding: 16px;
  }

  .generic-layout,
  .custom-layout {
    min-height: 190px;
  }

  .service {
    grid-template-columns: 1fr auto;
    padding: 30px 0;
  }

  .service:hover {
    padding-left: 0;
    background: transparent;
  }

  .service-mark {
    display: none;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 22px;
    padding-bottom: 52px;
  }

  .process-step::before {
    display: block !important;
    top: 47px;
    bottom: 0;
    left: 23px;
  }

  .process-step:last-child::before {
    display: none !important;
  }

  .process-content {
    padding-top: 7px;
  }

  .process-content p {
    max-width: none;
  }

  .founder-card {
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   Reduced motion
   ========================================================= */

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

.project-image {
  position: relative;
  background: var(--ivory);
  border: 1px solid var(--line);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s var(--ease);
}

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