@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/SourceSans3.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ground: #241811;
  --surface: #31221A;
  --ink: #F4EEE1;
  --accent: #C1502E;
  --accent-deep: #C1502E;
  --plum-ink: #3B2233;
  --taupe: #6E5A48;
  --void: #1A0F16;
  --t-1: clamp(12px, 1.1vw, 14px);
  --t0: clamp(16px, 1.4vw, 18px);
  --t1: clamp(21px, 2vw, 24px);
  --t2: clamp(28px, 3.2vw, 42px);
  --t3: clamp(44px, 6.5vw, 92px);
  --grid-cols: 12;
  --gutter: 24px;
  --space: 8px;
  --phi: 1.618;
  --container-max: 1200px;
  --page-inset: 20px;
}

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

html {
  min-width: 320px;
  background: var(--ground);
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ground);
  color: var(--ink);
  font-family: "Source Sans 3", -apple-system, 'Helvetica Neue', Arial, sans-serif;
  font-size: var(--t0);
  font-weight: 400;
  line-height: 1.5;
}

body::after {
  position: fixed;
  z-index: 30;
  inset: 0;
  content: "";
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.72'/%3E%3C/svg%3E");
  pointer-events: none;
}

body.is-loading {
  height: 100%;
  overflow: hidden;
}

body,
button,
input,
select,
textarea {
  font-family: "Source Sans 3", -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a,
button,
input,
select,
textarea,
.service-card {
  cursor: pointer;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.02;
}

p {
  margin-bottom: calc(2 * var(--space));
}

::selection {
  background: var(--accent);
  color: var(--void);
}

.skip-link {
  position: fixed;
  z-index: 1200;
  top: var(--space);
  left: var(--space);
  padding: calc(1.5 * var(--space)) calc(2 * var(--space));
  transform: translateY(-200%);
  border: 1px solid var(--accent);
  background: var(--void);
  color: var(--ink);
}

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

.preloader {
  display: none;
  position: fixed;
  z-index: 1100;
  inset: 0;
  place-items: center;
  overflow: hidden;
  background: var(--void);
}

.js:not(.is-capture) .preloader {
  display: grid;
}

.preloader__lockup {
  display: grid;
  width: min(62vw, 300px);
  gap: calc(3 * var(--space));
  place-items: center;
}

.preloader__logo {
  width: min(62vw, 260px);
}

.preloader__line {
  width: min(48vw, 220px);
  height: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--accent);
}

.cursor-dot {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--ink);
  mix-blend-mode: difference;
  pointer-events: none;
  will-change: transform;
}

.has-custom-cursor .cursor-dot {
  display: block;
}

.has-custom-cursor,
.has-custom-cursor a,
.has-custom-cursor button,
.has-custom-cursor input,
.has-custom-cursor select,
.has-custom-cursor textarea,
.has-custom-cursor .service-card {
  cursor: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(193, 80, 46, 0.62);
  background: var(--ground);
  padding: calc(2 * var(--space)) var(--page-inset);
  transition: padding 280ms ease, background-color 280ms ease, box-shadow 280ms ease;
}

.site-header.is-scrolled {
  padding-block: var(--space);
  background: rgba(49, 34, 26, 0.72);
  box-shadow: 0 12px 36px rgba(36, 24, 17, 0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header__inner,
.section-inner,
.site-footer__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: calc(2 * var(--space));
}

.site-brand {
  display: grid;
  width: max-content;
  color: var(--ink);
  line-height: 1;
  text-decoration: none;
}

.site-brand__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.site-brand__studio {
  margin-top: 3px;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav__list,
.service-list,
.trust-strip,
.stat-strip__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space) calc(2 * var(--space));
}

.site-nav__item {
  display: flex;
}

.site-nav__link,
.site-footer__nav a {
  position: relative;
  min-height: 44px;
  color: var(--ink);
  font-size: var(--t-1);
  text-decoration: none;
}

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

.site-nav__link::after,
.site-footer__nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  background: var(--accent);
  transition: transform 240ms ease;
}

.site-nav__link:hover,
.site-nav__link.is-active,
.site-footer__nav a:hover {
  color: var(--accent);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after,
.site-footer__nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* Mobile navigation - hamburger + full-screen overlay (reset to inline nav at >=768px) */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(193, 80, 46, 0.55);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  transition: border-color 220ms ease, background-color 220ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--accent);
}

.nav-toggle:active {
  background: rgba(193, 80, 46, 0.12);
}

.nav-toggle__icon {
  width: 24px;
  height: 24px;
  color: var(--ink);
}

.nav-toggle__icon--close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon--open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon--close {
  display: inline-block;
}

.site-nav {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: calc(12 * var(--space)) var(--page-inset) calc(6 * var(--space));
  background: var(--ground);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 340ms ease, transform 340ms ease, visibility 0s linear 340ms;
}

.site-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 340ms ease, transform 340ms ease, visibility 0s;
}

.site-nav .site-nav__list {
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  gap: calc(3 * var(--space));
  width: 100%;
}

.site-nav__item {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

.site-nav.is-open .site-nav__item:nth-child(1) { transition-delay: 0.10s; }
.site-nav.is-open .site-nav__item:nth-child(2) { transition-delay: 0.16s; }
.site-nav.is-open .site-nav__item:nth-child(3) { transition-delay: 0.22s; }
.site-nav.is-open .site-nav__item:nth-child(4) { transition-delay: 0.28s; }
.site-nav.is-open .site-nav__item:nth-child(5) { transition-delay: 0.34s; }

.site-nav .site-nav__link {
  min-height: 56px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--t2);
  letter-spacing: -0.01em;
}

.site-nav__link:active {
  color: var(--accent);
}

html.nav-open,
html.nav-open body {
  overflow: hidden;
}

html.nav-open .site-header {
  background: var(--ground);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-main {
  display: block;
}

.site-section {
  position: relative;
  overflow: hidden;
  padding: calc(11 * var(--space)) var(--page-inset);
}

.site-section > .section-inner,
.stat-strip > .section-inner,
.site-footer__inner,
.marquee__track {
  position: relative;
  z-index: 50;
}

.section-header {
  margin-bottom: calc(6 * var(--space));
}

.section-title {
  max-width: 18ch;
  margin-bottom: 0;
  font-size: var(--t2);
  letter-spacing: -0.018em;
}

.eyebrow {
  margin-bottom: calc(2 * var(--space));
  color: var(--accent);
  font-size: var(--t-1);
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.section-media {
  overflow: hidden;
  max-width: 100%;
  margin-bottom: 0;
  background: var(--surface);
}

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

.hero {
  display: flex;
  min-height: max(900px, calc(100svh - 96px));
  align-items: flex-end;
  background: var(--ground);
}

.hero::before {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(48px, 9vw, 120px);
  content: "";
  background: linear-gradient(to bottom, rgba(36, 24, 17, 0), var(--void));
  pointer-events: none;
}

.hero__media {
  position: absolute;
  z-index: 0;
  inset: -9% 0;
  width: 100%;
  max-width: none;
  height: 118%;
}

.hero__media .section-image {
  object-position: 50% 50%;
  transform: scale(1.04);
  will-change: transform;
}

.hero__brand-material {
  position: absolute;
  z-index: 1;
  bottom: -8%;
  left: -9%;
  width: min(86vw, 760px);
  height: 76%;
  opacity: 0.34;
  background: url("../brand/card-art.webp") left bottom / cover no-repeat;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(35deg, #000 0%, rgba(0, 0, 0, 0.88) 38%, transparent 76%);
  mask-image: linear-gradient(35deg, #000 0%, rgba(0, 0, 0, 0.88) 38%, transparent 76%);
  pointer-events: none;
  will-change: transform;
}

.hero__shield {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(32deg, rgba(49, 34, 26, 0.92) 10%, rgba(49, 34, 26, 0.76) 53%, rgba(49, 34, 26, 0.35) 100%);
  pointer-events: none;
}

.hero > .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: calc(6 * var(--space));
  align-items: end;
  min-width: 0;
  padding-bottom: calc(3 * var(--space));
}

.hero__content,
.start-here,
.contact__content,
.about__copy {
  min-width: 0;
}

.hero__headline {
  max-width: 14ch;
  margin-bottom: calc(3 * var(--space));
  font-size: var(--t3);
  letter-spacing: -0.028em;
  line-height: 0.9;
  text-wrap: balance;
}

.hero-line,
.word,
.word__text {
  display: inline-block;
}

.hero-line {
  white-space: nowrap;
}

.word {
  overflow: hidden;
  vertical-align: bottom;
}

.word__text {
  transform-origin: left bottom;
  will-change: transform, opacity;
}

.js:not(.is-capture) .hero-headline .word__text {
  opacity: 0;
  transform: translateY(0.85em);
}

.accent-word {
  color: var(--accent);
  text-shadow: 0 0 22px rgba(193, 80, 46, 0.34);
}

.br--mobile {
  display: block;
}

.hero__supporting {
  max-width: 52ch;
  margin-bottom: calc(3 * var(--space));
  font-size: var(--t1);
  line-height: 1.45;
}

.hero__cta,
.form-submit,
.whatsapp-link {
  will-change: transform;
}

.hero__cta,
.form-submit {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: calc(1 * var(--space));
  justify-content: center;
  padding: calc(1.5 * var(--space)) calc(3 * var(--space));
  border: 1px solid var(--accent);
  border-radius: 0;
  font-size: var(--t0);
  line-height: 1.5;
  text-align: center;
  transition: color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.cta-primary,
.cta-primary:visited {
  background: var(--accent);
  color: var(--void);
  text-decoration: none;
}

.cta-primary:hover {
  background: var(--ink);
  color: var(--ground);
  box-shadow: 0 12px 32px rgba(193, 80, 46, 0.24);
}

.icon {
  width: 18px;
  height: 18px;
  flex: none;
  display: inline-block;
  vertical-align: middle;
  color: var(--accent);
}

.icon--card {
  width: 22px;
  height: 22px;
}

.cta-primary .icon {
  color: inherit;
  transition: transform 220ms ease;
}

.cta-primary:hover .icon,
.cta-primary:focus-visible .icon {
  transform: translateX(4px);
}

.start-here {
  max-width: 100%;
  padding: calc(3 * var(--space));
  border: 1px solid rgba(193, 80, 46, 0.78);
  background: rgba(49, 32, 44, 0.92);
  box-shadow: 0 30px 70px rgba(36, 24, 17, 0.36), inset 0 1px 0 rgba(244, 238, 225, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.start-here__title {
  margin-bottom: calc(2 * var(--space));
  font-size: var(--t2);
}

.start-here__intro {
  margin-bottom: calc(3 * var(--space));
}

.start-here-form,
.contact-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: calc(2 * var(--space));
}

.form-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space);
}

.form-field--honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.form-field__label {
  color: var(--ink);
  font-size: var(--t-1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field__control {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: calc(1.5 * var(--space)) calc(2 * var(--space));
  border: 1px solid rgba(193, 80, 46, 0.72);
  border-radius: 0;
  background: var(--ground);
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.form-field__control:focus,
.form-field__control:focus-visible {
  border-color: var(--accent);
  background: var(--void);
  box-shadow: 0 0 0 3px rgba(193, 80, 46, 0.22), 0 0 24px rgba(193, 80, 46, 0.12);
}

textarea.form-field__control {
  resize: vertical;
}

.form-actions {
  display: flex;
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: calc(3 * var(--space));
  margin-bottom: 0;
  color: var(--ink);
}

.scroll-indicator {
  position: absolute;
  z-index: 50;
  bottom: calc(1.5 * var(--space));
  left: 50%;
  width: 24px;
  height: 48px;
  transform: translateX(-50%);
  border: 1px solid rgba(244, 238, 225, 0.58);
  border-radius: 24px;
}

.scroll-indicator__line {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 2px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 2px;
  background: var(--accent);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% {
    opacity: 0.35;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, 15px);
  }
}

.stat-strip {
  max-width: 100%;
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  background: var(--surface);
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid rgba(193, 80, 46, 0.7);
  background: var(--void);
  color: var(--accent);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-loop 30s linear infinite;
  will-change: transform;
}

.marquee__group {
  display: flex;
  flex-shrink: 0;
}

.marquee__group span {
  display: block;
  padding: calc(1.5 * var(--space)) calc(3 * var(--space));
  font-size: var(--t-1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marquee-loop {
  to {
    transform: translateX(-50%);
  }
}

.stat-strip > .section-inner,
.proof > .section-inner {
  max-width: calc(var(--container-max) + (2 * var(--page-inset)));
  padding-inline: var(--page-inset);
}

.stat-strip__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.stat-strip__item {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: var(--space) calc(2 * var(--space));
  align-items: baseline;
  padding: calc(3 * var(--space)) 0;
}

.stat-strip__item + .stat-strip__item {
  border-top: 1px solid var(--accent);
}

.stat-strip__value {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--t2);
  font-weight: 600;
  line-height: 1.02;
}

.stat-strip__suffix {
  color: var(--accent);
  font-size: var(--t-1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stat-strip__label {
  grid-column: 1 / -1;
  font-size: var(--t0);
}

.about {
  background: linear-gradient(to bottom, var(--surface) 0, transparent 96px), linear-gradient(to top, var(--surface) 0, transparent 96px), var(--ground);
}

.about__copy {
  max-width: 62ch;
}

.about__copy p:last-child {
  margin-bottom: 0;
}

.about__media {
  position: relative;
  max-width: 100%;
  margin-top: calc(5 * var(--space));
}

.about .section-media {
  aspect-ratio: 4 / 3;
  box-shadow: 0 26px 68px rgba(36, 24, 17, 0.3);
}

.about .section-image {
  height: 116%;
  object-position: 50% 35%;
  transform: translateY(-8%);
  will-change: transform;
}

.about__accent {
  position: absolute;
  z-index: 2;
  height: 2px;
  background: var(--accent);
  pointer-events: none;
  will-change: transform;
}

.about__accent--top {
  top: calc(-2 * var(--space));
  right: calc(-1 * var(--space));
  width: 42%;
  transform-origin: right center;
}

.about__accent--bottom {
  bottom: calc(-2 * var(--space));
  left: calc(-1 * var(--space));
  width: 62%;
  transform-origin: left center;
}

.services {
  background: linear-gradient(to bottom, var(--ground) 0, transparent 96px), linear-gradient(to top, var(--ground) 0, transparent 96px), var(--surface);
}

.service-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: calc(3 * var(--space));
}

.service-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: calc(4 * var(--space)) calc(3 * var(--space));
  border: 1px solid rgba(193, 80, 46, 0.72);
  background: linear-gradient(145deg, rgba(49, 34, 26, 0.46), rgba(49, 34, 26, 0.96)), var(--ground);
  box-shadow: 0 14px 32px rgba(36, 24, 17, 0.14);
  transform: translateY(0) rotate(0deg);
  transform-origin: center bottom;
  transition: transform 280ms cubic-bezier(0.2, 0.78, 0.24, 1), box-shadow 280ms ease, border-color 280ms ease;
  will-change: transform;
}

.service-card::after {
  position: absolute;
  right: -48px;
  bottom: -72px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(193, 80, 46, 0.2);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 20px rgba(193, 80, 46, 0.025), 0 0 0 40px rgba(193, 80, 46, 0.018);
  pointer-events: none;
}

.service-card:hover {
  z-index: 2;
  border-color: var(--accent);
  box-shadow: 0 28px 56px rgba(36, 24, 17, 0.34), 0 0 28px rgba(193, 80, 46, 0.09);
  transform: translateY(-6px) rotate(var(--card-tilt, 1.5deg));
}

.service-card__number {
  display: block;
  margin-bottom: calc(4 * var(--space));
  color: var(--accent);
  font-size: var(--t-1);
  letter-spacing: 0.18em;
}

.service-card > .icon {
  display: block;
  margin-bottom: calc(2 * var(--space));
}

.service-card__title {
  margin-bottom: calc(3 * var(--space));
  font-size: var(--t1);
}

.service-card__description {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.brand-divider {
  position: relative;
  z-index: 45;
  width: 100%;
  height: clamp(64px, 8vw, 112px);
  border-top: 1px solid rgba(193, 80, 46, 0.65);
  border-bottom: 1px solid rgba(193, 80, 46, 0.65);
  background-image: linear-gradient(90deg, rgba(49, 34, 26, 0.08), rgba(36, 24, 17, 0.18)), url("../brand/letterhead-art.webp");
  background-position: center top;
  background-size: cover, 100% auto;
  box-shadow: inset 0 14px 34px rgba(36, 24, 17, 0.12);
}

.proof {
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  background: linear-gradient(to bottom, var(--surface) 0, transparent 96px), linear-gradient(to top, var(--surface) 0, transparent 96px), var(--ground);
}

.proof__intro {
  max-width: 62ch;
  margin-bottom: calc(6 * var(--space));
  font-size: var(--t1);
}

.trust-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
}

.trust-strip__item {
  display: flex;
  align-items: flex-start;
  gap: calc(1.5 * var(--space));
  padding: calc(3 * var(--space)) 0;
}

.trust-strip__item .icon {
  margin-top: 3px;
}

.trust-strip__item + .trust-strip__item {
  border-top: 1px solid var(--accent);
}

.proof-band {
  position: relative;
  width: 100%;
  max-width: none;
  aspect-ratio: 21 / 9;
  margin-top: 0;
  background: var(--ground);
}

.brand-divider--band {
  margin-top: calc(9 * var(--space));
}

.proof-band::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(49, 34, 26, 0.2) 12%, rgba(49, 34, 26, 0.18) 45%, rgba(49, 34, 26, 0.66) 100%);
  pointer-events: none;
}

.proof-band .section-image {
  position: absolute;
  z-index: 0;
  inset: -10% 0;
  width: 100%;
  height: 120%;
  object-position: 50% 50%;
  transform: scale(1.04);
  will-change: transform;
}

.proof-band__accent {
  position: absolute;
  z-index: 1;
  bottom: -26%;
  left: -5%;
  width: min(52vw, 740px);
  height: 126%;
  opacity: 0.25;
  background: url("../brand/card-art.webp") left bottom / cover no-repeat;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(58deg, #000 0%, transparent 75%);
  mask-image: linear-gradient(58deg, #000 0%, transparent 75%);
  pointer-events: none;
}

.proof-band__quote {
  position: absolute;
  z-index: 50;
  top: 50%;
  right: var(--page-inset);
  width: min(52vw, 560px);
  margin: 0;
  padding: calc(2.5 * var(--space)) calc(3 * var(--space));
  transform: translateY(-50%);
  border-left: 2px solid var(--accent);
  background: rgba(49, 34, 26, 0.72);
  box-shadow: 0 18px 48px rgba(36, 24, 17, 0.28);
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 4.2vw, 58px);
  font-weight: 600;
  line-height: 1.02;
  text-wrap: balance;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact {
  background: linear-gradient(to bottom, var(--ground) 0, transparent 96px), linear-gradient(to top, var(--void) 0, transparent 96px), var(--surface);
}

.contact .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: calc(7 * var(--space));
}

.contact__lead {
  max-width: 48ch;
}

.contact-details,
.site-footer__contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: calc(2 * var(--space));
  font-style: normal;
}

.contact-details {
  margin-top: calc(4 * var(--space));
}

.contact-details__item {
  display: flex;
  align-items: center;
  gap: calc(1 * var(--space));
  min-width: 0;
  margin-bottom: 0;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: calc(1 * var(--space));
}

.site-footer__contact .icon {
  color: var(--ink);
}

.contact-details__item a,
.site-footer__contact a {
  color: var(--accent);
  overflow-wrap: anywhere;
}

.whatsapp-link {
  display: inline-block;
}

.contact-form {
  position: relative;
  max-width: 100%;
  padding: calc(3 * var(--space));
  border: 1px solid var(--accent);
  background: linear-gradient(150deg, rgba(49, 34, 26, 0.5), rgba(49, 34, 26, 0.96)), var(--ground);
  box-shadow: 0 32px 72px rgba(36, 24, 17, 0.28);
}

.contact-form h3 {
  margin-bottom: calc(3 * var(--space));
  font-size: var(--t2);
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--accent);
  background: var(--void);
  padding: calc(8 * var(--space)) var(--page-inset);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: calc(4 * var(--space));
}

.site-footer__brand {
  display: grid;
  gap: calc(3 * var(--space));
}

.site-footer__logo {
  height: 52px;
  width: auto;
}

.site-footer__descriptor {
  max-width: 52ch;
  margin-bottom: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--t0);
  font-weight: 600;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space) calc(3 * var(--space));
}

.site-footer__nav a {
  display: inline-flex;
  align-items: center;
}

.site-footer__legal {
  margin-bottom: 0;
  padding-top: calc(3 * var(--space));
  border-top: 1px solid rgba(193, 80, 46, 0.42);
  font-size: var(--t-1);
  text-align: center;
}

@media (min-width: 768px) {
  :root {
    --page-inset: 32px;
  }

  .site-section {
    padding-block: calc(14 * var(--space));
  }

  .site-header__inner {
    grid-template-columns: minmax(0, auto) minmax(0, 1fr);
    align-items: center;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    z-index: auto;
    justify-self: end;
    display: block;
    overflow: visible;
    padding: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .site-nav .site-nav__list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space) calc(2 * var(--space));
    width: auto;
  }

  .site-nav__item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .site-nav .site-nav__link {
    min-height: 44px;
    font-family: "Source Sans 3", -apple-system, 'Helvetica Neue', Arial, sans-serif;
    font-size: var(--t-1);
    letter-spacing: normal;
  }

  .br--mobile {
    display: none;
  }

  .hero {
    min-height: max(820px, calc(100svh - 96px));
  }

  .hero > .section-inner {
    padding-bottom: calc(4 * var(--space));
  }

  .stat-strip__list,
  .service-list,
  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stat-strip__item {
    padding: calc(4 * var(--space)) calc(3 * var(--space));
  }

  .stat-strip__item:first-child {
    padding-left: 0;
  }

  .stat-strip__item:last-child {
    padding-right: 0;
  }

  .stat-strip__item + .stat-strip__item {
    border-top: 0;
    border-left: 1px solid var(--accent);
  }

  .trust-strip__item {
    padding: calc(3 * var(--space));
  }

  .trust-strip__item:first-child {
    padding-left: 0;
  }

  .trust-strip__item:last-child {
    padding-right: 0;
  }

  .trust-strip__item + .trust-strip__item {
    border-top: 0;
    border-left: 1px solid var(--accent);
  }

  .proof-band__quote {
    right: max(var(--page-inset), calc((100vw - var(--container-max)) / 2));
  }

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

  .contact-form h3,
  .contact-form .form-field--honeypot,
  .contact-form .form-field:last-of-type,
  .contact-form .form-actions,
  .contact-form .form-status {
    grid-column: 1 / -1;
  }

  .site-footer__legal {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  :root {
    --page-inset: 48px;
  }

  .site-section {
    padding-block: calc(16 * var(--space));
  }

  .hero {
    min-height: min(92svh, 920px);
  }

  .hero > .section-inner {
    grid-template-columns: minmax(0, 0.618fr) minmax(0, 0.382fr);
    gap: calc(6 * var(--space));
  }

  .hero__brand-material {
    width: min(58vw, 760px);
  }

  .about .section-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.382fr) minmax(0, 0.618fr);
    column-gap: calc(7 * var(--space));
    align-items: start;
  }

  .about .section-header,
  .about__copy {
    grid-column: 2;
  }

  .about .section-header {
    grid-row: 1;
  }

  .about__copy {
    grid-row: 2;
  }

  .about__media {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-top: 0;
  }

  .contact .section-inner {
    grid-template-columns: minmax(0, 0.382fr) minmax(0, 0.618fr);
    gap: calc(7 * var(--space));
    align-items: start;
  }

  .contact-form {
    padding: calc(4 * var(--space));
  }

  .site-footer__inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    column-gap: calc(6 * var(--space));
    align-items: start;
  }

  .site-footer__legal {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1440px) {
  :root {
    --page-inset: 64px;
  }

  .site-section {
    padding-block: calc(18 * var(--space));
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    animation-duration: 0s !important;
    animation-delay: 0s !important;
  }

  .hero-headline .word__text,
  .section-image,
  .hero__brand-material,
  .about__accent,
  .service-card {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__media {
    inset: 0;
    height: 100%;
  }

  .about .section-image,
  .proof-band .section-image {
    inset: 0;
    height: 100%;
  }

  .proof-band__quote {
    opacity: 1 !important;
    transform: translateY(-50%) !important;
  }
}

.is-capture *,
.is-capture *::before,
.is-capture *::after {
  transition-duration: 0s !important;
  animation-duration: 0s !important;
  animation-delay: 0s !important;
}

.is-capture .preloader {
  display: none !important;
}

.is-capture .hero-headline .word__text,
.is-capture .section-image,
.is-capture .hero__brand-material,
.is-capture .about__accent,
.is-capture .service-card,
.is-capture .section-header,
.is-capture .about__copy p,
.is-capture .stat-strip__item,
.is-capture .trust-strip__item,
.is-capture .contact__content,
.is-capture .contact-form {
  opacity: 1 !important;
  transform: none !important;
}

.is-capture .hero__media {
  inset: 0;
  height: 100%;
}

.is-capture .about .section-image,
.is-capture .proof-band .section-image {
  inset: 0;
  height: 100%;
}

.is-capture .proof-band__quote {
  opacity: 1 !important;
  transform: translateY(-50%) !important;
}

.is-capture .marquee__track {
  animation: none !important;
  transform: translateX(0) !important;
}

/* capture-mode hero heights: svh units inflate in the tall capture viewport; pin to real sizes */
.is-capture .hero { min-height: 900px; }
@media (max-width: 1024px) { .is-capture .hero { min-height: 920px; } }
@media (max-width: 768px) { .is-capture .hero { min-height: 820px; } }

/* the REAL brand mark in the header - never typed text (founder law) */
.site-brand__logo { height: 46px; width: auto; display: block; }
@media (max-width: 768px) { .site-brand__logo { height: 38px; } }

/* FOOTER RECOMPOSED (founder: clean this section) - one decisive layout at every width */
.site-footer { padding: calc(9 * var(--space)) var(--page-inset) calc(5 * var(--space)); }
.site-footer__inner { display: grid; grid-template-columns: minmax(0, 1fr); gap: calc(5 * var(--space)); }
.site-footer__brand { display: grid; gap: calc(2 * var(--space)); align-content: start; }
.site-footer__logo { height: 48px; width: auto; }
.site-footer__descriptor { max-width: 38ch; opacity: 0.85; }
.site-footer__nav { display: flex; flex-wrap: wrap; align-content: start; gap: calc(1.5 * var(--space)) calc(4 * var(--space)); }
.site-footer__contact { display: grid; gap: calc(1.5 * var(--space)); align-content: start; }
@media (min-width: 900px) {
  .site-footer__inner { grid-template-columns: minmax(0, 1.1fr) minmax(0, auto) minmax(0, auto); column-gap: calc(7 * var(--space)); }
  .site-footer__nav { gap: calc(1.5 * var(--space)) calc(3 * var(--space)); }
  .site-footer__nav { justify-content: flex-start; }
  .site-footer__contact { justify-items: start; }
}
.site-footer__legal { grid-column: 1 / -1; margin-top: calc(2 * var(--space)); }
/* the cursor dot must never linger over content when the pointer leaves the window */
.cursor-dot { transition: opacity 0.2s ease; }
body:not(:hover) .cursor-dot { opacity: 0; }

/* ---- Mobile rhythm, touch targets and layout tuning (phones, <=767px) ---- */
@media (max-width: 767px) {
  html {
    scroll-padding-top: 84px;
  }

  .site-section {
    padding-block: calc(9 * var(--space));
  }

  .section-header {
    margin-bottom: calc(4 * var(--space));
  }

  /* hero fills one phone screen without forcing a 900px giant / top void */
  .hero {
    min-height: max(600px, calc(100svh - 64px));
  }

  /* comfortable 44px touch rows for contact + footer links */
  .contact-details__item,
  .footer-contact-row {
    min-height: 44px;
  }

  .contact-details__item a,
  .footer-contact-row a {
    padding-block: calc(0.5 * var(--space));
  }

  /* proof band: give the pull-quote real room instead of a cramped right sliver */
  .proof-band {
    aspect-ratio: 4 / 5;
  }

  .proof-band__quote {
    right: var(--page-inset);
    left: var(--page-inset);
    width: auto;
    padding: calc(2 * var(--space)) calc(2.5 * var(--space));
    font-size: clamp(28px, 8vw, 44px);
  }

  .service-list {
    gap: calc(2.5 * var(--space));
  }
}

/* ---- Small phones (<=430px): keep the nowrap hero lines inside the viewport ---- */
@media (max-width: 430px) {
  :root {
    --t3: clamp(34px, 10vw, 46px);
  }

  .hero__headline {
    letter-spacing: -0.02em;
  }
}

/* tap feedback for primary actions on touch (magnetic/cursor are pointer:fine only) */
.cta-primary:active {
  background: var(--ink);
  color: var(--ground);
}

/* Split hero override - media owns its column; text and form never sit over
   the subject at any width (founder law: no face/text overlap, 13 Jul 2026). */
@media (max-width: 1023.98px) {
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
  }

  .hero__media {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
  }

  .hero__media .section-image {
    transform: none;
  }

  .hero__shield,
  .hero::before {
    display: none;
  }

  .hero > .section-inner {
    padding-top: calc(2 * var(--space));
  }

  .is-capture .hero__media {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }
}

@media (min-width: 1024px) {
  .hero {
    align-items: center;
    min-height: min(96svh, 980px);
  }

  .hero__media {
    inset: 0;
    left: 56%;
    width: 44%;
    height: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 14%);
    mask-image: linear-gradient(to right, transparent 0, #000 14%);
  }

  .hero__media .section-image {
    object-position: 66% 22%;
    transform: none;
  }

  .hero__shield {
    background: linear-gradient(90deg, rgba(36, 24, 17, 0.96) 42%, rgba(36, 24, 17, 0.55) 56%, rgba(36, 24, 17, 0) 72%);
  }

  .hero > .section-inner {
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    justify-items: start;
  }

  .hero__content,
  .start-here {
    max-width: 600px;
  }

  .hero__cta {
    display: none;
  }

  .start-here {
    width: 100%;
    margin-top: calc(3 * var(--space));
  }

  .is-capture .hero__media {
    inset: 0;
    left: 56%;
    width: 44%;
    height: 100%;
  }
}

/* READY SYSTEM - Cafe: appetite-led split cover and menu-ledger services. */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/Fraunces.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src: url("../fonts/WorkSans.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ground: #F9F7F5;
  --surface: #FFFDF8;
  --ink: #3E2B1E;
  --accent: #B4472D;
  --accent-deep: #B4472D;
  --plum-ink: #5D4432;
  --taupe: #7A6D63;
  --void: #21150F;
  --container-max: 1280px;
  --t3: clamp(44px, 6.2vw, 88px);
}

.design-cafe,
.design-cafe button,
.design-cafe input,
.design-cafe select,
.design-cafe textarea {
  font-family: "Work Sans", -apple-system, "Helvetica Neue", Arial, sans-serif;
}

.design-cafe {
  background: var(--ground);
  color: var(--ink);
}

.design-cafe h1,
.design-cafe h2,
.design-cafe h3 {
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
}

.design-cafe::after {
  opacity: 0.024;
  mix-blend-mode: multiply;
}

.design-cafe .site-header {
  border-bottom: 1px solid rgba(249, 247, 245, 0.18);
  background: rgba(62, 43, 30, 0.96);
  color: #FFFDF8;
}

.design-cafe .site-header.is-scrolled {
  background: rgba(62, 43, 30, 0.99);
}

.design-cafe .site-nav__link,
.design-cafe .site-brand,
.design-cafe .nav-toggle {
  color: #FFFDF8;
}

.design-cafe .site-nav__link::after {
  background: var(--accent);
}

.design-cafe .preloader {
  background: var(--plum-ink);
}

.design-cafe .preloader__line,
.design-cafe .cursor-dot {
  background: var(--accent);
}

.design-cafe .hero {
  display: flex;
  min-height: 0;
  padding: 0;
  flex-direction: column;
  background: var(--ground);
  color: var(--ink);
}

.design-cafe .hero::before,
.design-cafe .hero__shield {
  display: none;
}

.design-cafe .hero__media {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  -webkit-mask-image: none;
  mask-image: none;
}

.design-cafe .hero__media::after {
  position: absolute;
  inset: auto 0 0;
  height: 18%;
  content: "";
  background: linear-gradient(to bottom, transparent, var(--ground));
  pointer-events: none;
}

.design-cafe .hero__media .section-image {
  position: absolute;
  inset: -7% 0;
  width: 100%;
  height: 114%;
  object-position: 61% 42%;
}

.design-cafe .hero__brand-material {
  z-index: 2;
  inset: auto 1.5rem 1.5rem auto;
  width: 10rem;
  height: 4rem;
  border: 1px solid rgba(255, 253, 248, 0.62);
  background-image: url("../brand/letterhead-art.webp");
  background-size: cover;
  opacity: 0.86;
  mix-blend-mode: soft-light;
}

.design-cafe .hero > .section-inner {
  display: grid;
  width: 100%;
  max-width: none;
  padding: calc(4 * var(--space)) var(--page-inset) calc(9 * var(--space));
  gap: calc(4 * var(--space));
  grid-template-columns: minmax(0, 1fr);
  background: var(--ground);
}

.design-cafe .hero__headline {
  color: var(--ink);
  font-size: clamp(40px, 11vw, 70px);
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.design-cafe .hero__headline .accent-word {
  color: var(--accent);
  font-style: italic;
}

.design-cafe .hero__supporting {
  color: #5D4432;
}

.design-cafe .eyebrow {
  color: var(--accent-deep);
}

.design-cafe .start-here {
  border: 1px solid rgba(62, 43, 30, 0.2);
  border-radius: 0 0 2rem 0;
  background: #EFE3D7;
  color: var(--ink);
  box-shadow: none;
}

.design-cafe .form-field__control {
  border-color: rgba(62, 43, 30, 0.28);
  background: var(--surface);
  color: var(--ink);
}

.design-cafe .cta-primary {
  border-color: var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #FFFFFF;
}

.design-cafe .cta-primary:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #FFFFFF;
}

.design-cafe .stat-strip {
  border-block: 0;
  background: #EFE3D7;
  color: var(--ink);
}

.design-cafe .marquee {
  background: var(--accent);
  color: #FFFFFF;
}

.design-cafe .stat-strip__item + .stat-strip__item {
  border-color: rgba(62, 43, 30, 0.2);
}

.design-cafe .stat-strip__value,
.design-cafe .stat-strip__suffix {
  color: var(--ink);
}

.design-cafe .about {
  background:
    linear-gradient(90deg, rgba(180, 71, 45, 0.08) 1px, transparent 1px),
    var(--surface);
  background-size: calc(4 * var(--space)) 100%;
}

.design-cafe .about .section-inner {
  align-items: center;
}

.design-cafe .about__media {
  border-radius: 50% 50% 0 0;
  overflow: hidden;
}

.design-cafe .about__accent {
  display: none;
}

.design-cafe .services {
  background: var(--plum-ink);
  color: #FFFDF8;
}

.design-cafe .services h2,
.design-cafe .services h3 {
  color: #FFFDF8;
}

.design-cafe .services .eyebrow {
  color: #F2C2AE;
}

.design-cafe .service-list {
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1fr);
  border-top: 1px solid rgba(255, 253, 248, 0.28);
}

.design-cafe .service-card {
  display: grid;
  min-height: 0;
  padding: calc(3 * var(--space)) 0;
  align-items: center;
  gap: calc(2 * var(--space));
  grid-template-columns: auto minmax(0, 0.72fr) minmax(0, 1fr);
  border: 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 0;
  background: transparent;
  color: #FFFDF8;
  box-shadow: none;
}

.design-cafe .service-card::before {
  display: none;
}

.design-cafe .service-card .icon--card {
  display: none;
}

.design-cafe .service-card__number {
  position: static;
  color: #F2C2AE;
  font-family: "Work Sans", sans-serif;
}

.design-cafe .service-card__title {
  margin: 0;
  color: #FFFDF8;
  font-size: clamp(28px, 3.8vw, 54px);
}

.design-cafe .service-card__description {
  margin: 0;
  color: rgba(255, 253, 248, 0.78);
}

.design-cafe .proof {
  background: var(--ground);
  color: var(--ink);
}

.design-cafe .trust-strip {
  border-color: rgba(62, 43, 30, 0.2);
  background: var(--surface);
}

.design-cafe .trust-strip__item + .trust-strip__item {
  border-color: rgba(62, 43, 30, 0.18);
}

.design-cafe .proof-band__quote {
  right: auto;
  left: var(--page-inset);
  border-radius: 0 2rem 0 0;
  background: var(--accent);
  color: #FFFFFF;
}

.design-cafe .contact {
  background: #EFE3D7;
  color: var(--ink);
}

.design-cafe .contact-form {
  border: 1px solid rgba(62, 43, 30, 0.2);
  border-radius: 2rem 0 0 0;
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 28px 70px rgba(62, 43, 30, 0.12);
}

.design-cafe .site-footer {
  border-top: 8px solid var(--accent);
  background: var(--void);
  color: #FFFDF8;
}

@media (min-width: 768px) {
  .design-cafe .about .section-header {
    grid-column: 7 / -1;
    grid-row: 1;
  }

  .design-cafe .about__copy {
    grid-column: 7 / -1;
    grid-row: 2;
  }

  .design-cafe .about__media {
    grid-column: 1 / span 5;
    grid-row: 1 / span 2;
  }
}

@media (min-width: 1024px) {
  .design-cafe .hero {
    position: relative;
    display: block;
    min-height: min(100svh, 1020px);
    padding-top: 78px;
  }

  .design-cafe .hero__media {
    position: absolute;
    top: 78px;
    right: 38.2%;
    bottom: 0;
    left: 0;
    width: 61.8%;
    height: auto;
    aspect-ratio: auto;
  }

  .design-cafe .hero__media::after {
    inset: 0 0 0 auto;
    width: 10%;
    height: auto;
    background: linear-gradient(to left, var(--ground), transparent);
  }

  .design-cafe .hero__media .section-image {
    object-position: 62% 42%;
  }

  .design-cafe .hero > .section-inner {
    position: relative;
    z-index: 3;
    width: 38.2%;
    min-height: calc(min(100svh, 1020px) - 78px);
    margin: 0 0 0 61.8%;
    padding: calc(6 * var(--space)) clamp(28px, 3vw, 56px);
    align-content: center;
  }

  .design-cafe .hero__headline {
    font-size: clamp(52px, 4.7vw, 76px);
  }

  .design-cafe .hero__brand-material {
    right: calc(38.2% + 2rem);
    bottom: 2rem;
  }

  .design-cafe .is-capture .hero__media {
    top: 78px;
    right: 38.2%;
    bottom: 0;
    left: 0;
    width: 61.8%;
    height: auto;
  }
}

@media (max-width: 767px) {
  .design-cafe .site-nav {
    background: var(--plum-ink);
  }

  .design-cafe .service-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .design-cafe .service-card__description {
    grid-column: 2;
  }

  .design-cafe .hero__brand-material {
    display: none;
  }
}

/* Hallmark - genre: editorial - macrostructure: Catalogue - theme: Cafe - nav: N6 - footer: Ft1 */
html,
body {
  overflow-x: clip;
}

.parallax-field {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.parallax-field__layer {
  position: absolute;
  display: block;
  will-change: transform;
}

.design-cafe .parallax-field__layer:first-child {
  top: 14%;
  right: 5%;
  width: clamp(56px, 8vw, 116px);
  aspect-ratio: 1;
  border: 1px solid rgba(155, 91, 50, 0.2);
  border-radius: 50%;
}

.design-cafe .parallax-field__layer:nth-child(2) {
  bottom: 9%;
  left: 4%;
  width: clamp(130px, 22vw, 320px);
  height: 2px;
  background: rgba(155, 91, 50, 0.22);
}

.design-cafe .parallax-field__layer:nth-child(3) {
  right: 22%;
  bottom: 18%;
  width: clamp(26px, 4vw, 58px);
  aspect-ratio: 1;
  border: 1px solid rgba(62, 43, 30, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(180, 71, 45, 0.035);
}

.design-cafe .hero .parallax-field {
  right: 0;
  left: auto;
  width: 44%;
}

.design-cafe .hero__headline .accent-word {
  font-style: normal;
}

.design-cafe .site-nav__link,
.design-cafe .site-footer__nav a,
.design-cafe .hero__cta,
.design-cafe .form-submit {
  white-space: nowrap;
}

.design-cafe .site-footer__inner {
  text-align: center;
}

.design-cafe .site-footer__brand,
.design-cafe .site-footer__contact {
  justify-items: center;
}

.design-cafe .site-footer__nav {
  justify-content: center;
}

@media (min-width: 768px) {
  .design-cafe .site-header {
    padding-block: var(--space) calc(1.5 * var(--space));
  }

  .design-cafe .site-header__inner {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: calc(0.5 * var(--space));
  }

  .design-cafe .site-brand__logo {
    height: 54px;
  }

  .design-cafe .site-nav {
    justify-self: center;
    border-top: 1px solid rgba(255, 253, 248, 0.22);
    border-bottom: 1px solid rgba(255, 253, 248, 0.22);
  }

  .design-cafe .site-nav__list {
    justify-content: center;
  }

  .design-cafe .site-footer__inner {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
  }
}

@media (min-width: 1024px) {
  .design-cafe .hero {
    padding-top: 0;
  }

  .design-cafe .hero__media {
    top: 0;
  }

  .design-cafe .hero > .section-inner {
    min-height: min(94svh, 980px);
  }
}

@media (max-width: 767px) {
  .design-cafe .hero .parallax-field {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .parallax-field__layer {
    transform: none !important;
    will-change: auto;
  }
}
/* Image-slot fallback: keeps composition complete if a local bitmap is unavailable. */
.hero__media,
.about__media,
.proof-band {
  background-color: var(--surface);
  background-image:
    radial-gradient(circle at 72% 26%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 34%),
    linear-gradient(135deg, color-mix(in srgb, var(--void) 88%, var(--accent)), var(--surface));
}
