:root {
  --color-red: #9a7650;
  --color-red-dark: #76583a;
  --color-ink: #151515;
  --color-ink-soft: #2b3035;
  --color-paper: #faf8f3;
  --color-surface: #ffffff;
  --color-surface-soft: #fcfbf8;
  --color-ash: #f7f5ef;
  --color-line: rgba(31, 35, 38, .08);
  --color-muted: #626b74;
  --color-med-green: #1f3d33;
  --color-tech: #172635;
  --container: min(1160px, calc(100vw - 40px));
  --header-h: 76px;
  --radius: 8px;
  --shadow-soft: 0 18px 44px rgba(16, 24, 32, .14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  overflow-x: hidden;
}

.js:not(.is-loaded) .hero__content,
.js:not(.is-loaded) .brand-switch,
.js:not(.is-loaded) .section,
.js:not(.is-loaded) .contact-band {
  opacity: 0;
  transform: translateY(14px);
}

.hero__content,
.brand-switch,
.section,
.contact-band {
  transition: opacity .44s ease, transform .44s cubic-bezier(.2, .8, .2, 1);
}

body.is-leaving main,
body.is-leaving .site-footer {
  opacity: .72;
  transform: translateY(-8px) scale(.995);
  transition: opacity .34s ease, transform .34s cubic-bezier(.2, .8, .2, 1);
}

body[data-site="mmd"] {
  --brand: #9a7650;
  --brand-dark: #111111;
  --brand-soft: #f7f5f0;
}

body[data-site="med"] {
  --brand: #1f3d33;
  --brand-dark: #142820;
  --brand-soft: #f3f8f4;
}

body[data-site="deniz"] {
  --brand: #172635;
  --brand-dark: #172635;
  --brand-soft: #f3f6f8;
}

body[data-site="home"] {
  --brand: #9a7650;
  --brand-dark: #151515;
  --brand-soft: #f7f5f0;
}

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

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

p {
  line-height: 1.7;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px max(20px, calc((100vw - 1160px) / 2));
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(216, 220, 226, .9);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.brand-lockup--text strong {
  display: block;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.1;
}

.brand-lockup--text small {
  display: block;
  margin-top: 3px;
  color: var(--color-muted);
  font-size: .78rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--color-ink);
  border: 2px solid var(--brand);
  font-weight: 800;
  letter-spacing: 0;
}

.logo-plate {
  display: inline-grid;
  place-items: center;
  height: 52px;
  max-width: min(260px, 42vw);
  padding: 5px 12px;
  background: #fff;
  border: 1px solid rgba(216, 220, 226, .92);
  border-radius: var(--radius);
  overflow: hidden;
}

.logo-plate img {
  width: auto;
  max-height: 42px;
  object-fit: contain;
}

body[data-site="med"] .logo-plate img,
body[data-site="deniz"] .logo-plate img {
  max-height: 46px;
}

.brand-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(216, 220, 226, .88);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(246, 247, 249, .88)),
    #fff;
  box-shadow: 0 12px 34px rgba(16, 24, 32, .08);
}

.brand-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px 0 8px;
  border-radius: 999px;
  color: var(--color-ink-soft);
  font-size: .93rem;
  font-weight: 650;
  position: relative;
  overflow: hidden;
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.brand-nav a::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  border: 1px solid transparent;
  opacity: 0;
  transition: opacity .2s ease, border-color .2s ease;
}

.brand-nav__dot {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 28px;
  border-radius: 50%;
  background: var(--color-ink);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1;
}

.brand-nav__item--med .brand-nav__dot,
.brand-nav__item--deniz .brand-nav__dot {
  background: var(--brand);
}

.brand-nav a:hover,
.brand-nav a[aria-current="page"] {
  color: #fff;
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(16, 24, 32, .12);
}

.brand-nav a:hover::after,
.brand-nav a[aria-current="page"]::after {
  opacity: 1;
  border-color: rgba(255, 255, 255, .22);
}

.brand-nav a:hover .brand-nav__dot,
.brand-nav a[aria-current="page"] .brand-nav__dot {
  background: var(--brand);
  color: #fff;
}

.brand-nav a.is-pressed {
  animation: navPress .38s cubic-bezier(.2, .8, .2, 1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--color-ink);
}

.hero {
  position: relative;
  min-height: clamp(560px, 82svh, 790px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .48) 48%, rgba(0, 0, 0, .2)),
    linear-gradient(0deg, rgba(0, 0, 0, .6), rgba(0, 0, 0, .08) 55%);
}

.hero--med .hero__shade {
  background:
    linear-gradient(90deg, rgba(13, 20, 18, .84), rgba(13, 20, 18, .46) 54%, rgba(13, 20, 18, .16)),
    linear-gradient(0deg, rgba(13, 20, 18, .5), rgba(13, 20, 18, .06));
}

.hero--deniz .hero__shade {
  background:
    linear-gradient(90deg, rgba(10, 15, 22, .92), rgba(10, 15, 22, .7) 50%, rgba(10, 15, 22, .36)),
    linear-gradient(0deg, rgba(10, 15, 22, .7), rgba(10, 15, 22, .15));
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .45;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.hero__content {
  width: var(--container);
  margin: 0 auto;
  padding: 92px 0 76px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  line-height: .92;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.06rem, 2vw, 1.42rem);
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

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

.button--primary {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.button--secondary {
  border-color: var(--color-ink);
  background: var(--color-ink);
  color: #fff;
}

.button--ghost {
  color: currentColor;
  background: rgba(255, 255, 255, .08);
}

.contact-band .button--ghost {
  color: var(--color-ink);
  background: #fff;
}

.section,
.section--tight,
.contact-band {
  padding: 88px 0;
}

.section--tight {
  padding: 38px 0;
}

.brand-switch {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 10%, rgba(154, 118, 80, .09), transparent 28%),
    linear-gradient(120deg, rgba(21, 21, 21, .04), rgba(255, 255, 255, 0) 42%),
    #fff;
}

.brand-switch::before,
.brand-switch::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.brand-switch::before {
  opacity: .46;
  background:
    linear-gradient(115deg, transparent 0 17%, rgba(21, 21, 21, .13) 17.15% 17.45%, transparent 17.6% 100%),
    linear-gradient(65deg, transparent 0 68%, rgba(154, 118, 80, .16) 68.15% 68.45%, transparent 68.6% 100%);
  transform: translateX(-4%);
}

.brand-switch::after {
  opacity: .38;
  background:
    linear-gradient(90deg, rgba(21, 21, 21, .06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(21, 21, 21, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 74%, transparent);
}

.section--contrast {
  background: var(--brand-soft);
}

.section-inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  max-width: 100%;
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading,
.two-column,
.contact-layout,
.card-grid,
.image-grid,
.reference-clusters,
.reference-list,
.process-line,
.hero__content,
.hero__content > *,
.info-card,
.ecosystem-card,
.media-panel {
  min-width: 0;
}

.section-heading h2,
.two-column h2,
.contact-layout h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.section-heading p:last-child,
.two-column p:last-child {
  margin-bottom: 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.two-column--reverse {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, .95fr);
}

.media-panel {
  margin: 0;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.media-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-panel--logo img {
  aspect-ratio: 1;
  object-fit: contain;
  padding: 42px;
  background: #fff;
}

figcaption {
  padding: 12px 14px;
  color: var(--color-muted);
  font-size: .86rem;
  border-top: 1px solid var(--color-line);
}

.switch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(216, 220, 226, .9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 18px 44px rgba(16, 24, 32, .08);
  backdrop-filter: blur(18px);
}

.switch-card {
  min-height: 86px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(216, 220, 226, .9);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(247, 248, 250, .9)),
    #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .22s cubic-bezier(.2, .8, .2, 1), border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.switch-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(154, 118, 80, .14) 36.2% 36.8%, transparent 37% 100%),
    linear-gradient(145deg, rgba(21, 21, 21, .08), transparent 52%);
  transform: translateX(-18%);
  transition: opacity .22s ease, transform .32s cubic-bezier(.2, .8, .2, 1);
}

.switch-card::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .26s cubic-bezier(.2, .8, .2, 1);
}

.switch-card:hover,
.switch-card.is-current {
  transform: translateY(-3px);
  border-color: var(--brand);
  box-shadow: 0 16px 32px rgba(16, 24, 32, .13);
}

.switch-card:hover::before,
.switch-card.is-current::before {
  opacity: 1;
  transform: translateX(0);
}

.switch-card:hover::after,
.switch-card.is-current::after {
  transform: scaleX(1);
}

.switch-card.is-current {
  background:
    linear-gradient(135deg, rgba(21, 21, 21, .98), rgba(38, 42, 46, .94));
  color: #fff;
}

.switch-card.is-current small {
  color: rgba(255, 255, 255, .74);
}

.switch-card.is-pressed {
  animation: cardPress .42s cubic-bezier(.2, .8, .2, 1);
}

.ecosystem-card.is-pressed {
  animation: cardPress .42s cubic-bezier(.2, .8, .2, 1);
}

.switch-card__media {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 220, 226, .9);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.switch-card__media img {
  max-width: 86%;
  max-height: 86%;
  object-fit: contain;
}

.switch-card__media--home {
  color: #fff;
  background: var(--color-ink);
  border-color: var(--brand);
  font-weight: 900;
}

.switch-card__body {
  min-width: 0;
}

.switch-card__title {
  display: block;
  font-weight: 850;
  font-size: .98rem;
  line-height: 1.15;
}

.switch-card small {
  display: block;
  margin-top: 5px;
  color: var(--color-muted);
  line-height: 1.35;
  font-size: .78rem;
}

.switch-card__arrow {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--color-ink);
  transform: translateX(-5px);
  opacity: .82;
  transition: transform .22s ease, background .22s ease, opacity .22s ease;
}

.switch-card:hover .switch-card__arrow,
.switch-card.is-current .switch-card__arrow {
  transform: translateX(0);
  opacity: 1;
  background: var(--brand);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.card-grid--wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--color-line);
  border-top: 4px solid var(--brand);
  border-radius: var(--radius);
  background: #fff;
}

.info-card h3 {
  margin: 0 0 12px;
  font-size: 1.22rem;
}

.info-card p {
  margin: 0;
  color: var(--color-muted);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.image-grid figure {
  margin: 0;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.image-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.reference-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

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

.reference-list li {
  padding: 12px 14px;
  border: 1px solid var(--color-line);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-ink-soft);
  font-weight: 650;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.process-line div {
  min-height: 120px;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(154, 118, 80, .1), transparent 48%),
    #fff;
}

.process-line strong {
  display: block;
  color: var(--brand);
  font-size: 1.4rem;
}

.process-line span {
  display: block;
  margin-top: 12px;
  font-weight: 800;
}

.contact-band {
  background:
    linear-gradient(135deg, rgba(154, 118, 80, .12), transparent 34%),
    var(--color-ash);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: 32px;
  align-items: center;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  padding: 52px 0 24px;
  background:
    linear-gradient(135deg, rgba(154, 118, 80, .16), transparent 38%),
    linear-gradient(180deg, #18202a, #11161d);
  color: rgba(255, 255, 255, .86);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.site-footer__inner,
.site-footer__bottom {
  width: var(--container);
  margin: 0 auto;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(170px, .7fr) minmax(260px, .9fr);
  gap: 34px;
  align-items: start;
}

.site-footer h2,
.site-footer h3,
.site-footer p {
  margin: 0;
}

.site-footer h2 {
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.18;
}

.site-footer h3 {
  color: #fff;
  font-size: .86rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer__brand p {
  max-width: 560px;
  margin-top: 14px;
  color: rgba(255, 255, 255, .72);
  font-size: .94rem;
  line-height: 1.7;
}

.site-footer__nav,
.site-footer__contact {
  display: grid;
  gap: 10px;
}

.site-footer__nav a,
.site-footer__contact a,
.site-footer__bottom a {
  color: inherit;
  transition: color .18s ease, transform .18s ease;
}

.site-footer__nav a {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .74);
  font-size: .94rem;
  font-weight: 700;
}

.site-footer__contact {
  font-style: normal;
}

.site-footer__contact a {
  display: grid;
  width: fit-content;
  gap: 2px;
}

.site-footer__contact span {
  color: rgba(255, 255, 255, .58);
  font-size: .76rem;
  font-weight: 750;
}

.site-footer__contact strong {
  color: #fff;
  font-size: .95rem;
  font-weight: 800;
}

.site-footer__nav a:hover,
.site-footer__contact a:hover,
.site-footer__bottom a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .68);
  font-size: .86rem;
}

.site-footer__bottom a {
  color: #fff;
  font-weight: 850;
}

.mobile-quickbar {
  display: none;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-108%) skewX(-8deg);
  transform-origin: left center;
  transition: opacity .2s ease, transform .42s cubic-bezier(.76, 0, .24, 1);
  background:
    linear-gradient(115deg, rgba(154, 118, 80, .96), rgba(21, 21, 21, .98) 42%, rgba(21, 21, 21, .94)),
    var(--color-ink);
  overflow: hidden;
}

.page-transition::before,
.page-transition::after {
  content: "";
  position: absolute;
  inset: 0;
}

.page-transition::before {
  opacity: .42;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 56px 56px;
  transform: perspective(700px) rotateX(58deg) translateY(-18%);
}

.page-transition::after {
  width: 42%;
  left: auto;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, .16), transparent);
  animation: transitionSweep .7s linear infinite;
}

.page-transition__label {
  position: absolute;
  right: clamp(22px, 7vw, 96px);
  bottom: clamp(24px, 8vw, 88px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.page-transition__label::before {
  content: "";
  width: 54px;
  height: 2px;
  background: #fff;
}

html.is-transitioning .page-transition {
  opacity: 1;
  transform: translateX(0) skewX(0deg);
}

html[data-transition-target="med"] .page-transition {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .98), rgba(243, 248, 244, .98) 44%, rgba(21, 21, 21, .92));
}

html[data-transition-target="med"] .page-transition__label {
  color: var(--color-ink);
}

html[data-transition-target="med"] .page-transition__label::before {
  background: var(--brand);
}

html[data-transition-target="deniz"] .page-transition {
  background:
    radial-gradient(circle at 22% 35%, rgba(23, 38, 53, .1), transparent 28%),
    linear-gradient(120deg, #ffffff, #f3f6f8 58%, #dfe7ee);
}

html[data-transition-target="deniz"] .page-transition::before {
  background:
    linear-gradient(90deg, rgba(23, 38, 53, .12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 38, 53, .08) 1px, transparent 1px);
  background-size: 44px 44px;
  transform: none;
}

html[data-transition-target="mmd"] .page-transition::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .2) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .16) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, .32) 48.2% 48.6%, transparent 48.8% 100%);
  background-size: 72px 72px, 72px 72px, 100% 100%;
}

@keyframes transitionSweep {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(240%);
  }
}

@keyframes cardPress {
  0% {
    transform: translateY(-3px) scale(1);
  }
  45% {
    transform: translateY(-1px) scale(.97);
  }
  100% {
    transform: translateY(-3px) scale(1);
  }
}

@keyframes navPress {
  0% {
    transform: translateY(-1px) scale(1);
  }
  50% {
    transform: translateY(0) scale(.96);
  }
  100% {
    transform: translateY(-1px) scale(1);
  }
}

@supports (view-transition-name: root) {
  @view-transition {
    navigation: auto;
  }

  ::view-transition-old(root) {
    animation: viewOut .32s cubic-bezier(.76, 0, .24, 1);
  }

  ::view-transition-new(root) {
    animation: viewIn .38s cubic-bezier(.2, .8, .2, 1);
  }
}

@keyframes viewOut {
  to {
    opacity: .72;
    transform: translateY(-10px);
  }
}

@keyframes viewIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(100vw - 28px, 760px);
  }

  .site-header {
    padding-inline: 14px;
  }

  .nav-toggle {
    display: block;
  }

  .brand-nav {
    position: fixed;
    top: var(--header-h);
    left: 14px;
    right: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .18s ease, opacity .18s ease;
  }

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

  .brand-nav a {
    border-radius: var(--radius);
    min-height: 58px;
    justify-content: flex-start;
  }

  .hero {
    min-height: clamp(560px, 78svh, 720px);
  }

  .hero__content {
    padding: 80px 0 54px;
  }

  .two-column,
  .two-column--reverse,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .switch-grid,
  .card-grid,
  .card-grid--wide,
  .image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reference-list--columns,
  .process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .site-footer__inner {
    grid-template-columns: minmax(0, 1fr) minmax(230px, .8fr);
  }

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

@media (max-width: 640px) {
  :root {
    --header-h: 70px;
  }

  body {
    padding-bottom: 62px;
  }

  .logo-plate {
    max-width: 190px;
    height: 46px;
  }

  .brand-lockup--text small {
    display: none;
  }

  .hero {
    min-height: 76svh;
    background-position: center;
  }

  .section-inner,
  .hero__content {
    width: min(360px, calc(100vw - 28px)) !important;
    margin-left: 14px;
    margin-right: auto;
  }

  .hero__lead,
  .section-heading,
  .two-column,
  .contact-layout {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 2.95rem);
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section,
  .contact-band {
    padding: 62px 0;
  }

  .section-heading h2,
  .two-column h2,
  .contact-layout h2 {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
    line-height: 1.08;
  }

  .section--tight {
    padding: 26px 0;
  }

  .switch-grid,
  .card-grid,
  .card-grid--wide,
  .image-grid,
  .reference-list--columns,
  .process-line {
    grid-template-columns: 1fr;
  }

  .switch-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding: 8px;
    scrollbar-width: none;
  }

  .switch-grid::-webkit-scrollbar {
    display: none;
  }

  .switch-card {
    flex: 0 0 min(82vw, 312px);
    min-height: 78px;
    scroll-snap-align: start;
  }

  .switch-card__title {
    font-size: .95rem;
  }

  .switch-card small {
    font-size: .75rem;
  }

  .image-grid img,
  .media-panel img {
    aspect-ratio: 16 / 11;
  }

  .mobile-quickbar {
    position: fixed;
    left: 10px;
    right: auto;
    bottom: 10px;
    width: min(360px, calc(100vw - 20px));
    z-index: 35;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
  }

  .mobile-quickbar a {
    min-width: 0;
    min-height: 42px;
    padding: 0 4px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: var(--color-ink);
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
    white-space: nowrap;
  }

  .site-footer {
    padding: 44px 0 92px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__nav a,
  .site-footer__contact a {
    min-height: 36px;
  }

  .site-footer__bottom {
    display: grid;
    gap: 8px;
    margin-top: 30px;
  }
}

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

  .page-transition {
    display: none;
  }

  body.is-leaving main,
  body.is-leaving .site-footer {
    opacity: 1;
    transform: none;
  }
}

/* Premium ecosystem refresh */
body {
  background:
    radial-gradient(circle at 8% 12%, rgba(154, 118, 80, .05), transparent 28%),
    linear-gradient(180deg, #fff, #f7f7f4 54%, #fff);
}

body:not([data-site="home"]) .brand-nav {
  box-shadow: none;
  background: rgba(255, 255, 255, .78);
}

body:not([data-site="home"]) .brand-nav a {
  min-height: 38px;
  font-size: .86rem;
}

.hero--atelier {
  min-height: clamp(680px, 88svh, 860px);
  align-items: center;
  background:
    radial-gradient(circle at 82% 24%, rgba(154, 118, 80, .13), transparent 26%),
    linear-gradient(135deg, #fbfaf7, #f2f1ea 48%, #ffffff);
}

.hero--atelier::before {
  z-index: -4;
  background:
    radial-gradient(circle at center, rgba(21, 21, 21, .08) 0 2px, transparent 3px),
    conic-gradient(from 45deg, transparent 0 12.5%, rgba(21, 21, 21, .07) 12.5% 13.5%, transparent 13.5% 25%, rgba(154, 118, 80, .1) 25% 26%, transparent 26% 50%, rgba(21, 21, 21, .07) 50% 51%, transparent 51% 100%),
    linear-gradient(90deg, rgba(21, 21, 21, .05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(21, 21, 21, .05) 1px, transparent 1px);
  background-size: 96px 96px, 96px 96px, 48px 48px, 48px 48px;
  transform: none;
  opacity: .62;
}

.hero--atelier .hero__shade {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .74) 52%, rgba(255, 255, 255, .2)),
    radial-gradient(circle at 78% 22%, rgba(154, 118, 80, .1), transparent 34%);
}

.hero--atelier .hero__grid {
  opacity: .52;
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(154, 118, 80, .18) 34.15% 34.45%, transparent 34.65% 100%),
    linear-gradient(60deg, transparent 0 66%, rgba(21, 21, 21, .12) 66.15% 66.42%, transparent 66.62% 100%);
  background-size: 100% 100%;
  mask-image: none;
}

.hero--atelier .hero__content {
  color: var(--color-ink);
  padding-top: 120px;
}

.hero__content--split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
}

.hero--atelier h1 {
  max-width: 820px;
  color: var(--color-ink);
  font-size: clamp(3.1rem, 7.2vw, 6.8rem);
}

.hero--atelier .hero__lead {
  max-width: 760px;
  color: #31363b;
}

.credential-strip,
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.credential-strip span,
.social-row a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(21, 21, 21, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #23272c;
  font-size: .84rem;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.social-row a {
  border-color: rgba(154, 118, 80, .28);
  color: var(--brand);
}

.architect-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(21, 21, 21, .18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(21, 21, 21, .96), rgba(34, 31, 28, .94)),
    var(--color-ink);
  color: #fff;
  box-shadow: 0 28px 80px rgba(16, 24, 32, .22);
}

.architect-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  opacity: .34;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, .18) 0 1px, transparent 2px),
    conic-gradient(from 45deg, transparent 0 12.5%, rgba(255, 255, 255, .18) 12.5% 13.4%, transparent 13.4% 25%, rgba(154, 118, 80, .42) 25% 26%, transparent 26% 50%, rgba(255, 255, 255, .15) 50% 51%, transparent 51% 100%);
  background-size: 82px 82px;
  transform: rotate(-8deg);
}

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

.architect-card__photo {
  margin: 0 0 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: #111;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .24);
}

.architect-card__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 61% 36%;
  filter: saturate(.96) contrast(1.03);
}

.architect-card__photo figcaption {
  color: rgba(255, 255, 255, .72);
  background: rgba(0, 0, 0, .32);
  border-top-color: rgba(255, 255, 255, .12);
}

.architect-card__mark {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border: 2px solid var(--brand);
  background: #fff;
  color: var(--color-ink);
  font-size: 1.65rem;
  font-weight: 950;
}

.architect-card__role {
  margin: 28px 0 12px;
  color: rgba(255, 255, 255, .72);
  font-weight: 750;
}

.architect-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.architect-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.architect-card li {
  padding: 12px 0 12px 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  position: relative;
}

.architect-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 7px;
  height: 7px;
  background: var(--brand);
  transform: rotate(45deg);
}

.ecosystem-section {
  padding: 72px 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(154, 118, 80, .08), transparent 26%),
    linear-gradient(90deg, rgba(21, 21, 21, .06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(21, 21, 21, .06) 1px, transparent 1px),
    #fff;
  background-size: auto, 72px 72px, 72px 72px, auto;
}

.ecosystem-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ecosystem-card {
  min-height: 220px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(216, 220, 226, .9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 44px rgba(16, 24, 32, .08);
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.ecosystem-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .52;
  background:
    linear-gradient(135deg, transparent 0 54%, rgba(154, 118, 80, .12) 54.3% 54.8%, transparent 55.1%),
    radial-gradient(circle at 88% 12%, rgba(21, 21, 21, .08), transparent 26%);
  pointer-events: none;
}

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

.ecosystem-card:hover,
.ecosystem-card.is-current {
  transform: translateY(-5px);
  border-color: var(--brand);
  box-shadow: 0 24px 62px rgba(16, 24, 32, .14);
}

.ecosystem-card.is-current {
  color: #fff;
  background: linear-gradient(145deg, #151515, #26211e);
}

.ecosystem-card.is-current small {
  color: rgba(255, 255, 255, .72);
}

.ecosystem-card .switch-card__media {
  width: 58px;
  height: 58px;
}

.ecosystem-card .switch-card__title {
  font-size: 1.12rem;
}

.ecosystem-card .switch-card__arrow {
  justify-self: end;
}

.section--ornament {
  position: relative;
  overflow: hidden;
}

.section--ornament::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background:
    radial-gradient(circle at center, rgba(21, 21, 21, .14) 0 1px, transparent 2px),
    conic-gradient(from 45deg, transparent 0 12.5%, rgba(21, 21, 21, .12) 12.5% 13.3%, transparent 13.3% 25%, rgba(154, 118, 80, .2) 25% 26%, transparent 26%);
  background-size: 72px 72px;
  pointer-events: none;
}

.press-section {
  background:
    linear-gradient(90deg, rgba(21, 21, 21, .06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(21, 21, 21, .06) 1px, transparent 1px),
    #faf9f6;
  background-size: 68px 68px;
}

.press-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .62fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.source-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.source-links a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(21, 21, 21, .14);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  color: var(--color-ink-soft);
  font-weight: 760;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.source-links a::after {
  content: "↗";
  color: var(--brand);
  font-weight: 900;
}

.source-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(154, 118, 80, .32);
  box-shadow: 0 14px 30px rgba(16, 24, 32, .1);
}

.press-clipping {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(21, 21, 21, .14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transform: rotate(.7deg);
}

.press-clipping img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: top center;
}

.reference-clusters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.reference-cluster {
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--color-line);
  border-top: 4px solid var(--brand);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 24, 32, .06);
}

.reference-cluster h3 {
  margin: 0 0 16px;
  font-size: 1.12rem;
}

.reference-cluster ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.reference-cluster li {
  color: var(--color-muted);
  line-height: 1.45;
  font-weight: 640;
}

.reference-cluster li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--brand);
  transform: rotate(45deg) translateY(-1px);
}

body[data-site="mmd"] {
  background:
    linear-gradient(90deg, rgba(154, 118, 80, .05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(21, 21, 21, .045) 1px, transparent 1px),
    #f7f7f5;
  background-size: 72px 72px;
}

.hero--mmd {
  min-height: clamp(600px, 78svh, 760px);
  background-color: #141414;
}

.hero--mmd::before {
  opacity: .5;
  filter: grayscale(.15) contrast(1.05);
}

.hero--mmd .hero__shade {
  background:
    linear-gradient(90deg, rgba(14, 14, 14, .94), rgba(14, 14, 14, .66) 48%, rgba(14, 14, 14, .22)),
    linear-gradient(135deg, rgba(154, 118, 80, .24), transparent 36%);
}

.mmd-command {
  background:
    linear-gradient(90deg, rgba(21, 21, 21, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(21, 21, 21, .07) 1px, transparent 1px),
    #f4f3ef;
  background-size: 42px 42px;
}

.mmd-command .info-card {
  background: linear-gradient(145deg, #171717, #262626);
  color: #fff;
  border-color: rgba(255, 255, 255, .12);
  border-top-color: var(--brand);
}

.mmd-command .info-card p {
  color: rgba(255, 255, 255, .72);
}

body[data-site="med"] {
  background:
    radial-gradient(circle at 88% 10%, rgba(37, 107, 57, .09), transparent 26%),
    linear-gradient(180deg, #fbfdfc, #eef7f1);
}

.hero--med {
  min-height: clamp(600px, 76svh, 740px);
  background: #f8fcfa;
}

.hero--med::before {
  opacity: .28;
  filter: saturate(.85) brightness(1.12);
  background-position: 70% center;
}

.hero--med .hero__shade {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .78) 48%, rgba(255, 255, 255, .22)),
    radial-gradient(circle at 78% 18%, rgba(37, 107, 57, .12), transparent 30%);
}

.hero--med .hero__content,
.hero--med .hero__lead {
  color: var(--color-ink);
}

.hero--med h1 {
  color: #122119;
}

.hero--med .button--ghost {
  background: #fff;
  color: var(--color-ink);
}

.med-clinic-system {
  background:
    linear-gradient(90deg, rgba(37, 107, 57, .055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(37, 107, 57, .045) 1px, transparent 1px),
    #ffffff;
  background-size: 58px 58px;
}

.med-clinic-system .info-card {
  border-top-color: #256b39;
  box-shadow: 0 14px 36px rgba(37, 107, 57, .08);
}

@media (max-width: 980px) {
  .hero__content--split,
  .ecosystem-map,
  .press-layout,
  .reference-clusters {
    grid-template-columns: 1fr;
  }

  .architect-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .hero--atelier {
    min-height: auto;
  }

  .hero--atelier .hero__content {
    padding-top: 78px;
  }

  .credential-strip span,
  .social-row a {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius);
  }

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

  .social-row a {
    width: auto;
    padding-inline: 8px;
    font-size: .8rem;
  }

  .ecosystem-card {
    min-height: 170px;
  }

  .press-clipping {
    transform: none;
  }

  .press-clipping img {
    max-height: 420px;
  }
}

/* Final visual direction */
body {
  background:
    radial-gradient(circle at 8% 10%, rgba(154, 118, 80, .045), transparent 28%),
    linear-gradient(180deg, #fafaf7, #f7f5f0 58%, #ffffff);
}

.hero {
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.9rem, 6vw, 5.8rem);
  letter-spacing: 0;
}

.hero--atelier {
  min-height: clamp(680px, 88svh, 820px);
  background:
    radial-gradient(circle at 16% 18%, rgba(154, 118, 80, .08), transparent 28%),
    linear-gradient(135deg, #fbfaf7, #f5f2ea 48%, #ffffff);
}

.hero--atelier::before,
.hero--mmd::before,
.hero--med::before {
  opacity: .2;
  filter: saturate(.85) contrast(1.02);
}

.hero--atelier::after,
.section--ornament::before,
.ecosystem-section::before,
.contact-band::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero--atelier::after {
  inset: 0;
  z-index: -1;
  opacity: .18;
  background:
    linear-gradient(90deg, rgba(31, 35, 38, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 35, 38, .07) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 58%, rgba(154, 118, 80, .13) 58.2% 58.45%, transparent 58.7%);
  background-size: 72px 72px, 72px 72px, 100% 100%;
}

.hero--atelier .hero__shade {
  background:
    linear-gradient(90deg, rgba(250, 250, 247, .98), rgba(250, 250, 247, .86) 52%, rgba(250, 250, 247, .32)),
    radial-gradient(circle at 82% 22%, rgba(154, 118, 80, .08), transparent 34%);
}

.hero--atelier .hero__grid {
  opacity: .12;
  background:
    linear-gradient(90deg, rgba(31, 35, 38, .16) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 35, 38, .13) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.hero--atelier .hero__content {
  color: var(--color-ink);
  padding-top: 104px;
}

.hero--atelier .hero__lead {
  color: #42474b;
}

.hero-visual-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(31, 35, 38, .14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 68px rgba(16, 24, 32, .16);
}

.hero-visual-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(.72) contrast(1.08);
}

.identity-card {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: rgba(250, 250, 247, .92);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  color: var(--color-ink);
}

.identity-card span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--color-ink);
  color: #fff;
  font-weight: 900;
}

.identity-card strong {
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.25;
}

.credential-strip span,
.social-row a {
  border-color: rgba(31, 35, 38, .12);
  color: #2f3438;
}

.social-row a {
  color: var(--brand);
}

.ecosystem-section {
  position: relative;
  background:
    linear-gradient(90deg, rgba(31, 35, 38, .06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 35, 38, .06) 1px, transparent 1px),
    #fff;
  background-size: 88px 88px;
}

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

.ecosystem-card {
  min-height: 210px;
  background: rgba(255, 255, 255, .92);
  border-color: rgba(31, 35, 38, .12);
  box-shadow: 0 14px 34px rgba(16, 24, 32, .07);
}

.ecosystem-card::before {
  opacity: .18;
  background:
    linear-gradient(135deg, transparent 0 56%, rgba(154, 118, 80, .22) 56.2% 56.45%, transparent 56.7%),
    radial-gradient(circle at 88% 12%, rgba(31, 35, 38, .08), transparent 24%);
}

.ecosystem-card:hover {
  border-color: rgba(154, 118, 80, .45);
  box-shadow: 0 18px 48px rgba(16, 24, 32, .1);
}

.section--ornament::before {
  inset: 0;
  opacity: .08;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .28) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .22) 1px, transparent 1px);
  background-size: 80px 80px;
}

.reference-cluster,
.reference-list li,
.info-card {
  border-color: rgba(31, 35, 38, .12);
}

.reference-cluster {
  box-shadow: 0 12px 32px rgba(16, 24, 32, .06);
}

.press-section {
  background:
    linear-gradient(90deg, rgba(31, 35, 38, .06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 35, 38, .06) 1px, transparent 1px),
    #faf9f6;
  background-size: 78px 78px;
}

.source-links a {
  border-left-color: var(--brand);
}

.hero--mmd {
  min-height: clamp(600px, 76svh, 740px);
  background: #f7f5f0;
}

.hero--mmd .hero__shade {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, .86), rgba(17, 17, 17, .58) 52%, rgba(17, 17, 17, .22)),
    radial-gradient(circle at 78% 20%, rgba(154, 118, 80, .18), transparent 34%);
}

.hero--mmd .hero__grid {
  opacity: .18;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .16) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 80px 80px;
}

.mmd-command {
  background:
    linear-gradient(90deg, rgba(31, 35, 38, .06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 35, 38, .05) 1px, transparent 1px),
    #f7f5f0;
  background-size: 56px 56px;
}

.mmd-command .info-card {
  background: linear-gradient(145deg, #1f2326, #2d2b28);
  border-top-color: var(--brand);
}

.hero--med {
  min-height: clamp(600px, 76svh, 740px);
  background: #f8fcfa;
}

.hero--med .hero__shade {
  background:
    linear-gradient(90deg, rgba(248, 252, 250, .98), rgba(248, 252, 250, .82) 52%, rgba(248, 252, 250, .28)),
    radial-gradient(circle at 78% 18%, rgba(31, 61, 51, .1), transparent 32%);
}

.hero--med .hero__grid {
  opacity: .14;
  background:
    linear-gradient(90deg, rgba(31, 61, 51, .18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 61, 51, .14) 1px, transparent 1px);
  background-size: 74px 74px;
}

.hero--med .hero__content,
.hero--med .hero__lead {
  color: var(--color-ink);
}

.hero--med h1 {
  color: #142820;
}

.hero--med .button--ghost {
  background: #fff;
  color: var(--color-ink);
}

.med-clinic-system {
  background:
    linear-gradient(90deg, rgba(31, 61, 51, .05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 61, 51, .04) 1px, transparent 1px),
    #ffffff;
  background-size: 64px 64px;
}

.med-clinic-system .info-card {
  border-top-color: var(--brand);
}

body[data-site="deniz"] {
  background:
    radial-gradient(circle at 84% 12%, rgba(23, 38, 53, .07), transparent 28%),
    linear-gradient(180deg, #fafafa, #f3f6f8 58%, #fff);
  color: var(--color-ink);
}

body[data-site="deniz"] .site-header {
  background: rgba(255, 255, 255, .92);
  border-bottom-color: rgba(216, 220, 226, .9);
}

body[data-site="deniz"] .brand-nav {
  background: rgba(255, 255, 255, .84);
  border-color: rgba(216, 220, 226, .88);
}

body[data-site="deniz"] .brand-nav a {
  color: var(--color-ink-soft);
}

.hero--deniz {
  min-height: clamp(560px, 72svh, 700px);
  background:
    radial-gradient(circle at 82% 20%, rgba(23, 38, 53, .09), transparent 30%),
    linear-gradient(135deg, #ffffff, #f3f6f8 54%, #ffffff);
}

.hero--deniz::before {
  opacity: 0;
}

.hero--deniz .hero__shade {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .92) 58%, rgba(255, 255, 255, .62)),
    radial-gradient(circle at 76% 18%, rgba(23, 38, 53, .08), transparent 30%);
}

.hero--deniz .hero__grid--technical {
  opacity: .2;
  background:
    linear-gradient(90deg, rgba(23, 38, 53, .12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 38, 53, .1) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.hero--deniz .hero__content,
.hero--deniz .hero__lead {
  color: var(--color-ink);
}

.hero--deniz h1 {
  color: #172635;
}

.hero--deniz .button--ghost {
  color: #172635;
  background: #fff;
  border-color: rgba(23, 38, 53, .22);
}

.deniz-stack {
  background:
    linear-gradient(90deg, rgba(23, 38, 53, .055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 38, 53, .045) 1px, transparent 1px),
    #ffffff;
  background-size: 62px 62px;
}

body[data-site="deniz"] .section--contrast,
body[data-site="deniz"] .contact-band {
  background: #f3f6f8;
}

body[data-site="deniz"] .info-card,
body[data-site="deniz"] .media-panel,
body[data-site="deniz"] .process-line div,
body[data-site="deniz"] .reference-list li {
  background: rgba(255, 255, 255, .86);
  border-color: rgba(23, 38, 53, .12);
  color: var(--color-ink);
}

body[data-site="deniz"] .info-card p,
body[data-site="deniz"] p,
body[data-site="deniz"] figcaption {
  color: var(--color-muted);
}

body[data-site="deniz"] .button--secondary,
body[data-site="deniz"] .contact-band .button--ghost {
  border-color: rgba(23, 38, 53, .2);
  background: #fff;
  color: #172635;
}

@media (max-width: 980px) {
  .hero-visual-panel {
    min-height: 380px;
  }

  .hero-visual-panel img {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 2.95rem);
    line-height: 1.04;
  }

  .hero-visual-panel {
    min-height: 300px;
  }

  .hero-visual-panel img {
    min-height: 300px;
  }

  .identity-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 48px 1fr;
    padding: 12px;
  }

  .identity-card span {
    width: 48px;
    height: 48px;
  }
}

/* Subtle architectural surface */
body,
body[data-site="home"],
body[data-site="mmd"],
body[data-site="med"],
body[data-site="deniz"] {
  background:
    linear-gradient(90deg, rgba(31, 35, 38, .06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 35, 38, .06) 1px, transparent 1px),
    linear-gradient(45deg, transparent 0 47.6%, rgba(31, 35, 38, .06) 47.75% 48%, transparent 48.15% 100%),
    linear-gradient(-45deg, transparent 0 47.6%, rgba(31, 35, 38, .06) 47.75% 48%, transparent 48.15% 100%),
    radial-gradient(circle at 10% 8%, rgba(154, 118, 80, .06), transparent 26%),
    linear-gradient(180deg, #faf8f3, #f7f5ef 58%, #fcfbf8);
  background-size: 96px 96px, 96px 96px, 192px 192px, 192px 192px, auto, auto;
}

.site-header,
.logo-plate,
.switch-grid,
.switch-card,
.media-panel,
.image-grid figure,
.press-clipping,
.source-links a,
.credential-strip span,
.social-row a,
.identity-card {
  border-color: rgba(31, 35, 38, .08);
}

.section--contrast,
body[data-site="deniz"] .section--contrast,
body[data-site="deniz"] .contact-band {
  background:
    linear-gradient(90deg, rgba(31, 35, 38, .06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 35, 38, .06) 1px, transparent 1px),
    #f7f5ef;
  background-size: 112px 112px, 112px 112px, auto;
}

.ecosystem-section,
.press-section,
.contact-band,
.mmd-command,
.med-clinic-system,
.deniz-stack {
  background:
    linear-gradient(90deg, rgba(31, 35, 38, .06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 35, 38, .06) 1px, transparent 1px),
    linear-gradient(45deg, transparent 0 48%, rgba(31, 35, 38, .06) 48.12% 48.32%, transparent 48.5% 100%),
    #fcfbf8;
  background-size: 88px 88px, 88px 88px, 176px 176px, auto;
}

.contact-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(31, 35, 38, .08);
  border-bottom: 1px solid rgba(31, 35, 38, .08);
}

.info-card,
.reference-cluster,
.reference-list li,
.process-line div,
.ecosystem-card,
body[data-site="deniz"] .info-card,
body[data-site="deniz"] .media-panel,
body[data-site="deniz"] .process-line div,
body[data-site="deniz"] .reference-list li {
  border-color: rgba(31, 35, 38, .08);
  background:
    linear-gradient(135deg, transparent 0 74%, rgba(31, 35, 38, .06) 74.2% 74.45%, transparent 74.7%),
    #ffffff;
}

.ecosystem-card,
.reference-cluster,
.info-card {
  box-shadow: 0 12px 32px rgba(16, 24, 32, .055);
}

.switch-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(252, 251, 248, .92)),
    #ffffff;
}

.hero--atelier,
.hero--deniz {
  background:
    radial-gradient(circle at 16% 18%, rgba(154, 118, 80, .052), transparent 28%),
    linear-gradient(135deg, #faf8f3, #f7f5ef 48%, #ffffff);
}

.hero--med {
  background:
    radial-gradient(circle at 78% 18%, rgba(31, 61, 51, .052), transparent 30%),
    linear-gradient(135deg, #fbfdfb, #f4f8f4 52%, #ffffff);
}

.hero--mmd {
  background:
    radial-gradient(circle at 78% 18%, rgba(154, 118, 80, .06), transparent 30%),
    #f7f5ef;
}

.hero--atelier::after {
  opacity: .28;
  background:
    linear-gradient(90deg, rgba(31, 35, 38, .052) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 35, 38, .044) 1px, transparent 1px),
    linear-gradient(45deg, transparent 0 47.6%, rgba(31, 35, 38, .05) 47.75% 48%, transparent 48.15% 100%),
    linear-gradient(-45deg, transparent 0 47.6%, rgba(31, 35, 38, .06) 47.75% 48%, transparent 48.15% 100%);
  background-size: 88px 88px, 88px 88px, 176px 176px, 176px 176px;
}

.hero--atelier .hero__grid,
.hero--deniz .hero__grid--technical {
  opacity: .12;
  background:
    linear-gradient(90deg, rgba(31, 35, 38, .09) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 35, 38, .075) 1px, transparent 1px);
}

.hero--med .hero__grid {
  opacity: .11;
  background:
    linear-gradient(90deg, rgba(31, 61, 51, .085) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 61, 51, .07) 1px, transparent 1px);
}

.hero--mmd .hero__grid {
  opacity: .16;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .09) 1px, transparent 1px),
    linear-gradient(45deg, transparent 0 48%, rgba(255, 255, 255, .1) 48.15% 48.35%, transparent 48.55% 100%);
  background-size: 80px 80px, 80px 80px, 160px 160px;
}

.section--ornament::before {
  opacity: .14;
  background:
    linear-gradient(90deg, rgba(31, 35, 38, .048) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 35, 38, .06) 1px, transparent 1px),
    linear-gradient(45deg, transparent 0 48%, rgba(31, 35, 38, .04) 48.15% 48.35%, transparent 48.55% 100%);
  background-size: 96px 96px, 96px 96px, 192px 192px;
}

.ecosystem-card::before {
  opacity: .12;
  background:
    linear-gradient(135deg, transparent 0 56%, rgba(31, 35, 38, .05) 56.2% 56.45%, transparent 56.7%),
    radial-gradient(circle at 88% 12%, rgba(31, 35, 38, .055), transparent 24%);
}

/* Final contrast pass: visible imagery, quiet architectural geometry */
.brand-nav a[aria-current="page"] {
  color: var(--brand-dark);
  background: rgba(154, 118, 80, .1);
  box-shadow: none;
  font-weight: 850;
  transform: none;
}

.brand-nav a[aria-current="page"]::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
}

.brand-nav a[aria-current="page"]::after {
  opacity: 1;
  border-color: rgba(154, 118, 80, .18);
}

.brand-nav a[aria-current="page"] .brand-nav__dot {
  background: var(--brand);
  color: #fff;
}

.brand-nav a:hover {
  color: #fff;
  background: var(--brand-dark);
}

body,
body[data-site="home"],
body[data-site="mmd"],
body[data-site="med"],
body[data-site="deniz"] {
  background:
    linear-gradient(90deg, rgba(31, 35, 38, .065) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 35, 38, .055) 1px, transparent 1px),
    linear-gradient(45deg, transparent 0 47.6%, rgba(31, 35, 38, .06) 47.75% 48%, transparent 48.15% 100%),
    linear-gradient(-45deg, transparent 0 47.6%, rgba(31, 35, 38, .05) 47.75% 48%, transparent 48.15% 100%),
    radial-gradient(circle at 10% 8%, rgba(154, 118, 80, .05), transparent 26%),
    linear-gradient(180deg, #faf8f3, #f7f5ef 58%, #fcfbf8);
  background-size: 96px 96px, 96px 96px, 192px 192px, 192px 192px, auto, auto;
}

.section--contrast,
body[data-site="deniz"] .section--contrast,
body[data-site="deniz"] .contact-band {
  background:
    linear-gradient(90deg, rgba(31, 35, 38, .065) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 35, 38, .055) 1px, transparent 1px),
    #f5f2ea;
  background-size: 112px 112px, 112px 112px, auto;
}

.ecosystem-section,
.press-section,
.contact-band,
.mmd-command,
.med-clinic-system,
.deniz-stack {
  background:
    linear-gradient(90deg, rgba(31, 35, 38, .07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 35, 38, .06) 1px, transparent 1px),
    linear-gradient(45deg, transparent 0 48%, rgba(31, 35, 38, .055) 48.12% 48.32%, transparent 48.5% 100%),
    #fcfbf8;
  background-size: 88px 88px, 88px 88px, 176px 176px, auto;
}

.contact-band {
  border-top-color: rgba(31, 35, 38, .1);
  border-bottom-color: rgba(31, 35, 38, .1);
}

.site-header,
.logo-plate,
.switch-grid,
.switch-card,
.media-panel,
.image-grid figure,
.press-clipping,
.source-links a,
.credential-strip span,
.social-row a,
.identity-card {
  border-color: rgba(31, 35, 38, .1);
}

.media-panel,
.image-grid figure,
.press-clipping,
.hero-visual-panel {
  background: #fff;
  box-shadow: 0 18px 45px rgba(31, 35, 38, .08);
}

.media-panel img,
.image-grid img,
.press-clipping img {
  filter: saturate(.96) contrast(1.06);
}

.hero-visual-panel img {
  filter: saturate(.94) contrast(1.08);
}

.info-card,
.reference-cluster,
.reference-list li,
.process-line div,
.ecosystem-card,
body[data-site="deniz"] .info-card,
body[data-site="deniz"] .media-panel,
body[data-site="deniz"] .process-line div,
body[data-site="deniz"] .reference-list li {
  border-color: rgba(31, 35, 38, .1);
  background:
    linear-gradient(135deg, transparent 0 74%, rgba(31, 35, 38, .06) 74.2% 74.45%, transparent 74.7%),
    #ffffff;
}

.ecosystem-card,
.reference-cluster,
.info-card {
  box-shadow: 0 18px 45px rgba(31, 35, 38, .08);
}

.hero--atelier::before {
  z-index: -4;
  opacity: .38;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(.95) contrast(1.08);
  transform: scale(1.015);
}

.hero--atelier::after {
  opacity: .42;
  background:
    linear-gradient(90deg, rgba(31, 35, 38, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 35, 38, .07) 1px, transparent 1px),
    linear-gradient(45deg, transparent 0 47.6%, rgba(31, 35, 38, .075) 47.75% 48%, transparent 48.15% 100%),
    linear-gradient(-45deg, transparent 0 47.6%, rgba(31, 35, 38, .06) 47.75% 48%, transparent 48.15% 100%);
}

.hero--atelier .hero__shade {
  background:
    linear-gradient(90deg, rgba(250, 248, 243, .9), rgba(250, 248, 243, .68) 52%, rgba(250, 248, 243, .24)),
    radial-gradient(circle at 82% 22%, rgba(154, 118, 80, .08), transparent 34%);
}

.hero--atelier .hero__grid,
.hero--deniz .hero__grid--technical {
  opacity: .24;
  background:
    linear-gradient(90deg, rgba(31, 35, 38, .1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 35, 38, .085) 1px, transparent 1px);
}

.hero--mmd::before {
  opacity: 1;
  filter: saturate(.95) contrast(1.08);
}

.hero--mmd .hero__shade {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, .78), rgba(17, 17, 17, .46) 52%, rgba(17, 17, 17, .12)),
    radial-gradient(circle at 78% 20%, rgba(154, 118, 80, .12), transparent 34%);
}

.hero--mmd .hero__grid {
  opacity: .26;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .14) 1px, transparent 1px),
    linear-gradient(45deg, transparent 0 48%, rgba(255, 255, 255, .12) 48.15% 48.35%, transparent 48.55% 100%);
}

.hero--med::before {
  opacity: .86;
  filter: saturate(.96) brightness(1.02) contrast(1.06);
  background-position: 68% center;
}

.hero--med .hero__shade {
  background:
    linear-gradient(90deg, rgba(248, 252, 250, .86), rgba(248, 252, 250, .58) 52%, rgba(248, 252, 250, .18)),
    radial-gradient(circle at 78% 18%, rgba(31, 61, 51, .09), transparent 32%);
}

.hero--med .hero__grid {
  opacity: .22;
  background:
    linear-gradient(90deg, rgba(31, 61, 51, .1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 61, 51, .08) 1px, transparent 1px);
}

.hero--deniz::before {
  opacity: .46;
  filter: saturate(.9) contrast(1.08);
}

.hero--deniz .hero__shade {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .74) 58%, rgba(255, 255, 255, .34)),
    radial-gradient(circle at 76% 18%, rgba(23, 38, 53, .08), transparent 30%);
}

.media-panel--logo {
  background:
    linear-gradient(90deg, rgba(23, 38, 53, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 38, 53, .065) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 58%, rgba(23, 38, 53, .08) 58.15% 58.45%, transparent 58.7%),
    #ffffff;
  background-size: 54px 54px, 54px 54px, 100% 100%, auto;
}

.media-panel--logo img {
  padding: 34px;
  filter: drop-shadow(0 14px 30px rgba(23, 38, 53, .14));
}

/* Visibility boost: image-first hero balance */
.hero--atelier::before,
.hero--mmd::before,
.hero--med::before,
.hero--deniz::before {
  opacity: 1;
}

.hero--atelier::before {
  filter: saturate(1.02) contrast(1.1);
}

.hero--atelier .hero__shade {
  background:
    linear-gradient(90deg, rgba(250, 248, 243, .28), rgba(250, 248, 243, .18) 52%, rgba(250, 248, 243, .06)),
    radial-gradient(circle at 82% 22%, rgba(154, 118, 80, .08), transparent 34%);
}

.hero--atelier h1,
.hero--atelier .hero__lead,
.hero--atelier .eyebrow {
  text-shadow: 0 1px 0 rgba(255, 255, 255, .72), 0 18px 42px rgba(250, 248, 243, .88);
}

.hero--atelier .hero__lead {
  color: #23282d;
}

.credential-strip span {
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 10px 26px rgba(31, 35, 38, .08);
}

.hero--atelier::after {
  opacity: .5;
}

.hero--atelier .hero__grid,
.hero--deniz .hero__grid--technical {
  opacity: .34;
  background:
    linear-gradient(90deg, rgba(31, 35, 38, .12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 35, 38, .1) 1px, transparent 1px);
}

.hero--mmd::before {
  filter: saturate(1.02) contrast(1.1);
}

.hero--mmd .hero__shade {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, .6), rgba(17, 17, 17, .3) 52%, rgba(17, 17, 17, .04)),
    radial-gradient(circle at 78% 20%, rgba(154, 118, 80, .1), transparent 34%);
}

.hero--mmd .hero__content {
  text-shadow: 0 2px 22px rgba(0, 0, 0, .58);
}

.hero--mmd .hero__lead {
  color: rgba(255, 255, 255, .96);
}

.hero--mmd .hero__grid {
  opacity: .34;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .22) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .17) 1px, transparent 1px),
    linear-gradient(45deg, transparent 0 48%, rgba(255, 255, 255, .14) 48.15% 48.35%, transparent 48.55% 100%);
}

.hero--med::before {
  filter: saturate(1) brightness(1) contrast(1.08);
}

.hero--med .hero__shade {
  background:
    linear-gradient(90deg, rgba(248, 252, 250, .42), rgba(248, 252, 250, .24) 52%, rgba(248, 252, 250, .08)),
    radial-gradient(circle at 78% 18%, rgba(31, 61, 51, .08), transparent 32%);
}

.hero--med h1,
.hero--med .hero__lead,
.hero--med .eyebrow {
  text-shadow: 0 1px 0 rgba(255, 255, 255, .78), 0 16px 38px rgba(248, 252, 250, .82);
}

.hero--med .hero__lead {
  color: #1f2f28;
}

.hero--med .hero__grid {
  opacity: .32;
  background:
    linear-gradient(90deg, rgba(31, 61, 51, .12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 61, 51, .1) 1px, transparent 1px);
}

.hero--deniz::before {
  filter: saturate(.98) contrast(1.1);
}

.hero--deniz .hero__shade {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, .22) 58%, rgba(255, 255, 255, .08)),
    radial-gradient(circle at 76% 18%, rgba(23, 38, 53, .06), transparent 30%);
}

.hero--deniz h1,
.hero--deniz .hero__lead,
.hero--deniz .eyebrow {
  text-shadow: 0 1px 0 rgba(255, 255, 255, .72), 0 16px 36px rgba(255, 255, 255, .82);
}

.hero--deniz .hero__lead {
  color: #24303b;
}

.hero-visual-panel {
  border-color: rgba(31, 35, 38, .14);
  box-shadow: 0 22px 56px rgba(31, 35, 38, .11);
}

.hero-visual-panel img,
.media-panel img,
.image-grid img,
.press-clipping img {
  filter: saturate(1) contrast(1.09);
}

body,
body[data-site="home"],
body[data-site="mmd"],
body[data-site="med"],
body[data-site="deniz"],
.ecosystem-section,
.press-section,
.contact-band,
.mmd-command,
.med-clinic-system,
.deniz-stack,
.section--contrast,
body[data-site="deniz"] .section--contrast,
body[data-site="deniz"] .contact-band {
  background-blend-mode: normal;
}

.ecosystem-section,
.press-section,
.contact-band,
.mmd-command,
.med-clinic-system,
.deniz-stack {
  background:
    linear-gradient(90deg, rgba(31, 35, 38, .09) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 35, 38, .08) 1px, transparent 1px),
    linear-gradient(45deg, transparent 0 48%, rgba(31, 35, 38, .075) 48.12% 48.32%, transparent 48.5% 100%),
    #fcfbf8;
  background-size: 88px 88px, 88px 88px, 176px 176px, auto;
}

/* Readability-first split hero */
.hero {
  min-height: clamp(620px, 82svh, 820px);
  align-items: center;
  background:
    radial-gradient(circle at 84% 18%, rgba(154, 118, 80, .075), transparent 28%),
    linear-gradient(135deg, #faf8f3, #f7f5ef 54%, #ffffff);
}

.hero--mmd,
.hero--med,
.hero--deniz,
.hero--atelier {
  background:
    radial-gradient(circle at 86% 18%, rgba(31, 35, 38, .05), transparent 30%),
    linear-gradient(135deg, #faf8f3, #f7f5ef 54%, #ffffff);
}

.hero--med {
  background:
    radial-gradient(circle at 86% 18%, rgba(31, 61, 51, .055), transparent 30%),
    linear-gradient(135deg, #fbfdfb, #f5f8f4 54%, #ffffff);
}

.hero--deniz {
  background:
    radial-gradient(circle at 86% 18%, rgba(23, 38, 53, .06), transparent 30%),
    linear-gradient(135deg, #fbfcfd, #f3f6f8 54%, #ffffff);
}

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

.hero__content,
.hero__content--split {
  width: var(--container);
  display: grid;
  grid-template-columns: minmax(0, .54fr) minmax(360px, .46fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: 112px 0 72px;
  color: #1f2326;
}

.hero__text {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(31, 35, 38, .1);
  border-radius: var(--radius);
  background: rgba(250, 248, 243, .94);
  box-shadow: 0 18px 48px rgba(31, 35, 38, .08);
}

.hero h1,
.hero--atelier h1,
.hero--mmd h1,
.hero--med h1,
.hero--deniz h1 {
  color: #1f2326;
  font-weight: 760;
  text-shadow: none;
}

.hero__lead,
.hero--atelier .hero__lead,
.hero--mmd .hero__lead,
.hero--med .hero__lead,
.hero--deniz .hero__lead {
  color: #3e4548;
  font-weight: 450;
  text-shadow: none;
}

.hero .eyebrow,
.hero--atelier .eyebrow,
.hero--mmd .eyebrow,
.hero--med .eyebrow,
.hero--deniz .eyebrow {
  color: #6b5a46;
  text-shadow: none;
}

.hero--med .eyebrow {
  color: #1f5a3f;
}

.hero--deniz .eyebrow {
  color: #20384d;
}

.hero__grid,
.hero--atelier .hero__grid,
.hero--mmd .hero__grid,
.hero--med .hero__grid,
.hero--deniz .hero__grid--technical {
  z-index: -1;
  opacity: .12;
  background:
    linear-gradient(90deg, rgba(31, 35, 38, .045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 35, 38, .04) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, transparent 0 6%, rgba(0, 0, 0, .2) 34%, #000 74%, transparent);
}

.hero-visual-panel {
  justify-self: stretch;
  align-self: stretch;
  min-height: clamp(430px, 56svh, 620px);
  border: 1px solid rgba(31, 35, 38, .12);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(31, 35, 38, .12);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .72) 22%, #000 46%);
}

.hero-visual-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(1) contrast(1.08);
}

.hero-visual-panel--technical {
  background:
    linear-gradient(90deg, rgba(23, 38, 53, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 38, 53, .065) 1px, transparent 1px),
    #ffffff;
  background-size: 54px 54px, 54px 54px, auto;
}

.hero-visual-panel--technical img {
  object-position: center;
}

.identity-card {
  background: rgba(250, 248, 243, .94);
  border-color: rgba(31, 35, 38, .12);
}

.button--ghost {
  border-color: rgba(31, 35, 38, .28);
  background: rgba(255, 255, 255, .9);
  color: #1f2326;
}

.hero .button--ghost,
.hero--med .button--ghost,
.hero--deniz .button--ghost {
  color: #1f2326;
  background: #ffffff;
  border-color: rgba(31, 35, 38, .28);
}

.section-heading h2,
.two-column h2,
.contact-layout h2,
.info-card h3,
.reference-cluster h3 {
  color: #1f2326;
}

.section-heading p,
.two-column p,
.info-card p,
.reference-cluster li,
.reference-list li,
figcaption {
  color: #4a5154;
}

.info-card,
.reference-cluster,
.reference-list li,
.process-line div,
.ecosystem-card,
body[data-site="deniz"] .info-card,
body[data-site="deniz"] .media-panel,
body[data-site="deniz"] .process-line div,
body[data-site="deniz"] .reference-list li {
  border-color: rgba(31, 35, 38, .12);
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(31, 35, 38, .07);
}

.section--contrast,
body[data-site="deniz"] .section--contrast,
body[data-site="deniz"] .contact-band {
  background:
    linear-gradient(90deg, rgba(31, 35, 38, .035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 35, 38, .03) 1px, transparent 1px),
    #f5f2ea;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero__content,
  .hero__content--split {
    grid-template-columns: 1fr;
    padding: 94px 0 54px;
  }

  .hero-visual-panel {
    min-height: 360px;
    mask-image: none;
    order: 2;
  }

  .hero__text {
    order: 1;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .hero__content,
  .hero__content--split {
    padding: 74px 0 42px;
    gap: 20px;
  }

  .hero__text {
    padding: 18px;
    background: rgba(250, 248, 243, .96);
  }

  .hero__lead {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-visual-panel {
    min-height: 260px;
  }

  .hero__grid,
  .hero--atelier .hero__grid,
  .hero--mmd .hero__grid,
  .hero--med .hero__grid,
  .hero--deniz .hero__grid--technical {
    opacity: .06;
  }
}

/* 20260625d: larger header logos and restrained visual fillers */
:root {
  --header-h: 88px;
}

.site-header {
  padding-block: 10px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  font-size: 1.05rem;
}

.logo-plate {
  height: 66px;
  max-width: min(330px, 44vw);
  padding: 6px 14px;
}

.logo-plate img {
  max-height: 56px;
}

body[data-site="med"] .logo-plate img,
body[data-site="deniz"] .logo-plate img {
  max-height: 60px;
}

.visual-band {
  padding-top: clamp(34px, 5vw, 58px);
  padding-bottom: clamp(34px, 5vw, 58px);
  background: #fcfbf8;
}

.visual-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 16px;
  align-items: stretch;
}

.visual-tile {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 35, 38, .1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 45px rgba(31, 35, 38, .08);
}

.visual-tile img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  filter: saturate(.95) contrast(1.05);
}

.visual-tile--wide {
  min-height: 320px;
}

.visual-tile figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 9px 12px;
  border: 1px solid rgba(31, 35, 38, .1);
  border-radius: 999px;
  background: rgba(250, 248, 243, .92);
  color: #1f2326;
  font-weight: 760;
  box-shadow: 0 10px 24px rgba(31, 35, 38, .08);
}

.architect-profile {
  background: rgba(250, 250, 248, .92);
}

.media-panel--portrait {
  max-width: 460px;
  justify-self: end;
}

.media-panel--portrait img {
  aspect-ratio: 3 / 4;
  max-height: 560px;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 980px) {
  :root {
    --header-h: 82px;
  }

  .logo-plate {
    height: 60px;
    max-width: min(290px, 52vw);
  }

  .logo-plate img,
  body[data-site="med"] .logo-plate img,
  body[data-site="deniz"] .logo-plate img {
    max-height: 52px;
  }

  .visual-band__grid {
    grid-template-columns: 1fr;
  }

  .media-panel--portrait {
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 76px;
  }

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

  .logo-plate {
    height: 56px;
    max-width: min(230px, 60vw);
    padding-inline: 10px;
  }

  .logo-plate img,
  body[data-site="med"] .logo-plate img,
  body[data-site="deniz"] .logo-plate img {
    max-height: 48px;
  }

  .visual-tile,
  .visual-tile--wide,
  .visual-tile img {
    min-height: 220px;
  }
}

/* 20260625e: quiet grey geometric background */
body,
body[data-site="home"],
body[data-site="mmd"],
body[data-site="med"],
body[data-site="deniz"] {
  background-color: #f7f8f7;
  background-image:
    linear-gradient(90deg, rgba(31, 35, 38, .032) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 35, 38, .028) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 48.4%, rgba(31, 35, 38, .024) 48.55% 48.8%, transparent 48.95% 100%),
    radial-gradient(circle at 14% 10%, rgba(31, 35, 38, .035), transparent 24%),
    linear-gradient(180deg, #fbfbfa, #f6f7f6 58%, #fbfbfa);
  background-size: 104px 104px, 104px 104px, 208px 208px, auto, auto;
}

.section,
.brand-switch,
.ecosystem-section,
.visual-band,
.press-section,
.mmd-command,
.med-clinic-system,
.deniz-stack,
.contact-band {
  background-image:
    linear-gradient(90deg, rgba(31, 35, 38, .026) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 35, 38, .022) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 48.5%, rgba(31, 35, 38, .018) 48.65% 48.88%, transparent 49.05% 100%);
  background-color: rgba(250, 250, 248, .9);
  background-size: 112px 112px, 112px 112px, 224px 224px;
}

.section--contrast,
body[data-site="deniz"] .section--contrast,
body[data-site="deniz"] .contact-band {
  background-image:
    linear-gradient(90deg, rgba(31, 35, 38, .028) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 35, 38, .024) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 48.5%, rgba(31, 35, 38, .02) 48.65% 48.88%, transparent 49.05% 100%);
  background-color: #f3f4f2;
  background-size: 112px 112px, 112px 112px, 224px 224px;
}

.hero,
.hero--atelier,
.hero--mmd,
.hero--med,
.hero--deniz {
  background-color: #f7f8f7;
}

/* 20260626b: final polish for footer, contact cards, portfolio logos and Deniz Yazilim */
.contact-band .contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.contact-band .button {
  min-height: 74px;
  justify-content: flex-start;
  padding: 16px 18px;
  border-color: rgba(31, 35, 38, .12);
  background: rgba(255, 255, 255, .92);
  color: #1f2326;
  box-shadow: 0 14px 34px rgba(31, 35, 38, .07);
}

.contact-band .button::before {
  content: "";
  width: 9px;
  height: 36px;
  margin-right: 12px;
  border-radius: 999px;
  background: var(--brand);
}

.contact-band .button--secondary,
.contact-band .button--ghost {
  background: #fff;
  color: #1f2326;
}

.contact-band .button:hover {
  border-color: rgba(31, 35, 38, .22);
  box-shadow: 0 18px 42px rgba(31, 35, 38, .11);
}

.ecosystem-map {
  align-items: stretch;
}

.ecosystem-card {
  min-height: 286px;
  grid-template-rows: 154px auto 28px;
  place-items: center;
  text-align: center;
}

.ecosystem-card .switch-card__media {
  width: min(154px, 62%);
  height: auto;
  aspect-ratio: 1;
  border: 0;
  background: transparent;
  transition: width .22s ease, height .22s ease, transform .22s ease;
}

.ecosystem-card .switch-card__media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(31, 35, 38, .12));
}

.ecosystem-card .switch-card__body,
.ecosystem-card .switch-card__arrow {
  transition: opacity .18s ease, transform .18s ease;
}

.ecosystem-card .switch-card__body {
  max-width: 92%;
}

.ecosystem-card .switch-card__arrow {
  justify-self: center;
}

@media (hover: hover) and (pointer: fine) {
  .ecosystem-card:hover .switch-card__media {
    width: min(210px, 76%);
    height: auto;
    transform: translateY(18px) scale(1.04);
  }

  .ecosystem-card:hover .switch-card__body,
  .ecosystem-card:hover .switch-card__arrow {
    opacity: 0;
    transform: translateY(10px);
  }
}

.hero-visual-panel--technical {
  display: grid;
  place-items: center;
  overflow: hidden;
  mask-image: none;
  -webkit-mask-image: none;
  background:
    linear-gradient(90deg, rgba(23, 38, 53, .075) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 38, 53, .06) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 48%, rgba(23, 38, 53, .08) 48.15% 48.38%, transparent 48.55%),
    #ffffff;
  background-size: 58px 58px, 58px 58px, 116px 116px, auto;
}

.hero-visual-panel--technical::before,
.hero-visual-panel--technical::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(23, 38, 53, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .56);
}

.hero-visual-panel--technical::before {
  width: 52%;
  height: 42%;
  left: 10%;
  top: 12%;
}

.hero-visual-panel--technical::after {
  width: 42%;
  height: 32%;
  right: 10%;
  bottom: 14%;
}

.hero-visual-panel--technical img {
  position: relative;
  z-index: 1;
  width: min(280px, 58%);
  height: auto;
  min-height: 0;
  object-fit: contain;
  padding: 18px;
  border: 1px solid rgba(23, 38, 53, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 22px 54px rgba(23, 38, 53, .13);
  filter: none;
}

body[data-site="deniz"] .media-panel {
  display: grid;
  place-items: center;
  padding: clamp(32px, 5vw, 56px);
  background:
    linear-gradient(90deg, rgba(23, 38, 53, .06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 38, 53, .05) 1px, transparent 1px),
    #fff;
  background-size: 54px 54px;
}

body[data-site="deniz"] .media-panel img {
  width: min(260px, 72%);
  aspect-ratio: 1;
  object-fit: contain;
  padding: 14px;
  filter: none;
}

body[data-site="deniz"] .media-panel figcaption {
  width: 100%;
}

@media (max-width: 980px) {
  .ecosystem-map {
    grid-template-columns: 1fr;
  }

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

  .ecosystem-card {
    min-height: 260px;
    grid-template-rows: 138px auto 28px;
  }

  .ecosystem-card .switch-card__media {
    width: min(138px, 62%);
    height: auto;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
  }

  .mobile-quickbar {
    width: min(390px, calc(100vw - 20px));
  }

  .mobile-quickbar a {
    min-height: 46px;
    font-size: .68rem;
    line-height: 1.1;
    text-align: center;
    white-space: normal;
  }

  .credential-strip span {
    justify-content: flex-start;
    text-align: left;
  }

  .ecosystem-card {
    min-height: 236px;
    grid-template-rows: 126px auto 24px;
  }
}
