:root {
  --ivory: #f4efe6;
  --warm-white: #fcfaf6;
  --espresso: #2d241f;
  --sage: #7e8a72;
  --sage-dark: #626d59;
  --taupe: #b9aa98;
  --stone: #ded6ca;
  --line: rgba(45, 36, 31, 0.16);
  --serif: "Bodoni 72", Didot, "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --shell: min(1340px, calc(100vw - 112px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--espresso);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

body.co-portfolio-page {
  overflow-x: hidden;
  overflow-x: clip;
}

.co-site {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body.admin-bar .site-header {
  top: 32px;
}

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

button {
  color: inherit;
  font: inherit;
}

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

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

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(45, 36, 31, 0.08);
  background: rgba(244, 239, 230, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 94px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: max-content;
}

.brand-mark {
  position: relative;
  width: 66px;
  height: 54px;
  color: var(--sage-dark);
  flex: 0 0 66px;
}

.brand-mark span {
  position: absolute;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1;
}

.brand-mark span:first-child {
  left: 0;
  top: 0;
}

.brand-mark span:last-child {
  right: 0;
  bottom: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 6px;
  color: rgba(45, 36, 31, 0.58);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
}

.site-nav a {
  position: relative;
  padding: 34px 0 32px;
  font-size: 13px;
  font-weight: 500;
}

.site-nav a::after {
  position: absolute;
  bottom: 26px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sage-dark);
  content: "";
  transition: width 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.language-switch {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.language-switch button {
  position: relative;
  border: 0;
  background: transparent;
  padding: 8px 2px;
  color: rgba(45, 36, 31, 0.54);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.language-switch button.active {
  color: var(--sage-dark);
}

.language-switch button.active::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
}

.language-switch span {
  color: rgba(45, 36, 31, 0.3);
}

.mobile-language,
.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  min-height: calc(100vh - 94px);
  grid-template-columns: minmax(390px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(38px, 5vw, 82px);
  padding-block: 54px 72px;
}

.hero-copy {
  position: relative;
  padding-left: 74px;
}

.section-number {
  position: absolute;
  top: 2px;
  left: 0;
  color: var(--sage-dark);
  font-family: var(--serif);
  font-size: 15px;
}

.section-number::after {
  position: absolute;
  top: 35px;
  left: 7px;
  width: 1px;
  height: 238px;
  background: var(--sage);
  content: "";
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--sage-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 610px;
  font-size: clamp(54px, 5.5vw, 84px);
  line-height: 0.98;
}

.hero-description {
  max-width: 570px;
  margin: 28px 0 0;
  color: rgba(45, 36, 31, 0.7);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid transparent;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

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

.button-primary {
  min-width: 230px;
  border-color: var(--espresso);
  border-radius: 10px;
  background: var(--espresso);
  color: var(--ivory);
}

.button-primary:hover {
  border-color: var(--sage-dark);
  background: var(--sage-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--sage);
  padding: 10px 0 7px;
  font-size: 13px;
  font-weight: 500;
}

.text-link span,
.button span,
.instagram-link span {
  transition: transform 220ms ease;
}

.text-link:hover span,
.button:hover span,
.instagram-link:hover span {
  transform: translateX(4px);
}

.location-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 54px 0 0;
  color: rgba(45, 36, 31, 0.64);
  font-size: 12px;
}

.location-pin {
  color: var(--sage-dark);
  font-size: 22px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: min(720px, calc(100vh - 180px));
  border-radius: 18px;
  background: var(--stone);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-media > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transition: transform 1.1s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.hero-media:hover > img {
  transform: scale(1.018);
}

.hero-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: 90px;
  height: 90px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(45, 36, 31, 0.66);
  color: white;
  backdrop-filter: blur(10px);
}

.hero-badge strong {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
}

.hero-badge span {
  margin-top: 5px;
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.reveal {
  animation: reveal-in 650ms ease-out both;
}

.hero-media.reveal {
  animation-delay: 100ms;
}

@keyframes reveal-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.trust-bar {
  border-block: 1px solid var(--line);
  background: var(--ivory);
}

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

.trust-inner > div {
  display: flex;
  min-height: 100px;
  align-items: center;
  gap: 18px;
  border-right: 1px solid var(--line);
  padding-inline: 36px;
}

.trust-inner > div:first-child {
  border-left: 1px solid var(--line);
}

.trust-inner span {
  color: var(--sage);
  font-family: var(--serif);
  font-size: 15px;
}

.trust-inner p {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(92px, 10vw, 150px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 68px;
}

.section-heading h2,
.process-heading h2,
.about-copy h2,
.contact h2,
.audiences-title h2 {
  max-width: 760px;
  font-size: clamp(45px, 5vw, 72px);
  line-height: 1.03;
}

.section-heading > p {
  margin: 0 0 8px;
  color: rgba(45, 36, 31, 0.66);
  line-height: 1.8;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 52px 26px;
}

.project-card {
  grid-column: span 6;
}

.project-card-1,
.project-card-4 {
  grid-column: span 7;
}

.project-card-2,
.project-card-3 {
  grid-column: span 5;
}

.project-card button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.project-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  background: var(--stone);
}

.project-card-2 .project-image,
.project-card-3 .project-image {
  aspect-ratio: 4 / 3;
}

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

.project-overlay {
  position: absolute;
  inset: auto 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  background: rgba(45, 36, 31, 0.82);
  color: white;
  opacity: 0;
  padding: 16px 18px;
  transform: translateY(10px);
  transition: opacity 250ms ease, transform 250ms ease;
  backdrop-filter: blur(10px);
}

.project-overlay span:first-child {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card button:hover .project-image img,
.project-card button:focus-visible .project-image img {
  transform: scale(1.025);
}

.project-card button:hover .project-overlay,
.project-card button:focus-visible .project-overlay {
  opacity: 1;
  transform: translateY(0);
}

.project-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
}

.project-meta > span {
  display: flex;
  flex-direction: column;
}

.project-meta small {
  color: var(--sage-dark);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-meta strong {
  margin-top: 5px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 500;
  line-height: 1.15;
}

.project-meta > small {
  color: rgba(45, 36, 31, 0.48);
  white-space: nowrap;
}

.services {
  background: var(--espresso);
  color: var(--ivory);
}

.service-heading .eyebrow {
  color: var(--taupe);
}

.service-heading > p {
  color: rgba(244, 239, 230, 0.64);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid rgba(244, 239, 230, 0.2);
}

.service-grid article {
  min-height: 370px;
  border-right: 1px solid rgba(244, 239, 230, 0.2);
  padding: 34px 42px 48px;
}

.service-grid article:first-child {
  border-left: 1px solid rgba(244, 239, 230, 0.2);
}

.service-grid span {
  color: var(--taupe);
  font-family: var(--serif);
  font-size: 15px;
}

.service-grid h3 {
  max-width: 280px;
  margin: 92px 0 20px;
  font-family: var(--serif);
  font-size: clamp(28px, 2.8vw, 39px);
  font-weight: 500;
  line-height: 1.08;
}

.service-grid p {
  margin: 0;
  color: rgba(244, 239, 230, 0.64);
  line-height: 1.75;
}

.audiences {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 9vw;
}

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

.audience-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}

.audience-list article > span {
  color: var(--sage);
  font-family: var(--serif);
}

.audience-list h3,
.process-grid h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.audience-list p {
  max-width: 650px;
  margin: 0;
  color: rgba(45, 36, 31, 0.64);
  line-height: 1.8;
}

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

.process-heading {
  max-width: 800px;
  margin-bottom: 62px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.process-grid article {
  min-height: 320px;
  border-right: 1px solid var(--line);
  padding: 28px 30px 36px;
}

.process-grid article:first-child {
  border-left: 1px solid var(--line);
}

.process-grid article > span {
  color: var(--sage-dark);
  font-family: var(--serif);
}

.process-grid article div {
  margin-top: 88px;
}

.process-grid p {
  margin: 0;
  color: rgba(45, 36, 31, 0.62);
  line-height: 1.75;
}

.about {
  display: grid;
  grid-template-columns: minmax(330px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(70px, 9vw, 140px);
}

.about-photo {
  position: relative;
  min-height: 650px;
}

.about-photo > img {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 78%;
  height: 86%;
  border-radius: 180px 180px 16px 16px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82);
}

.about-frame {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 78%;
  height: 86%;
  border: 1px solid var(--sage);
  border-radius: 180px 180px 16px 16px;
}

.about-signature {
  position: absolute;
  z-index: 3;
  bottom: 44px;
  left: 0;
  padding: 14px 20px;
  background: var(--warm-white);
  color: var(--sage-dark);
  font-family: var(--serif);
  font-size: 30px;
  font-style: italic;
  line-height: 0.9;
}

.about-copy h2 {
  margin-bottom: 34px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 0 18px;
  color: rgba(45, 36, 31, 0.7);
  font-size: 17px;
  line-height: 1.85;
}

.tools {
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.tools small {
  color: var(--sage-dark);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.tools ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.tools li {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 8px 14px;
  font-size: 11px;
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--sage-dark);
  color: var(--warm-white);
}

.contact-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.contact h2 {
  max-width: 930px;
  margin-inline: auto;
  font-size: clamp(48px, 6vw, 86px);
}

.contact-inner > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 38px;
}

.button-light {
  min-width: 230px;
  border-radius: 10px;
  background: var(--warm-white);
  color: var(--espresso);
}

.button-light:hover {
  background: var(--espresso);
  color: var(--warm-white);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding: 9px 0;
  font-size: 13px;
}

.contact-art {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 540px;
  height: 280px;
  color: rgba(255, 255, 255, 0.06);
  transform: translate(-50%, -50%);
}

.contact-art span {
  position: absolute;
  display: grid;
  width: 280px;
  height: 280px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 160px;
}

.contact-art span:first-child {
  left: 0;
}

.contact-art span:last-child {
  right: 0;
}

footer {
  background: var(--espresso);
  color: var(--ivory);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  align-items: start;
  gap: 60px;
  padding-block: 70px;
}

footer .brand-mark {
  color: var(--taupe);
}

footer .brand-copy small,
.footer-inner > p,
.footer-inner small {
  color: rgba(244, 239, 230, 0.58);
}

.footer-inner > p {
  max-width: 330px;
  margin: 8px 0 0;
  font-size: 14px;
}

.footer-inner > div {
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px 26px;
  justify-self: end;
}

.footer-inner > div a {
  font-size: 13px;
}

.footer-inner > div small {
  grid-column: 1 / -1;
  margin-top: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(244, 239, 230, 0.14);
  padding-block: 20px 28px;
  color: rgba(244, 239, 230, 0.42);
}

.footer-bottom small {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 32px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(26, 22, 19, 0.92);
  cursor: zoom-out;
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  overflow: hidden;
  width: min(1240px, 96vw);
  max-height: 94vh;
  flex-direction: column;
  border-radius: 12px;
  background: var(--warm-white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 16px 26px;
}

.lightbox-header small {
  color: var(--sage-dark);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lightbox-header h2 {
  margin-top: 2px;
  font-size: 28px;
}

.lightbox-close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

.lightbox-stage {
  position: relative;
  display: grid;
  min-height: 0;
  flex: 1;
  place-items: center;
  background: #171310;
}

.lightbox-stage > img {
  max-width: 100%;
  max-height: calc(94vh - 190px);
  object-fit: contain;
}

.lightbox-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(23, 19, 16, 0.58);
  color: white;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}

.lightbox-arrow.previous {
  left: 18px;
}

.lightbox-arrow.next {
  right: 18px;
}

.lightbox-footer {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 22px 14px 26px;
}

.lightbox-footer > p {
  max-width: 560px;
  margin: 0;
  color: rgba(45, 36, 31, 0.64);
  font-size: 12px;
}

.lightbox-thumbs {
  display: flex;
  gap: 7px;
}

.lightbox-thumbs button {
  overflow: hidden;
  width: 58px;
  height: 40px;
  border: 2px solid transparent;
  background: var(--stone);
  padding: 0;
  cursor: pointer;
  opacity: 0.55;
}

.lightbox-thumbs button.active {
  border-color: var(--sage-dark);
  opacity: 1;
}

.lightbox-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-whatsapp {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: #315b46;
  box-shadow: 0 12px 30px rgba(36, 58, 44, 0.26);
  transition: transform 200ms ease, background 200ms ease;
}

.floating-whatsapp:hover {
  background: #234735;
  transform: translateY(-3px);
}

.floating-whatsapp svg {
  width: 25px;
  fill: white;
}

:focus-visible {
  outline: 2px solid var(--sage-dark);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 56px, 1080px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
    border-top: 1px solid var(--line);
  }

  .site-nav a {
    padding-block: 16px 18px;
  }

  .site-nav a::after {
    bottom: 12px;
  }

  .header-inner {
    padding-top: 8px;
  }

  .hero {
    grid-template-columns: 1fr 1.1fr;
  }

  .hero-copy {
    padding-left: 0;
  }

  .section-number {
    display: none;
  }

  .service-grid article {
    padding-inline: 28px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid article:nth-child(3) {
    border-left: 1px solid var(--line);
  }
}

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

  html,
  body.co-portfolio-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
  }

  .co-site,
  .co-site *,
  .co-site *::before,
  .co-site *::after {
    min-width: 0;
  }

  .co-site .shell {
    width: calc(100% - 36px);
    max-width: calc(100% - 36px);
  }

  .co-site img {
    max-width: 100% !important;
  }

  .co-site section,
  .co-site header,
  .co-site footer {
    max-width: 100%;
  }

  .site-header {
    position: sticky;
  }

  body.admin-bar .site-header {
    top: 46px;
  }

  .header-inner {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
    min-height: 76px;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding-top: 0;
  }

  .brand {
    width: auto;
    max-width: 100%;
    gap: 10px;
    overflow: hidden;
  }

  .brand-mark {
    width: 48px;
    height: 40px;
    flex-basis: 48px;
  }

  .brand-mark span {
    width: 34px;
    height: 34px;
    font-size: 19px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong,
  .brand-copy small {
    display: block;
    overflow: hidden;
    white-space: nowrap;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .brand-copy small {
    max-width: 170px;
    margin-top: 4px;
    font-size: 7px;
    letter-spacing: 0.12em;
  }

  .desktop-language {
    display: none;
  }

  .mobile-language,
  .menu-toggle {
    display: flex;
  }

  .menu-toggle {
    position: relative;
    z-index: 60;
    justify-self: end;
    width: 42px;
    min-width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 25px;
    height: 1px;
    background: var(--espresso);
    transform-origin: center;
    transition: transform 180ms ease, width 180ms ease;
  }

  .menu-toggle span:last-child {
    width: 17px;
  }

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

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

  .site-nav {
    position: absolute;
    z-index: 55;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line);
    background: var(--ivory);
    padding: 10px 18px 24px;
    box-shadow: 0 24px 40px rgba(45, 36, 31, 0.1);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-bottom: 1px solid var(--line);
    padding: 16px 4px;
    font-family: var(--serif);
    font-size: 24px;
  }

  .site-nav a::after {
    display: none;
  }

  .mobile-language {
    justify-content: flex-start;
    margin-top: 16px;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 52px 44px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 66px);
    overflow-wrap: anywhere;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .button-primary,
  .button-light {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .location-line {
    align-items: flex-start;
    margin-top: 36px;
  }

  .hero-media {
    min-height: 450px;
    border-radius: 12px;
  }

  .hero-media > img {
    object-position: 52% center;
  }

  .hero-badge {
    right: 14px;
    bottom: 14px;
    width: 72px;
    height: 72px;
  }

  .trust-inner {
    grid-template-columns: 1fr;
  }

  .trust-inner > div,
  .trust-inner > div:first-child {
    min-height: 72px;
    border: 0;
    border-bottom: 1px solid var(--line);
    padding-inline: 4px;
  }

  .trust-inner > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 84px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 42px;
  }

  .section-heading h2,
  .process-heading h2,
  .about-copy h2,
  .contact h2,
  .audiences-title h2 {
    font-size: clamp(43px, 13vw, 58px);
  }

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

  .project-card,
  .project-card-1,
  .project-card-2,
  .project-card-3,
  .project-card-4 {
    grid-column: 1;
  }

  .project-card .project-image {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 3;
  }

  .project-image img,
  .hero-media > img,
  .about-photo > img {
    width: 100%;
    max-width: 100%;
  }

  .project-overlay {
    display: none;
  }

  .project-meta strong {
    font-size: 26px;
  }

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

  .service-grid article,
  .service-grid article:first-child {
    min-height: 0;
    border: 0;
    border-bottom: 1px solid rgba(244, 239, 230, 0.2);
    padding: 30px 4px 36px;
  }

  .service-grid h3 {
    margin-top: 48px;
    font-size: 36px;
  }

  .audiences {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .audience-list article {
    grid-template-columns: 34px 1fr;
    gap: 16px;
  }

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

  .process-grid article,
  .process-grid article:first-child,
  .process-grid article:nth-child(3) {
    min-height: 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 28px 4px 34px;
  }

  .process-grid article div {
    margin-top: 42px;
  }

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

  .about-photo {
    min-height: 520px;
  }

  .about-copy {
    order: -1;
  }

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

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .instagram-link {
    align-self: center;
  }

  .contact-art {
    width: min(360px, 112%);
    height: 190px;
  }

  .contact-art span {
    width: 190px;
    height: 190px;
    font-size: 100px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 56px;
  }

  .footer-inner > div {
    justify-self: start;
  }

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

  .lightbox {
    padding: 0;
  }

  .lightbox-dialog {
    width: 100%;
    max-width: 100%;
    max-height: 100dvh;
    min-height: 100dvh;
    border-radius: 0;
  }

  .lightbox-header {
    padding: 14px 16px;
  }

  .lightbox-header h2 {
    font-size: 22px;
  }

  .lightbox-stage > img {
    width: auto;
    max-width: 100%;
    max-height: calc(100dvh - 225px);
  }

  .lightbox-arrow {
    top: auto;
    bottom: 12px;
    transform: none;
  }

  .lightbox-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 16px 18px;
  }

  .lightbox-footer > p {
    display: none;
  }

  .lightbox-thumbs {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  body.co-portfolio-page .floating-whatsapp {
    position: fixed !important;
    right: max(14px, env(safe-area-inset-right)) !important;
    bottom: max(14px, env(safe-area-inset-bottom)) !important;
    left: auto !important;
    width: 54px !important;
    max-width: 54px !important;
    height: 54px !important;
    margin: 0 !important;
    transform: none !important;
  }
}

@media (max-width: 380px) {
  .header-inner {
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    gap: 8px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 42px;
    height: 36px;
    flex-basis: 42px;
  }

  .brand-mark span {
    width: 30px;
    height: 30px;
    font-size: 17px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy small {
    max-width: 150px;
    font-size: 6px;
    letter-spacing: 0.1em;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
