/* ============================================================
   נתנהאל — Interior Studio · White Fashion-Editorial Theme
   Pure white page, warm near-black ink, terracotta as jewelry.
   No shadows — hairline rules, sharp corners, print details:
   sharp corners, generous whitespace.
   ============================================================ */

:root {
  --bg: #ffffff;
  --ink: #1c1814;                       /* warm near-black */
  --ink-2: rgba(28, 24, 19, 0.64);      /* body text */
  --ink-3: rgba(28, 24, 19, 0.40);      /* labels / captions */
  --accent: #a8633f;                    /* terracotta */
  --accent-hover: #8c4e30;
  --line: rgba(28, 24, 19, 0.14);       /* hairline */
  --line-2: rgba(28, 24, 19, 0.30);     /* stronger hairline */
  --dark: #161310;                      /* band + modal surface */
  --dark-fg: #f4f0e9;
  --dark-fg-2: rgba(244, 240, 233, 0.62);
  --dark-line: rgba(244, 240, 233, 0.16);

  --serif: "Frank Ruhl Libre", Georgia, serif;
  --sans: "Heebo", system-ui, sans-serif;

  --pad: clamp(24px, 6vw, 120px);
  --maxw: 1560px;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
html, body { margin: 0; padding: 0; }
html {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
body {
  direction: rtl;
  line-height: 1.7;
  overflow-x: clip;
  background: var(--bg);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}
p {
  font-family: var(--sans);
  font-size: clamp(15px, 1.04vw, 18px);
  line-height: 1.85;
  color: var(--ink-2);
  margin: 0;
  text-wrap: pretty;
  max-width: 60ch;
  font-weight: 300;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease-out);
}
em {
  font-style: italic;
  color: var(--accent);
}
::selection {
  background: var(--accent);
  color: var(--bg);
}

:focus-visible {
  outline: 1.5px solid var(--accent);
  outline-offset: 3px;
}

.skip {
  position: fixed;
  top: -60px;
  right: var(--pad);
  z-index: 200;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 22px;
  font-size: 13px;
  transition: top 0.25s var(--ease-out);
}
.skip:focus-visible { top: 0; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
  position: relative;
}

/* ============================================================
   HEADER
   ============================================================ */
.head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 70;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  padding: clamp(18px, 2.6vw, 30px) var(--pad);
  color: var(--ink);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
.head.solid {
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding-top: clamp(12px, 1.6vw, 18px);
  padding-bottom: clamp(12px, 1.6vw, 18px);
}
.head .mark { display: flex; align-items: center; }
.head .mark-sig {
  display: block;
  height: clamp(28px, 2.8vw, 38px);
  width: auto;
  transition: height 0.4s var(--ease-out), filter 0.4s var(--ease-out);
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  animation: sigDraw 1.6s var(--ease-out) 0.4s forwards;
}
.head.solid .mark-sig, body.menu-open .mark-sig {
  height: clamp(24px, 2.2vw, 30px);
  filter: brightness(0);
}
@keyframes sigDraw {
  to { -webkit-clip-path: inset(0 0 0 0); clip-path: inset(0 0 0 0); }
}
.head-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}
.head-nav a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  position: relative;
  color: rgba(255, 255, 255, 0.78);
}
.head-nav a:hover { color: #fff; }
.head.solid .head-nav a { color: var(--ink-2); }
.head.solid .head-nav a:hover { color: var(--ink); }
.head-nav a:not(.head-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.35s var(--ease-out);
}
.head-nav a:not(.head-cta):hover::after { width: 100%; }
.head-cta {
  border: 1px solid rgba(255, 255, 255, 0.85);
  padding: 10px 24px;
  font-size: 13px;
  white-space: nowrap;
  color: #fff !important;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.head-cta:hover {
  background: #fff;
  color: var(--ink) !important;
}
.head.solid .head-cta {
  border-color: var(--ink);
  color: var(--ink) !important;
}
.head.solid .head-cta:hover {
  background: var(--ink);
  color: var(--bg) !important;
}

/* Burger */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.menu-btn span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #fff;
  transition: transform 0.35s var(--ease-out), opacity 0.35s var(--ease-out), background 0.35s var(--ease-out);
}
.head.solid .menu-btn span, body.menu-open .menu-btn span { background: var(--ink); }
body.menu-open .menu-btn span:first-child { transform: translateY(4.25px) rotate(45deg); }
body.menu-open .menu-btn span:last-child { transform: translateY(-4.25px) rotate(-45deg); }
@media (max-width: 820px) {
  .head-nav { display: none; }
  .menu-btn { display: flex; }
}

/* ============================================================
   MOBILE MENU — full-screen white, serif index
   ============================================================ */
.mmenu {
  position: fixed;
  inset: 0;
  z-index: 69;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--pad);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
body.menu-open .mmenu {
  opacity: 1;
  pointer-events: auto;
}
.mmenu nav {
  display: flex;
  flex-direction: column;
}
.mmenu nav a {
  font-family: var(--serif);
  font-size: clamp(34px, 9vw, 52px);
  font-weight: 300;
  line-height: 1.3;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 18px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
body.menu-open .mmenu nav a { opacity: 1; transform: none; }
body.menu-open .mmenu nav a:nth-child(2) { transition-delay: 0.06s; }
body.menu-open .mmenu nav a:nth-child(3) { transition-delay: 0.12s; }
body.menu-open .mmenu nav a:nth-child(4) { transition-delay: 0.18s; }
.mmenu-foot {
  margin-top: clamp(30px, 6vh, 56px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-2);
}

/* ============================================================
   HERO — full-bleed magazine cover
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.1);
  will-change: transform;
}
.hero-media img.kb { animation: kenburns 20s var(--ease-in-out) forwards; }
@keyframes kenburns { to { transform: scale(1.02); } }
.hero-media .scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 45%, rgba(16, 13, 11, 0.12) 30%, rgba(16, 13, 11, 0.55) 100%),
    linear-gradient(180deg, rgba(16, 13, 11, 0.45) 0%, rgba(16, 13, 11, 0.1) 30%, rgba(16, 13, 11, 0.12) 60%, rgba(16, 13, 11, 0.5) 100%);
}

/* Big centered signature — docks to the margin on scroll */
.hero-sigwrap { display: contents; }
.hero-sig {
  position: fixed;
  z-index: 60;
  pointer-events: none;
  top: 44%;
  left: 50%;
  width: min(680px, 62vw);
  height: auto;
  transform: translate(-50%, -50%) rotate(0deg);
  filter: drop-shadow(0 6px 30px rgba(0, 0, 0, 0.55));
  transition: transform 1s var(--ease-in-out), width 1s var(--ease-in-out), top 1s var(--ease-in-out), left 1s var(--ease-in-out), filter 1s var(--ease-in-out), opacity 0.8s var(--ease-in-out);
  will-change: transform, width, top, left;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  animation: sigDraw 1.8s var(--ease-out) 0.5s forwards;
}
.hero-sig.docked {
  top: 50%;
  left: 14px;
  width: 200px;
  opacity: 0.88;
  filter: brightness(0);
  transform: translate(-30%, -50%) rotate(-90deg);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Hero lead form — name, phone, send. Nothing else. */
.hform {
  position: absolute;
  bottom: clamp(36px, 7vh, 72px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  width: min(760px, calc(100% - 2 * var(--pad)));
  display: flex;
  align-items: flex-end;
  gap: clamp(16px, 2vw, 28px);
}
.hform input:not(.hp) {
  flex: 1;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding: 12px 4px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  outline: none;
  direction: rtl;
  min-width: 0;
  transition: border-color 0.3s var(--ease-out);
}
.hform input::placeholder { color: rgba(255, 255, 255, 0.6); }
.hform input:focus { border-bottom-color: #fff; }
.hform input.err {
  border-bottom-color: var(--accent);
  animation: shake 0.4s var(--ease-out);
}
.hform button {
  background: #fff;
  color: var(--ink);
  border: 1px solid #fff;
  padding: 14px 38px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), color 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}
.hform button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.hform button:disabled { opacity: 0.6; cursor: wait; }
.hform .hdone {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: clamp(19px, 1.7vw, 26px);
  color: #fff;
}
.hform.done input, .hform.done button { opacity: 0; pointer-events: none; }
.hform.done .hdone { display: flex; }

@media (max-width: 900px) {
  .hero { min-height: 560px; }
  .hero-sig { width: 76vw; top: 38%; }
  .hero-sig.docked { width: 110px; left: 6px; opacity: 0.55; }
  .hform {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    bottom: 96px;
    width: calc(100% - 48px);
  }
  .hform button { width: 100%; padding: 15px; }
}

/* ============================================================
   BUTTONS & LINKS
   ============================================================ */
.btn {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  padding: 17px 34px;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.alink {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line-2);
  transition: border-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
  letter-spacing: 0.02em;
}
.alink:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.ar { width: 22px; height: 9px; display: inline-block; position: relative; }
.ar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 9"><path d="M0 4.5h20M16 1l4 3.5-4 3.5" stroke="black" fill="none" stroke-width="1.2"/></svg>') no-repeat center/contain;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 9"><path d="M0 4.5h20M16 1l4 3.5-4 3.5" stroke="black" fill="none" stroke-width="1.2"/></svg>') no-repeat center/contain;
  transform: scaleX(-1);
  transition: transform 0.3s var(--ease-out);
}
.btn:hover .ar::before, .alink:hover .ar::before, .pcard:hover .pcard-view .ar::before {
  transform: scaleX(-1) translateX(4px);
}

/* ============================================================
   INTRO — opening article spread
   ============================================================ */
.intro { padding: clamp(110px, 17vh, 220px) 0 clamp(110px, 17vh, 200px); }
.intro-big {
  font-size: clamp(42px, 6.6vw, 110px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.028em;
  max-width: 16ch;
}
.intro-big em { font-style: italic; color: var(--ink); }
.intro-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 120px);
  margin-top: clamp(54px, 9vh, 120px);
  max-width: 1100px;
  position: relative;
}
.intro-cols::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--line);
}
.intro-cols p {
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.9;
}
.intro-cols p.lead-p {
  color: var(--ink);
  font-size: clamp(18px, 1.4vw, 23px);
  line-height: 1.75;
}
.intro-cols p.lead-p::first-letter {
  font-family: var(--serif);
  font-size: clamp(4rem, 6.5vw, 6rem);
  float: right;
  line-height: 0.82;
  margin-left: 16px;
  margin-top: 4px;
  color: var(--accent);
  font-weight: 300;
}
@media (max-width: 820px) {
  .intro-cols { grid-template-columns: 1fr; gap: 28px; }
  .intro-cols::after { display: none; }
}

/* ============================================================
   WORK — asymmetric editorial spread
   ============================================================ */
.work { padding: 0 0 clamp(110px, 16vh, 200px); }
.work-head { margin-bottom: clamp(56px, 9vh, 110px); }

.pgrid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(72px, 11vh, 150px) clamp(30px, 4vw, 60px);
}

.pcard {
  display: block;
  cursor: pointer;
  position: relative;
}
.pcard-img {
  overflow: hidden;
  background: #efece6;
  aspect-ratio: 3/2;
  position: relative;
}
.pcard-img.tall { aspect-ratio: 4/5; }
.pcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 1.6s var(--ease-out);
}
.pcard:hover .pcard-img img { transform: scale(1.045); }

/* Caption block under image */
.pcard-meta {
  padding-top: clamp(14px, 2vh, 22px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pcard-meta h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(26px, 2.6vw, 42px);
  line-height: 1.1;
  transition: color 0.3s var(--ease-out);
}
.pcard:hover .pcard-meta h3 { color: var(--accent); }
.pcard-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
}
.pcard-meta .d {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-2);
}
.pcard-view {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out), color 0.3s var(--ease-out);
}
.pcard:hover .pcard-view {
  opacity: 1;
  transform: none;
  color: var(--accent);
}

/* Asymmetric configurations */
.pcard.style-tall { grid-column: span 5; }
.pcard.style-wide {
  grid-column: span 7;
  margin-top: clamp(60px, 8vh, 120px);
}
.pcard.style-large {
  grid-column: span 12;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  border-block: 1px solid var(--line);
  padding-block: clamp(40px, 8vh, 90px);
}
.pcard.style-large.flip { grid-template-columns: 0.85fr 1.15fr; }
.pcard.style-large.flip .pcard-img { order: 2; }
.pcard.style-large.flip .pcard-large-content { order: 1; }

.pcard-large-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: right;
}
.pcard-large-content h3 {
  font-size: clamp(32px, 3.6vw, 56px);
  margin-bottom: 10px;
  font-weight: 300;
  line-height: 1.1;
  transition: color 0.3s var(--ease-out);
}
.pcard.style-large:hover h3 { color: var(--accent); }
.pcard-large-content .d {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.pcard-large-content .pcard-desc {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 45ch;
  text-wrap: pretty;
}
.pcard-large-content .alink { align-self: flex-start; }

@media (max-width: 900px) {
  .pgrid { grid-template-columns: 1fr; gap: 56px; }
  .pcard.style-tall, .pcard.style-wide { grid-column: span 1; margin-top: 0; }
  .pcard.style-large {
    grid-column: span 1;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 30px;
  }
  .pcard.style-large.flip .pcard-img { order: 1; }
  .pcard.style-large.flip .pcard-large-content { order: 2; }
  .pcard-view { opacity: 1; transform: none; }
}

/* ============================================================
   PULL QUOTE
   ============================================================ */
.pull {
  padding: clamp(110px, 18vh, 240px) 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.pull::before {
  content: "”";
  position: absolute;
  top: clamp(30px, 6vh, 90px);
  right: var(--pad);
  font-family: var(--serif);
  font-size: clamp(150px, 20vw, 340px);
  color: rgba(168, 99, 63, 0.07);
  line-height: 1;
  pointer-events: none;
}
.pull blockquote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4.6vw, 80px);
  line-height: 1.18;
  max-width: 24ch;
  position: relative;
  z-index: 2;
}
.pull blockquote em { font-style: italic; color: var(--accent); }
.pull .by {
  margin-top: clamp(36px, 6vh, 60px);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-3);
}
.pull .by::before {
  content: "";
  width: 46px;
  height: 1px;
  background: var(--accent);
}

/* ============================================================
   APPROACH — services index, magazine contents page
   ============================================================ */
.approach {
  padding: clamp(100px, 16vh, 200px) 0;
  border-top: 1px solid var(--line);
}
.approach-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 90px);
  align-items: end;
  margin-bottom: clamp(50px, 8vh, 100px);
}
.approach-head h2 {
  font-size: clamp(38px, 5.4vw, 92px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.025em;
}
.approach-head h2 em { font-style: italic; }
.approach-head p {
  font-size: clamp(16px, 1.15vw, 19px);
  max-width: 46ch;
  justify-self: start;
  padding-bottom: 6px;
}

.ilist {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-2);
  counter-reset: service;
}
.irow {
  display: grid;
  grid-template-columns: clamp(48px, 7vw, 110px) 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(20px, 3vw, 56px);
  padding: clamp(30px, 4.6vh, 54px) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-right 0.4s var(--ease-out), border-color 0.35s var(--ease-out);
}
.irow:hover {
  padding-right: clamp(10px, 1.6vw, 24px);
  border-bottom-color: var(--accent);
}
.irow .n {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 300;
  color: var(--accent);
  direction: ltr;
  line-height: 1;
}
.irow .name {
  font-family: var(--serif);
  font-size: clamp(26px, 2.9vw, 52px);
  font-weight: 300;
  line-height: 1.12;
  margin: 0;
  transition: color 0.3s var(--ease-out);
}
.irow:hover .name { color: var(--accent); }
.irow .desc {
  font-family: var(--sans);
  font-size: clamp(14px, 1.05vw, 16px);
  color: var(--ink-2);
  line-height: 1.85;
  max-width: 48ch;
  margin: 0;
}
@media (max-width: 820px) {
  .approach-head { grid-template-columns: 1fr; gap: 22px; }
  .irow {
    grid-template-columns: auto 1fr;
    row-gap: 12px;
    align-items: baseline;
    padding: 26px 0;
  }
  .irow .desc { grid-column: 2; }
  .irow:hover { padding-right: 0; }
}

/* ============================================================
   PROCESS — four numbered columns
   ============================================================ */
.process {
  padding: clamp(100px, 16vh, 200px) 0;
  border-top: 1px solid var(--line);
}
.process-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(56px, 9vh, 110px);
}
.process-head h2 { font-size: clamp(36px, 4.4vw, 76px); font-weight: 300; }
.process-head h2 em { font-style: italic; }
.process-head p { color: var(--ink-2); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 48px);
}
.step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: clamp(22px, 3.4vh, 34px);
  border-top: 1px solid var(--line-2);
  transition: border-top-color 0.4s var(--ease-out);
}
.step:hover { border-top-color: var(--accent); }
.step .n {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1;
  color: var(--accent);
  direction: ltr;
}
.step h4 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 2vw, 30px);
  margin-top: 2px;
}
.step p { color: var(--ink-2); font-size: 14px; line-height: 1.8; }
@media (max-width: 820px) {
  .process-head { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   VOICES — editorial quote columns, hairline separated
   ============================================================ */
.voices {
  padding: clamp(100px, 16vh, 200px) 0;
  border-top: 1px solid var(--line);
}
.voices-head { margin-bottom: clamp(46px, 7vh, 84px); }
.voices-head h2 { font-size: clamp(30px, 3.6vw, 58px); font-weight: 300; max-width: 22ch; }

.vgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.voice {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 0 clamp(24px, 3vw, 52px);
  border-left: 1px solid var(--line);
  position: relative;
}
.voice:first-child { padding-right: 0; }
.voice:last-child { border-left: 0; padding-left: 0; }
.voice::before {
  content: "”";
  font-family: var(--serif);
  font-size: 54px;
  line-height: 0.6;
  color: var(--accent);
  display: block;
}
.voice blockquote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(19px, 1.4vw, 24px);
  line-height: 1.6;
  color: var(--ink);
  text-wrap: pretty;
}
.voice .who {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.voice .who .nm {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.voice .who .rl {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-3);
}
@media (max-width: 900px) {
  .vgrid { grid-template-columns: 1fr; gap: 42px; }
  .voice {
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 36px;
  }
  .voice:last-child { border-bottom: 0; padding-bottom: 0; }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

/* honeypot */
.hp {
  position: absolute !important;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ============================================================
   CONTACT — magazine back page: type + framed form & imprint
   ============================================================ */
.contact { padding: clamp(100px, 16vh, 200px) 0 clamp(80px, 11vh, 150px); }
.contact-head {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(36px, 5vw, 90px);
  align-items: end;
  margin-bottom: clamp(44px, 7vh, 84px);
}
.contact-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 6.5vw, 110px);
  line-height: 1.04;
  letter-spacing: -0.025em;
}
.contact-title em { font-style: italic; }
.contact-lede {
  color: var(--ink-2);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.8;
  max-width: 40ch;
  padding-bottom: 10px;
}

/* One hairline frame holding form + direct-contact imprint */
.contact-frame {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  border: 1px solid var(--line-2);
}
.cform {
  position: relative;
  padding: clamp(28px, 4vw, 64px);
}
.cfields { display: flex; flex-direction: column; gap: clamp(26px, 3.4vh, 40px); }
.cform .frow { display: flex; flex-direction: column; gap: 6px; }
.cform label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
}
.cform label .fnum {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  direction: ltr;
}
.cform input:not(.hp) {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  padding: 12px 2px 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(19px, 1.5vw, 24px);
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s var(--ease-out);
  direction: rtl;
  width: 100%;
}
.cform input::placeholder { color: rgba(28, 24, 19, 0.28); }
.cform input:focus { border-bottom-color: var(--ink); }
.cform .frow.err input, .cform .frow.err .chips { border-bottom-color: var(--accent); }
.cform .frow .msg {
  color: var(--accent);
  font-size: 12px;
  display: none;
  margin-top: 4px;
}
.cform .frow.err .msg { display: block; animation: shake 0.4s var(--ease-out); }
.crow2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 48px); }

/* Project type — editorial text choices, underline marks selection */
.chips {
  display: flex;
  gap: clamp(20px, 3vw, 44px);
  flex-wrap: wrap;
  padding: 10px 2px 14px;
  border-bottom: 1px solid var(--line-2);
  transition: border-color 0.3s var(--ease-out);
}
.chip {
  border: 0;
  background: transparent;
  color: var(--ink-3);
  padding: 2px 0 6px;
  font-family: var(--serif);
  font-size: clamp(17px, 1.3vw, 21px);
  font-weight: 300;
  cursor: pointer;
  position: relative;
  transition: color 0.25s var(--ease-out);
}
.chip::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.chip:hover { color: var(--ink); }
.chip.on { color: var(--ink); }
.chip.on::after { transform: scaleX(1); }

.cbtn {
  margin-top: 8px;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  padding: 22px 30px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.cbtn:hover { background: var(--accent); border-color: var(--accent); }
.cbtn:disabled { opacity: 0.55; cursor: wait; }
.cfine { font-family: var(--sans); font-size: 12px; color: var(--ink-3); line-height: 1.6; }
.cerr { display: none; font-size: 13px; color: var(--accent); }
.cerr a { color: var(--ink); border-bottom: 1px solid currentColor; }
.cform.fail .cerr { display: block; }
.cform.done .cfields { display: none; }
.cform.done .cdone { display: flex; }
.cdone {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  min-height: 380px;
  text-align: center;
}
.cdone h3 { font-family: var(--serif); color: var(--ink); font-weight: 300; font-size: clamp(28px, 2.6vw, 42px); }
.cdone p { color: var(--ink-2); font-size: 16px; margin-inline: auto; }
.cdone a { color: var(--accent); border-bottom: 1px solid currentColor; }

/* Imprint column — direct contact index */
.contact-direct {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-2);
  padding: clamp(28px, 4vw, 56px) clamp(24px, 3vw, 48px);
}
.contact-direct .cd {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: clamp(16px, 2.2vh, 24px) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-right 0.3s var(--ease-out);
}
.contact-direct a.cd:hover { padding-right: 8px; }
.contact-direct a.cd:hover .v { color: var(--accent); }
.contact-direct .cd .k {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink-3);
}
.contact-direct .cd .v {
  font-family: var(--serif);
  font-size: clamp(17px, 1.3vw, 22px);
  font-weight: 300;
  color: var(--ink);
  direction: ltr;
  text-align: right;
  transition: color 0.3s var(--ease-out);
  word-break: break-word;
}
.contact-direct .cd .v.he { direction: rtl; }
.cd-note {
  margin-top: auto;
  padding-top: 26px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-3);
}

@media (max-width: 900px) {
  .contact-head { grid-template-columns: 1fr; gap: 20px; }
  .contact-frame { grid-template-columns: 1fr; }
  .contact-direct {
    border-right: 0;
    border-top: 1px solid var(--line-2);
  }
  .crow2 { grid-template-columns: 1fr; gap: 26px; }
  .cdone { min-height: 280px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  padding: clamp(64px, 9vh, 110px) 0 36px;
  border-top: 1px solid var(--line-2);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(20px, 3vw, 48px);
  margin-bottom: 54px;
}
.foot-sig {
  display: block;
  width: 210px;
  max-width: 60%;
  height: auto;
  margin-bottom: 18px;
  filter: brightness(0);
  opacity: 0.9;
}
.foot-brand p { max-width: 34ch; font-size: 14px; color: var(--ink-2); }
.foot-col h5 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--ink-3);
  text-transform: uppercase;
  direction: ltr;
  margin: 0 0 16px;
}
.foot-col a {
  display: block;
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 9px;
  transition: color 0.2s var(--ease-out);
}
.foot-col a:hover { color: var(--accent); }
.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  direction: ltr;
  text-transform: uppercase;
}
.foot-bottom a { color: var(--ink); }
.foot-bottom a:hover { color: var(--accent); }
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 65;
  display: none;
  gap: 12px;
  align-items: center;
  background: rgba(22, 19, 16, 0.94);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  padding: 8px 12px 8px 22px;
  border-radius: 999px;
}
.sticky a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dark-fg);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s var(--ease-out);
}
.sticky a:hover { color: var(--accent); }
.sticky .pill {
  background: var(--dark-fg);
  color: var(--dark);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.sticky .pill:hover { background: var(--accent); color: #fff; }
.sticky .ic { width: 18px; height: 18px; fill: currentColor; }
@media (max-width: 820px) { .sticky { display: inline-flex; } }
body.menu-open .sticky, body.modal-open .sticky { display: none; }

/* ============================================================
   REVEALS
   ============================================================ */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.rv.in { opacity: 1; transform: none; }
.rv.d1 { transition-delay: 0.08s; }
.rv.d2 { transition-delay: 0.16s; }
.rv.d3 { transition-delay: 0.24s; }

/* Curtain reveal for images — clip from edge, paired with .rv on ancestor */
.cr {
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  transition: -webkit-clip-path 1.3s var(--ease-in-out), clip-path 1.3s var(--ease-in-out);
}
.cr.in, .rv.in .cr {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
  .rv, .mmenu nav a {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .cr {
    -webkit-clip-path: none !important;
            clip-path: none !important;
    transition: none !important;
  }
  .head .mark-sig, .hero-sig {
    animation: none;
    -webkit-clip-path: none;
            clip-path: none;
  }
  .hero-sig { transition: none; }
  .hero-media img.kb { animation: none; transform: scale(1.02); }
  html { scroll-behavior: auto; }
}

@media (max-width: 820px) { input, textarea, select { font-size: 16px !important; } }

/* ============================================================
   LIGHTBOX — dark lookbook
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(16, 13, 11, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-wrapper {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  padding: 40px;
  gap: 40px;
}
.modal-gallery-pane {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 100%;
}
.modal-slides-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.modal-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.modal-slide.active {
  opacity: 1;
}
.modal.open .modal-slide.active { pointer-events: auto; }
.modal-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.modal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(16, 13, 11, 0.55);
  border: 1px solid var(--dark-line);
  color: var(--dark-fg);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.modal-nav-btn:hover {
  background: var(--dark-fg);
  border-color: var(--dark-fg);
  color: var(--dark);
}
.modal-nav-btn.prev { right: 20px; }
.modal-nav-btn.next { left: 20px; }
.modal-nav-btn svg { width: 20px; height: 20px; fill: currentColor; }

.modal-counter {
  position: absolute;
  top: 18px;
  left: 22px;
  z-index: 10;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--dark-fg-2);
  direction: ltr;
}
.modal-thumbs {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  max-width: min(90%, 520px);
  overflow-x: auto;
  padding: 4px;
  scrollbar-width: none;
}
.modal-thumbs::-webkit-scrollbar { display: none; }
.modal-thumb {
  flex: 0 0 auto;
  width: 58px;
  height: 42px;
  padding: 0;
  border: 1px solid transparent;
  background: none;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.modal-thumb.active {
  opacity: 1;
  border-color: var(--dark-fg);
}
.modal-thumb:hover { opacity: 0.85; }

.modal-info-pane {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px clamp(10px, 2vw, 40px);
  text-align: right;
  border-right: 1px solid var(--dark-line);
  color: var(--dark-fg);
}
.modal-info-pane .cat {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
  direction: ltr;
  align-self: flex-start;
}
.modal-info-pane h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 60px);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--dark-fg);
}
.modal-info-pane .meta-details {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--dark-fg-2);
  margin-bottom: 30px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.modal-info-pane .meta-details span::after {
  content: "·";
  margin-right: 16px;
  color: var(--dark-line);
}
.modal-info-pane .meta-details span:last-child::after { content: none; }
.modal-info-pane p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.85;
  color: var(--dark-fg-2);
  margin-bottom: 40px;
  max-width: 50ch;
}
.modal-info-pane .btn {
  background: var(--dark-fg);
  border-color: var(--dark-fg);
  color: var(--dark);
  align-self: flex-start;
}
.modal-info-pane .btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.modal-close-btn {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 110;
  background: transparent;
  border: 0;
  color: var(--dark-fg);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px;
  transition: color 0.3s var(--ease-out);
}
.modal-close-btn:hover { color: var(--accent); }
.modal-close-btn svg { width: 22px; height: 22px; fill: none; stroke: currentColor; }

@media (max-width: 1024px) {
  .modal-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: 1.2fr 0.8fr;
    padding: 24px;
    gap: 18px;
  }
  .modal-info-pane {
    border-right: 0;
    border-top: 1px solid var(--dark-line);
    padding-top: 20px;
    justify-content: flex-start;
    overflow-y: auto;
  }
  .modal-info-pane p { margin-bottom: 24px; }
  .modal-close-btn { top: 12px; left: 12px; }
  .modal-counter { top: 12px; }
  .modal-thumbs { display: none; }
  .modal-nav-btn { width: 44px; height: 44px; }
}
