:root {
  /* Swap this with your own neoclassical interior photo */
  --hero-image: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=1920&q=80');
  --reveal-radius: 280px;
  --ink: #1a1a1a;
  --paper: #f4efe5;
  --gold: #a98a5f;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  -webkit-font-smoothing: antialiased;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  isolation: isolate;
  cursor: none;
  --mx: 50%;
  --my: 50%;
}

/* 1 — The real, colorful photograph (always present underneath) */
.hero__image {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--hero-image) center/cover no-repeat;
  transform: scale(1.02);
}

/* 2 — Desaturated "sketch" layer above the photo */
.hero__sketch {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--hero-image) center/cover no-repeat;
  filter: grayscale(1) contrast(1.35) brightness(1.55);
  opacity: 0.96;
}

/* 3 — Translucent white "tül / duman" veil with paper grain */
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-color: rgba(246, 242, 234, 0.82);
  background-image:
    radial-gradient(ellipse at 30% 15%, rgba(255,255,255,0.75), rgba(255,255,255,0) 55%),
    radial-gradient(ellipse at 75% 85%, rgba(220,214,200,0.55), rgba(255,255,255,0) 60%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.25 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-blend-mode: normal, normal, soft-light;
  mix-blend-mode: normal;
}

/* Shared cursor-driven reveal mask — cuts a soft hole in sketch + veil */
.hero__sketch,
.hero__veil {
  -webkit-mask-image: radial-gradient(
    circle var(--reveal-radius) at var(--mx) var(--my),
    transparent 0%,
    rgba(0, 0, 0, 0.08) 30%,
    rgba(0, 0, 0, 0.55) 60%,
    #000 88%
  );
          mask-image: radial-gradient(
    circle var(--reveal-radius) at var(--mx) var(--my),
    transparent 0%,
    rgba(0, 0, 0, 0.08) 30%,
    rgba(0, 0, 0, 0.55) 60%,
    #000 88%
  );
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.hero__nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  align-items: center;
  justify-content: space-between;
  padding: 14px 64px;
  pointer-events: none;
  background-color: #0f0f0f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: padding 0.35s ease;
}
.hero__nav.is-scrolled {
  padding: 14px 64px;
}
.hero__nav.is-scrolled .hero__brand { font-size: 22px; }
.hero__nav > * { pointer-events: auto; position: relative; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__langs {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lang {
  appearance: none;
  background: none;
  border: 0;
  padding: 6px 2px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}
.lang:hover { color: #fff; }
.lang.is-active {
  color: #fff;
  border-bottom-color: #fff;
}

.nav__burger {
  appearance: none;
  background: none;
  border: 0;
  padding: 10px 6px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: #fff;
}

.hero__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
}
.hero__brand img {
  display: block;
  height: 2.4em;
  width: auto;
}

/* Main content block */
.hero__content {
  position: relative;
  z-index: 5;
  max-width: 780px;
  margin: 0 auto;
  padding: 20vh 32px 0;
  text-align: center;
  pointer-events: none;
}
.hero__eyebrow,
.hero__title { mix-blend-mode: multiply; }
.hero__eyebrow {
  margin: 0 0 22px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  opacity: 0.72;
}
.hero__title {
  margin: 0 0 26px;
  font-size: clamp(46px, 7.4vw, 104px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.012em;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.hero__lede {
  margin: 0 auto 36px;
  max-width: 460px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.72;
}
.hero__cta {
  pointer-events: auto;
  display: inline-block;
  padding: 16px 38px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid currentColor;
  transition: background 0.35s ease, color 0.35s ease;
}
.hero__cta:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.hero__langs {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 50;
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  background: rgba(244, 239, 229, 0.82);
  border: 1px solid rgba(26, 26, 26, 0.35);
  border-radius: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: auto;
  cursor: auto;
}
.hero__langs .lang {
  padding: 5px 8px;
  font-size: 9.5px;
  letter-spacing: 0.2em;
  border: 0;
  border-left: 1px solid rgba(26, 26, 26, 0.2);
  border-radius: 0;
  color: rgba(26, 26, 26, 0.55);
}
.hero__langs .lang:first-child { border-left: 0; }
.hero__langs .lang:hover { color: var(--ink); }
.hero__langs .lang.is-active {
  color: var(--ink);
  background: transparent;
  border-bottom: 0;
}

.hero__langs.is-on-dark {
  background: rgba(21, 19, 17, 0.82);
  border-color: rgba(169, 138, 95, 0.45);
}
.hero__langs.is-on-dark .lang {
  color: rgba(244, 239, 229, 0.55);
  border-left-color: rgba(244, 239, 229, 0.18);
}
.hero__langs.is-on-dark .lang:hover,
.hero__langs.is-on-dark .lang.is-active {
  color: var(--paper);
}

/* Fullscreen menu overlay */
.menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #0f0f0f;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.45s ease, transform 0.55s ease, visibility 0.45s;
  cursor: auto;
}
.menu.is-open { backdrop-filter: none; }
.menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu__langs {
  position: absolute;
  top: 44px;
  right: 116px;
  z-index: 2;
}

.menu__close {
  position: absolute;
  top: 38px;
  right: 56px;
  width: 40px;
  height: 40px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}
.menu__close span {
  position: absolute;
  left: 4px;
  right: 4px;
  top: 50%;
  height: 1.5px;
  background: #fff;
  transition: background 0.25s ease;
}
.menu__close span:first-child { transform: translateY(-50%) rotate(45deg); }
.menu__close span:last-child  { transform: translateY(-50%) rotate(-45deg); }
.menu__close:hover span { background: var(--gold); }

.menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.menu__list a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}
.menu__list a:hover {
  color: var(--gold);
  letter-spacing: 0.06em;
}

.menu__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 26px;
}
.menu__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.menu__social a:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Custom cursor ring — shows the "reveal source" */
.hero::after {
  content: "";
  position: absolute;
  left: var(--mx);
  top: var(--my);
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border: 1px solid rgba(26, 26, 26, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 6;
  mix-blend-mode: difference;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.7;
}
.hero.is-active::after {
  transform: scale(1.15);
  opacity: 1;
}

/* ─── Gallery strip ────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  background: var(--paper);
  padding: 80px 64px 10px;
  max-width: 1280px;
  margin: 0 auto;
}
.gallery__item {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 0.9s ease, filter 0.6s ease;
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0) 55%, rgba(26,26,26,0.22));
  pointer-events: none;
}
.gallery__item:hover img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.05);
}

/* ─── Intro: motto + dots + mission/vision ─────────────────── */
.intro {
  padding: 100px 64px 110px;
  max-width: 1280px;
  margin: 0 auto;
}
.intro__top {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  align-items: center;
  gap: 80px;
  padding-bottom: 96px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.14);
}
.intro__motto {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.intro__motto em {
  display: inline;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.intro__dots {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-end;
}
.intro__dots li {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.08);
  transition: transform 0.5s ease;
}
.intro__dots li:nth-child(1) { transform: translateY(-28px); }
.intro__dots li:nth-child(2) { transform: translateY(14px); }
.intro__dots li:nth-child(3) { transform: translateY(-10px); }
.intro__dots li:nth-child(4) { transform: translateY(22px); }
.intro__dots li:hover { transform: translateY(0) scale(1.05); }
.intro__dots img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  padding-top: 90px;
}
.pillar__title {
  margin: 0 0 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 18px;
}
.pillar__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 1px;
  background: var(--gold);
}
.pillar__body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.78);
  max-width: 46ch;
}

/* ─── Services: wide list + live preview card ─────────────── */
.services {
  padding: 110px 64px 120px;
  max-width: 1280px;
  margin: 0 auto;
}
.services__head {
  max-width: 1040px;
  margin: 0 0 88px;
}
.services__eyebrow {
  margin: 0 0 22px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.6);
}
.services__title {
  margin: 0 0 26px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.012em;
}
.services__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.services__lede {
  margin: 0;
  max-width: 88ch;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.7);
}

.services__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.services__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(26, 26, 26, 0.14);
}
.service-row {
  position: relative;
  border-bottom: 1px solid rgba(26, 26, 26, 0.14);
}
.service-row__link {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(200px, 1.4fr) auto;
  align-items: center;
  gap: 44px;
  padding: 48px 28px 48px 20px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.55s ease, padding-left 0.55s ease;
}
.service-row__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.55s ease;
}
.service-row:hover .service-row__link,
.service-row.is-active .service-row__link {
  background: rgba(26, 26, 26, 0.045);
  padding-left: 36px;
}
.service-row:hover .service-row__link::before,
.service-row.is-active .service-row__link::before {
  transform: scaleY(1);
}
.service-row__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(30px, 3vw, 46px);
  letter-spacing: -0.005em;
  line-height: 1;
}
.service-row__desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13.5px;
  line-height: 1.72;
  color: rgba(26, 26, 26, 0.62);
  max-width: 42ch;
}
.service-row__icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(26, 26, 26, 0.28);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background 0.45s ease, color 0.45s ease,
              border-color 0.45s ease, transform 0.5s ease;
}
.service-row__icon svg { display: block; }
.service-row:hover .service-row__icon,
.service-row.is-active .service-row__icon {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: translateX(6px);
}

.services__preview {
  position: sticky;
  top: 120px;
  height: 520px;
  margin: 0;
}
.services__card {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  opacity: 0;
  transform: translateY(22px) scale(0.975);
  transition: opacity 0.6s ease, transform 0.75s cubic-bezier(.22, .76, .26, 1);
  pointer-events: none;
}
.services__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0) 55%, rgba(26,26,26,0.22));
  pointer-events: none;
}
.services__card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.services__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.96) contrast(1.02);
}

/* ─── Projects: horizontal scroll carousel ───────────────── */
.projects {
  padding: 10px 64px 120px;
  max-width: 1280px;
  margin: 0 auto;
}
.projects__head {
  max-width: 720px;
  margin: 0 0 72px;
}
.projects__eyebrow {
  margin: 0 0 22px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.6);
}
.projects__title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.012em;
}
.projects__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.projects__carousel {
  position: relative;
}

.projects__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 239, 229, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(26, 26, 26, 0.12);
  cursor: pointer;
  color: var(--ink);
  opacity: 0;
  transition: opacity 0.35s ease, background 0.3s ease, color 0.3s ease;
  pointer-events: none;
}
.projects__carousel:hover .projects__arrow {
  opacity: 1;
  pointer-events: auto;
}
.projects__arrow:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.projects__arrow--left { left: -22px; }
.projects__arrow--right { right: -22px; }
.projects__arrow svg { display: block; }

.projects__grid {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.projects__grid::-webkit-scrollbar { display: none; }

.project-card {
  position: relative;
  margin: 0;
  flex: 0 0 calc(50% - 16px);
  min-width: 340px;
  aspect-ratio: 5 / 4.4;
  overflow: hidden;
  border-radius: 0;
  scroll-snap-align: start;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 1.1s ease;
}
.project-card:hover img { transform: scale(1.04); }
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0) 55%, rgba(26,26,26,0.28));
  pointer-events: none;
}

.project-card__meta {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 34px 38px;
  width: 52%;
  min-width: 300px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(32px) saturate(1.8);
  -webkit-backdrop-filter: blur(32px) saturate(1.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: var(--ink);
  text-align: left;
}
.project-card__meta-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}
.project-card__name {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.project-card__date {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(26, 26, 26, 0.6);
}
.project-card__specs {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.project-card__spec {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  line-height: 1.4;
}
.project-card__spec-label {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.55);
}
.project-card__spec-label::after {
  content: ":";
  margin-left: 1px;
}
.project-card__spec-value {
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
}

/* ─── Process · vertical panels ────────────────────────────── */
.process {
  padding: 90px 64px 100px;
  max-width: 1280px;
  margin: 0 auto;
}
.process__head {
  max-width: 720px;
  margin: 0 0 64px;
}
.process__eyebrow {
  margin: 0 0 22px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.6);
}
.process__title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.process__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.process__grid {
  display: flex;
  width: 100%;
  gap: 0;
  min-height: 520px;
  align-items: stretch;
}

.pstep {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  padding: 32px 24px 34px;
  overflow: hidden;
  cursor: default;
  background: transparent;
  transition: flex-grow 1s cubic-bezier(0.22, 0.7, 0.2, 1);
}
.pstep + .pstep {
  border-left: 1px solid rgba(26, 26, 26, 0.1);
}

.pstep::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--pstep-img);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1s ease, transform 1.6s cubic-bezier(0.22, 0.7, 0.2, 1);
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 22%,
    rgba(0, 0, 0, 0.45) 48%,
    rgba(0, 0, 0, 0.12) 74%,
    transparent 94%
  );
          mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 22%,
    rgba(0, 0, 0, 0.45) 48%,
    rgba(0, 0, 0, 0.12) 74%,
    transparent 94%
  );
}

.pstep:hover {
  flex-grow: 1.55;
}
.pstep:hover::before { opacity: 1; transform: scale(1); }

.pstep__num {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(72px, 8.4vw, 136px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: rgba(26, 26, 26, 0.10);
  pointer-events: none;
  white-space: nowrap;
  transition:
    color 1s ease,
    top 1s cubic-bezier(0.22, 0.7, 0.2, 1),
    transform 1s cubic-bezier(0.22, 0.7, 0.2, 1);
  z-index: 1;
}
.pstep:hover .pstep__num {
  color: rgba(26, 26, 26, 0.20);
  top: 38%;
}

.pstep__content {
  position: absolute;
  left: 24px;
  right: 20px;
  bottom: 28px;
  z-index: 2;
}
.pstep__title {
  margin: 0 0 10px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(20px, 1.55vw, 26px);
  line-height: 1.15;
  letter-spacing: 0.005em;
  color: rgba(26, 26, 26, 0.78);
  transition: color 0.8s ease;
}
.pstep__body {
  margin: 0;
  max-width: 28ch;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.5);
  transition: color 0.8s ease;
}
.pstep:hover .pstep__title { color: rgba(26, 26, 26, 1); }
.pstep:hover .pstep__body  { color: rgba(26, 26, 26, 0.78); }

/* ─── Testimonials · curved list + quote ───────────────────── */
.testi {
  padding: 80px 64px 90px;
  max-width: 1280px;
  margin: 0 auto;
}
.testi__head {
  max-width: 720px;
  margin: 0 0 48px;
}
.testi__eyebrow {
  margin: 0 0 22px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.6);
}
.testi__title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.testi__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.testi__stage {
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.testi__list {
  position: relative;
  width: 400px;
  height: 480px;
  perspective: 900px;
}
.testi__curve {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.testi__curve path {
  fill: none;
  stroke: rgba(26, 26, 26, 0.28);
  stroke-width: 1;
  stroke-linecap: round;
}

.tperson {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transform: translate(var(--tx, 0px), var(--ty, 0px));
  z-index: 1;
}
.tperson:focus { outline: none; }
.tperson:focus-visible .tperson__ring {
  box-shadow: 0 0 0 3px rgba(169, 138, 95, 0.45);
}
.tperson[data-slot="0"],
.tperson[data-slot="4"] { z-index: 2; }
.tperson[data-slot="1"],
.tperson[data-slot="3"] { z-index: 3; }
.tperson[data-slot="2"] { z-index: 5; }

.tperson__ring {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 1px;
  background: rgba(26, 26, 26, 0.22);
  transform: translate(-50%, -50%);
  transition:
    width 0.7s cubic-bezier(.2,.8,.2,1),
    height 0.7s cubic-bezier(.2,.8,.2,1),
    padding 0.7s cubic-bezier(.2,.8,.2,1),
    background 0.6s ease,
    box-shadow 0.7s cubic-bezier(.2,.8,.2,1);
  display: block;
  will-change: width, height;
  opacity: 1;
}
.tperson__avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  opacity: 1;
  transition: filter 0.55s ease;
}

.tperson[data-slot="0"] .tperson__ring,
.tperson[data-slot="4"] .tperson__ring {
  width: 44px;
  height: 44px;
  padding: 1px;
}
.tperson[data-slot="1"] .tperson__ring,
.tperson[data-slot="3"] .tperson__ring {
  width: 62px;
  height: 62px;
  padding: 1px;
}
.tperson[data-slot="2"] .tperson__ring {
  width: 132px;
  height: 132px;
  padding: 2px;
  background: rgba(26, 26, 26, 0.3);
}

.tperson:hover .tperson__avatar,
.tperson:focus-visible .tperson__avatar,
.tperson[data-slot="2"] .tperson__avatar {
  filter: grayscale(0%);
}
.tperson:hover .tperson__ring,
.tperson[data-slot="2"] .tperson__ring {
  background: rgba(169, 138, 95, 0.55);
}

.tperson__meta {
  position: absolute;
  top: 0;
  left: 40px;
  transform: translateY(-50%);
  white-space: nowrap;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.5s ease 0.15s,
    left 0.7s cubic-bezier(.2,.8,.2,1);
}
.tperson[data-slot="2"] .tperson__meta {
  opacity: 1;
  left: 78px;
}

.tperson__name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  color: var(--ink);
}
.tperson__rate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.6);
}
.tperson__star {
  width: 13px;
  height: 13px;
  fill: #1a1a1a;
  flex: none;
}
.tperson__dot { opacity: 0.55; }

.testi__quote {
  position: relative;
  min-height: 480px;
  padding: 24px 16px 24px 24px;
  display: flex;
  align-items: center;
}
.testi__bodies {
  position: relative;
  width: 100%;
}
.testi__body {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.testi__body.is-visible {
  position: relative;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.testi__text {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.5;
  color: rgba(26, 26, 26, 0.86);
  max-width: 620px;
}
.testi__text::before {
  content: "\201C";
  margin-right: 4px;
  font-size: 1.5em;
  line-height: 0;
  vertical-align: -0.18em;
  color: var(--gold);
}
.testi__text::after {
  content: "\201D";
  margin-left: 4px;
  font-size: 1.5em;
  line-height: 0;
  vertical-align: -0.18em;
  color: var(--gold);
}
.testi__text em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.materials {
  padding: 110px 64px 120px;
  max-width: 1280px;
  margin: 0 auto;
}
.materials__head {
  max-width: 720px;
  margin: 0 0 64px;
}
.materials__eyebrow {
  margin: 0 0 22px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.6);
}
.materials__title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.materials__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.materials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
}

.mat-card {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 260px;
  background: var(--paper);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
  opacity: 0;
  transform: translateY(42px);
  will-change: opacity, transform;
  transition:
    opacity 1.4s cubic-bezier(0.22, 0.8, 0.24, 1),
    transform 1.4s cubic-bezier(0.22, 0.8, 0.24, 1),
    background 0.6s cubic-bezier(0.22, 0.8, 0.24, 1);
}
.mat-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.mat-card:hover {
  transform: translateY(-10px);
  background: rgba(169, 138, 95, 0.2);
}
.mat-card__text {
  flex: 0 0 80%;
  width: 80%;
  padding: 32px 24px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  align-items: flex-start;
}
.mat-card__title {
  margin: 0 0 14px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-align: left;
}
.mat-card__desc {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.68);
  text-align: left;
}
.mat-card { --mat-img: none; }
.mat-card--wood     { --mat-img: url('assets/wood.jpg'); }
.mat-card--brick    { --mat-img: url('assets/brick.jpg'); }
.mat-card--concrete { --mat-img: url('assets/concrete.jpg'); }
.mat-card--glass    { --mat-img: url('assets/glass.jpg'); }

.mat-card__media {
  flex: 0 0 20%;
  width: 20%;
  margin: 0;
  position: relative;
  transition: transform 1.2s cubic-bezier(0.22, 0.8, 0.24, 1);
}
.mat-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--mat-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  filter: grayscale(1) sepia(0.25) contrast(0.95) brightness(1.05);
  transition: filter 0.6s cubic-bezier(0.22, 0.8, 0.24, 1),
              opacity 0.6s cubic-bezier(0.22, 0.8, 0.24, 1);
}
.mat-card:hover .mat-card__media {
  transform: scale(1.05);
}
.mat-card:hover .mat-card__media::after {
  opacity: 1;
  filter: grayscale(0) sepia(0) contrast(1) brightness(1);
}

.mat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-image: var(--mat-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(1) sepia(0.25) contrast(0.95) brightness(1.05);
  opacity: 0.1;
  pointer-events: none;
  z-index: 2;
  transition: filter 0.6s cubic-bezier(0.22, 0.8, 0.24, 1),
              opacity 0.6s cubic-bezier(0.22, 0.8, 0.24, 1);
}
.mat-card:hover::before {
  filter: grayscale(0) sepia(0) contrast(1) brightness(1);
  opacity: 1;
}

.mat-card:nth-child(1) { transition-delay: 0s, 0s, 0s; }
.mat-card:nth-child(2) { transition-delay: 0.05s, 0.05s, 0s; }
.mat-card:nth-child(3) { transition-delay: 0.1s, 0.1s, 0s; }
.mat-card:nth-child(4) { transition-delay: 0.15s, 0.15s, 0s; }

/* ─── Quote Band (full width) ──────────────────────────────── */
.quoteband {
  position: relative;
  width: 100%;
  height: min(78vh, 680px);
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
}
.quoteband__image {
  position: absolute;
  inset: 0;
  background-image: var(--quoteband-image, url('https://images.unsplash.com/photo-1616046229478-9901c5536a45?auto=format&fit=crop&w=1920&q=80'));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 1.8s ease;
}
.quoteband:hover .quoteband__image { transform: scale(1.09); }
.quoteband__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.55) 0%, rgba(26,26,26,0.15) 40%, rgba(26,26,26,0) 65%, rgba(26,26,26,0.25) 100%);
  pointer-events: none;
  z-index: 1;
}
.quoteband__caption {
  position: absolute;
  left: clamp(22px, 5vw, 72px);
  bottom: clamp(36px, 6vw, 72px);
  z-index: 2;
  margin: 0;
  max-width: min(640px, 78vw);
  display: flex;
  align-items: flex-start;
  gap: 22px;
  color: #fff;
}
.quoteband__line {
  display: block;
  flex: none;
  width: 60px;
  height: 1px;
  margin-top: 22px;
  background: var(--gold);
}
.quoteband__text {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 38px);
  line-height: 1.3;
  letter-spacing: 0.005em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

@media (max-width: 1100px) {
  .quoteband { height: min(64vh, 560px); min-height: 380px; }
  .quoteband__line { width: 44px; margin-top: 18px; }
}
@media (max-width: 820px) {
  .quoteband { height: min(58vh, 460px); min-height: 320px; }
  .quoteband__caption { gap: 16px; }
  .quoteband__line { width: 34px; margin-top: 15px; }
}

/* ─── Contact ──────────────────────────────────────────────── */
.contact {
  padding: 100px 64px 110px;
  max-width: 1280px;
  margin: 0 auto;
}
.contact__head {
  max-width: none;
  margin: 0;
  align-self: start;
}
.contact__eyebrow {
  margin: 0 0 22px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.6);
}
.contact__title {
  margin: 0 0 20px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  max-width: 18ch;
  text-wrap: balance;
  overflow-wrap: break-word;
}
.contact__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.contact__lede {
  margin: 0;
  max-width: 64ch;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.72);
  text-wrap: pretty;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 3.2vw, 48px);
  align-items: start;
}
.contact__head {
  text-align: left;
  justify-items: start;
  margin: 0;
  max-width: 1040px;
}
.contact__head .contact__title,
.contact__head .contact__lede {
  margin-left: 0;
  margin-right: 0;
}

.contact__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 40px;
  padding-top: 6px;
}
.cinfo {
  min-width: 0;
}
.cinfo__title {
  margin: 0 0 14px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  padding-bottom: 10px;
}
.cinfo__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 1px;
  background: var(--gold);
}
.cinfo__body {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.5;
  color: rgba(26, 26, 26, 0.82);
  overflow-wrap: break-word;
}
.cinfo__body a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}
.cinfo__body a:hover {
  color: var(--gold);
  letter-spacing: 0.02em;
}

.contact__form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
  padding: clamp(18px, 1.8vw, 26px) clamp(20px, 2.2vw, 32px);
  width: 100%;
  margin-left: 0;
  background: transparent;
  border: 1px solid rgba(26, 26, 26, 0.14);
  color: var(--ink);
  overflow: hidden;
  min-width: 0;
  transition: border-color 0.55s ease;
}
.contact__form-accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 0.6s ease;
}
.contact__form:hover,
.contact__form:focus-within {
  border-color: rgba(169, 138, 95, 0.45);
}
.contact__form:hover .contact__form-accent,
.contact__form:focus-within .contact__form-accent {
  transform: scaleX(1);
}

.cfield {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.cfield--full {
  grid-column: 1 / -1;
}
.cfield label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.6);
}
.cfield input,
.cfield textarea {
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.22);
  padding: 6px 2px 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  line-height: 1.35;
  color: var(--ink);
  transition: border-color 0.35s ease;
  resize: vertical;
}
.cfield textarea {
  min-height: 84px;
}
.cfield input:focus,
.cfield textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.cfield input::placeholder,
.cfield textarea::placeholder {
  color: rgba(26, 26, 26, 0.34);
}

.contact__submit {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 4px;
  appearance: none;
  cursor: pointer;
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid rgba(26, 26, 26, 0.55);
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
.contact__submit:hover {
  background: var(--gold);
  color: var(--paper);
  border-color: var(--gold);
}

/* ─── Footer ───────────────────────────────────────────────── */
.footer {
  position: relative;
  background: #151311;
  color: var(--paper);
  margin-top: 40px;
  border-top: 1px solid rgba(169, 138, 95, 0.28);
}
.footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(64px, 7vw, 104px) 56px clamp(44px, 4vw, 64px);
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  column-gap: clamp(40px, 5vw, 80px);
  row-gap: 48px;
}
.footer__menu,
.footer__channels {
  align-self: start;
}

.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.footer__menu a {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  color: rgba(244, 239, 229, 0.78);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.3s ease, letter-spacing 0.3s ease, transform 0.3s ease;
}
.footer__menu a:hover {
  color: var(--gold);
  letter-spacing: 0.04em;
  transform: translateX(2px);
}

.footer__channels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.footer__channels a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(244, 239, 229, 0.53);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer__channels a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: color 0.3s ease;
}
.footer__channels a:hover {
  color: var(--gold);
  transform: translateX(2px);
}

.footer__wordmark {
  grid-column: 3;
  justify-self: center;
  text-decoration: none;
  line-height: 0.86;
  user-select: none;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: clamp(4px, 0.4vw, 8px);
}
.footer__wordmark-mark {
  display: block;
  flex-shrink: 0;
  width: clamp(72px, 7.6vw, 124px);
  aspect-ratio: 817 / 850;
  background-color: #24201b;
  -webkit-mask-image: url('assets/Logo%20BURJ%201.svg');
          mask-image: url('assets/Logo%20BURJ%201.svg');
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
  -webkit-mask-position: top center;
          mask-position: top center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.footer__wordmark-text {
  display: block;
  text-align: left;
}
.footer__wordmark-main {
  display: block;
  font-family: 'Inter', 'Helvetica Neue', system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(72px, 9.2vw, 148px);
  letter-spacing: -0.035em;
  color: #24201b;
}
.footer__wordmark-sub {
  display: block;
  margin-top: 10px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 0.95vw, 15px);
  letter-spacing: 0.58em;
  text-transform: uppercase;
  color: #81736271;
  padding-left: 0.58em;
}

.footer__corporate {
  font-style: normal;
  text-align: right;
  max-width: 28ch;
  justify-self: end;
}
.footer__corporate p {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: rgba(244, 239, 229, 0.55);
}
.footer__corporate .footer__phone {
  margin-bottom: 4px;
  color: rgba(244, 239, 229, 0.78);
  letter-spacing: 0.12em;
}
.footer__corporate .footer__phone a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__corporate .footer__phone a:hover {
  color: var(--gold);
}
.footer__corporate .footer__legal {
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(244, 239, 229, 0.42);
}
.footer__bottom {
  background: transparent;
}
.footer__bottom .footer__rights {
  max-width: var(--page-max);
  margin: 50px 80px 0;
  padding: 96px var(--section-px) 64px;
  border-top: 1px solid rgba(244, 239, 229, 0.05);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  line-height: 2.6;
  letter-spacing: 0.01em;
  text-transform: none;
  text-align: center;
  color: rgba(244, 239, 229, 0.34);
}
.footer__bottom .footer__rights span + span { margin-left: 4px; }

@media (prefers-reduced-motion: reduce) {
  .tperson__ring,
  .tperson__meta,
  .tperson__avatar,
  .testi__body,
  .mat-card {
    transition: none;
  }
  .mat-card {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .gallery { grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 80px 36px 24px; }
  .intro { padding: 90px 36px 100px; }
  .intro__top {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-bottom: 70px;
  }
  .intro__dots { justify-content: flex-start; }
  .intro__pillars { grid-template-columns: 1fr; gap: 50px; padding-top: 70px; }

  .projects { padding: 20px 36px 100px; }
  .projects__head { margin-bottom: 52px; }
  .projects__grid { gap: 24px; }
  .project-card { flex: 0 0 calc(50% - 12px); min-width: 300px; aspect-ratio: 5 / 4; }
  .projects__arrow--left { left: -18px; }
  .projects__arrow--right { right: -18px; }
  .project-card__meta {
    top: 22px;
    right: 22px;
    padding: 24px 28px;
    width: 50%;
    min-width: 260px;
    max-width: 340px;
    gap: 18px;
  }
  .project-card__name { font-size: 24px; }

  .testi { padding: 90px 36px 100px; }
  .testi__head { margin-bottom: 44px; }
  .testi__stage { grid-template-columns: 400px minmax(0, 1fr); gap: 24px; }
  .testi__list { width: 400px; height: 480px; }
  .testi__quote { min-height: 480px; padding: 20px 12px 20px 20px; }
  .tperson__name { font-size: 22px; }
  .tperson[data-slot="2"] .tperson__ring { width: 120px; height: 120px; }

  .materials { padding: 100px 36px 110px; }
  .materials__head { margin-bottom: 52px; }
  .materials__grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .mat-card { min-height: 260px; }
  .mat-card__text { padding: 40px 24px 36px 32px; }
  .mat-card__title { font-size: 20px; }

  .process { padding: 100px 36px 110px; }
  .process__head { margin-bottom: 56px; }
  .process__grid { min-height: 460px; }
  .pstep { padding: 26px 18px 28px; }
  .pstep__content { left: 18px; right: 16px; bottom: 22px; }
  .pstep__num { font-size: clamp(60px, 9.5vw, 110px); }

  .contact { padding: 100px 36px 110px; }
  .contact__head { margin: 0; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; align-items: start; }

  .services { padding: 100px 36px 110px; }
  .services__head { margin-bottom: 64px; }
  .services__stage { grid-template-columns: 1fr; gap: 48px; }
  .services__preview {
    position: relative;
    top: 0;
    height: 360px;
    order: -1;
  }
  .service-row__link {
    grid-template-columns: minmax(190px, 1fr) minmax(180px, 1.4fr) auto;
    gap: 32px;
    padding: 40px 20px 40px 16px;
  }

  .footer__inner {
    grid-template-columns: auto auto auto;
    grid-template-areas:
      "wordmark wordmark wordmark"
      "menu     channels corporate";
    column-gap: 56px;
    row-gap: 44px;
    padding: 72px 36px 52px;
  }
  .footer__wordmark { grid-area: wordmark; }
  .footer__menu { grid-area: menu; }
  .footer__channels { grid-area: channels; }
  .footer__corporate { grid-area: corporate; }
}

@media (max-width: 820px) {
  .hero { cursor: auto; --reveal-radius: 190px; }
  .hero::after { display: none; }
  .hero__sketch {
    -webkit-mask-image: none;
            mask-image: none;
    opacity: 0.55;
  }
  .hero__veil {
    -webkit-mask-image: none;
            mask-image: none;
    background-color: rgba(246, 242, 234, 0.55);
  }
  .hero__cta {
    padding: 12px 24px;
    font-size: 10.5px;
    letter-spacing: 0.2em;
    line-height: 1.9;
  }
  .hero__nav { padding: 12px 22px; }
  .hero__nav.is-scrolled { padding: 12px 22px; }
  .hero__brand { font-size: 20px; letter-spacing: 0.28em; }
  .hero__nav.is-scrolled .hero__brand { font-size: 20px; }
  .nav__right { gap: 18px; }
  .nav__langs { gap: 10px; }
  .hero__langs {
    right: 18px;
    bottom: 18px;
    flex-direction: column;
    align-items: stretch;
  }
  .hero__langs .lang {
    padding: 11px 8px;
    font-size: 9px;
    border-left: 0;
    border-top: 1px solid rgba(26, 26, 26, 0.2);
  }
  .hero__langs .lang:first-child { border-top: 0; }
  .hero__langs.is-on-dark .lang {
    border-left: 0;
    border-top-color: rgba(244, 239, 229, 0.18);
  }
  .hero__langs.is-on-dark .lang:first-child { border-top: 0; }
  .hero__content { padding-top: 30vh; }
  .menu { gap: 36px; }
  .menu__close { top: 22px; right: 22px; }
  .menu__langs { top: 28px; right: 70px; }
  .menu__list { gap: 12px; }

  .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 60px 22px 16px; }
  .intro { padding: 72px 22px 84px; }
  .intro__dots li { width: 74px; height: 74px; }
  .intro__dots li:nth-child(n) { transform: none; }

  .projects { padding: 8px 22px 72px; }
  .projects__head { margin-bottom: 40px; }
  .project-card { flex: 0 0 82%; min-width: 280px; aspect-ratio: 4 / 3.6; }
  .projects__arrow { width: 38px; height: 38px; }
  .projects__arrow--left { left: -6px; }
  .projects__arrow--right { right: -6px; }
  .project-card__meta {
    top: 14px;
    right: 14px;
    left: 14px;
    width: auto;
    max-width: none;
    min-width: 0;
    padding: 18px 20px;
    gap: 14px;
  }
  .project-card__meta-top { padding-bottom: 12px; }
  .project-card__name { font-size: 20px; }
  .project-card__date { font-size: 11px; }
  .project-card__specs { gap: 6px; }
  .project-card__spec { font-size: 11px; }
  .project-card__spec-label { letter-spacing: 0.06em; }

  .testi { padding: 72px 22px 90px; }
  .testi__head { margin-bottom: 40px; }
  .testi__stage { grid-template-columns: 1fr; gap: 28px; align-items: stretch; }
  .testi__list {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    padding: 16px 0 8px;
  }
  .testi__curve { display: none; }
  .tperson {
    position: static;
    left: auto;
    top: auto;
    width: 44px;
    height: 44px;
    flex: none;
    transform: none;
    z-index: auto;
  }
  .tperson.is-selected {
    width: 66px;
    height: 66px;
  }
  .tperson__ring {
    position: static;
    transform: none;
    width: 44px;
    height: 44px;
    padding: 2px;
    background: rgba(26, 26, 26, 0.08);
    box-shadow: none;
    opacity: 1;
    filter: none;
  }
  .tperson[data-slot] .tperson__ring {
    width: 44px;
    height: 44px;
    padding: 2px;
    background: rgba(26, 26, 26, 0.08);
    box-shadow: none;
    opacity: 1;
    filter: none;
  }
  .tperson[data-slot] .tperson__avatar {
    filter: grayscale(100%);
    opacity: 0.85;
  }
  .tperson[data-slot="2"] .tperson__ring,
  .tperson.is-selected .tperson__ring {
    width: 66px;
    height: 66px;
    padding: 3px;
    background: linear-gradient(140deg, var(--gold) 0%, rgba(169, 138, 95, 0.35) 100%);
  }
  .tperson[data-slot="2"] .tperson__avatar,
  .tperson.is-selected .tperson__avatar {
    filter: grayscale(0%);
    opacity: 1;
  }
  .tperson__meta { display: none; }
  .testi__quote {
    min-height: 0;
    padding: 4px 4px 4px 4px;
  }
  .testi__text { font-size: 18px; }

  .materials { padding: 72px 22px 84px; }
  .materials__head { margin-bottom: 40px; }
  .materials__grid { grid-template-columns: 1fr; gap: 30px; }
  .mat-card { min-height: 220px; }
  .mat-card__text { padding: 24px 20px 24px 24px; }
  .mat-card__title { font-size: 19px; margin-bottom: 12px; font-weight: 500; }
  .mat-card__desc { font-size: 11px; }

  .process { padding: 72px 22px 84px; }
  .process__head { margin-bottom: 40px; }
  .process__grid { flex-direction: column; min-height: 0; gap: 0; }
  .pstep { min-height: 210px; padding: 28px 22px 26px; }
  .pstep + .pstep { border-left: none; border-top: 1px solid rgba(26, 26, 26, 0.1); }
  .pstep:hover { flex-grow: 1; }
  .pstep__num {
    top: 32px;
    left: 22px;
    transform: none;
    font-size: 60px;
    line-height: 1;
  }
  .pstep:hover .pstep__num { top: 28px; transform: none; }
  .pstep__content { left: 22px; right: 20px; bottom: 22px; }
  .pstep__body { max-width: 38ch; }

  .contact { padding: 72px 22px 84px; }
  .contact__head { margin: 0; }
  .contact__form { grid-template-columns: 1fr; padding: 28px 22px; gap: 20px; }
  .cfield--full { grid-column: 1; }
  .contact__submit { width: 100%; text-align: center; }

  .services { padding: 72px 22px 84px; }
  .services__head { margin-bottom: 46px; }
  .services__preview { height: 260px; }
  .service-row__link {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "title icon"
      "desc  desc";
    gap: 14px 20px;
    padding: 32px 16px 32px 12px;
  }
  .service-row__title { grid-area: title; }
  .service-row__desc  { grid-area: desc; }
  .service-row__icon  { grid-area: icon; width: 44px; height: 44px; }
  .service-row:hover .service-row__link,
  .service-row.is-active .service-row__link { padding-left: 22px; }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "wordmark  wordmark"
      "menu      channels"
      "corporate corporate";
    column-gap: 28px;
    row-gap: 32px;
    padding: 56px 22px 40px;
  }
  .footer__wordmark-main { font-size: clamp(56px, 14vw, 92px); }
  .footer__wordmark-sub { letter-spacing: 0.42em; }
  .footer__menu a,
  .footer__channels a { font-size: 17px; }
  .footer__corporate {
    text-align: left;
    justify-self: start;
    max-width: 36ch;
  }
}
