:root {
  --paper: #fbf8f3;
  --ink: #26102d;
  --muted: #625765;
  --line: #ddd3cc;
  --pink: #e70c66;
  --orange: #ff650a;
  --gold: #f2a31e;
  --plum: #5c0c4e;
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] { display: none !important; }
.form-trap { position: absolute !important; left: -9999px !important; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  overflow-x: hidden;
}

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

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: -80px;
  left: 18px;
  padding: 12px 18px;
  background: var(--ink);
  color: white;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 18px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(38, 16, 45, 0.08);
  background: rgba(251, 248, 243, 0.93);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1360px);
  min-height: 86px;
  margin: auto;
  padding: 0 4.8vw;
}

.brand {
  flex: 0 0 auto;
}

.brand img,
.footer-brand img {
  width: 170px;
  height: auto;
  mix-blend-mode: multiply;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.35vw, 38px);
  font-size: 10px;
  font-weight: 600;
}

.main-nav a:not(.nav-cta) {
  position: relative;
  letter-spacing: 0.015em;
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0 25px;
  color: white;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.nav-cta,
.button-orange {
  background: var(--orange);
}

.button-pink {
  background: var(--pink);
}

.nav-cta:hover,
.button:hover {
  box-shadow: 0 12px 24px rgba(92, 12, 78, 0.16);
  filter: saturate(1.08);
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
}

.section-frame {
  width: min(calc(100% - 4vw), 1360px);
  margin: 0 auto;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.hero {
  position: relative;
  display: grid;
  min-height: 610px;
  grid-template-columns: 48% 52%;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, var(--paper) 0%, rgba(251, 248, 243, 0.82) 9%, rgba(251, 248, 243, 0) 30%),
    linear-gradient(0deg, rgba(31, 12, 14, 0.07), rgba(31, 12, 14, 0.07)),
    url("/assets/hero-restaurant.webp") center / cover;
  animation: hero-breathe 16s ease-in-out infinite alternate;
}

.hero-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--paper) 0%, var(--paper) 33%, rgba(251, 248, 243, .96) 38%, rgba(251, 248, 243, .38) 52%, rgba(251, 248, 243, .04) 68%), linear-gradient(0deg, rgba(31, 12, 14, .08), rgba(31, 12, 14, .08));
  content: "";
}

@keyframes hero-breathe {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.035);
  }
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 70px 0 68px 6.8vw;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--pink);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.19em;
}

.hero h1,
.contact h2,
.insights h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 4.2vw, 68px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.hero-description {
  width: min(410px, 90%);
  margin: 29px 0;
  color: #33283a;
  font-size: 13px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.hero-stroke {
  position: absolute;
  z-index: 1;
  top: 48%;
  left: 40%;
  width: 165px;
  height: 85px;
  transform: rotate(-9deg);
}

.hero-stroke span {
  position: absolute;
  top: 30px;
  left: 0;
  width: 145px;
  height: 18px;
  border-top: 4px solid var(--pink);
  border-radius: 50%;
  opacity: 0.7;
  transform: rotate(-7deg);
}

.hero-stroke span:last-child {
  top: 46px;
  left: 21px;
  width: 115px;
  border-width: 2px;
  opacity: 0.5;
  transform: rotate(8deg);
}

.services,
.projects {
  padding: 38px 5.6vw 48px;
}

.section-heading {
  display: flex;
  align-items: center;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 3.2vw, 47px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.section-heading em {
  color: var(--pink);
  font-weight: 500;
}

.service-heading {
  align-items: center;
  margin-bottom: 25px;
}

.service-heading img {
  width: 132px;
  margin: 0 -5px 0 10px;
  mix-blend-mode: multiply;
}

.question-mark {
  color: var(--orange);
  font-family: var(--display);
  font-size: 37px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  position: relative;
  min-height: 250px;
  padding: 16px 34px 10px;
  text-align: center;
}

.service-card + .service-card::before {
  position: absolute;
  top: 14px;
  bottom: 5px;
  left: 0;
  width: 1px;
  background: var(--line);
  content: "";
}

.service-icon {
  height: 74px;
}

.service-icon svg {
  width: 59px;
  height: 59px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.service-1 .service-icon {
  color: var(--pink);
}

.service-2 .service-icon {
  color: var(--orange);
}

.service-3 .service-icon {
  color: var(--gold);
}

.service-4 .service-icon {
  color: var(--plum);
}

.service-card h3 {
  margin: 5px 0 10px;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
}

.service-card p {
  max-width: 210px;
  margin: auto;
  color: #352b37;
  font-size: 12px;
  line-height: 1.65;
}

.projects {
  padding-top: 34px;
}

.projects-heading {
  justify-content: space-between;
  margin-bottom: 26px;
}

.projects-heading a,
.text-link {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.visual-diary-heading { width: min(460px, 100%); margin: 8px auto 30px; text-align: center; }
.visual-diary-heading h2 { margin: 0; font-family: var(--display); font-size: clamp(38px, 4vw, 58px); font-weight: 500; line-height: 1; }
.visual-diary-heading h2 em { color: var(--pink); font-weight: 500; }
.visual-diary-heading > p:last-child { margin: 16px auto 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.project-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.project-filters button { min-height: 34px; border: 1px solid var(--ink); border-radius: 99px; padding: 0 18px; background: transparent; color: var(--ink); cursor: pointer; font-size: 9px; }
.project-filters button.is-active { background: var(--ink); color: white; }
.project-carousel { position: relative; height: 390px; margin: 0 -5.6vw; overflow: hidden; perspective: 1200px; }
.carousel-card { position: absolute; top: 32px; left: calc(50% - 135px); width: min(270px, 23vw); opacity: 0; pointer-events: none; transform: scale(.78); transform-origin: top left; transition: left 600ms cubic-bezier(.2,.75,.2,1), transform 600ms cubic-bezier(.2,.75,.2,1), opacity 400ms ease, filter 400ms ease; }
.carousel-card.offset-0 { z-index: 4; top: 0; opacity: 1; pointer-events: auto; transform: scale(1); }
.carousel-card.offset--1, .carousel-card.offset-1 { z-index: 3; opacity: .78; pointer-events: auto; filter: saturate(.8); }
.carousel-card.offset--2, .carousel-card.offset-2 { z-index: 2; opacity: .45; pointer-events: auto; filter: saturate(.6); }
.carousel-card.offset--1 { left: calc(50% - 435px); transform: scale(.78); }
.carousel-card.offset-1 { left: calc(50% + 165px); transform: scale(.78); }
.carousel-card.offset--2 { left: 32px; transform: scale(.7); }
.carousel-card.offset-2 { left: calc(100% - 221px); transform: scale(.7); }
.carousel-card .project-image-wrap { height: 300px; border-radius: 18px; box-shadow: 0 18px 45px rgba(38,16,45,.14); }
.carousel-card.offset-0 .project-caption { opacity: 1; transform: translateY(0); }
.project-caption { display: block; opacity: 0; text-align: center; transform: translateY(6px); transition: .3s ease; }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 16px; }
.carousel-controls button { width: 38px; height: 38px; border: 1px solid var(--ink); border-radius: 50%; background: transparent; cursor: pointer; color: var(--ink); }
.carousel-controls span { min-width: 38px; color: var(--muted); font-size: 9px; text-align: center; }

.project-card {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.project-image-wrap {
  position: relative;
  display: block;
  height: clamp(160px, 17vw, 238px);
  margin-bottom: 15px;
  overflow: hidden;
}

.project-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(38, 16, 45, 0.72));
  content: "";
  opacity: 0;
  transition: opacity 300ms ease;
}

.project-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.project-image-wrap > span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  color: white;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 300ms ease,
    transform 300ms ease;
}

.project-card:hover .project-image-wrap img {
  transform: scale(1.06);
}

.project-card:hover .project-image-wrap::after,
.project-card:hover .project-image-wrap > span {
  opacity: 1;
}

.project-card:hover .project-image-wrap > span {
  transform: translateY(0);
}

.project-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
}

.project-card small {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  line-height: 1.5;
}

.method {
  display: grid;
  grid-template-columns: 64% 36%;
}

.method-main {
  padding: 32px 4.5vw 40px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 21px;
}

.method-step {
  position: relative;
  min-height: 202px;
  padding: 0 25px 0 0;
}

.method-step + .method-step {
  padding-left: 25px;
}

.method-step + .method-step::before {
  position: absolute;
  top: 4px;
  bottom: 0;
  left: 0;
  width: 1px;
  background: var(--line);
  content: "";
}

.step-number {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 33px;
}

.method-step svg {
  width: 43px;
  height: 43px;
  margin-bottom: 10px;
  fill: none;
  stroke: var(--plum);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.method-step h3 {
  margin: 0 0 7px;
  font-size: 10px;
  font-weight: 600;
}

.method-step p {
  margin: 0;
  font-size: 9px;
  line-height: 1.5;
}

.manifesto {
  position: relative;
  display: flex;
  min-height: 342px;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 40px 4.2vw;
  background: linear-gradient(128deg, #d30763 0%, #ef2c56 47%, #ff6b08 100%);
  color: white;
}

.manifesto::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 20%, rgba(255, 183, 51, 0.5), transparent 33%);
  content: "";
}

.manifesto > * {
  position: relative;
  z-index: 1;
}

.manifesto-title {
  width: 290px;
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: 35px;
  line-height: 1.05;
}

.manifesto p:not(.manifesto-title) {
  margin: 0 0 19px;
  font-size: 11px;
}

.manifesto em {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.15;
}

.manifesto-lines {
  position: absolute;
  z-index: 0;
  right: -30px;
  bottom: 15px;
  width: 200px;
  height: 80px;
  transform: rotate(-13deg);
}

.manifesto-lines span {
  position: absolute;
  right: 0;
  width: 190px;
  border-top: 3px solid rgba(255, 177, 40, 0.5);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.manifesto-lines span:nth-child(2) {
  top: 19px;
  width: 165px;
}

.manifesto-lines span:nth-child(3) {
  top: 40px;
  width: 145px;
}

.insights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 85px 7vw;
  background: #f6f0eb;
}

.insights-copy {
  padding-right: 8vw;
}

.insights h2 em {
  color: var(--orange);
}

.insights-copy > p:not(.eyebrow) {
  margin: 28px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.insight-metrics {
  display: grid;
  align-content: center;
}

.insight-metrics > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.insight-metrics > div:last-child {
  border-bottom: 1px solid var(--line);
}

.insight-metrics strong {
  color: var(--pink);
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
}

.insight-metrics span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
  padding: 82px 7vw;
}

.contact h2 {
  font-size: clamp(39px, 4vw, 59px);
}

.contact-intro > p:not(.eyebrow) {
  max-width: 470px;
  margin: 25px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 35px;
}

.social-row a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.social-row svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--pink);
  stroke-width: 1.8;
}

.social-row a:nth-child(2) svg {
  fill: var(--orange);
  stroke: none;
}

.social-row .social-dot {
  fill: var(--pink);
  stroke: none;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form label:nth-child(3),
.contact-form label:nth-child(4) {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfc2c6;
  border-radius: 0;
  outline: none;
  padding: 14px 15px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  font-size: 12px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(231, 12, 102, 0.09);
}

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

.form-button {
  justify-self: start;
  cursor: pointer;
}

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

.form-status {
  align-self: center;
  margin: 0;
  font-size: 10px;
  line-height: 1.5;
}

.status-success {
  color: #267444;
}

.status-error {
  color: #ad243f;
}

.site-footer {
  display: grid;
  width: min(calc(100% - 4vw), 1360px);
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 30px;
  margin: 0 auto 35px;
  border: 1px solid var(--line);
  border-top: 0;
  padding: 35px 5.6vw;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.6;
}

.site-footer p:last-child {
  text-align: right;
}
.footer-legal { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.footer-legal button { border: 0; padding: 0; background: transparent; color: var(--muted); cursor: pointer; font-size: 9px; text-decoration: underline; }

.project-modal {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(31, 10, 31, 0.76);
  backdrop-filter: blur(12px);
  animation: modal-in 240ms ease both;
}

@keyframes modal-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-card {
  position: relative;
  display: grid;
  width: min(920px, 96vw);
  grid-template-columns: 1.3fr 0.7fr;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(18, 6, 22, 0.38);
}

.modal-card > img,
.modal-gallery img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.modal-gallery { position: relative; min-width: 0; }
.modal-gallery img { display: block; }
.modal-gallery button { position: absolute; top: 50%; width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(251,248,243,.9); color: var(--ink); cursor: pointer; transform: translateY(-50%); }
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }
.modal-gallery > span { position: absolute; right: 18px; bottom: 16px; margin: 0; border-radius: 99px; padding: 7px 11px; background: rgba(38,16,45,.72); color: white; font-size: 9px; }
.modal-card .project-description { margin: 0 0 28px; color: var(--muted); font-size: 11px; font-weight: 400; letter-spacing: 0; line-height: 1.65; text-transform: none; }
.presentation-card { position: relative; width: min(1180px, 96vw); height: min(720px, 88vh); overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 24px; background: #111; box-shadow: 0 30px 90px rgba(18,6,22,.45); }
.presentation-card iframe { display: block; width: 100%; height: 100%; border: 0; border-radius: inherit; }
.presentation-card .modal-close { top: 16px; right: 16px; border-radius: 50%; box-shadow: 0 8px 20px rgba(18,6,22,.2); }
.legal-card { position: relative; width: min(680px, 94vw); max-height: 84vh; overflow-y: auto; padding: 55px clamp(28px, 5vw, 65px); background: var(--paper); box-shadow: 0 30px 90px rgba(18,6,22,.38); }
.legal-card h2 { margin: 0 0 25px; font-family: var(--display); font-size: 42px; font-weight: 500; }
.legal-card h3 { margin: 28px 0 8px; font-size: 12px; }
.legal-card p { color: var(--muted); font-size: 12px; line-height: 1.8; }
.cookie-banner { position: fixed; z-index: 80; right: 18px; bottom: 18px; left: 18px; display: flex; width: min(820px, calc(100% - 36px)); align-items: center; justify-content: space-between; gap: 30px; margin: auto; border: 1px solid rgba(255,255,255,.15); padding: 20px 24px; background: rgba(38,16,45,.97); color: white; box-shadow: 0 18px 55px rgba(18,6,22,.3); backdrop-filter: blur(12px); }
.cookie-banner strong { font-family: var(--display); font-size: 22px; font-weight: 500; }
.cookie-banner p { margin: 5px 0; color: rgba(255,255,255,.75); font-size: 10px; line-height: 1.5; }
.cookie-link { border: 0; padding: 0; background: transparent; color: white; cursor: pointer; font-size: 9px; text-decoration: underline; }
.cookie-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 12px; }
.cookie-actions > button:first-child { border: 0; background: transparent; color: white; cursor: pointer; font-size: 9px; }

.modal-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 45px;
}

.modal-card p {
  margin: 0 0 16px;
  color: var(--pink);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal-card h2 {
  margin: 0 0 15px;
  font-family: var(--display);
  font-size: 43px;
  font-weight: 500;
  line-height: 1;
}

.modal-card span {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 39px;
  height: 39px;
  border: 0;
  background: rgba(251, 248, 243, 0.9);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--display);
  font-size: 28px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease var(--delay, 0ms),
    transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1) var(--delay, 0ms);
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  .header-inner {
    min-height: 72px;
    padding: 0 24px;
  }

  .brand img {
    width: 145px;
  }

  .menu-toggle {
    position: relative;
    z-index: 52;
    display: grid;
    width: 44px;
    height: 44px;
    border: 0;
    padding: 13px 9px;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 26px;
    height: 1px;
    margin: auto;
    background: var(--ink);
    transition: transform 220ms ease;
  }

  .menu-toggle.is-open span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .menu-toggle.is-open span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 51;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    background: var(--paper);
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition:
      opacity 240ms ease,
      transform 240ms ease;
  }

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

  .hero {
    min-height: 660px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 70px 6vw;
  }

  .hero-image {
    inset: 0;
    background:
      linear-gradient(90deg, rgba(251, 248, 243, 0.96) 0%, rgba(251, 248, 243, 0.72) 48%, rgba(251, 248, 243, 0.18) 100%),
      url("/assets/hero-restaurant.webp") center / cover;
  }
  .hero-image::after { background: linear-gradient(90deg, rgba(251,248,243,.96), rgba(251,248,243,.68) 55%, rgba(251,248,243,.15)); }

  .hero-stroke {
    left: 42%;
  }

  .carousel-card { width: 250px; }
  .carousel-card.offset-0 { left: calc(50% - 125px); }
  .carousel-card.offset--1 { left: calc(50% - 385px); transform: scale(.78); }
  .carousel-card.offset-1 { left: calc(50% + 135px); transform: scale(.78); }
  .carousel-card.offset--2 { left: 22px; transform: scale(.7); }
  .carousel-card.offset-2 { left: calc(100% - 197px); transform: scale(.7); }

  .project-image-wrap {
    height: 270px;
  }

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

  .manifesto {
    min-height: 300px;
  }

  .insights,
  .contact {
    gap: 55px;
    grid-template-columns: 1fr;
  }

  .insights-copy {
    padding-right: 0;
  }
}

@media (max-width: 680px) {
  .section-frame,
  .site-footer {
    width: calc(100% - 20px);
  }

  .hero {
    min-height: 660px;
  }

  .hero-image {
    background:
      linear-gradient(180deg, rgba(251, 248, 243, 0.9) 0%, rgba(251, 248, 243, 0.74) 56%, rgba(251, 248, 243, 0.18) 100%),
      url("/assets/hero-restaurant.webp") 58% center / cover;
  }
  .hero-image::after { background: linear-gradient(180deg, rgba(251,248,243,.88), rgba(251,248,243,.72) 58%, rgba(251,248,243,.12)); }

  .hero-copy {
    align-self: end;
    padding: 74px 25px 42px;
  }

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

  .hero-description {
    width: 100%;
    font-size: 11px;
  }

  .hero-actions {
    gap: 11px;
  }

  .button {
    min-height: 42px;
    padding: 0 17px;
    font-size: 9px;
  }

  .hero-stroke {
    top: 37%;
    left: 50%;
    opacity: 0.6;
  }

  .services,
  .projects {
    padding: 34px 22px;
  }
  .project-carousel { height: 350px; margin: 0 -22px; }
  .carousel-card { width: 224px; }
  .carousel-card.offset-0 { left: calc(50% - 112px); }
  .carousel-card.offset--1 { left: calc(50% - 322px); transform: scale(.78); }
  .carousel-card.offset-1 { left: calc(50% + 98px); transform: scale(.78); }
  .carousel-card.offset--2 { left: 12px; transform: scale(.7); }
  .carousel-card.offset-2 { left: calc(100% - 169px); transform: scale(.7); }
  .carousel-card .project-image-wrap { height: 270px; }
  .project-filters { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; padding-bottom: 6px; }
  .project-filters button { flex: 0 0 auto; }
  .cookie-banner { align-items: flex-start; flex-direction: column; gap: 14px; padding: 18px; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
  .modal-card { grid-template-columns: 1fr; max-height: 90vh; overflow-y: auto; }
  .modal-gallery img { height: 350px; }

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

  .service-heading img {
    width: 106px;
  }

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

  .service-card {
    min-height: 225px;
    padding: 16px 14px;
  }

  .service-card:nth-child(3)::before {
    display: none;
  }

  .service-card:nth-child(n + 3) {
    border-top: 1px solid var(--line);
    padding-top: 27px;
  }

  .service-card h3 {
    font-size: 23px;
  }

  .service-card p {
    font-size: 10px;
  }

  .projects-heading {
    align-items: flex-end;
  }

  .projects-heading h2 {
    max-width: 200px;
  }

  .projects-heading a {
    max-width: 85px;
    text-align: right;
  }

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

  .project-image-wrap {
    height: 255px;
  }

  .method-main {
    padding: 34px 23px;
  }

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

  .method-step {
    padding: 0 18px 25px 0;
  }

  .method-step + .method-step {
    padding-left: 18px;
  }

  .method-step:nth-child(3) {
    border-top: 1px solid var(--line);
    padding-top: 25px;
    padding-left: 0;
  }

  .method-step:nth-child(3)::before {
    display: none;
  }

  .method-step:nth-child(4) {
    border-top: 1px solid var(--line);
    padding-top: 25px;
  }

  .manifesto {
    min-height: 320px;
    padding: 45px 35px;
  }

  .manifesto-title {
    width: 240px;
    font-size: 33px;
  }

  .insights,
  .contact {
    padding: 64px 25px;
  }

  .insight-metrics > div {
    grid-template-columns: 100px 1fr;
    gap: 15px;
  }

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

  .contact-form label:nth-child(3),
  .contact-form label:nth-child(4) {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 35px 25px;
  }

  .site-footer p:last-child {
    text-align: left;
  }

  .modal-card {
    max-height: 90vh;
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .modal-card > img {
    height: 290px;
  }

  .modal-card > div {
    padding: 30px;
  }
}
