/* ============================================================
   MONOLITH ARCHITECTS — Design System v2
   Architectural typography: Syne + Space Mono
   Card-authentic aesthetic: topographic organic lines
   ============================================================ */

/* DESIGN TOKENS — all colors, fonts, spacing. Change here to restyle the whole site */
:root {
  --clr-bg: #f2efe9;
  /* warm paper white — matches card */
  --clr-bg-2: #e9e5db;
  /* slightly warmer parchment */
  --clr-ink: #16140e;
  /* near-black, warm charcoal */
  --clr-ink-mid: #3a3628;
  /* medium warm charcoal */
  --clr-ink-light: #857d6e;
  /* warm muted gray */
  --clr-accent: #7a1515;
  /* deep dark burgundy — card cross */
  --clr-accent-dim: #5e1010;
  /* deeper accent */
  --clr-accent-soft: rgba(122, 21, 21, 0.07);
  --clr-border: rgba(22, 20, 14, 0.1);
  --clr-border-mid: rgba(22, 20, 14, 0.18);

  /* Architectural type system */
  --ff-display: 'Syne', system-ui, sans-serif;
  /* Hero, headings — geometric architectural */
  --ff-sans: 'Syne', system-ui, sans-serif;
  /* Body UI — same family, different weight */
  --ff-mono: 'Space Mono', 'Courier New', monospace;
  /* Labels, numbers — drafting/technical */
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  /* Italic statements */
  --ff-chinese: 'Noto Sans SC', 'PingFang SC', sans-serif;
  --ff-hebrew: 'Noto Sans Hebrew', 'Arial Hebrew', sans-serif;

  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 68px;
}

/* RESET — remove default browser margin/padding from everything */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* BODY — background photo (fixed/parallax), base font, text color, custom cursor */
body {
  background-color: var(--clr-bg);
  background-image: url('Background1.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--clr-ink);
  font-family: var(--ff-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* Red crosshair cursor */
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 48 48'%3E%3Cline x1='24' y1='2' x2='24' y2='46' stroke='%237a1515' stroke-width='2'/%3E%3Cline x1='2' y1='24' x2='46' y2='24' stroke='%237a1515' stroke-width='2'/%3E%3C/svg%3E") 24 24, crosshair;
}

/* Clickable elements get a pointer crosshair */
/* CUSTOM CURSOR — red crosshair on clickable elements (links, buttons) */
a,
button,
select,
[role="button"] {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 48 48'%3E%3Cline x1='24' y1='2' x2='24' y2='46' stroke='%237a1515' stroke-width='2.5'/%3E%3Cline x1='2' y1='24' x2='46' y2='24' stroke='%237a1515' stroke-width='2.5'/%3E%3C/svg%3E") 24 24, crosshair;
}





/* ============================================================
   NAVIGATION
   ============================================================ */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.5s var(--ease-in-out),
    border-color 0.5s var(--ease-in-out);
  border-bottom: 1px solid transparent;
}

#main-nav.nav--scrolled {
  background: rgba(243, 240, 234, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--clr-border);
}

.nav-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--clr-ink);
}

/* Morphing shape logo mark */
.logo-mark-morph {
  flex-shrink: 0;
  overflow: visible;
  transition: filter 0.3s;
}

.logo-poly {
  fill: none;
  stroke: var(--clr-ink);
  stroke-width: 1.8;
  stroke-linejoin: round;
  transition: stroke 0.3s;
}

.nav-logo:hover .logo-poly {
  stroke: var(--clr-accent);
}

.logo-name {
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clr-ink);
  line-height: 1;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--ff-mono);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--clr-ink-mid);
  position: relative;
  transition: color 0.25s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-accent);
  transition: width 0.3s var(--ease-smooth);
}

.nav-link:hover {
  color: var(--clr-ink);
}

.nav-link:hover::after {
  width: 100%;
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(22, 20, 14, 0.05);
  border: 1px solid var(--clr-border);
  padding: 5px;
  border-radius: 4px;
}

.lang-btn {
  background: none;
  border: none;
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--clr-ink-light);
  padding: 8px 14px;
  transition: color 0.2s, background 0.2s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  border-radius: 3px;
  line-height: 1;
}

.lang-btn .lang-code {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-btn.active {
  background: var(--clr-ink);
  color: var(--clr-bg);
}

.lang-btn:hover:not(.active) {
  background: rgba(22, 20, 14, 0.08);
  color: var(--clr-ink);
}

.lang-sep {
  display: none;
}

/* ============================================================
   MOBILE LANGUAGE DROPDOWN
   Hidden on desktop, visible on mobile only
   ============================================================ */
.mobile-lang-container {
  display: none;
  /* only visible on mobile via media query */
  position: relative;
}

.mobile-lang-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(22, 20, 14, 0.06);
  border: 1px solid var(--clr-border-mid);
  border-radius: 3px;
  padding: 8px 12px;
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--clr-ink);
  transition: background 0.2s;
}

.mobile-lang-trigger:hover {
  background: rgba(22, 20, 14, 0.12);
}

.mobile-lang-flag {
  font-size: 18px;
  line-height: 1;
  display: block;
}

.mobile-lang-arrow {
  color: var(--clr-ink-light);
  transition: transform 0.25s var(--ease-smooth);
  flex-shrink: 0;
}

.mobile-lang-trigger[aria-expanded="true"] .mobile-lang-arrow {
  transform: rotate(180deg);
}

.mobile-lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border-mid);
  border-radius: 3px;
  box-shadow: 0 8px 24px rgba(22, 20, 14, 0.12);
  overflow: hidden;
  z-index: 200;

  /* Hidden state */
  opacity: 0;
  transform: translateY(-8px) scaleY(0.95);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 0.22s var(--ease-smooth),
    transform 0.22s var(--ease-smooth);
}

.mobile-lang-dropdown.open {
  opacity: 1;
  transform: translateY(0) scaleY(1);
  pointer-events: auto;
}

.mobile-lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--clr-border);
  padding: 12px 16px;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--clr-ink-mid);
  text-align: left;
  transition: background 0.18s;
  white-space: nowrap;
}

.mobile-lang-option:last-child {
  border-bottom: none;
}

.mobile-lang-option span {
  font-size: 10px;
  letter-spacing: 0.08em;
}

.mobile-lang-option .lang-option-flag {
  font-size: 18px;
  line-height: 1;
}

.mobile-lang-option:hover {
  background: rgba(22, 20, 14, 0.05);
  color: var(--clr-ink);
}

.mobile-lang-option.active {
  color: var(--clr-accent);
  background: var(--clr-accent-soft);
}

/* ============================================================
   SECTION 1 — INTRO
   ============================================================ */
.section--intro {
  min-height: 100vh;
  position: relative;
}

/* Inner wrapper: clips floating chars that exit the viewport top */
.intro-inner {
  height: 100vh;
  overflow: hidden;
  /* No position:relative — let .section--intro be the positioning
     context for .intro-right-strip and .geo-container */
}

/* ============================================================
   SECTIONS — Base
   ============================================================ */
.section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: transparent;
  /* show global topo through sections */
}

.section-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 80px;
}

/* Section backgrounds — very subtle tinted wash over the global topo */
.section--intro {
  background: rgba(243, 240, 234, 0.05);
  align-items: center;
}

.section--philosophy {
  background: rgba(232, 228, 218, 0.4);
}

.section--studio {
  background: rgba(237, 233, 224, 0.35);
}

.section--contact {
  background: rgba(243, 240, 234, 0.1);
  flex-direction: column;
}





/* ============================================================
   SECTION 1 — INTRO
   ============================================================ */
.intro-content {
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  min-height: 100vh;
  gap: 0;
}

.intro-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease-smooth) 0.3s,
    transform 0.8s var(--ease-smooth) 0.3s;
}

.section--intro.in-view .intro-label {
  opacity: 1;
  transform: translateY(0);
}

.label-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--clr-accent);
}

.label-text {
  font-family: var(--ff-mono);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-ink-light);
}

.intro-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 44px;
  gap: 0;
}

.title-line {
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.92;
  color: var(--clr-ink);
  opacity: 0;
  transform: translateY(24px);
}

.title-line--1 {
  font-size: clamp(58px, 7.5vw, 116px);
  transition: opacity 0.9s var(--ease-smooth) 0.5s,
    transform 0.9s var(--ease-smooth) 0.5s;
}

.title-line--2 {
  font-family: var(--ff-display);
  font-size: clamp(58px, 7.5vw, 116px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--clr-accent);
  -webkit-text-stroke: 1.5px var(--clr-accent);
  transition: opacity 0.9s var(--ease-smooth) 0.7s,
    transform 0.9s var(--ease-smooth) 0.7s;
}

.section--intro.in-view .title-line {
  opacity: 1;
  transform: translateY(0);
}

.intro-statement {
  font-family: var(--ff-serif);
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 300;
  font-style: italic;
  color: var(--clr-ink-mid);
  line-height: 1.75;
  max-width: 400px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s var(--ease-smooth) 0.9s,
    transform 0.9s var(--ease-smooth) 0.9s;
}

.section--intro.in-view .intro-statement {
  opacity: 1;
  transform: translateY(0);
}

.intro-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.8s var(--ease-smooth) 1.4s;
}

.section--intro.in-view .intro-scroll-hint {
  opacity: 1;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--clr-accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite 2s;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.4;
    transform: scaleY(0.6);
  }
}

.scroll-text {
  font-family: var(--ff-mono);
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-ink-light);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ── Intro Right Column — vertical architectural text ─── */
.intro-right-strip {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 2;
  opacity: 0;
  transition: opacity 1s var(--ease-smooth) 1.1s;
}

.section--intro.in-view .intro-right-strip {
  opacity: 1;
}

.intro-right-strip .strip-year {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--clr-ink-light);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-transform: uppercase;
}

.intro-right-strip .strip-line {
  width: 1px;
  flex: 1;
  min-height: 120px;
  background: linear-gradient(to bottom,
      transparent,
      var(--clr-border-mid) 30%,
      var(--clr-border-mid) 70%,
      transparent);
}

.intro-right-strip .strip-cross {
  font-size: 18px;
  font-weight: 300;
  color: var(--clr-accent);
  line-height: 1;
  font-family: var(--ff-sans);
}

/* ============================================================
   SECTION 2 — PHILOSOPHY + SERVICES
   ============================================================ */
.philosophy-content {
  gap: 80px;
  align-items: flex-start;
  padding-top: 110px;
  padding-bottom: 120px;
  min-height: 100vh;
}

.philosophy-left {
  flex: 0 0 400px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.9s var(--ease-smooth) 0.2s,
    transform 0.9s var(--ease-smooth) 0.2s;
}

.section--philosophy.in-view .philosophy-left {
  opacity: 1;
  transform: translateX(0);
}

.philosophy-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.9s var(--ease-smooth) 0.4s,
    transform 0.9s var(--ease-smooth) 0.4s;
}

.section--philosophy.in-view .philosophy-right {
  opacity: 1;
  transform: translateX(0);
}

/* Section label component */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.label-num {
  font-family: var(--ff-mono);
  font-size: 9.5px;
  font-weight: 400;
  color: var(--clr-accent);
  letter-spacing: 0.12em;
}

.label-line-sm {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--clr-border-mid);
}

.label-text-sm {
  font-family: var(--ff-mono);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-ink-light);
}

.philosophy-title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 2.8vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--clr-ink);
  letter-spacing: -0.01em;
}

.philosophy-title em {
  font-style: normal;
  color: var(--clr-accent);
  font-weight: 300;
  font-family: var(--ff-serif);
  font-style: italic;
}

.philosophy-body {
  font-family: var(--ff-sans);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--clr-ink-mid);
  line-height: 1.85;
  max-width: 360px;
  border-left: 2px solid var(--clr-accent);
  padding-left: 20px;
}

/* Services List */
.services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--clr-border);
  transition: padding-left 0.25s var(--ease-smooth);
  position: relative;
  opacity: 0;
  transform: translateY(12px);
}

.service-item:first-child {
  border-top: 1px solid var(--clr-border);
}

.section--philosophy.in-view .service-item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--ease-smooth),
    transform 0.7s var(--ease-smooth),
    padding-left 0.25s var(--ease-smooth);
}

.section--philosophy.in-view .service-item:nth-child(1) {
  transition-delay: 0.5s;
}

.section--philosophy.in-view .service-item:nth-child(2) {
  transition-delay: 0.6s;
}

.section--philosophy.in-view .service-item:nth-child(3) {
  transition-delay: 0.7s;
}

.section--philosophy.in-view .service-item:nth-child(4) {
  transition-delay: 0.8s;
}

.section--philosophy.in-view .service-item:nth-child(5) {
  transition-delay: 0.9s;
}

.section--philosophy.in-view .service-item:nth-child(6) {
  transition-delay: 1.0s;
}

.service-item:hover {
  padding-left: 8px;
}

.service-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--clr-accent);
  transform: scaleY(0);
  transition: transform 0.3s var(--ease-smooth);
}

.service-item:hover::before {
  transform: scaleY(1);
}

.service-num {
  font-family: var(--ff-sans);
  font-size: 16px;
  color: var(--clr-accent);
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.3s;
}

.service-item:hover .service-num {
  transform: translateX(4px);
}

.service-content {
  flex: 1;
}

.service-title {
  font-family: var(--ff-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-ink);
  margin-bottom: 6px;
  transition: color 0.3s;
}

.service-item:hover .service-title {
  color: var(--clr-accent);
}

.service-desc {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--clr-ink-light);
  line-height: 1.75;
}

.philosophy-accent-line {
  position: absolute;
  bottom: 0;
  left: 80px;
  right: 80px;
  height: 1px;
  background: linear-gradient(to right, var(--clr-accent), transparent 60%);
  z-index: 2;
}

/* ============================================================
   SECTION 02 — STUDIO / ΤΟ ΓΡΑΦΕΙΟ ΜΑΣ
   ============================================================ */
.studio-content {
  gap: 80px;
  align-items: flex-start;
  padding-top: 130px;
  padding-bottom: 120px;
  min-height: 100vh;
}

.studio-left {
  flex: 0 0 480px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.9s var(--ease-smooth) 0.2s,
    transform 0.9s var(--ease-smooth) 0.2s;
}

.section--studio.in-view .studio-left {
  opacity: 1;
  transform: translateX(0);
}

.studio-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 32px;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.9s var(--ease-smooth) 0.4s,
    transform 0.9s var(--ease-smooth) 0.4s;
}

.section--studio.in-view .studio-right {
  opacity: 1;
  transform: translateX(0);
}

.studio-body-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.studio-body {
  font-family: var(--ff-sans);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--clr-ink-mid);
  line-height: 2.0;
  max-width: 440px;
  border-left: 2px solid var(--clr-accent);
  padding-left: 20px;
}

/* Founders block — typographic, no cards, no avatars */
.founders-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 16px;
}

.founders-label {
  margin-bottom: 36px;
}

.founder-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 0;
}

.founder-item:first-of-type {
  padding-top: 4px;
}

.founder-name {
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-ink);
  display: block;
}

.founder-role {
  font-family: var(--ff-serif);
  font-size: 13.5px;
  font-weight: 300;
  font-style: italic;
  color: var(--clr-ink-light);
  display: block;
  letter-spacing: 0.03em;
}

.founder-divider {
  height: 1px;
  background: var(--clr-border);
}

.studio-accent-line {
  position: absolute;
  bottom: 0;
  left: 80px;
  right: 80px;
  height: 1px;
  background: linear-gradient(to right, var(--clr-accent), transparent 60%);
  z-index: 2;
}

/* ============================================================
   SECTION 04 — CONTACT
   ============================================================ */
.contact-content {
  gap: 80px;
  align-items: flex-start;
  padding-top: 100px;
  padding-bottom: 80px;
  flex: 1;
  min-height: calc(100vh - 72px);
}

.contact-left {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.9s var(--ease-smooth) 0.2s,
    transform 0.9s var(--ease-smooth) 0.2s;
}

.section--contact.in-view .contact-left {
  opacity: 1;
  transform: translateX(0);
}

.contact-title {
  font-family: var(--ff-display);
  font-size: clamp(34px, 3.8vw, 58px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--clr-ink);
  letter-spacing: -0.01em;
}

.contact-invitation {
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--clr-ink-light);
  line-height: 1.9;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--clr-border);
}

.contact-email,
.contact-phone {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--clr-ink-mid);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.25s;
  position: relative;
  display: inline-block;
}

.contact-email::after,
.contact-phone::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-accent);
  transition: width 0.3s var(--ease-smooth);
}

.contact-email:hover,
.contact-phone:hover {
  color: var(--clr-accent);
}

.contact-email:hover::after,
.contact-phone:hover::after {
  width: 100%;
}

.contact-location {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--clr-ink-light);
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-right {
  flex: 1;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.9s var(--ease-smooth) 0.4s,
    transform 0.9s var(--ease-smooth) 0.4s;
}

.section--contact.in-view .contact-right {
  opacity: 1;
  transform: translateX(0);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 520px;
  position: relative;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--ff-mono);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-ink-light);
  transition: color 0.25s;
}

.form-group:focus-within .form-label {
  color: var(--clr-accent);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--clr-border-mid);
  padding: 12px 0;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--clr-ink);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--clr-ink-light);
  opacity: 0.7;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--clr-accent);
  border-bottom-width: 1.5px;
}

.form-textarea {
  resize: none;
  line-height: 1.7;
}

.select-wrapper {
  position: relative;
}

.select-wrapper .form-select {
  color: var(--clr-ink);
}

.select-wrapper .form-select option {
  color: var(--clr-ink);
  background: var(--clr-bg);
}

.select-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--clr-ink-light);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 8px;
}

.form-privacy {
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 300;
  color: var(--clr-ink-light);
  letter-spacing: 0.05em;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-ink);
  transition: color 0.3s;
}

.form-submit:hover {
  color: var(--clr-accent);
}

.submit-line {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--clr-ink);
  transition: width 0.4s var(--ease-smooth), background 0.3s;
}

.form-submit:hover .submit-line {
  width: 60px;
  background: var(--clr-accent);
}

/* Form Success State */
.form-success {
  display: none;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(122, 21, 21, 0.2);
  background: var(--clr-accent-soft);
}

.form-success.visible {
  display: flex;
}

.success-cross {
  font-size: 24px;
  font-weight: 300;
  color: var(--clr-accent);
  line-height: 1;
  flex-shrink: 0;
}

.form-success p {
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--clr-ink-mid);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--clr-border);
  padding: 24px 0;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-cross {
  font-size: 16px;
  font-weight: 300;
  color: var(--clr-accent);
  line-height: 1;
  font-family: var(--ff-sans);
}

.footer-brand {
  font-family: var(--ff-mono);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clr-ink);
}

.footer-divider {
  color: var(--clr-ink-light);
  font-size: 10px;
}

.footer-loc,
.footer-copy {
  font-family: var(--ff-mono);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--clr-ink-light);
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .section-content {
    padding: 0 48px;
  }

  .nav-inner {
    padding: 0 32px;
  }

  .intro-scroll-hint {
    left: 48px;
  }

  .grid-line--h1 {
    left: 48px;
    right: 48px;
  }

  .parallelogram {
    width: 280px;
  }

  .philosophy-content,
  .studio-content,
  .contact-content {
    flex-direction: column;
    gap: 48px;
    padding-top: 100px;
  }

  .philosophy-left,
  .studio-left,
  .contact-left {
    flex: none;
  }

  .philosophy-right,
  .studio-right,
  .contact-right {
    width: 100%;
  }

  .footer-inner {
    padding: 0 48px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 640px) {
  :root {
    --nav-h: 56px;
  }

  .section-content {
    padding: 0 24px;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .nav-right {
    gap: 10px;
  }

  /* Hide nav text links on mobile — lang switcher stays */
  .nav-links {
    display: none;
  }

  /* Compact lang switcher on mobile: flags only, no code text */
  .lang-switcher {
    display: none;
    /* replaced by mobile dropdown */
  }

  /* Show the mobile dropdown trigger instead */
  .mobile-lang-container {
    display: block;
  }

  .logo-name {
    font-size: 9px;
    letter-spacing: 0.16em;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* ── Hebrew / RTL mobile fixes ── */
  /* nav-inner is always LTR: logo left, controls right */
  body.lang-he .nav-inner {
    direction: ltr;
  }

  /* nav-right: keep controls tightly packed in LTR order */
  body.lang-he .nav-right {
    flex-direction: row;
    direction: ltr;
  }

  /* Mobile dropdown: open to the left on RTL to avoid overflow */
  body.lang-he .mobile-lang-dropdown {
    right: 0;
    left: auto;
  }

  /* Section content: flip direction for RTL layout */
  body.lang-he .philosophy-content,
  body.lang-he .contact-content {
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }

  /* Intro label: RTL — line after text */
  body.lang-he .intro-label {
    flex-direction: row-reverse;
  }

  /* Intro statement, contact invitation: right-align */
  body.lang-he .intro-statement,
  body.lang-he .contact-invitation {
    text-align: right;
  }

  /* Section labels: RTL order */
  body.lang-he .section-label {
    flex-direction: row-reverse;
  }

  /* Philosophy body RTL border fix */
  body.lang-he .philosophy-body {
    border-left: none;
    border-right: 2px solid var(--clr-accent);
    padding-left: 0;
    padding-right: 20px;
    text-align: right;
    width: 100%;
  }

  /* Contact details: right-align on mobile RTL */
  body.lang-he .contact-details {
    align-items: flex-end;
  }

  /* Form: RTL text alignment */
  body.lang-he .form-label,
  body.lang-he .form-input,
  body.lang-he .form-textarea,
  body.lang-he .form-select {
    text-align: right;
    direction: rtl;
  }

  /* Footer: RTL row */
  body.lang-he .footer-inner {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }

  /* Hero title responsive */
  .title-line--1,
  .title-line--2 {
    font-size: clamp(40px, 10vw, 64px);
    line-height: 0.95;
  }

  .intro-content {
    padding-left: 24px;
    padding-right: 24px;
  }

  /* Hide the right vertical strip on mobile — not enough space */
  .intro-right-strip {
    display: none;
  }

  .intro-scroll-hint {
    left: 24px;
    bottom: 28px;
  }

  .grid-line--h1 {
    left: 24px;
    right: 24px;
    bottom: 60px;
  }

  .grid-line--v1 {
    display: none;
  }

  /* Parallelogram: smaller on mobile */
  .parallelogram {
    width: 140px;
    left: -30px;
    clip-path: polygon(18% 0%, 100% 0%, 82% 100%, 0% 100%);
  }

  /* Philosophy & Contact: single column, tighter */
  .philosophy-content,
  .studio-content,
  .contact-content {
    padding: 88px 24px 48px;
    gap: 36px;
  }

  .philosophy-left,
  .studio-left {
    flex: none;
  }

  .philosophy-title {
    font-size: clamp(24px, 7vw, 36px);
  }

  .philosophy-body,
  .studio-body {
    max-width: 100%;
    font-size: 13px;
  }

  .contact-title {
    font-size: clamp(28px, 8vw, 44px);
  }

  .contact-form {
    max-width: 100%;
  }

  .form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-inner {
    padding: 0 24px;
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Reduce char float intensity on mobile for performance */
  .char {
    transition: none;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}