:root {
  --bg: #060606;
  --bg-soft: #0a0a0a;
  --panel: rgba(10, 10, 10, 0.76);
  --panel-solid: #0a0a0a;
  --text: #efeee9;
  --text-soft: #c5c3bd;
  --muted: #8c8a85;
  --accent: #e32120;
  --accent-bright: #ff2b28;
  --line: rgba(232, 232, 224, 0.14);
  --line-soft: rgba(232, 232, 224, 0.075);
  --line-strong: rgba(232, 232, 224, 0.25);
  --frame-gap: 14px;
  --rail-width: 76px;
  --header-height: 74px;
  --footer-height: 74px;
  --font-display: "Bebas Neue", Impact, Haettenschweiler, "Arial Narrow Bold", "Liberation Sans Narrow", sans-serif;
  --font-condensed: "Barlow Condensed", "Liberation Sans Narrow", "DejaVu Sans Condensed", "Arial Narrow", sans-serif;
  --font-body: "Manrope", "Inter", "Noto Sans", Arial, sans-serif;
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 74% 22%, rgba(0, 0, 0, 0.035), transparent 28%),
    radial-gradient(circle at 20% 85%, rgba(0, 0, 0, 0.03), transparent 30%),
    #050505;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    url("../assets/ui/grain.png");
  background-size: 150px 150px, 150px 150px, 768px 768px;
  background-position: center, center, 0 0;
  opacity: 0.58;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 42%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.008), transparent 35%, rgba(0, 0, 0, 0.12));
}

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

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

button {
  color: inherit;
}

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

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

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 50%;
  z-index: 2000;
  padding: 9px 16px;
  transform: translate(-50%, -150%);
  border: 1px solid var(--accent);
  background: #080808;
  color: #fff;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

.site-shell {
  position: relative;
  min-height: calc(100svh - (var(--frame-gap) * 2));
  margin: var(--frame-gap);
  overflow: clip;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.012), transparent 18%),
    rgba(5, 5, 5, 0.44);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(0, 0, 0, 0.26);
}

.site-shell::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background-image: url("../assets/ui/grain.png");
  background-repeat: repeat;
  background-size: 768px 768px;
  opacity: 0.21;
  mix-blend-mode: screen;
}

.page-column {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - (var(--frame-gap) * 2) - 2px);
  margin-left: var(--rail-width);
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1 0 auto;
  min-width: 0;
}

/* ---------- Shared outer rail ---------- */
.site-rail {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 40;
  width: var(--rail-width);
  border-right: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.3);
}

.rail-inner {
  position: sticky;
  top: var(--frame-gap);
  height: calc(100svh - (var(--frame-gap) * 2) - 2px);
  min-height: 660px;
  display: grid;
  grid-template-rows: var(--header-height) 190px 86px minmax(215px, 1fr) var(--footer-height);
  align-items: stretch;
}

.rail-menu {
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
}

.dot-menu {
  width: 22px;
  height: 22px;
  display: grid;
  grid-template-columns: repeat(3, 3px);
  grid-auto-rows: 3px;
  gap: 4px;
  place-content: center;
  opacity: 0.9;
}

.dot-menu i {
  width: 3px;
  height: 3px;
  background: #d9d8d2;
  border-radius: 50%;
}

.rail-socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 35px;
}

.rail-socials a {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  color: #f1f0eb;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.rail-socials a:hover,
.rail-socials a:focus-visible {
  border-color: var(--line-strong);
  color: var(--accent-bright);
  transform: translateY(-2px);
  outline: none;
}

.rail-socials svg {
  width: 21px;
  height: 21px;
}

.rail-marker {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 15px;
}

.rail-marker::before {
  width: 1px;
  height: 48px;
  content: "";
  background: rgba(255, 255, 255, 0.48);
}

.rail-diamond {
  width: 10px;
  height: 10px;
  border: 1px solid var(--accent);
  transform: rotate(45deg);
}

.rail-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 14px 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #aaa8a2;
}

.rail-copy span {
  color: var(--accent);
}

.rail-monogram {
  display: grid;
  place-items: center;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.02em;
  color: #eeede8;
  opacity: 0.92;
}

.rail-monogram::before {
  position: absolute;
  width: 24px;
  height: 35px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.25);
  transform: rotate(18deg);
}

body[data-footer="minimal"] .rail-monogram {
  opacity: 0;
}

/* ---------- Header ---------- */
.site-header {
  position: relative;
  z-index: 100;
  height: var(--header-height);
  flex: 0 0 var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.84);
  backdrop-filter: blur(15px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0 32px 0 48px;
}

.brand-link {
  width: clamp(150px, 12vw, 205px);
  flex: 0 0 auto;
}

.brand-link img {
  width: 100%;
  height: 55px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(35px, 4.2vw, 74px);
  margin-left: auto;
}

.nav-link {
  position: relative;
  padding: 26px 0 22px;
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d7d5cf;
  transition: color 180ms ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 13px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 220ms var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: #fff;
  outline: none;
}

.nav-link.is-active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.header-appointment {
  width: 193px;
  min-height: 45px;
  margin-left: 8px;
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
}

.mobile-menu-button span {
  width: 18px;
  height: 1px;
  display: block;
  margin: 5px auto;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-button.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: var(--header-height);
  right: 0;
  left: 0;
  z-index: 95;
  display: none;
  padding: 14px 20px 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.98);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.mobile-nav.is-open {
  display: grid;
  animation: mobile-menu-in 180ms ease both;
}

.mobile-nav a,
.mobile-nav button {
  padding: 14px 4px;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  background: transparent;
  font-family: var(--font-condensed);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.mobile-nav a.is-active {
  color: var(--accent-bright);
}

@keyframes mobile-menu-in {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Buttons ---------- */
.button {
  position: relative;
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 0 22px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: rgba(5, 5, 5, 0.32);
  color: #efeee9;
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  isolation: isolate;
  transition: border-color 200ms ease, color 200ms ease, transform 200ms var(--ease);
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: var(--accent);
  transform: translateX(-102%);
  transition: transform 260ms var(--ease);
}

.button:hover,
.button:focus-visible {
  border-color: var(--accent);
  color: #fff;
  outline: none;
  transform: translateY(-2px);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(0);
}

.button--primary {
  border-color: var(--accent);
  box-shadow: 0 0 22px rgba(227, 33, 32, 0.08);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.28);
}

.button-arrow {
  font-family: Arial, sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
  color: var(--accent-bright);
  transition: color 180ms ease, transform 180ms ease;
}

.button:hover .button-arrow,
.button:focus-visible .button-arrow {
  color: #fff;
  transform: translateX(3px);
}

/* ---------- Circular quality seal ---------- */
.quality-seal {
  width: 170px;
  height: 170px;
  color: #d6d4cd;
}

.quality-seal svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.quality-seal text {
  fill: currentColor;
  font-family: var(--font-condensed);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
}

.seal-rings circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.13);
  stroke-width: 0.8;
}

.seal-cross path,
.seal-cross circle {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1;
}

.seal-dot {
  fill: var(--accent);
}

/* ---------- Home ---------- */
.home-main {
  overflow: hidden;
}

.home-hero {
  position: relative;
  height: 520px;
  display: grid;
  grid-template-columns: minmax(520px, 44%) minmax(0, 56%);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  position: relative;
  z-index: 8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 22px 20px 28px 58px;
}

.hero-kicker {
  margin: 0 0 -4px;
  font-family: var(--font-display);
  font-size: clamp(54px, 4.2vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: #e9e8e3;
  white-space: nowrap;
}

.hero-copy h1 {
  width: max-content;
  margin: 0;
  background-image:
    linear-gradient(180deg, #fbfaf6 0%, #deddd8 100%),
    url("../assets/ui/grain.png");
  background-blend-mode: multiply;
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 0 0.3px rgba(255, 255, 255, 0.6));
  font-family: var(--font-display);
  font-size: clamp(145px, 11.8vw, 196px);
  line-height: 0.75;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.hero-brush {
  width: min(520px, 92%);
  height: 45px;
  display: block;
  margin-top: -4px;
  background: url("../assets/ui/brush-stroke.svg") center / 100% 100% no-repeat;
  transform: rotate(-0.8deg);
  transform-origin: left center;
  opacity: 0.94;
}

.hero-description {
  max-width: 515px;
  margin: 1px 0 19px;
  color: #c6c4be;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.015em;
}

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

.hero-actions .button {
  width: 267px;
  min-width: 0;
  padding-right: 18px;
  padding-left: 18px;
  font-size: 15px;
}

.hero-actions .button:nth-child(2) {
  width: 274px;
}

.hero-stage {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 47%, rgba(255, 255, 255, 0.055), transparent 34%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, transparent 19%);
}

.hero-stage::before {
  position: absolute;
  inset: 0;
  z-index: 4;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, #060606 0%, transparent 18%),
    linear-gradient(0deg, #060606 0%, transparent 14%);
}

.hero-stage::after {
  position: absolute;
  top: 0;
  left: 16%;
  z-index: 2;
  width: 1px;
  height: 100%;
  content: "";
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.08), transparent);
  opacity: 0.55;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.018);
  transition: opacity 560ms var(--ease), transform 900ms var(--ease), visibility 560ms;
}

.hero-slide.is-active {
  z-index: 3;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide img {
  position: absolute;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-slide--artwork img {
  right: 8.5%;
  bottom: -44px;
  width: auto;
  height: 116%;
  object-fit: contain;
  object-position: center bottom;
  filter: contrast(1.04) brightness(0.98);
}

.hero-slide--photo::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: var(--hero-bg);
  background-repeat: no-repeat;
  background-position: var(--hero-position, center);
  background-size: cover;
  filter: blur(18px) brightness(0.25) saturate(0.65);
  transform: scale(1.08);
  opacity: 0.55;
}

.hero-slide--photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, #060606 0%, transparent 30%, transparent 72%, #060606 100%),
    linear-gradient(0deg, #060606 0%, transparent 28%, rgba(0, 0, 0, 0.18));
}

.hero-slide--photo img {
  right: 14%;
  bottom: 0;
  width: 54%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position, center);
  filter: saturate(0.72) sepia(0.12) contrast(1.08) brightness(0.88);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 84%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 84%, transparent 100%);
}

.hero-slide-label {
  position: absolute;
  right: 20%;
  bottom: 35px;
  z-index: 3;
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.quality-seal--hero {
  position: absolute;
  top: 86px;
  left: -48px;
  z-index: 7;
}

.hero-pagination {
  position: absolute;
  top: 50%;
  right: 25px;
  z-index: 10;
  display: grid;
  gap: 14px;
  transform: translateY(-48%);
}

.hero-pagination button {
  position: relative;
  width: 85px;
  padding: 0 50px 0 0;
  border: 0;
  background: transparent;
  color: #5f5e5b;
  font-family: var(--font-condensed);
  font-size: 32px;
  line-height: 1;
  text-align: right;
  cursor: pointer;
  transition: color 220ms ease;
}

.hero-pagination button::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 40px;
  height: 1px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms ease;
}

.hero-pagination button:hover,
.hero-pagination button:focus-visible,
.hero-pagination button.is-active {
  color: var(--accent-bright);
  outline: none;
}

.hero-pagination button.is-active::after,
.hero-pagination button:hover::after {
  transform: scaleX(1);
}

.home-lower {
  height: 280px;
  display: grid;
  grid-template-columns: minmax(0, 63%) minmax(370px, 37%);
}

.featured-works {
  min-width: 0;
  padding: 13px 16px 14px 28px;
  border-right: 1px solid var(--line);
}

.section-heading {
  min-height: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-condensed);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-heading a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #aaa8a2;
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.section-heading a span {
  color: var(--accent-bright);
  font-size: 19px;
}

.section-heading a:hover,
.section-heading a:focus-visible {
  color: #fff;
  outline: none;
}

.featured-grid {
  height: 213px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 7px;
  margin-top: 8px;
}

.featured-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #090909;
  cursor: pointer;
  white-space: nowrap;
  isolation: isolate;
}

.featured-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(0deg, rgba(3, 3, 3, 0.96) 0%, rgba(3, 3, 3, 0.52) 27%, transparent 55%);
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--object-position, center);
  filter: saturate(0.73) sepia(0.12) contrast(1.08) brightness(0.85);
  transition: transform 500ms var(--ease), filter 500ms ease;
}

.featured-card-copy {
  position: absolute;
  right: 7px;
  bottom: 8px;
  left: 7px;
  z-index: 2;
  text-align: center;
}

.featured-card h3 {
  margin: 0 0 3px;
  overflow: hidden;
  color: #e8e6df;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.featured-card span {
  color: var(--accent-bright);
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.featured-card:hover img,
.featured-card:focus-visible img {
  transform: scale(1.055);
  filter: saturate(0.87) sepia(0.08) contrast(1.1) brightness(0.98);
}

.featured-card:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.about-card {
  position: relative;
  min-width: 0;
  padding: 15px 24px 14px 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 94% 43%, rgba(255, 255, 255, 0.034), transparent 24%),
    rgba(7, 7, 7, 0.35);
}

.about-card::after {
  position: absolute;
  top: -32px;
  right: -55px;
  width: 235px;
  height: 235px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 22px transparent,
    0 0 0 22px rgba(255, 255, 255, 0.018),
    0 0 0 50px rgba(255, 255, 255, 0.012);
  transform: rotate(-22deg) scaleY(0.42);
}

.eyebrow {
  margin: 0 0 6px;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.about-card > h2 {
  position: relative;
  z-index: 2;
  margin: 0 0 4px;
  font-family: var(--font-condensed);
  font-size: clamp(25px, 2.1vw, 34px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.about-card > h2 span {
  color: var(--accent-bright);
}

.about-intro {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 0 11px;
  color: #aaa8a2;
  font-size: 10.8px;
  line-height: 1.55;
}

.about-features {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.about-feature {
  min-width: 0;
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 7px;
  padding: 2px 10px 0 0;
}

.about-feature + .about-feature {
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.feature-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--accent-bright);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.3;
}

.about-feature h3,
.studio-features h2 {
  margin: 0 0 4px;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #deddd7;
}

.about-feature p {
  margin: 0;
  color: #8e8c87;
  font-size: 9.4px;
  line-height: 1.45;
}

/* ---------- Works ---------- */
.works-main {
  padding: 0 62px;
}

.works-intro {
  position: relative;
  height: 187px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.works-intro-copy {
  position: relative;
  z-index: 4;
  padding-left: 0;
}

.works-intro h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(74px, 6.4vw, 108px);
  line-height: 0.85;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: #edece7;
}

.title-brush {
  width: 94px;
  height: 7px;
  display: block;
  margin: 6px 0 11px 4px;
  background: linear-gradient(90deg, #e8e7e2 0 72%, transparent 72%);
  clip-path: polygon(0 22%, 100% 0, 88% 45%, 100% 67%, 3% 100%);
  opacity: 0.78;
}

.works-intro p {
  max-width: 390px;
  margin: 0;
  color: #aaa8a2;
  font-size: 13px;
  line-height: 1.7;
}

.quality-seal--works {
  position: absolute;
  top: 22px;
  left: 57%;
  z-index: 3;
  width: 145px;
  height: 145px;
}

.ink-splash {
  position: absolute;
  top: -9px;
  right: 22px;
  width: 260px;
  height: 210px;
  opacity: 0.28;
  filter: grayscale(1);
}

.ink-splash::before {
  right: 38px;
  bottom: 19px;
  width: 132px;
  height: 96px;
  border-radius: 47% 53% 38% 62% / 58% 41% 59% 42%;
  filter: blur(0.5px);
  transform: rotate(-13deg);
}

.ink-splash::after {
  right: 13px;
  bottom: 54px;
  width: 47px;
  height: 47px;
}

.ink-splash i:nth-child(1) { right: 9px; bottom: 24px; width: 12px; height: 12px; }
.ink-splash i:nth-child(2) { right: 192px; bottom: 47px; width: 28px; height: 28px; }
.ink-splash i:nth-child(3) { right: 175px; bottom: 90px; width: 10px; height: 10px; }
.ink-splash i:nth-child(4) { right: 51px; bottom: 128px; width: 15px; height: 15px; }
.ink-splash i:nth-child(5) { right: 129px; bottom: 145px; width: 6px; height: 6px; }
.ink-splash i:nth-child(6) { right: 225px; bottom: 80px; width: 6px; height: 6px; }

.filter-tabs {
  height: 48px;
  display: flex;
  align-items: flex-end;
  gap: clamp(27px, 3.1vw, 56px);
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid var(--line-soft);
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  position: relative;
  flex: 0 0 auto;
  padding: 0 5px 13px;
  border: 0;
  background: transparent;
  color: #b7b5af;
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease;
}

.filter-tab::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 200ms ease;
}

.filter-tab:hover,
.filter-tab:focus-visible,
.filter-tab.is-active {
  color: var(--accent-bright);
  outline: none;
}

.filter-tab.is-active::after {
  transform: scaleX(1);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  padding-top: 7px;
}

.portfolio-card {
  position: relative;
  height: 141px;
  display: grid;
  grid-template-columns: 56% 44%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: rgba(6, 6, 6, 0.72);
  cursor: pointer;
  transition: border-color 220ms ease, opacity 260ms ease, transform 260ms var(--ease);
}

.portfolio-card.is-hidden {
  display: none;
}

.portfolio-card:hover,
.portfolio-card:focus-visible {
  z-index: 2;
  border-color: rgba(227, 33, 32, 0.72);
  outline: none;
  transform: translateY(-2px);
}

.portfolio-image {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #0a0a0a;
}

.portfolio-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 65%, rgba(4, 4, 4, 0.72));
  pointer-events: none;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--object-position, center);
  filter: saturate(0.72) sepia(0.14) contrast(1.09) brightness(0.9);
  transition: transform 480ms var(--ease), filter 480ms ease;
}

.portfolio-card:hover .portfolio-image img,
.portfolio-card:focus-visible .portfolio-image img {
  transform: scale(1.06);
  filter: saturate(0.9) sepia(0.08) contrast(1.1) brightness(0.98);
}

.portfolio-copy {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 22px;
}

.portfolio-number {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 7px;
  font-family: var(--font-condensed);
  font-size: 17px;
  line-height: 1;
  color: #deddd7;
}

.portfolio-number::after {
  width: 23px;
  height: 1px;
  content: "";
  background: var(--accent);
}

.portfolio-card.is-long .portfolio-copy h2 {
  font-size: 16.5px;
}

.portfolio-copy h2 {
  margin: 0 0 5px;
  overflow: hidden;
  font-family: var(--font-condensed);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.portfolio-category {
  color: var(--accent-bright);
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portfolio-plus {
  position: absolute;
  right: 15px;
  bottom: 9px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #e6e5df;
  font-size: 24px;
  font-weight: 200;
  cursor: pointer;
}

.works-cta {
  position: relative;
  height: 85px;
  display: grid;
  grid-template-columns: 83px 1fr 220px 150px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 0;
}

.burst-mark {
  position: relative;
  width: 44px;
  height: 44px;
  display: block;
  margin: auto;
  border: 1px dotted rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.burst-mark::before,
.burst-mark::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 62px;
  height: 1px;
  content: "";
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.68) 0 2px, transparent 2px 5px);
  transform: translate(-50%, -50%);
}

.burst-mark::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.works-cta h2 {
  margin: 0;
  font-family: var(--font-condensed);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.works-cta p {
  margin: 3px 0 0;
  color: #8f8d88;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.works-cta .button {
  width: 200px;
  min-height: 45px;
}

.cta-orbit {
  position: absolute;
  right: 29px;
  width: 93px;
  height: 93px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 11px rgba(255, 255, 255, 0.025),
    0 0 0 22px rgba(255, 255, 255, 0.018),
    0 0 0 34px rgba(255, 255, 255, 0.012);
}

/* ---------- Studio ---------- */
.studio-main {
  min-height: calc(100svh - (var(--frame-gap) * 2) - var(--header-height) - var(--footer-height) - 2px);
}

.studio-layout {
  min-width: 0;
  min-height: inherit;
  display: grid;
  grid-template-columns: 39% 61%;
}

.studio-copy {
  position: relative;
  min-width: 0;
  padding: 36px 44px 31px 66px;
}

.quality-seal--studio {
  width: 145px;
  height: 145px;
  margin: -15px 0 5px -16px;
}

.studio-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(86px, 7.2vw, 118px);
  line-height: 0.88;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.studio-title-line {
  width: 42px;
  height: 2px;
  display: block;
  margin: 13px 0 16px 2px;
  background: var(--accent);
}

.studio-lead {
  max-width: 490px;
  margin: 0 0 25px;
  color: #b0aea8;
  font-size: 13px;
  line-height: 1.78;
}

.studio-features {
  max-width: 550px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 27px;
}

.studio-features article {
  min-width: 0;
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 12px;
}

.studio-features .feature-icon {
  width: 35px;
  height: 35px;
}

.studio-features h2 {
  font-size: 15px;
}

.studio-features p {
  margin: 0;
  color: #8f8d88;
  font-size: 10.5px;
  line-height: 1.6;
}

.studio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
  margin-top: 28px;
}

.studio-actions .button {
  min-width: 220px;
}

.studio-video {
  min-width: 0;
  display: grid;
  align-items: center;
  padding: 42px 34px 38px 15px;
}

.video-frame {
  position: relative;
  min-height: 555px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.025), transparent 42%),
    rgba(5, 5, 5, 0.3);
  background-size: 33.333% 33.333%, 33.333% 33.333%, auto, auto;
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.34);
}

.video-frame.has-video {
  display: block;
  background: #000;
}

.video-frame.has-video::before,
.video-frame.has-video::after {
  display: none;
}

.video-frame video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  background: #000;
}

.video-frame::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: url("../assets/ui/grain.png");
  background-repeat: repeat;
  background-size: 768px 768px;
  opacity: 0.34;
}

.video-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at center, transparent 0 29%, rgba(0, 0, 0, 0.12) 70%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

.video-watermark {
  position: absolute;
  z-index: 1;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--font-display);
  font-size: clamp(90px, 9vw, 160px);
  font-style: italic;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transform: skew(-10deg);
  user-select: none;
}

.video-play {
  position: relative;
  z-index: 4;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms var(--ease);
}

.video-play::after {
  position: absolute;
  inset: 12px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.video-play:hover,
.video-play:focus-visible {
  border-color: var(--accent-bright);
  background: rgba(227, 33, 32, 0.08);
  outline: none;
  transform: scale(1.035);
}

.video-play svg {
  width: 40px;
  height: 40px;
  margin-left: 5px;
  fill: #fff;
  stroke: none;
}

.video-frame > p {
  position: relative;
  z-index: 4;
  margin: 19px 0 0;
  font-family: var(--font-condensed);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.video-frame > strong {
  position: relative;
  z-index: 4;
  margin-top: 8px;
  color: var(--accent-bright);
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.video-corner {
  position: absolute;
  z-index: 5;
  color: var(--accent-bright);
  font-size: 25px;
  font-weight: 200;
  line-height: 1;
}

.video-corner--tl { top: 25px; left: 30px; }
.video-corner--tr { top: 25px; right: 30px; }
.video-corner--bl { bottom: 25px; left: 30px; }
.video-corner--br { right: 30px; bottom: 25px; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  border-top: 1px solid var(--line);
}

.footer-minimal {
  position: relative;
  height: 40px;
  display: grid;
  place-items: center;
  color: #8f8d88;
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.footer-minimal::before,
.footer-minimal::after {
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  content: "";
  border: 1px solid var(--accent);
  transform: translateY(-50%) rotate(45deg);
}

.footer-minimal::before { left: 34px; }
.footer-minimal::after { right: 34px; }

.footer-contact {
  min-height: var(--footer-height);
  display: grid;
  grid-template-columns: 1.08fr 1fr 1.12fr 0.92fr 1fr;
  align-items: center;
}

.footer-item,
.footer-copyright {
  min-width: 0;
  height: 42px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 25px;
}

.footer-item + .footer-item,
.footer-copyright {
  border-left: 1px solid var(--line-soft);
}

.footer-item svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: #e6e5df;
}

.footer-item strong,
.footer-copyright strong {
  display: block;
  margin-bottom: 2px;
  color: #c8c6c0;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-item span,
.footer-copyright span {
  display: block;
  overflow: hidden;
  color: #817f7a;
  font-size: 10px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-copyright {
  display: block;
  padding-top: 6px;
}

/* ---------- Dialogs ---------- */
.site-dialog {
  width: min(520px, calc(100vw - 32px));
  max-height: calc(100svh - 38px);
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(8, 8, 8, 0.98);
  color: var(--text);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.site-dialog::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
}

.dialog-inner {
  position: relative;
  max-height: calc(100svh - 40px);
  padding: 32px;
  overflow: auto;
  background-image: url("../assets/ui/grain.png");
  background-size: 768px 768px;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.dialog-close:hover,
.dialog-close:focus-visible {
  border-color: var(--accent);
  color: var(--accent-bright);
  outline: none;
}

.dialog-inner h2 {
  margin: 0 0 8px;
  font-family: var(--font-condensed);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.dialog-intro {
  margin: 0 0 22px;
  color: #9b9993;
  font-size: 12px;
}

.appointment-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.appointment-form label {
  display: grid;
  gap: 7px;
  color: #c5c3bd;
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.appointment-form input,
.appointment-form textarea,
.appointment-form select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: #090909;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: none;
  outline: none;
  transition: border-color 180ms ease;
}

.appointment-form input,
.appointment-form select {
  height: 45px;
  padding: 0 13px;
}

.appointment-form textarea {
  min-height: 105px;
  padding: 12px 13px;
  resize: vertical;
}

.appointment-form input:focus,
.appointment-form textarea:focus,
.appointment-form select:focus {
  border-color: var(--accent);
}

.form-status {
  min-height: 18px;
  margin: 0;
  color: #aaa8a2;
  font-size: 11px;
}

.lightbox-dialog {
  width: min(1100px, calc(100vw - 32px));
  background: #050505;
}

.lightbox-inner {
  position: relative;
  min-height: min(760px, calc(100svh - 42px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  padding: 0;
  overflow: hidden;
}

.lightbox-image-wrap {
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.035), transparent 52%),
    #050505;
}

.lightbox-image-wrap img {
  width: 100%;
  height: 100%;
  max-height: calc(100svh - 90px);
  object-fit: contain;
  object-position: center;
}

.lightbox-info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 70px 27px 30px;
  border-left: 1px solid var(--line);
  background: #080808;
}

.lightbox-index {
  color: var(--accent-bright);
  font-family: var(--font-condensed);
  font-size: 20px;
}

.lightbox-info h2 {
  margin: 7px 0;
  font-family: var(--font-condensed);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.lightbox-category {
  color: var(--accent-bright);
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lightbox-nav {
  display: flex;
  gap: 8px;
  margin-top: 27px;
}

.lightbox-nav button {
  width: 49px;
  height: 43px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: #fff;
  font-size: 23px;
  cursor: pointer;
}

.lightbox-nav button:hover,
.lightbox-nav button:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.toast {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 2500;
  max-width: min(360px, calc(100vw - 32px));
  padding: 13px 17px;
  border: 1px solid var(--line-strong);
  border-left-color: var(--accent);
  background: rgba(8, 8, 8, 0.96);
  color: #d4d2cc;
  font-size: 12px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: none;
}

.noscript {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 3000;
  padding: 10px 15px;
  border: 1px solid var(--accent);
  background: #080808;
}

/* ---------- Reveal motion ---------- */
.reveal:not(.featured-works):not(.featured-grid):not(.featured-card):not(.featured-card-copy) {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

.reveal.is-visible:not(.featured-works):not(.featured-grid):not(.featured-card):not(.featured-card-copy) {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 170ms; }
.reveal-delay-3 { transition-delay: 240ms; }

/* ---------- Responsive ---------- */
@media (max-width: 1380px) {
  :root {
    --rail-width: 68px;
  }

  .header-inner {
    padding-right: 24px;
    padding-left: 34px;
  }

  .desktop-nav {
    gap: 37px;
  }

  .header-appointment {
    width: 172px;
  }

  .home-hero {
    grid-template-columns: minmax(475px, 43%) minmax(0, 57%);
  }

  .hero-copy {
    padding-left: 44px;
  }

  .hero-kicker {
    font-size: 56px;
  }

  .hero-copy h1 {
    font-size: 158px;
  }

  .hero-brush {
    width: 430px;
  }

  .hero-actions .button {
    min-width: 238px;
  }

  .quality-seal--hero {
    left: -65px;
    transform: scale(0.86);
  }

  .featured-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .featured-card:nth-child(6) {
    display: none;
  }

  .about-feature {
    grid-template-columns: 27px 1fr;
    padding-right: 6px;
  }

  .about-feature + .about-feature {
    padding-left: 7px;
  }

  .works-main {
    padding: 0 38px;
  }

  .portfolio-copy {
    padding-right: 16px;
    padding-left: 16px;
  }

  .portfolio-copy h2 {
    display: -webkit-box;
    overflow: hidden;
    font-size: 18px;
    line-height: 0.98;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .studio-copy {
    padding-left: 45px;
  }

  .video-frame {
    min-height: 530px;
  }

  .footer-item,
  .footer-copyright {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (max-width: 1120px) {
  .desktop-nav,
  .header-appointment {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .home-hero {
    height: auto;
    min-height: 660px;
    grid-template-columns: 50% 50%;
  }

  .hero-copy {
    padding-left: 35px;
  }

  .hero-kicker {
    font-size: 48px;
  }

  .hero-copy h1 {
    font-size: 138px;
  }

  .hero-brush {
    width: 365px;
  }

  .hero-actions {
    display: grid;
    max-width: 330px;
  }

  .hero-actions .button {
    min-width: 0;
  }

  .hero-slide--artwork img {
    right: 8%;
    height: 89%;
  }

  .quality-seal--hero {
    top: 105px;
    left: -88px;
    transform: scale(0.72);
  }

  .hero-pagination {
    right: 12px;
  }

  .home-lower {
    height: auto;
    grid-template-columns: 1fr;
  }

  .featured-works {
    min-height: 275px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .featured-grid {
    height: 215px;
    grid-template-columns: repeat(6, minmax(120px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .featured-card:nth-child(6) {
    display: block;
  }

  .about-card {
    min-height: 260px;
    padding-bottom: 24px;
  }

  .works-main {
    padding: 0 26px;
  }

  .quality-seal--works {
    left: 55%;
  }

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

  .works-cta {
    height: auto;
    min-height: 100px;
    grid-template-columns: 72px 1fr 205px;
    padding-right: 15px;
  }

  .cta-orbit {
    display: none;
  }

  .studio-layout {
    grid-template-columns: 1fr;
  }

  .studio-copy {
    padding-right: 50px;
  }

  .studio-video {
    padding: 5px 34px 35px 45px;
  }

  .video-frame {
    min-height: 500px;
  }

  .footer-contact {
    grid-template-columns: repeat(2, 1fr);
    padding: 9px 0;
  }

  .footer-item,
  .footer-copyright {
    height: 52px;
  }

  .footer-contact > :nth-child(3) {
    border-left: 0;
  }

  .footer-copyright {
    grid-column: 1 / -1;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-top: 1px solid var(--line-soft);
    border-left: 0;
    text-align: center;
  }

  .footer-copyright strong {
    margin: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --frame-gap: 7px;
    --header-height: 66px;
    --rail-width: 0px;
  }

  body::before {
    background-size: 110px 110px, 110px 110px, 768px 768px;
  }

  .site-shell {
    overflow: visible;
  }

  .site-rail {
    display: none;
  }

  .page-column {
    margin-left: 0;
  }

  .header-inner {
    padding: 0 14px 0 16px;
  }

  .brand-link {
    width: 142px;
  }

  .brand-link img {
    height: 48px;
  }

  .home-hero {
    min-height: 0;
    display: block;
  }

  .hero-copy {
    min-height: 445px;
    padding: 45px 22px 32px;
  }

  .hero-kicker {
    font-size: clamp(39px, 12vw, 55px);
  }

  .hero-copy h1 {
    font-size: clamp(118px, 37vw, 168px);
  }

  .hero-brush {
    width: min(440px, 100%);
  }

  .hero-description {
    font-size: 12px;
  }

  .hero-actions {
    max-width: none;
    grid-template-columns: 1fr;
  }

  .hero-stage {
    height: 520px;
    border-top: 1px solid var(--line-soft);
  }

  .hero-stage::before {
    background: linear-gradient(0deg, #060606 0%, transparent 18%, transparent 88%, #060606 100%);
  }

  .hero-slide--artwork img {
    right: 8%;
    height: 92%;
  }

  .hero-slide--photo img {
    right: 17%;
    width: 66%;
  }

  .quality-seal--hero {
    top: 10px;
    left: 5px;
    transform: scale(0.68);
    transform-origin: top left;
  }

  .hero-pagination {
    top: auto;
    right: 14px;
    bottom: 24px;
    display: flex;
    gap: 4px;
    transform: none;
  }

  .hero-pagination button {
    width: 52px;
    padding: 0;
    font-size: 24px;
    text-align: center;
  }

  .hero-pagination button::after {
    right: 10px;
    bottom: -8px;
    top: auto;
    width: 32px;
  }

  .featured-works {
    padding-right: 14px;
    padding-left: 14px;
  }

  .featured-grid {
    grid-template-columns: repeat(6, 143px);
  }

  .about-card {
    padding: 23px 19px 26px;
  }

  .about-card > h2 {
    font-size: 30px;
  }

  .about-intro {
    font-size: 11px;
  }

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

  .about-feature,
  .about-feature + .about-feature {
    padding: 0;
    border-left: 0;
  }

  .about-feature p {
    font-size: 10px;
  }

  .works-main {
    padding: 0 14px;
  }

  .works-intro {
    height: 230px;
  }

  .works-intro h1 {
    width: 128%;
    font-size: clamp(48px, 13.5vw, 56px);
    letter-spacing: 0.008em;
    transform: scaleX(0.75);
    transform-origin: left center;
  }

  .works-intro p {
    max-width: 270px;
    font-size: 11px;
  }

  .quality-seal--works {
    top: 12px;
    right: 0;
    left: auto;
    width: 115px;
    height: 115px;
    opacity: 0.65;
  }

  .ink-splash {
    top: 48px;
    right: -80px;
    transform: scale(0.72);
  }

  .filter-tabs {
    gap: 25px;
  }

  .filter-tab {
    font-size: 14px;
  }

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

  .portfolio-card {
    height: 148px;
    grid-template-columns: 58% 42%;
  }

  .portfolio-copy {
    padding: 11px 15px;
  }

  .portfolio-copy h2 {
    display: -webkit-box;
    overflow: hidden;
    font-size: 18px;
    line-height: 0.98;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .works-cta {
    grid-template-columns: 50px 1fr;
    gap: 7px;
    padding: 14px 10px;
  }

  .works-cta h2 {
    font-size: 20px;
  }

  .works-cta .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .studio-copy {
    padding: 28px 20px 30px;
  }

  .quality-seal--studio {
    width: 118px;
    height: 118px;
    margin: -9px 0 8px -9px;
  }

  .studio-copy h1 {
    width: 100%;
    font-size: clamp(64px, 18vw, 82px);
    letter-spacing: 0.015em;
    transform: scaleX(0.89);
    transform-origin: left center;
  }

  .studio-lead {
    font-size: 12px;
  }

  .studio-features {
    grid-template-columns: 1fr;
  }

  .studio-actions {
    display: grid;
    gap: 11px;
  }

  .studio-actions .button {
    width: 100%;
    min-width: 0;
  }

  .studio-video {
    padding: 0 14px 22px;
  }

  .video-frame {
    min-height: 430px;
  }

  .video-play {
    width: 104px;
    height: 104px;
  }

  .video-watermark {
    font-size: 77px;
  }

  .footer-minimal {
    height: 48px;
    padding: 0 45px;
    font-size: 10px;
    line-height: 1.4;
    text-align: center;
  }

  .footer-minimal::before { left: 18px; }
  .footer-minimal::after { right: 18px; }

  .footer-contact {
    grid-template-columns: 1fr;
    padding: 8px 0;
  }

  .footer-item,
  .footer-item + .footer-item,
  .footer-copyright {
    height: auto;
    min-height: 54px;
    border-top: 1px solid var(--line-soft);
    border-left: 0;
  }

  .footer-contact > :first-child {
    border-top: 0;
  }

  .footer-copyright {
    display: block;
    padding: 13px 20px;
  }

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

  .dialog-inner {
    padding: 28px 20px;
  }

  .lightbox-inner {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .lightbox-image-wrap {
    height: calc(100svh - 245px);
    min-height: 380px;
    padding: 12px;
  }

  .lightbox-info {
    min-height: 175px;
    padding: 20px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .lightbox-info h2 {
    font-size: 28px;
  }
}

@media (max-width: 420px) {
  .hero-copy {
    min-height: 425px;
  }

  .hero-copy h1 {
    font-size: 120px;
  }

  .hero-stage {
    height: 460px;
  }

  .portfolio-card {
    height: 138px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ========================================================================
   Visual integration revision — shared texture + rebuilt homepage hero
   ======================================================================== */

/* The texture is intentionally shared by all three pages. */
.site-shell::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background-image:
    radial-gradient(circle at 72% 16%, rgba(255, 255, 255, 0.035), transparent 31%),
    url("../assets/ui/grunge-texture.webp");
  background-repeat: no-repeat, repeat;
  background-size: auto, 780px 780px;
  background-position: center, center top;
  mix-blend-mode: soft-light;
  filter: contrast(1.18);
  opacity: 0.085;
}

.site-shell::after {
  opacity: 0.13;
}

.home-main,
.works-main,
.studio-main {
  position: relative;
  isolation: isolate;
}

.works-main::before,
.studio-main::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.012), transparent 31%, rgba(0, 0, 0, 0.15)),
    url("../assets/ui/grunge-texture.webp") center top / 880px 880px repeat;
  mix-blend-mode: soft-light;
  filter: contrast(1.2);
  opacity: 0.075;
}

.works-main > *,
.studio-main > * {
  position: relative;
  z-index: 1;
}

/* The logo file contains only the brush lettering; this restores the studio line. */
.brand-link {
  width: clamp(158px, 12vw, 196px);
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  line-height: 1;
}

.brand-link img {
  width: 100%;
  height: 42px;
  object-fit: contain;
  object-position: left bottom;
}

.brand-subtitle {
  display: block;
  margin: -1px 0 0 7px;
  color: rgba(239, 238, 233, 0.88);
  font-family: var(--font-condensed);
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Never leave important content invisible when a script, extension or cache fails. */
.reveal:not(.featured-works):not(.featured-grid):not(.featured-card):not(.featured-card-copy),
.reveal.is-visible:not(.featured-works):not(.featured-grid):not(.featured-card):not(.featured-card-copy) {
  opacity: 1;
  transform: none;
  animation: street-reveal 620ms var(--ease) both;
}

.reveal-delay-1 { animation-delay: 70ms; }
.reveal-delay-2 { animation-delay: 135ms; }
.reveal-delay-3 { animation-delay: 200ms; }

@keyframes street-reveal {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* Homepage hero ---------------------------------------------------------- */
.home-hero {
  height: 548px;
  grid-template-columns: minmax(555px, 44%) minmax(0, 56%);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 48%, rgba(255, 255, 255, 0.045), transparent 31%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 47%);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    url("../assets/ui/grunge-texture.webp") center / 820px 820px repeat;
  background-size: 142px 142px, 142px 142px, 820px 820px;
  mix-blend-mode: soft-light;
  opacity: 0.06;
}

.home-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 4, 4, 0.02) 0 39%, rgba(4, 4, 4, 0.22) 48%, transparent 64%),
    linear-gradient(0deg, rgba(4, 4, 4, 0.48), transparent 18%);
}

.hero-copy {
  z-index: 20;
  justify-content: center;
  padding: 30px 24px 34px 58px;
}

.hero-kicker {
  margin-bottom: 2px;
  color: #efeee9;
  font-size: clamp(53px, 4vw, 67px);
  line-height: 0.91;
  letter-spacing: 0.042em;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
}

.hero-copy h1 {
  margin-top: 2px;
  background-image:
    linear-gradient(180deg, #fbfaf6 0%, #e1e0da 100%),
    url("../assets/ui/grunge-texture.webp");
  background-size: auto, 520px 520px;
  background-blend-mode: multiply;
  font-size: clamp(152px, 11.45vw, 192px);
  line-height: 0.76;
  letter-spacing: 0.006em;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.42));
}

.hero-brush {
  width: min(545px, 94%);
  height: 43px;
  margin-top: -2px;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.35));
}

.hero-description {
  max-width: 525px;
  margin: 5px 0 20px;
  color: #c9c7c1;
  font-size: 14.5px;
  line-height: 1.72;
}

.hero-actions {
  gap: 17px 20px;
}

.hero-actions .button,
.hero-actions .button:nth-child(2) {
  width: 270px;
  min-height: 49px;
  background: rgba(6, 6, 6, 0.48);
  backdrop-filter: blur(4px);
}

.hero-actions .button--primary {
  box-shadow: 0 0 30px rgba(227, 33, 32, 0.07);
}

/* The seal is positioned against the whole hero, not clipped by the slide stage. */
.quality-seal--hero {
  position: absolute;
  top: 92px;
  left: calc(44% - 78px);
  z-index: 24;
  width: 162px;
  height: 162px;
  opacity: 0.94;
  filter: drop-shadow(0 15px 26px rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

.quality-seal--hero svg {
  overflow: visible;
}

.hero-stage {
  z-index: 4;
  overflow: hidden;
  background:
    radial-gradient(circle at 67% 48%, rgba(255, 255, 255, 0.055), transparent 30%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.55) 10%, transparent 30%);
}

.hero-stage::before {
  z-index: 12;
  background:
    linear-gradient(90deg, #060606 0%, rgba(6, 6, 6, 0.82) 8%, rgba(6, 6, 6, 0.26) 20%, transparent 37%),
    linear-gradient(0deg, #060606 0%, rgba(6, 6, 6, 0.66) 8%, transparent 23%);
}

.hero-stage::after {
  left: 12%;
  z-index: 11;
  opacity: 0.38;
}

.hero-slide {
  isolation: isolate;
}

.hero-slide-brush,
.hero-slide-splatter {
  position: absolute;
  display: block;
  pointer-events: none;
}

.hero-slide-brush {
  z-index: 0;
  top: -4%;
  right: -2%;
  width: 105%;
  height: 108%;
  background: none center / 100% 100% no-repeat;
  mix-blend-mode: screen;
  filter: contrast(1.15);
  opacity: 0.43;
  transform: rotate(-2deg);
}

.hero-slide-splatter {
  z-index: 1;
  top: 0;
  right: 1%;
  width: min(43vw, 570px);
  height: 76%;
  background: none center / contain no-repeat;
  mix-blend-mode: screen;
  filter: grayscale(1) contrast(0.9);
  opacity: 0.16;
  transform: rotate(7deg);
}

.hero-slide img {
  z-index: 4;
}

.hero-slide--artwork img {
  right: 3.8%;
  bottom: -30px;
  width: auto;
  max-width: none;
  height: 111%;
  object-fit: contain;
  object-position: center bottom;
  filter: contrast(1.04) brightness(1.01) drop-shadow(0 24px 48px rgba(0, 0, 0, 0.55));
}

.hero-slide--artwork .hero-slide-brush {
  top: -7%;
  right: -5%;
  width: 111%;
  height: 118%;
  opacity: 0.39;
}

.hero-slide--artwork .hero-slide-splatter {
  top: -5%;
  right: 8%;
  width: min(40vw, 530px);
  opacity: 0.13;
}

.hero-slide--photo::before {
  z-index: -2;
  background-position: var(--hero-position, center);
  background-size: cover;
  filter: blur(20px) brightness(0.20) saturate(0.48);
  transform: scale(1.12);
  opacity: 0.62;
}

.hero-slide--photo::after {
  z-index: 7;
  background:
    linear-gradient(90deg, #060606 0%, rgba(6, 6, 6, 0.64) 14%, transparent 35%, transparent 78%, rgba(6, 6, 6, 0.82) 100%),
    linear-gradient(0deg, #060606 0%, rgba(6, 6, 6, 0.55) 11%, transparent 30%, rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.hero-slide--photo .hero-slide-brush {
  top: 2%;
  right: 5%;
  width: 77%;
  height: 96%;
  opacity: 0.33;
  transform: rotate(-5deg);
}

.hero-slide--photo .hero-slide-splatter {
  top: 5%;
  right: 7%;
  width: min(37vw, 490px);
  height: 80%;
  opacity: 0.11;
}

.hero-slide--photo img {
  right: 17%;
  bottom: -4%;
  width: auto;
  max-width: 56%;
  height: 108%;
  object-fit: contain;
  object-position: var(--hero-position, center);
  filter: saturate(0.78) sepia(0.1) contrast(1.08) brightness(0.91) drop-shadow(0 24px 48px rgba(0, 0, 0, 0.56));
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 13%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 13%, #000 88%, transparent 100%);
}

.hero-slide-label {
  right: 18%;
  bottom: 32px;
  z-index: 13;
  display: grid;
  justify-items: end;
  gap: 1px;
  padding: 8px 11px 8px 15px;
  border-right: 1px solid var(--accent);
  background: linear-gradient(90deg, transparent, rgba(4, 4, 4, 0.78));
  backdrop-filter: blur(4px);
}

.hero-slide-label strong {
  color: #dfddd7;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-slide-label small {
  color: var(--accent-bright);
  font-family: var(--font-condensed);
  font-size: 9px;
  letter-spacing: 0.2em;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-pagination {
  right: 21px;
  z-index: 20;
}

.hero-pagination button {
  font-size: 29px;
}

/* Page surfaces get the same atmosphere instead of looking like separate themes. */
.works-intro,
.filter-tabs,
.portfolio-grid,
.works-cta,
.studio-layout {
  background-color: transparent;
}

.portfolio-card,
.video-frame,
.about-card,
.featured-card {
  background-color: rgba(6, 6, 6, 0.68);
}

@media (max-width: 1380px) {
  .brand-link { width: 168px; }
  .brand-link img { height: 39px; }

  .home-hero {
    grid-template-columns: minmax(480px, 43%) minmax(0, 57%);
  }

  .hero-copy {
    padding-left: 43px;
  }

  .hero-kicker {
    font-size: 53px;
  }

  .hero-copy h1 {
    font-size: 155px;
  }

  .hero-brush {
    width: 435px;
  }

  .quality-seal--hero {
    left: calc(43% - 72px);
    width: 150px;
    height: 150px;
  }

  .hero-slide--artwork img {
    right: 1%;
    height: 108%;
  }
}

@media (max-width: 1120px) {
  .home-hero {
    min-height: 650px;
    grid-template-columns: minmax(430px, 48%) minmax(0, 52%);
  }

  .hero-copy {
    padding: 28px 18px 32px 32px;
  }

  .hero-kicker {
    font-size: 45px;
  }

  .hero-copy h1 {
    font-size: 132px;
  }

  .hero-brush {
    width: 350px;
    height: 37px;
  }

  .hero-description {
    max-width: 390px;
    font-size: 13px;
  }

  .hero-actions,
  .hero-actions .button,
  .hero-actions .button:nth-child(2) {
    width: 100%;
    max-width: 340px;
  }

  .quality-seal--hero {
    top: 112px;
    left: calc(48% - 66px);
    width: 132px;
    height: 132px;
    transform: none;
  }

  .hero-slide--artwork img {
    right: -10%;
    bottom: -18px;
    height: 98%;
  }

  .hero-slide--photo img {
    right: 13%;
    max-width: 66%;
    height: 100%;
  }

  .hero-slide--photo .hero-slide-brush {
    right: 0;
    width: 92%;
  }
}

@media (max-width: 760px) {
  .brand-link {
    width: 143px;
  }

  .brand-link img {
    height: 35px;
  }

  .brand-subtitle {
    margin-left: 5px;
    font-size: 6.5px;
  }

  .home-hero {
    display: block;
    height: auto;
    min-height: 0;
  }

  .hero-copy {
    min-height: 452px;
    padding: 43px 20px 30px;
  }

  .hero-kicker {
    font-size: clamp(39px, 11.5vw, 52px);
  }

  .hero-copy h1 {
    font-size: clamp(118px, 35vw, 158px);
  }

  .hero-stage {
    height: 525px;
  }

  .quality-seal--hero {
    top: 465px;
    left: 12px;
    width: 116px;
    height: 116px;
    transform: none;
  }

  .hero-slide--artwork img {
    right: -13%;
    bottom: -18px;
    height: 95%;
  }

  .hero-slide--artwork .hero-slide-brush {
    right: -15%;
    width: 125%;
  }

  .hero-slide--photo img {
    right: 15%;
    max-width: 69%;
    height: 101%;
  }

  .hero-slide-label {
    right: 15%;
    bottom: 31px;
  }

  .hero-pagination {
    right: 13px;
    bottom: 22px;
  }

  .site-shell::before,
  .works-main::before,
  .studio-main::before {
    background-size: auto, 650px 650px;
    opacity: 0.09;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Final hero balance: the paint sits behind the subject instead of reading as a separate panel. */
.hero-copy h1 {
  transform: scaleX(1.08);
  transform-origin: left center;
}

.hero-slide-brush {
  top: 1%;
  right: 0;
  width: 86%;
  height: 100%;
  opacity: 0.20;
  transform: rotate(-2.5deg);
}

.hero-slide--artwork .hero-slide-brush {
  top: -1%;
  right: -1%;
  width: 91%;
  height: 105%;
  opacity: 0.20;
}

.hero-slide--photo .hero-slide-brush {
  top: 3%;
  right: 4%;
  width: 78%;
  height: 94%;
  opacity: 0.19;
}

@media (max-width: 1380px) {
  .hero-copy h1 { transform: scaleX(1.06); }
}

@media (max-width: 760px) {
  .hero-copy h1 { transform: scaleX(1.02); }
  .hero-slide--artwork .hero-slide-brush {
    right: -5%;
    width: 106%;
  }
}

/* ========================================================================
   Precision pass — artwork integration, shared wallpaper and hero fidelity
   ======================================================================== */

/* A visible but restrained wallpaper texture now runs through every page. */
.site-shell::before {
  background-image:
    radial-gradient(circle at 72% 16%, rgba(255, 255, 255, 0.05), transparent 31%),
    url("../assets/ui/page-texture.svg"),
    url("../assets/ui/grunge-texture.webp");
  background-repeat: no-repeat, repeat, repeat;
  background-size: auto, 900px 900px, 780px 780px;
  background-position: center, center top, center top;
  mix-blend-mode: soft-light;
  filter: contrast(1.22);
  opacity: 0.17;
}

.site-shell::after {
  opacity: 0.17;
}

.works-main::before,
.studio-main::before {
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.018), transparent 31%, rgba(0, 0, 0, 0.13)),
    url("../assets/ui/page-texture.svg") center top / 900px 900px repeat,
    url("../assets/ui/grunge-texture.webp") center top / 850px 850px repeat;
  mix-blend-mode: soft-light;
  filter: contrast(1.22);
  opacity: 0.14;
}

.home-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    url("../assets/ui/page-texture.svg") center / 900px 900px repeat,
    url("../assets/ui/grunge-texture.webp") center / 820px 820px repeat;
  background-size: 142px 142px, 142px 142px, 900px 900px, 820px 820px;
  mix-blend-mode: soft-light;
  opacity: 0.115;
}

/* Hero typography follows the approved UI more closely. */
.hero-kicker {
  font-size: clamp(52px, 3.8vw, 64px);
  letter-spacing: 0.035em;
  text-shadow: 0 9px 26px rgba(0, 0, 0, 0.52);
}

.hero-copy h1 {
  background-image:
    linear-gradient(180deg, #fbfaf6 0%, #deddd7 100%),
    url("../assets/ui/page-texture.svg"),
    url("../assets/ui/grunge-texture.webp");
  background-size: auto, 620px 620px, 520px 520px;
  background-blend-mode: multiply, soft-light, multiply;
  -webkit-text-stroke: 0.25px rgba(255, 255, 255, 0.34);
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.5));
}

.hero-description {
  text-wrap: balance;
}

/* The seal is fully visible and receives a subtle backing rather than floating. */
.quality-seal--hero {
  overflow: visible;
}

.quality-seal--hero::before {
  position: absolute;
  inset: 22px;
  z-index: -1;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 8, 8, 0.78) 0 52%, rgba(8, 8, 8, 0.28) 72%, transparent 100%);
  filter: blur(2px);
}

/* The supplied woman artwork is untouched; only its crop, scale and surroundings change. */
.hero-slide--artwork .hero-main-image {
  right: 4.5%;
  bottom: -34px;
  width: auto;
  max-width: none;
  height: 106%;
  object-fit: contain;
  object-position: center bottom;
  filter: contrast(1.035) brightness(1.015) drop-shadow(0 26px 52px rgba(0, 0, 0, 0.58));
}

.hero-slide--artwork .hero-removed-plane {
  position: absolute;
  top: 6px;
  right: 5.5%;
  bottom: auto;
  z-index: 6;
  width: clamp(215px, 16vw, 282px);
  max-width: none;
  height: auto;
  object-fit: contain;
  opacity: 0.94;
  filter: contrast(1.04) brightness(0.94) drop-shadow(0 14px 28px rgba(0, 0, 0, 0.62));
  transform: rotate(1.5deg);
}

.hero-slide--artwork .hero-slide-brush {
  top: -9%;
  right: -3%;
  width: 108%;
  height: 122%;
  opacity: 0.47;
  transform: rotate(-2.5deg);
}

.hero-slide--artwork .hero-slide-splatter {
  top: -4%;
  right: 7%;
  width: min(41vw, 545px);
  opacity: 0.16;
}

/* Photo slides also sit inside a designed brush field instead of floating on black. */
.hero-slide--photo .hero-main-image {
  right: 16%;
  bottom: -3%;
  width: auto;
  max-width: 58%;
  height: 106%;
  object-fit: contain;
  object-position: var(--hero-position, center);
  filter: saturate(0.8) sepia(0.08) contrast(1.08) brightness(0.92) drop-shadow(0 27px 52px rgba(0, 0, 0, 0.6));
}

.hero-slide--photo .hero-slide-brush {
  top: -1%;
  right: 2%;
  width: 88%;
  height: 104%;
  opacity: 0.39;
}

.hero-slide--photo .hero-slide-splatter {
  right: 6%;
  opacity: 0.14;
}

@media (max-width: 1380px) {
  .hero-slide--artwork .hero-main-image {
    right: 0;
    height: 103%;
  }

  .hero-slide--artwork .hero-removed-plane {
    right: 3%;
    width: 235px;
  }
}

@media (max-width: 1120px) {
  .hero-slide--artwork .hero-main-image {
    right: -13%;
    bottom: -20px;
    height: 95%;
  }

  .hero-slide--artwork .hero-removed-plane {
    top: 18px;
    right: 2%;
    width: 205px;
  }

  .hero-slide--photo .hero-main-image {
    right: 12%;
    max-width: 68%;
    height: 101%;
  }
}

@media (max-width: 760px) {
  .site-shell::before,
  .works-main::before,
  .studio-main::before {
    background-size: auto, 680px 680px, 650px 650px;
    opacity: 0.13;
  }

  .home-hero::before {
    opacity: 0.1;
  }

  .hero-slide--artwork .hero-main-image {
    right: -18%;
    bottom: -14px;
    height: 93%;
  }

  .hero-slide--artwork .hero-removed-plane {
    top: 20px;
    right: 3%;
    width: 178px;
  }

  .hero-slide--photo .hero-main-image {
    right: 13%;
    max-width: 73%;
    height: 100%;
  }
}


/* ========================================================================
   Final user revision — hero seal, refined home hero and improved about grid
   ======================================================================== */
:root {
  --font-condensed: "Oswald", "Barlow Condensed", "Liberation Sans Narrow", "DejaVu Sans Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Manrope", "Noto Sans", Arial, sans-serif;
}

.site-shell::before {
  opacity: 0.2;
}

.home-hero {
  position: relative;
  height: 548px;
  display: grid;
  grid-template-columns: minmax(500px, 43%) minmax(0, 57%);
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 15;
}

.hero-stage {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 55% 50%, rgba(255, 255, 255, 0.04), transparent 28%),
    linear-gradient(90deg, rgba(4, 4, 4, 0.5) 0%, rgba(4, 4, 4, 0.12) 18%, transparent 34%);
}

.hero-stage::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.96) 0 2%, transparent 18%),
    linear-gradient(0deg, rgba(6, 6, 6, 0.75), transparent 16%),
    url("../assets/ui/page-texture.svg") center/920px 920px repeat,
    url("../assets/ui/grunge-texture.webp") center/820px 820px repeat;
  mix-blend-mode: soft-light;
  opacity: 0.26;
}

.quality-seal--hero {
  position: absolute;
  top: 108px;
  left: 18px;
  z-index: 9;
  width: 192px;
  height: 192px;
  overflow: visible;
}

.quality-seal--hero::before {
  position: absolute;
  inset: 16px;
  z-index: -1;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 6, 6, 0.8) 0 48%, rgba(6, 6, 6, 0.18) 72%, transparent 100%);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(1.01);
  transition: opacity 520ms var(--ease), transform 720ms var(--ease), visibility 520ms;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.hero-slide img {
  position: absolute;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-slide-brush {
  right: 5%;
  bottom: 2%;
  z-index: 1;
  width: min(64vw, 650px);
  max-width: none;
  height: auto;
  opacity: 0.18;
  filter: blur(0.3px) brightness(0.92);
  transform: rotate(-5deg);
  transform-origin: center;
}

.hero-slide--artwork .hero-slide-brush {
  right: 2%;
  bottom: -1%;
  width: min(60vw, 610px);
  opacity: 0.12;
}

.hero-main-image {
  z-index: 3;
}

.hero-slide--artwork .hero-main-image {
  right: 6.5%;
  bottom: -36px;
  width: auto;
  max-width: none;
  height: 108%;
  object-fit: contain;
  object-position: center bottom;
  filter: contrast(1.04) brightness(1.02) drop-shadow(0 26px 48px rgba(0, 0, 0, 0.62));
}

.hero-removed-plane {
  position: absolute;
  top: 6px;
  right: 4.5%;
  z-index: 4;
  width: clamp(200px, 15vw, 270px);
  height: auto;
  object-fit: contain;
  opacity: 0.96;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.64));
}

.hero-slide--photo::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background-image: var(--hero-bg);
  background-repeat: no-repeat;
  background-position: var(--hero-position, center);
  background-size: 62%;
  filter: blur(18px) brightness(0.16) saturate(0.55);
  transform: scale(1.08);
  opacity: 0.5;
}

.hero-slide--photo .hero-main-image {
  right: 12%;
  bottom: -3%;
  width: auto;
  max-width: 56%;
  height: 104%;
  object-fit: contain;
  object-position: var(--hero-position, center);
  filter: saturate(0.8) sepia(0.08) contrast(1.08) brightness(0.9) drop-shadow(0 26px 48px rgba(0, 0, 0, 0.6));
}

.hero-slide-label {
  right: 18%;
  bottom: 36px;
  z-index: 6;
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.74);
}

.hero-pagination {
  position: absolute;
  top: 50%;
  right: 26px;
  z-index: 12;
  display: grid;
  gap: 14px;
  transform: translateY(-46%);
}

.hero-pagination button {
  position: relative;
  width: 90px;
  padding: 0 54px 0 0;
  border: 0;
  background: transparent;
  color: #63625f;
  font-family: var(--font-condensed);
  font-size: 31px;
  line-height: 1;
  text-align: right;
  cursor: pointer;
  transition: color 220ms ease;
}

.hero-pagination button::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 42px;
  height: 1px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms ease;
}

.hero-pagination button:hover,
.hero-pagination button:focus-visible,
.hero-pagination button.is-active {
  color: var(--accent-bright);
  outline: none;
}

.hero-pagination button:hover::after,
.hero-pagination button:focus-visible::after,
.hero-pagination button.is-active::after {
  transform: scaleX(1);
}

.home-lower {
  min-height: 315px;
  height: auto;
}

.about-card {
  padding: 18px 26px 24px 32px;
}

.about-card > h2 {
  font-size: clamp(28px, 2.2vw, 36px);
}

.about-intro {
  max-width: 540px;
  margin: 0 0 24px;
  font-size: 11.7px;
  line-height: 1.65;
}

.about-features {
  margin-top: 18px;
  padding-top: 8px;
  gap: 0;
  align-items: start;
}

.about-feature {
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 8px 12px 0 0;
}

.about-feature + .about-feature {
  padding-left: 14px;
}

.feature-icon {
  width: 38px;
  height: 38px;
}

.feature-icon svg {
  width: 34px;
  height: 34px;
}

.about-feature h3 {
  margin: 0 0 6px;
  font-size: 15px;
  letter-spacing: 0.06em;
}

.about-feature p {
  font-size: 10.8px;
  line-height: 1.58;
}

@media (max-width: 1240px) {
  .home-hero {
    grid-template-columns: minmax(430px, 41%) minmax(0, 59%);
  }

  .hero-slide--artwork .hero-main-image {
    right: 2%;
    height: 101%;
  }

  .hero-removed-plane {
    width: 225px;
  }

  .quality-seal--hero {
    top: 118px;
    left: 8px;
    width: 176px;
    height: 176px;
  }
}

@media (max-width: 980px) {
  .home-hero {
    height: auto;
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 480px;
    border-top: 1px solid var(--line);
  }

  .quality-seal--hero {
    top: 28px;
    left: 16px;
    width: 162px;
    height: 162px;
  }

  .hero-slide--artwork .hero-main-image {
    right: 2%;
    height: 96%;
  }

  .hero-removed-plane {
    right: 3%;
    width: 210px;
  }

  .hero-slide--photo .hero-main-image {
    right: 10%;
    max-width: 62%;
  }

  .home-lower {
    grid-template-columns: 1fr;
  }

  .featured-works {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .hero-copy {
    padding: 28px 22px 26px 28px;
  }

  .hero-kicker {
    font-size: 44px;
  }

  .hero-copy h1 {
    font-size: 128px;
  }

  .hero-description {
    font-size: 13.5px;
  }

  .hero-actions .button,
  .hero-actions .button:nth-child(2) {
    width: 100%;
  }

  .hero-stage {
    min-height: 360px;
  }

  .hero-slide--artwork .hero-main-image {
    right: -10%;
    bottom: -16px;
    height: 95%;
  }

  .hero-removed-plane {
    width: 156px;
  }

  .hero-slide--photo .hero-main-image {
    right: 9%;
    max-width: 66%;
  }

  .hero-pagination {
    right: 16px;
    gap: 10px;
  }

  .hero-pagination button {
    width: 72px;
    padding-right: 42px;
    font-size: 26px;
  }

  .hero-pagination button::after {
    width: 32px;
  }

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

  .about-feature,
  .about-feature + .about-feature {
    padding: 0;
    border-left: 0;
  }
}


/* ========================================================================
   Single-surface homepage hero — one background, no split stage
   ======================================================================== */
body[data-page="home"] .home-main {
  position: relative;
  isolation: isolate;
}

body[data-page="home"] .home-main::before,
body[data-page="home"] .home-main::after {
  display: none !important;
  content: none !important;
}

body[data-page="home"] .home-hero {
  position: relative;
  height: 548px;
  display: block;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  background-color: #050505;
  background-image: url("../assets/ui/grunge-texture.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

body[data-page="home"] .home-hero::before,
body[data-page="home"] .home-hero::after {
  display: none !important;
  content: none !important;
}

body[data-page="home"] .hero-copy {
  position: absolute;
  top: 50%;
  left: 58px;
  z-index: 5;
  width: min(41%, 555px);
  min-width: 0;
  display: block;
  padding: 0;
  transform: translateY(-50%);
}

body[data-page="home"] .hero-art-static {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

body[data-page="home"] .hero-art-static img {
  position: absolute;
  right: 11.5%;
  bottom: -35px;
  width: auto;
  max-width: none;
  height: 108%;
  object-fit: contain;
  object-position: center bottom;
  filter: none !important;
  box-shadow: none !important;
  opacity: 1;
  transform: none;
  user-select: none;
  -webkit-user-drag: none;
}

body[data-page="home"] .quality-seal--hero {
  position: absolute;
  top: 109px;
  left: 46.2%;
  z-index: 4;
  width: 192px;
  height: 192px;
  overflow: visible;
}

body[data-page="home"] .quality-seal--hero::before,
body[data-page="home"] .quality-seal--hero::after {
  display: none !important;
  content: none !important;
}

body[data-page="home"] .hero-stage,
body[data-page="home"] .hero-pagination,
body[data-page="home"] .hero-slides,
body[data-page="home"] .hero-slide,
body[data-page="home"] .hero-slide-brush,
body[data-page="home"] .hero-removed-plane,
body[data-page="home"] .hero-slide-label {
  display: none !important;
}

@media (max-width: 1240px) {
  body[data-page="home"] .hero-copy {
    left: 44px;
    width: 42%;
  }

  body[data-page="home"] .quality-seal--hero {
    left: 44.5%;
    width: 176px;
    height: 176px;
  }

  body[data-page="home"] .hero-art-static img {
    right: 8%;
    height: 104%;
  }
}

@media (max-width: 980px) {
  body[data-page="home"] .home-hero {
    height: 850px;
    background-position: center top;
  }

  body[data-page="home"] .hero-copy {
    top: 42px;
    right: 28px;
    left: 28px;
    width: auto;
    transform: none;
  }

  body[data-page="home"] .quality-seal--hero {
    top: 430px;
    left: 24px;
    width: 160px;
    height: 160px;
  }

  body[data-page="home"] .hero-art-static img {
    right: 1%;
    bottom: -20px;
    height: 60%;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .home-hero {
    height: 780px;
  }

  body[data-page="home"] .hero-copy {
    top: 28px;
    right: 22px;
    left: 22px;
  }

  body[data-page="home"] .hero-kicker {
    font-size: 44px;
  }

  body[data-page="home"] .hero-copy h1 {
    font-size: 128px;
  }

  body[data-page="home"] .hero-actions .button,
  body[data-page="home"] .hero-actions .button:nth-child(2) {
    width: 100%;
  }

  body[data-page="home"] .quality-seal--hero {
    top: 420px;
    left: 12px;
    width: 142px;
    height: 142px;
  }

  body[data-page="home"] .hero-art-static img {
    right: -13%;
    bottom: -12px;
    height: 54%;
  }
}


/* ========================================================================
   Final homepage alignment pass — same dark texture as works/studio
   ======================================================================== */
body[data-page="home"] .home-hero {
  position: relative;
  display: flex;
  align-items: center;
  height: 500px;
  padding: 0 30px 0 28px;
  overflow: hidden;
  isolation: isolate;
  background-color: #070707;
  background-image: url("../assets/ui/grunge-texture.webp");
  background-repeat: repeat;
  background-position: center top;
  background-size: 880px 880px;
}

body[data-page="home"] .home-hero::before,
body[data-page="home"] .home-hero::after {
  display: none !important;
  content: none !important;
}

body[data-page="home"] .hero-copy {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  z-index: 4;
  flex: 0 0 41%;
  width: 41%;
  max-width: 560px;
  padding: 10px 0 0 14px;
}

body[data-page="home"] .hero-kicker {
  margin: 0 0 -4px;
  font-size: clamp(58px, 5vw, 72px);
  line-height: 0.92;
  letter-spacing: 0.03em;
}

body[data-page="home"] .hero-copy h1 {
  margin: 0;
  font-size: clamp(160px, 12vw, 210px);
  line-height: 0.78;
  letter-spacing: 0.01em;
  background-image:
    linear-gradient(180deg, #fbfaf6 0%, #d9d8d1 100%),
    url("../assets/ui/grunge-texture.webp");
  background-size: auto, 520px 520px;
  background-blend-mode: multiply;
}

body[data-page="home"] .hero-brush {
  width: min(430px, 86%);
  margin-top: -2px;
}

body[data-page="home"] .hero-description {
  max-width: 520px;
  margin: 10px 0 20px;
  font-size: 14px;
  line-height: 1.65;
}

body[data-page="home"] .hero-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 18px;
}

body[data-page="home"] .hero-actions .button,
body[data-page="home"] .hero-actions .button:nth-child(2) {
  width: 230px;
  min-width: 0;
}

body[data-page="home"] .quality-seal--hero {
  top: 112px;
  left: 46.6%;
  z-index: 5;
  width: 170px;
  height: 170px;
  filter: none;
}

body[data-page="home"] .hero-art-static {
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  width: 54%;
  margin: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 3;
}

body[data-page="home"] .hero-art-static img {
  position: absolute;
  left: 1%;
  right: auto;
  bottom: -8px;
  width: auto;
  max-width: none;
  height: 112%;
  object-fit: contain;
  object-position: center bottom;
  filter: none !important;
  box-shadow: none !important;
}

@media (max-width: 1280px) {
  body[data-page="home"] .hero-copy {
    flex-basis: 42%;
    width: 42%;
    padding-left: 8px;
  }

  body[data-page="home"] .quality-seal--hero {
    left: 45.8%;
    width: 156px;
    height: 156px;
  }

  body[data-page="home"] .hero-art-static {
    width: 56%;
  }

  body[data-page="home"] .hero-art-static img {
    left: -1%;
    height: 109%;
  }
}

@media (max-width: 980px) {
  body[data-page="home"] .home-hero {
    height: 840px;
    display: block;
    padding: 0;
    background-position: center top;
  }

  body[data-page="home"] .hero-copy {
    position: absolute;
    top: 38px;
    left: 28px;
    right: 28px;
    width: auto;
    max-width: none;
    padding: 0;
  }

  body[data-page="home"] .hero-actions {
    flex-wrap: wrap;
  }

  body[data-page="home"] .hero-actions .button,
  body[data-page="home"] .hero-actions .button:nth-child(2) {
    width: 100%;
  }

  body[data-page="home"] .quality-seal--hero {
    top: 355px;
    left: 32px;
    width: 150px;
    height: 150px;
  }

  body[data-page="home"] .hero-art-static {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }

  body[data-page="home"] .hero-art-static img {
    left: 34%;
    bottom: -8px;
    height: 58%;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .home-hero {
    height: 770px;
  }

  body[data-page="home"] .hero-copy {
    top: 26px;
    left: 22px;
    right: 22px;
  }

  body[data-page="home"] .hero-kicker {
    font-size: 44px;
  }

  body[data-page="home"] .hero-copy h1 {
    font-size: 126px;
  }

  body[data-page="home"] .hero-description {
    font-size: 13.5px;
  }

  body[data-page="home"] .quality-seal--hero {
    top: 335px;
    left: 18px;
    width: 128px;
    height: 128px;
  }

  body[data-page="home"] .hero-art-static img {
    left: 23%;
    bottom: -6px;
    height: 49%;
  }
}


/* ========================================================================
   Final approved homepage composition
   - header visually embedded in the page
   - same texture treatment as works/studio
   - copy left, quality seal centre, supplied woman artwork right
   ======================================================================== */
.site-header {
  background: transparent !important;
  border-bottom: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.brand-link {
  width: clamp(172px, 12.6vw, 212px);
}

.brand-link img {
  height: 47px;
}

body[data-page="home"] .site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
}

body[data-page="home"] .home-main {
  position: relative;
  isolation: isolate;
}

body[data-page="home"] .home-hero {
  position: relative;
  height: 548px;
  display: block;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  background: transparent !important;
}

/* Exactly the same low-opacity texture stack used on Works and Studio. */
body[data-page="home"] .home-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block !important;
  content: "" !important;
  pointer-events: none;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.018), transparent 31%, rgba(0, 0, 0, 0.13)),
    url("../assets/ui/page-texture.svg") center top / 900px 900px repeat,
    url("../assets/ui/grunge-texture.webp") center top / 850px 850px repeat;
  mix-blend-mode: soft-light;
  filter: contrast(1.22);
  opacity: 0.14;
}

body[data-page="home"] .home-hero::after {
  display: none !important;
  content: none !important;
}

body[data-page="home"] .hero-copy {
  position: absolute;
  top: 52%;
  left: clamp(30px, 3.7vw, 58px);
  z-index: 4;
  width: min(40.5%, 555px);
  max-width: 555px;
  padding: 0;
  transform: translateY(-50%);
}

body[data-page="home"] .hero-kicker {
  margin: 0 0 -3px;
  color: transparent;
  background-image:
    linear-gradient(180deg, #f0efea 0%, #d9d8d2 100%),
    url("../assets/ui/grunge-texture.webp");
  background-size: auto, 480px 480px;
  background-blend-mode: multiply;
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(54px, 4.5vw, 70px);
  line-height: 0.92;
  letter-spacing: 0.032em;
  text-shadow: none;
}

body[data-page="home"] .hero-copy h1 {
  margin: 0;
  font-size: clamp(158px, 12vw, 204px);
  line-height: 0.77;
  letter-spacing: 0.006em;
  background-image:
    linear-gradient(180deg, #fbfaf6 0%, #deddd7 100%),
    url("../assets/ui/grunge-texture.webp");
  background-size: auto, 520px 520px;
  background-blend-mode: multiply;
  filter: none;
}

body[data-page="home"] .hero-brush {
  width: min(455px, 91%);
  height: 40px;
  margin-top: 0;
  filter: none;
}

body[data-page="home"] .hero-description {
  max-width: 500px;
  margin: 8px 0 19px;
  color: #c5c3bd;
  font-size: 14px;
  line-height: 1.65;
}

body[data-page="home"] .hero-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 18px;
}

body[data-page="home"] .hero-actions .button,
body[data-page="home"] .hero-actions .button:nth-child(2) {
  width: 232px;
  min-width: 0;
  min-height: 48px;
  padding-right: 17px;
  padding-left: 17px;
  background: rgba(5, 5, 5, 0.28);
  backdrop-filter: none;
}

body[data-page="home"] .quality-seal--hero {
  position: absolute;
  top: 144px;
  left: 42.2%;
  z-index: 5;
  width: 184px;
  height: 184px;
  overflow: visible;
  opacity: 0.98;
  filter: none;
  pointer-events: none;
}

body[data-page="home"] .quality-seal--hero::before,
body[data-page="home"] .quality-seal--hero::after {
  display: none !important;
  content: none !important;
}

body[data-page="home"] .hero-art-static {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  pointer-events: none;
}

body[data-page="home"] .hero-art-static img {
  position: absolute;
  right: -1.4%;
  bottom: -31px;
  left: auto;
  width: auto;
  max-width: none;
  height: 111%;
  object-fit: contain;
  object-position: center bottom;
  opacity: 1;
  filter: none !important;
  box-shadow: none !important;
  transform: none;
  user-select: none;
  -webkit-user-drag: none;
}

@media (max-width: 1280px) {
  body[data-page="home"] .hero-copy {
    left: 34px;
    width: 41%;
  }

  body[data-page="home"] .hero-kicker {
    font-size: clamp(50px, 4.4vw, 62px);
  }

  body[data-page="home"] .hero-copy h1 {
    font-size: clamp(145px, 12vw, 182px);
  }

  body[data-page="home"] .quality-seal--hero {
    top: 153px;
    left: 41.6%;
    width: 166px;
    height: 166px;
  }

  body[data-page="home"] .hero-art-static img {
    right: -2.5%;
    height: 106%;
  }
}

@media (max-width: 1080px) {
  body[data-page="home"] .hero-actions {
    gap: 12px;
  }

  body[data-page="home"] .hero-actions .button,
  body[data-page="home"] .hero-actions .button:nth-child(2) {
    width: 205px;
    font-size: 14px;
  }

  body[data-page="home"] .quality-seal--hero {
    left: 40.5%;
    width: 152px;
    height: 152px;
  }

  body[data-page="home"] .hero-art-static img {
    right: -5%;
    height: 101%;
  }
}

@media (max-width: 980px) {
  body[data-page="home"] .site-header {
    position: relative;
  }

  body[data-page="home"] .home-hero {
    height: 820px;
  }

  body[data-page="home"] .hero-copy {
    top: 34px;
    right: 28px;
    left: 28px;
    width: auto;
    max-width: none;
    transform: none;
  }

  body[data-page="home"] .hero-actions {
    flex-wrap: wrap;
  }

  body[data-page="home"] .hero-actions .button,
  body[data-page="home"] .hero-actions .button:nth-child(2) {
    width: 100%;
  }

  body[data-page="home"] .quality-seal--hero {
    top: 365px;
    left: 24px;
    width: 148px;
    height: 148px;
  }

  body[data-page="home"] .hero-art-static img {
    right: -7%;
    bottom: -13px;
    height: 58%;
  }
}

@media (max-width: 760px) {
  .brand-link {
    width: 174px;
  }

  body[data-page="home"] .home-hero {
    height: 750px;
  }

  body[data-page="home"] .hero-copy {
    top: 26px;
    right: 22px;
    left: 22px;
  }

  body[data-page="home"] .hero-kicker {
    font-size: 42px;
  }

  body[data-page="home"] .hero-copy h1 {
    font-size: 122px;
  }

  body[data-page="home"] .hero-description {
    font-size: 13.5px;
  }

  body[data-page="home"] .quality-seal--hero {
    top: 350px;
    left: 12px;
    width: 126px;
    height: 126px;
  }

  body[data-page="home"] .hero-art-static img {
    right: -17%;
    bottom: -6px;
    height: 49%;
  }
}

/* ========================================================================
   Requested revision — plain white hero type, tighter composition,
   transparent/integrated navigation on Works and Studio
   ======================================================================== */
body[data-page="home"] .hero-copy {
  left: clamp(42px, 4.35vw, 70px);
}

body[data-page="home"] .hero-kicker,
body[data-page="home"] .hero-copy h1 {
  color: #ffffff;
  background: none !important;
  background-image: none !important;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: #ffffff;
  -webkit-text-stroke: 0;
  filter: none !important;
  text-shadow: none;
}

body[data-page="home"] .quality-seal--hero {
  top: 133px;
  left: 42.15%;
  width: 207px;
  height: 207px;
}

body[data-page="home"] .hero-art-static img {
  right: 1.1%;
}

@media (min-width: 981px) {
  body[data-page="works"] .site-header,
  body[data-page="studio"] .site-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent !important;
    border-bottom: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body[data-page="works"] .works-main {
    padding-top: var(--header-height);
  }

  body[data-page="studio"] .studio-main {
    min-height: calc(100svh - (var(--frame-gap) * 2) - var(--footer-height) - 2px);
    padding-top: var(--header-height);
  }
}

@media (max-width: 1280px) {
  body[data-page="home"] .hero-copy {
    left: 44px;
  }

  body[data-page="home"] .quality-seal--hero {
    top: 140px;
    left: 41.55%;
    width: 186px;
    height: 186px;
  }

  body[data-page="home"] .hero-art-static img {
    right: 0;
  }
}

@media (max-width: 1080px) {
  body[data-page="home"] .quality-seal--hero {
    left: 40.3%;
    width: 170px;
    height: 170px;
  }

  body[data-page="home"] .hero-art-static img {
    right: -2%;
  }
}

@media (max-width: 980px) {
  body[data-page="home"] .hero-copy {
    left: 30px;
    right: 26px;
  }

  body[data-page="home"] .quality-seal--hero {
    top: 350px;
    left: 22px;
    width: 158px;
    height: 158px;
  }

  body[data-page="home"] .hero-art-static img {
    right: -5%;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .hero-copy {
    left: 24px;
    right: 20px;
  }

  body[data-page="home"] .quality-seal--hero {
    top: 338px;
    left: 12px;
    width: 136px;
    height: 136px;
  }

  body[data-page="home"] .hero-art-static img {
    right: -14%;
  }
}

/* ========================================================================
   Revision 3 — subtle hero convergence + consistent desktop footer baseline
   ======================================================================== */

/* Move the copy only a little toward the centre. */
body[data-page="home"] .hero-copy {
  left: clamp(50px, 5vw, 82px);
}

/* Enlarge the quality seal while keeping it between the copy and artwork. */
body[data-page="home"] .quality-seal--hero {
  top: 126px;
  left: 41.75%;
  width: 224px;
  height: 224px;
}

/* Shift the supplied artwork slightly left; retain the illustration character.
   The tiny tonal adjustment is intentionally limited to roughly 2–3%. */
body[data-page="home"] .hero-art-static img {
  right: 3.6%;
  filter: contrast(1.022) brightness(1.008) !important;
  box-shadow: none !important;
}

/* With the header overlaid, the studio content height must exclude that header.
   This keeps its contact footer on the same desktop baseline as Works. */
@media (min-width: 981px) {
  body[data-page="works"] .works-main,
  body[data-page="studio"] .studio-main {
    min-height: calc(100svh - (var(--frame-gap) * 2) - var(--footer-height) - 2px);
  }

  body[data-page="studio"] .studio-layout {
    min-height: calc(100svh - (var(--frame-gap) * 2) - var(--header-height) - var(--footer-height) - 2px);
  }
}

@media (max-width: 1280px) {
  body[data-page="home"] .hero-copy {
    left: 52px;
  }

  body[data-page="home"] .quality-seal--hero {
    top: 133px;
    left: 41.15%;
    width: 202px;
    height: 202px;
  }

  body[data-page="home"] .hero-art-static img {
    right: 2.5%;
  }
}

@media (max-width: 1080px) {
  body[data-page="home"] .hero-copy {
    left: 44px;
  }

  body[data-page="home"] .quality-seal--hero {
    left: 39.95%;
    width: 184px;
    height: 184px;
  }

  body[data-page="home"] .hero-art-static img {
    right: 0.5%;
  }
}

@media (max-width: 980px) {
  body[data-page="home"] .hero-copy {
    left: 32px;
    right: 24px;
  }

  body[data-page="home"] .quality-seal--hero {
    top: 342px;
    left: 20px;
    width: 166px;
    height: 166px;
  }

  body[data-page="home"] .hero-art-static img {
    right: -3%;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .hero-copy {
    left: 26px;
    right: 18px;
  }

  body[data-page="home"] .quality-seal--hero {
    top: 332px;
    left: 10px;
    width: 144px;
    height: 144px;
  }

  body[data-page="home"] .hero-art-static img {
    right: -12%;
  }
}

/* ========================================================================
   Final scroll-baseline fix — Works and Studio have the same desktop scroll range
   ======================================================================== */
@media (min-width: 981px) {
  body[data-page="works"] .works-main,
  body[data-page="studio"] .studio-main {
    min-height: max(calc(100svh - (var(--frame-gap) * 2) - var(--footer-height) - 2px), 838px);
  }

  body[data-page="studio"] .studio-layout {
    min-height: max(calc(100svh - (var(--frame-gap) * 2) - var(--header-height) - var(--footer-height) - 2px), 764px);
  }
}


/* ========================================================================
   Contact actions + final hero/monogram polish
   ======================================================================== */

/* Footer contact items are active links and red for stronger conversion. */
.footer-link {
  color: var(--accent-bright);
  transition: background 180ms ease, color 180ms ease, transform 180ms var(--ease);
}

.footer-link svg,
.footer-link strong,
.footer-link span {
  color: var(--accent-bright);
}

.footer-link:hover,
.footer-link:focus-visible {
  background: rgba(227, 33, 32, 0.075);
  color: #fff;
  outline: none;
  transform: translateY(-1px);
}

.footer-link:hover svg,
.footer-link:hover strong,
.footer-link:hover span,
.footer-link:focus-visible svg,
.footer-link:focus-visible strong,
.footer-link:focus-visible span {
  color: #fff;
}

/* Location shortcut inside the appointment modal, below the close button. */
.dialog-location-button {
  position: absolute;
  top: 59px;
  right: 14px;
  z-index: 4;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid var(--accent);
  background: rgba(227, 33, 32, 0.08);
  color: var(--accent-bright);
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms var(--ease);
}

.dialog-location-button:hover,
.dialog-location-button:focus-visible {
  background: var(--accent);
  color: #fff;
  outline: none;
  transform: translateY(-1px);
}

/* A cleaner white SA monogram for the lower-left rail mark. */
.rail-monogram {
  position: relative;
  opacity: 0.98;
  color: #f4f3ee;
  font-family: var(--font-display);
  border-top: 1px solid var(--line);
}

body[data-footer="minimal"] .rail-monogram {
  opacity: 0.98;
}

.rail-monogram::before {
  display: none;
}

.monogram-frame {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.monogram-frame::before {
  position: absolute;
  inset: 4px;
  content: "";
  border: 1px solid rgba(244, 243, 238, 0.42);
  transform: rotate(45deg);
}

.monogram-frame::after {
  position: absolute;
  top: 50%;
  left: 5px;
  right: 5px;
  height: 1px;
  content: "";
  background: rgba(244, 243, 238, 0.36);
  transform: rotate(-22deg);
}

.monogram-frame span {
  position: absolute;
  z-index: 2;
  color: #f4f3ee;
  font-family: var(--font-display);
  font-size: 29px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
}

.monogram-frame span:first-child {
  left: 7px;
  top: 7px;
}

.monogram-frame span:last-child {
  right: 6px;
  bottom: 3px;
}

/* Final hero nudge requested: copy slightly right, seal +30%, woman unchanged. */
@media (min-width: 981px) {
  body[data-page="home"] .hero-copy {
    left: clamp(68px, 6.2vw, 108px);
  }

  body[data-page="home"] .quality-seal--hero {
    top: 95px;
    left: 40.65%;
    width: 291px;
    height: 291px;
  }
}

@media (max-width: 1280px) and (min-width: 981px) {
  body[data-page="home"] .hero-copy {
    left: 64px;
  }

  body[data-page="home"] .quality-seal--hero {
    top: 105px;
    left: 39.9%;
    width: 263px;
    height: 263px;
  }
}

@media (max-width: 1080px) and (min-width: 981px) {
  body[data-page="home"] .hero-copy {
    left: 56px;
  }

  body[data-page="home"] .quality-seal--hero {
    top: 122px;
    left: 39%;
    width: 238px;
    height: 238px;
  }
}

@media (max-width: 980px) {
  body[data-page="home"] .quality-seal--hero {
    width: 186px;
    height: 186px;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .quality-seal--hero {
    width: 156px;
    height: 156px;
  }

  .dialog-location-button {
    position: static;
    width: max-content;
    margin: 0 0 14px auto;
  }
}

/* ========================================================================
   Footer label/value color polish + centered desktop nav
   ======================================================================== */
.footer-link svg {
  color: var(--accent-bright);
}

.footer-link strong {
  color: #efeee9 !important;
}

.footer-link span {
  color: var(--accent-bright) !important;
}

.footer-link:hover strong,
.footer-link:focus-visible strong {
  color: #fff !important;
}

.footer-link:hover span,
.footer-link:focus-visible span {
  color: #ff4a45 !important;
}

@media (min-width: 981px) {
  .header-inner {
    position: relative;
  }

  .desktop-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: 0;
    transform: translate(-50%, -50%);
  }

  .header-appointment {
    margin-left: auto;
  }
}


/* ========================================================================
   CMS / SEO expansion styles
   ======================================================================== */
.language-switch{min-width:38px;height:38px;display:grid;place-items:center;border:1px solid var(--line-strong);color:#dcdad4;font-family:var(--font-condensed);font-size:13px;letter-spacing:.08em;text-transform:uppercase;transition:color .18s ease,border-color .18s ease}.language-switch:hover,.language-switch:focus-visible{border-color:var(--accent);color:var(--accent-bright);outline:none}.dynamic-main{position:relative;min-height:max(calc(100svh - (var(--frame-gap)*2) - var(--footer-height) - 2px),838px);padding:var(--header-height) clamp(28px,5vw,70px) 46px;overflow:hidden}.dynamic-main::before{position:absolute;inset:0;z-index:0;content:"";pointer-events:none;background:linear-gradient(118deg,rgba(255,255,255,.018),transparent 31%,rgba(0,0,0,.13)),url("../assets/ui/page-texture.svg") center top/900px 900px repeat,url("../assets/ui/grunge-texture.webp") center top/850px 850px repeat;mix-blend-mode:soft-light;filter:contrast(1.22);opacity:.14}.dynamic-main>*{position:relative;z-index:1}.dynamic-intro{max-width:920px;padding:54px 0 28px}.dynamic-intro h1{margin:0;font-family:var(--font-display);font-size:clamp(78px,8vw,132px);line-height:.82;text-transform:uppercase;color:#efeee9}.dynamic-intro p{max-width:720px;color:#b7b4ae;font-size:15px;line-height:1.8}.dynamic-grid,.blog-grid,.contact-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.dynamic-grid article,.blog-card a,.contact-grid a{display:block;min-height:210px;padding:24px;border:1px solid var(--line);background:rgba(8,8,8,.54);transition:transform .2s var(--ease),border-color .2s ease}.dynamic-grid article:hover,.blog-card a:hover,.contact-grid a:hover{transform:translateY(-3px);border-color:rgba(227,33,32,.55)}.dynamic-grid article span,.blog-card span{color:var(--accent-bright);font-family:var(--font-condensed);letter-spacing:.13em;text-transform:uppercase}.dynamic-grid h2,.blog-card h2{font-family:var(--font-condensed);font-size:30px;line-height:1;text-transform:uppercase}.dynamic-grid p,.blog-card p,.dynamic-text div{color:#aaa8a2;line-height:1.75}.packages-grid article strong{display:block;margin:0 0 14px;color:var(--accent-bright);font-family:var(--font-condensed);font-size:23px}.blog-card img{width:100%;height:220px;object-fit:cover;object-position:center;margin:-24px -24px 18px;width:calc(100% + 48px);max-width:none;filter:saturate(.82) contrast(1.08) brightness(.86)}.blog-detail{max-width:920px;margin:0 auto;padding:42px 0}.blog-detail img{width:100%;max-height:520px;object-fit:cover;margin-bottom:28px;border:1px solid var(--line)}.blog-detail h1{font-family:var(--font-display);font-size:clamp(58px,7vw,118px);line-height:.86;text-transform:uppercase}.blog-excerpt{color:#d8d5ce;font-size:18px}.blog-content p{color:#b8b5ad;font-size:16px;line-height:1.9}.blog-back{display:inline-flex;margin-bottom:20px;color:var(--accent-bright);font-family:var(--font-condensed);text-transform:uppercase;letter-spacing:.08em}.contact-grid a{min-height:150px;color:#fff}.contact-grid svg{width:34px;height:34px;color:var(--accent-bright);margin-bottom:18px}.contact-grid strong{font-family:var(--font-condensed);font-size:24px}.footer-link svg{color:var(--accent-bright)}.footer-link strong{color:#e8e6df}.footer-link span{color:var(--accent-bright)}.footer-link:hover strong,.footer-link:focus-visible strong{color:#fff}.footer-link:hover span,.footer-link:focus-visible span{color:#fff}@media(min-width:981px){.desktop-nav{position:absolute;left:50%;transform:translateX(-50%);margin-left:0}.header-inner{position:relative}.language-switch{margin-left:auto}}@media(max-width:980px){.dynamic-main{padding:var(--header-height) 24px 34px}.dynamic-grid,.blog-grid,.contact-grid{grid-template-columns:1fr}.dynamic-intro h1{font-size:74px}.language-switch{display:none}}


/* ========================================================================
   Final CMS polish: flag language selector, blog nav, appointment CTA rhythm
   ======================================================================== */
.language-switch { display: none !important; }
.language-flags {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 14px;
  flex: 0 0 auto;
}
.flag-link {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(7,7,7,.2);
  font-size: 19px;
  line-height: 1;
  filter: saturate(.92);
  transition: transform .18s var(--ease), border-color .18s ease, background .18s ease, filter .18s ease;
}
.flag-link:hover,
.flag-link:focus-visible,
.flag-link.is-active {
  border-color: rgba(227,33,32,.72);
  background: rgba(227,33,32,.08);
  filter: saturate(1.15);
  outline: none;
}
.flag-link:hover,
.flag-link:focus-visible { transform: translateY(-1px); }
.mobile-language-flags .language-flags {
  margin: 12px 0 4px;
}
.mobile-language-flags .flag-link {
  width: 42px;
  height: 38px;
  font-size: 22px;
}

@media (min-width: 981px) {
  .desktop-nav {
    gap: clamp(24px, 3vw, 56px);
  }
  .header-appointment { margin-left: auto; }
}

.header-appointment {
  position: relative;
  overflow: hidden;
}
.header-appointment::after {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 0;
  content: "";
  background: linear-gradient(90deg, rgba(227,33,32,.48), rgba(227,33,32,.16));
  opacity: .9;
  animation: appointmentFillHint 3.25s var(--ease) infinite;
}
@keyframes appointmentFillHint {
  0%, 12%, 46%, 78%, 100% { width: 0; opacity: .55; }
  27% { width: 36%; opacity: .95; }
  61% { width: 43%; opacity: .95; }
}
.header-appointment:hover::after,
.header-appointment:focus-visible::after {
  animation: none;
  width: 100%;
  opacity: .75;
}

@media (prefers-reduced-motion: reduce) {
  .header-appointment::after { animation: none; width: 34%; opacity: .35; }
}

/* English flag switches only fixed UI labels; portfolio names/filters intentionally remain panel-controlled. */
html[lang="en"] .brand-subtitle { letter-spacing: .46em; }


/* ========================================================================
   Blog + navigation cleanup after removing unused public pages
   ======================================================================== */
@media (min-width: 981px) {
  body[data-page="blog"] .site-header,
  body[data-page="blog-post"] .site-header,
  body[data-page="works"] .site-header,
  body[data-page="studio"] .site-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent !important;
    border-bottom: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .site-header { height: 66px; flex-basis: 66px; }
  .header-inner { align-items: flex-start; padding-top: 9px; }
  .brand-link { margin-top: -2px; }
  .language-flags { margin-top: 7px; }
  .desktop-nav { top: 8px; }
  .nav-link { padding-top: 14px; padding-bottom: 17px; }
  .header-appointment { margin-top: 0; }

  body[data-page="blog"] .dynamic-main,
  body[data-page="blog-post"] .dynamic-main {
    padding-top: 66px;
  }

  body[data-page="blog"] .dynamic-intro,
  body[data-page="blog-post"] .blog-detail {
    padding-top: 34px;
  }
}

.language-flags {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 14px;
}

.flag-link {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.08);
  font-size: 18px;
  line-height: 1;
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}

.flag-link:hover,
.flag-link:focus-visible,
.flag-link.is-active {
  border-color: var(--accent);
  background: rgba(227,33,32,.08);
  outline: none;
}



/* ========================================================================
   Appointment style field, KVKK/telif consent and agency footer
   ======================================================================== */
.form-consent {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px !important;
  padding: 12px;
  border: 1px solid rgba(227, 33, 32, 0.34);
  background: rgba(227, 33, 32, 0.06);
  color: #d8d6cf !important;
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  line-height: 1.55;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
}

.form-consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--accent-bright);
}

.legal-consent-dialog {
  width: min(680px, calc(100vw - 32px));
}

.legal-consent-inner {
  padding: 34px;
}

.legal-copy {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.legal-copy p {
  margin: 0;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.028);
  color: #bdbbb5;
  font-size: 12px;
  line-height: 1.7;
}

.legal-checks {
  display: grid;
  gap: 10px;
  margin: 20px 0 18px;
}

.legal-checks label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #d5d3cd;
  font-size: 12px;
  line-height: 1.55;
}

.legal-checks input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--accent-bright);
}

.legal-accept {
  width: 100%;
  justify-content: center;
}

.legal-accept:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}

.footer-agency {
  display: inline-block;
  margin-top: 3px;
  color: var(--accent-bright);
  font-size: 10px;
  line-height: 1.3;
  transition: color 180ms ease;
}

.footer-agency:hover,
.footer-agency:focus-visible {
  color: #fff;
  outline: none;
}

.footer-minimal .footer-agency {
  margin-top: 0;
  font-family: var(--font-condensed);
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .legal-consent-inner {
    padding: 26px 20px;
  }
}


/* ========================================================================
   Portfolio consent, appointment price ranges and supplied rail logo
   ======================================================================== */
.rail-logo-image {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.form-hint {
  display: block;
  margin-top: 6px;
  color: var(--accent-bright);
  font-family: var(--font-body);
  font-size: 10.5px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: none;
}

.legal-consent-dialog {
  width: min(860px, calc(100vw - 28px));
  margin: auto auto 18px;
  max-height: calc(100svh - 32px);
  border-color: rgba(227, 33, 32, 0.48);
  box-shadow: 0 -12px 60px rgba(0, 0, 0, 0.72);
}

.legal-consent-dialog::backdrop {
  background: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(2px);
}

.legal-consent-inner {
  max-height: min(48svh, 430px);
  padding: 18px 22px 18px;
  overflow: auto;
}

.legal-consent-inner .eyebrow {
  margin-bottom: 4px;
}

.legal-consent-inner h2 {
  font-size: 26px;
  margin-bottom: 6px;
}

.legal-consent-inner .dialog-intro {
  margin-bottom: 10px;
}

.legal-copy {
  max-height: 118px;
  display: grid;
  gap: 6px;
  padding: 10px 12px;
  overflow: auto;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.025);
}

.legal-copy p {
  margin: 0;
  color: #aaa8a2;
  font-size: 11px;
  line-height: 1.55;
}

.legal-checks {
  display: grid;
  gap: 7px;
  margin: 12px 0;
}

.legal-checks label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #d6d4ce;
  font-size: 11px;
  line-height: 1.45;
}

.legal-checks input {
  margin-top: 2px;
  accent-color: var(--accent-bright);
}

.legal-accept {
  min-height: 42px;
}

@media (max-width: 760px) {
  .legal-consent-dialog {
    width: calc(100vw - 16px);
    margin-bottom: 8px;
  }

  .legal-consent-inner {
    max-height: 72svh;
    padding: 16px;
  }

  .legal-copy {
    max-height: 155px;
  }
}

/* ========================================================================
   Technical polish pass: faster perceived images and cleaner mobile hero
   ======================================================================== */
.featured-card::after {
  background: linear-gradient(0deg, rgba(3, 3, 3, 0.86) 0%, rgba(3, 3, 3, 0.34) 27%, transparent 58%);
}

.featured-card img {
  filter: saturate(0.9) sepia(0.06) contrast(1.06) brightness(0.96);
}

.featured-card:hover img,
.featured-card:focus-visible img {
  filter: saturate(0.98) sepia(0.03) contrast(1.08) brightness(1);
}

.portfolio-image::after {
  background: linear-gradient(90deg, transparent 67%, rgba(4, 4, 4, 0.56));
}

.portfolio-image img {
  filter: saturate(0.88) sepia(0.08) contrast(1.07) brightness(0.96);
}

.portfolio-card:hover .portfolio-image img,
.portfolio-card:focus-visible .portfolio-image img {
  filter: saturate(0.98) sepia(0.03) contrast(1.08) brightness(1);
}

@media (max-width: 760px) {
  body[data-page="home"] .home-hero {
    height: 790px;
  }

  body[data-page="home"] .hero-copy {
    top: 24px;
    right: 20px;
    left: 24px;
  }

  body[data-page="home"] .hero-copy h1 {
    font-size: clamp(108px, 31vw, 122px);
  }

  body[data-page="home"] .hero-description {
    max-width: 100%;
    font-size: 13px;
  }

  body[data-page="home"] .hero-actions {
    gap: 10px;
  }

  body[data-page="home"] .quality-seal--hero {
    top: auto;
    bottom: 28px;
    left: 16px;
    width: 132px;
    height: 132px;
  }

  body[data-page="home"] .hero-art-static img {
    right: -18%;
    bottom: -4px;
    height: 48%;
  }
}

@media (max-width: 420px) {
  body[data-page="home"] .hero-copy {
    right: 18px;
    left: 22px;
  }

  body[data-page="home"] .hero-copy h1 {
    font-size: clamp(102px, 30vw, 118px);
  }

  body[data-page="home"] .quality-seal--hero {
    bottom: 24px;
    left: 14px;
    width: 124px;
    height: 124px;
  }

  body[data-page="home"] .hero-art-static img {
    right: -24%;
    height: 46%;
  }
}

@media (max-width: 360px) {
  body[data-page="home"] .hero-copy {
    right: 16px;
    left: 18px;
  }

  body[data-page="home"] .quality-seal--hero {
    width: 116px;
    height: 116px;
  }
}

/* ========================================================================
   Mobile hero placement: seal below CTA, centered full artwork
   ======================================================================== */
@media (max-width: 760px) {
  body[data-page="home"] .home-hero {
    height: 835px;
  }

  body[data-page="home"] .quality-seal--hero {
    top: 392px;
    bottom: auto;
    left: 24px;
    width: 124px;
    height: 124px;
  }

  body[data-page="home"] .hero-art-static img {
    right: auto;
    bottom: 0;
    left: 50%;
    width: min(92%, 360px);
    height: auto;
    max-height: 320px;
    transform: translateX(-50%);
  }
}

@media (max-width: 420px) {
  body[data-page="home"] .home-hero {
    height: 820px;
  }

  body[data-page="home"] .quality-seal--hero {
    top: 384px;
    left: 22px;
    width: 118px;
    height: 118px;
  }

  body[data-page="home"] .hero-art-static img {
    width: min(94%, 352px);
    max-height: 306px;
  }
}

@media (max-width: 360px) {
  body[data-page="home"] .home-hero {
    height: 800px;
  }

  body[data-page="home"] .quality-seal--hero {
    top: 400px;
    left: 18px;
    width: 108px;
    height: 108px;
  }

  body[data-page="home"] .hero-art-static img {
    width: min(94%, 318px);
    max-height: 286px;
  }
}

@media (max-width: 420px) {
  .header-inner {
    min-width: 0;
    gap: 10px;
    padding-right: 10px;
    padding-left: 12px;
  }

  .brand-link {
    width: 132px;
    min-width: 0;
  }

  .brand-link img {
    height: 44px;
  }

  .header-inner > .language-flags {
    gap: 5px;
    margin-left: 0;
  }

  .header-inner > .language-flags .flag-link {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .mobile-menu-button {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }
}

/* Featured works are static content, not reveal/route-transition content. */
.featured-works,
.featured-grid,
.featured-card,
.featured-card-copy,
.featured-card-copy h3,
.featured-card-copy span,
.featured-card h3,
.featured-card span {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  animation: none !important;
  animation-delay: 0s !important;
  transition: none !important;
  transition-delay: 0s !important;
}

.featured-card-copy {
  display: block !important;
  pointer-events: auto;
}

.featured-card span {
  color: var(--accent-bright) !important;
}

.featured-card::after {
  background: linear-gradient(0deg, rgba(3, 3, 3, 0.9) 0%, rgba(3, 3, 3, 0.46) 30%, transparent 60%);
}

@media (hover: none) {
  .featured-card:hover img {
    transform: none;
  }
}

/* Blog SEO content blocks: readable article rhythm without changing the site identity. */
.blog-content {
  display: grid;
  gap: 18px;
}

.blog-content h2,
.blog-content h3,
.blog-cta h2,
.blog-faq h2,
.blog-related h2 {
  margin: 14px 0 0;
  color: #efeee9;
  font-family: var(--font-condensed);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.blog-content h2,
.blog-cta h2,
.blog-faq h2,
.blog-related h2 {
  font-size: clamp(30px, 3.2vw, 46px);
}

.blog-content h3 {
  font-size: clamp(22px, 2vw, 30px);
}

.blog-content p,
.blog-content li {
  color: #bebbb4;
  font-size: 16px;
  line-height: 1.9;
}

.blog-content p,
.blog-content ul {
  margin: 0;
}

.blog-content ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.blog-content a {
  color: var(--accent-bright);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.blog-cta,
.blog-faq,
.blog-related {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.58);
}

.blog-cta p {
  max-width: 720px;
  color: #c8c5bd;
  line-height: 1.8;
}

.blog-faq {
  display: grid;
  gap: 10px;
}

.blog-faq details {
  border-top: 1px solid var(--line-soft);
  padding-top: 12px;
}

.blog-faq summary {
  color: #efeee9;
  cursor: pointer;
  font-family: var(--font-condensed);
  font-size: 22px;
  line-height: 1.2;
  text-transform: uppercase;
}

.blog-faq p {
  margin: 10px 0 0;
  color: #bcb9b2;
  line-height: 1.8;
}

.blog-related div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.blog-related a {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line-soft);
  color: #e8e6df;
  font-family: var(--font-condensed);
  font-size: 20px;
  line-height: 1.05;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms var(--ease);
}

.blog-related a:hover,
.blog-related a:focus-visible {
  border-color: rgba(227, 33, 32, 0.58);
  color: #fff;
  transform: translateY(-2px);
  outline: none;
}

@media (max-width: 760px) {
  .blog-detail h1 {
    font-size: clamp(44px, 16vw, 72px);
  }

  .blog-cta,
  .blog-faq,
  .blog-related {
    padding: 18px;
  }

  .blog-related div {
    grid-template-columns: 1fr;
  }
}
