/* ==========================================================================
   MARGALIOT & KANISHMAN | DIGITAL ATELIER & SYSTEMS ARCHITECTURE
   Comprehensive Luxury 3D Design System & Mobile Responsive Engine
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Frank+Ruhl+Libre:wght@300;400;500;700&family=Heebo:wght@300;400;500;600;700&family=Italiana&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Syne:wght@400;600;700;800&display=swap');

:root {
  /* Color Palette - Obsidian, Champagne Gold, Titanium, Warm Graphite */
  --bg-obsidian: #060709;
  --bg-deep: #0b0c10;
  --bg-surface: #101218;
  --bg-card: rgba(16, 18, 26, 0.78);
  --bg-card-hover: rgba(24, 28, 38, 0.92);
  --bg-glass: rgba(10, 12, 16, 0.85);

  --accent-gold: #c5a880;
  --accent-rgb: 197, 168, 128;
  --accent-gold-light: #f3e5d3;
  --accent-gold-dim: #8e7350;
  --accent-gold-glow: rgba(197, 168, 128, 0.35);
  --gold-gradient: linear-gradient(135deg, #f7eee1 0%, #c5a880 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(245, 235, 217, 0.14) 0%, rgba(197, 168, 128, 0.04) 100%);
  --gold-border-gradient: linear-gradient(135deg, rgba(197, 168, 128, 0.7) 0%, rgba(197, 168, 128, 0.15) 50%, rgba(197, 168, 128, 0.5) 100%);

  --text-pure: #fcfbf9;
  --text-primary: #f2f0ea;
  --text-secondary: #a7abb8;
  --text-muted: #7c8291;

  --border-subtle: rgba(255, 255, 255, 0.09);
  --border-gold: rgba(197, 168, 128, 0.28);
  --border-gold-strong: rgba(197, 168, 128, 0.75);

  --shadow-ambient: 0 20px 50px rgba(0, 0, 0, 0.88);
  --shadow-gold: 0 10px 40px rgba(197, 168, 128, 0.25);
  --shadow-card: 0 16px 40px -10px rgba(0, 0, 0, 0.75);

  /* Typography */
  --font-serif-en: 'Italiana', 'Cinzel', serif;
  --font-display-en: 'Syne', sans-serif;
  --font-sans-en: 'Plus Jakarta Sans', sans-serif;

  --font-serif-he: 'Frank Ruhl Libre', serif;
  --font-display-he: 'Heebo', sans-serif;
  --font-sans-he: 'Heebo', sans-serif;

  --font-serif: var(--font-serif-en);
  --font-display: var(--font-display-en);
  --font-body: var(--font-sans-en);

  /* Layout & Geometry */
  --container-max: 1380px;
  --header-height: 86px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Transitions */
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.25s var(--ease-luxury);
  --transition-med: 0.5s var(--ease-luxury);
  --transition-slow: 0.85s var(--ease-luxury);
}

/* Accent color picker */
.accent-picker-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-gold-light);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.accent-picker-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--border-gold);
  background: rgba(var(--accent-rgb), 0.12);
  box-shadow: 0 6px 18px rgba(var(--accent-rgb), 0.14);
}

.accent-picker-toggle:focus-visible {
  outline: 2px solid var(--accent-gold-light);
  outline-offset: 3px;
}

.accent-picker-toggle-dot {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-gold-glow);
  border: 1.5px solid var(--bg-obsidian);
}

.accent-picker-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(3, 4, 7, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-med), visibility var(--transition-med);
}

.accent-picker-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.accent-picker-card {
  position: relative;
  width: min(100%, 520px);
  max-height: calc(100dvh - 2.5rem);
  padding: 2.4rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid var(--border-gold-strong);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--accent-rgb), 0.16), transparent 45%),
    var(--bg-glass);
  box-shadow: var(--shadow-ambient), 0 0 50px rgba(var(--accent-rgb), 0.18);
  text-align: center;
  transform: translateY(18px) scale(0.98);
  transition: transform var(--transition-med), border-color var(--transition-med), box-shadow var(--transition-med);
}

.accent-picker-backdrop.active .accent-picker-card {
  transform: translateY(0) scale(1);
}

.accent-picker-card:focus {
  outline: none;
}

.accent-picker-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.accent-picker-eyebrow {
  margin-bottom: 0.65rem;
  color: var(--accent-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.accent-picker-title {
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5vw, 2.45rem);
  line-height: 1.15;
  color: var(--text-pure);
}

.accent-picker-description {
  max-width: 420px;
  margin: 0 auto 1.75rem;
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.65;
}

.accent-swatches {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.accent-swatch {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 0.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--text-secondary);
  font: inherit;
  font-size: 0.72rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.accent-swatch:hover,
.accent-swatch.selected {
  border-color: var(--swatch-color);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-pure);
}

.accent-swatch:focus-visible {
  outline: 2px solid var(--swatch-color);
  outline-offset: 2px;
}

.accent-swatch-color {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: var(--swatch-color);
  box-shadow: 0 7px 18px color-mix(in srgb, var(--swatch-color) 35%, transparent);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.accent-swatch.selected .accent-swatch-color {
  transform: scale(1.12);
  border-color: var(--text-pure);
}

.accent-picker-confirm {
  min-width: min(100%, 280px);
}

body.accent-picker-open {
  overflow: hidden;
}

@media (max-width: 620px) {
  .accent-picker-toggle {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .accent-picker-card {
    padding: 2rem 1rem 1.35rem;
    border-radius: var(--radius-lg);
  }

  .accent-swatches {
    gap: 0.3rem;
  }

  .accent-swatch {
    padding-inline: 0.1rem;
    font-size: 0.64rem;
  }

  .accent-swatch-color {
    width: 34px;
    height: 34px;
  }
}

/* Hebrew RTL Overrides */
html[dir="rtl"] {
  --font-serif: var(--font-serif-he);
  --font-display: var(--font-display-he);
  --font-body: var(--font-sans-he);
  letter-spacing: 0px !important;
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  background-color: var(--bg-obsidian);
  color: var(--text-primary);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  background-color: var(--bg-obsidian);
  color: var(--text-primary);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  width: 100%;
}

/* Consistent keyboard focus across links, buttons, and form controls. */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--accent-gold-light);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.skip-to-content {
  position: fixed;
  inset-block-start: 0.5rem;
  inset-inline-start: 0.5rem;
  z-index: 1000005;
  max-width: calc(100vw - 1rem);
  padding: 0.75rem 1rem;
  border: 3px solid #ffffff;
  border-radius: 0.5rem;
  background: #000000;
  color: #ffffff !important;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: underline;
  transform: translateY(calc(-100% - 1rem));
}

.skip-to-content:focus-visible {
  outline: 3px solid #ffd700;
  outline-offset: 2px;
  transform: translateY(0);
}

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

/* Seamless Page Transition Container */
main#main-content {
  transition: opacity 0.18s cubic-bezier(0.16, 1, 0.3, 1), transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

main#main-content:focus {
  outline: none;
}

main#main-content.page-switching {
  opacity: 0;
  transform: translateY(8px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-obsidian);
}
::-webkit-scrollbar-thumb {
  background: #232632;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

::selection {
  background: var(--accent-gold);
  color: var(--bg-obsidian);
}

/* ==========================================================================
   AMBIENT BACKGROUND LIGHT BEAMS & 3D WEBGL CANVAS
   ========================================================================== */
#webgl-canvas {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  display: block;
}

.ambient-glow-mesh,
.ambient-glow {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle at 12% 18%, rgba(197, 168, 128, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 88% 75%, rgba(197, 168, 128, 0.06) 0%, transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(16, 18, 26, 0.5) 0%, transparent 65%);
  animation: ambientBreathing 12s ease-in-out infinite alternate;
}

.ambient-noise {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Cursor: Natural system pointer with luxury hover responsiveness */
a, button, input, select, textarea, .calc-pill, .btn {
  cursor: pointer;
}

/* ==========================================================================
   3D CARD TILTS & SPECULAR GLARE
   ========================================================================== */
.card-3d-wrap {
  perspective: 1200px;
  transform-style: preserve-3d;
}

.card-3d-element {
  transition: transform 0.4s var(--ease-luxury), box-shadow 0.4s var(--ease-luxury), border-color 0.4s ease;
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.card-glare {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.card-3d-element:hover .card-glare {
  opacity: 1;
}

/* ==========================================================================
   SCROLL REVEAL & 3D MOTION ANIMATIONS
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }

/* Main Layout Wrapper */
.site-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3.5rem);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-pure);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.015em;
  word-break: break-word;
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent-gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

/* Only this Atelier heading switches to left-aligned LTR in English. */
html[lang="en"] .atelier-leadership-title {
  direction: ltr;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

/* Only the Atelier service-standard heading uses LTR alignment in English. */
html[lang="en"] .atelier-service-title {
  direction: ltr;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

/* English copy inside Services cards reads LTR without mirroring the cards. */
html[lang="en"] .services-section .statement-card :is(h2, h3, p, li, span, a) {
  direction: ltr;
  text-align: left;
}

/* The shared footer follows the active language direction. */
html[lang="en"] .site-footer {
  direction: ltr;
  text-align: left;
}

html[lang="en"] .site-footer :is(p, div, ul, li, a, span) {
  direction: ltr;
  text-align: left;
}

.section-subtitle {
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 750px;
}

/* ==========================================================================
   HEADER & NAVIGATION - ZERO-SHIFT LOCKED GEOMETRY
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: var(--header-height);
  min-height: var(--header-height);
  max-height: var(--header-height);
  z-index: 100;
  background: rgba(6, 7, 9, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
  contain: layout size;
}

.site-header.scrolled {
  background: rgba(6, 7, 9, 0.98);
  border-bottom-color: rgba(197, 168, 128, 0.28);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
}

.header-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================================
   INNER PAGE HERO - UNIFIED HARMONIC TOP FOR ALL SUBPAGES
   ========================================================================== */
.inner-page-hero {
  position: relative;
  padding-top: calc(var(--header-height) + 3.5rem);
  padding-bottom: 3.5rem;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
  background: radial-gradient(circle at 50% 30%, rgba(197, 168, 128, 0.07) 0%, transparent 70%);
}

.inner-page-hero .hero-content {
  max-width: 950px;
  margin-inline: auto;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
  min-width: 0;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.logo-main {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--accent-gold-light);
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.brand-mark {
  display: block;
  width: clamp(2.35rem, 3.2vw, 3rem);
  height: clamp(2.35rem, 3.2vw, 3rem);
  flex: 0 0 auto;
  background: var(--gold-gradient);
  -webkit-mask: url('../assets/images/logo.png') center / contain no-repeat;
  mask: url('../assets/images/logo.png') center / contain no-repeat;
  filter: drop-shadow(0 0 10px rgba(var(--accent-rgb), 0.2));
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.brand-logo:hover .brand-mark {
  transform: scale(1.04);
  filter: drop-shadow(0 0 14px rgba(var(--accent-rgb), 0.38));
}

.logo-sub {
  display: none;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  inset-inline-start: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.5);
  transition: width var(--transition-fast);
}

html[dir="rtl"] .nav-link::after {
  left: auto;
  right: 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-pure);
}

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

/* Scroll Offset for In-page Anchors */
section[id] {
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.lang-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.45rem 0.85rem;
  min-height: 44px;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-toggle-btn:hover {
  background: rgba(197, 168, 128, 0.12);
  border-color: var(--border-gold);
  color: var(--accent-gold-light);
}

.sound-toggle-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.sound-toggle-btn:hover {
  border-color: var(--border-gold);
  color: var(--accent-gold);
}

.sound-toggle-btn.sound-on {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.35);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 10px;
  z-index: 110;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-pure);
  transition: all var(--transition-fast);
}

.mobile-menu-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(6, 7, 9, 0.98);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  z-index: 95;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.75rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: all var(--transition-med);
  padding: 2rem;
  overflow-y: auto;
  overscroll-behavior: contain;
}

@media (max-height: 700px) {
  .mobile-drawer {
    justify-content: flex-start;
    padding-block: max(5rem, env(safe-area-inset-top, 0px)) 2rem;
  }
}

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

.mobile-drawer .nav-link {
  font-size: 1.4rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.mobile-drawer-close {
  position: absolute;
  inset-block-start: max(1rem, env(safe-area-inset-top, 0px));
  inset-inline-end: 1rem;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-gold-strong);
  border-radius: 50%;
  background: var(--bg-obsidian);
  color: var(--text-pure);
  font: inherit;
  font-size: 1.75rem;
  line-height: 1;
}

/* Global Link Reset - Never Allow Default Purple Visited Links */
a, a:visited {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================================
   BUTTONS & LUXURY CTA
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 2.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-med);
  min-height: 44px;
  white-space: normal;
  text-align: center;
  touch-action: manipulation;
}

.btn-large {
  padding: 1.1rem 2.75rem;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #07080a !important;
  border: 1px solid transparent;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(197, 168, 128, 0.3);
}

.btn-primary:visited {
  color: #07080a !important;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(197, 168, 128, 0.5);
  color: #07080a !important;
}

.btn-outline {
  background: rgba(197, 168, 128, 0.05);
  color: var(--accent-gold) !important;
  border: 1px solid var(--border-gold-strong);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.btn-outline:visited {
  color: var(--accent-gold) !important;
}

.btn-outline:hover {
  background: rgba(197, 168, 128, 0.16);
  border-color: var(--accent-gold-light);
  color: #ffffff !important;
  box-shadow: 0 8px 30px rgba(197, 168, 128, 0.35);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-pure) !important;
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(10px);
}

.btn-secondary:visited {
  color: var(--text-pure) !important;
}

.btn-secondary:hover {
  background: rgba(197, 168, 128, 0.12);
  border-color: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
  color: #ffffff !important;
}

.btn-whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366 !important;
  border: 1px solid rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:visited {
  color: #25D366 !important;
}

.btn-whatsapp:hover {
  background: #25D366;
  color: #07080a !important;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

/* Gallery category selector */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.gallery-filter-btn {
  min-width: 7rem;
  min-height: 44px;
  padding: 0.62rem 1.5rem;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  background: rgba(197, 168, 128, 0.04);
  color: var(--text-secondary);
  font: 600 0.82rem/1 var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: color var(--transition-fast), background var(--transition-fast),
    border-color var(--transition-fast), box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.gallery-filter-btn:hover {
  color: var(--text-pure);
  border-color: var(--accent-gold);
  background: rgba(197, 168, 128, 0.11);
  transform: translateY(-1px);
}

.gallery-filter-btn.active,
.gallery-filter-btn[aria-pressed="true"] {
  color: var(--bg-obsidian);
  border-color: var(--accent-gold-light);
  background: var(--gold-gradient);
  box-shadow: 0 0 0 1px rgba(197, 168, 128, 0.15),
    0 7px 24px rgba(197, 168, 128, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transform: translateY(-1px);
}

.gallery-filter-btn:focus-visible {
  outline: 2px solid var(--accent-gold-light);
  outline-offset: 4px;
}

.gallery-filter-btn:active {
  transform: translateY(0) scale(0.98);
}

/* ==========================================================================
   3D PERSPECTIVE CARDS & DYNAMIC SPECULAR REFLECTION
   ========================================================================== */
.card-3d-element {
  position: relative;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.card-glare {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(420px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(223, 202, 170, 0.12), transparent 45%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
}

.card-3d-element:hover .card-glare {
  opacity: 1;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 5rem;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1050px;
  margin-inline: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1.25rem;
  background: var(--gold-gradient-subtle);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  font-size: 0.78125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: floatBadge 3.5s ease-in-out infinite alternate;
}

@keyframes floatBadge {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-6px); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 6vw, 5.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
  color: var(--text-pure);
}

.hero-subheadline {
  font-size: clamp(1.0625rem, 2vw, 1.35rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 4.5rem;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-subtle);
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
}

/* ==========================================================================
   PHILOSOPHY & ARCHITECTURAL PILLARS SECTION
   ========================================================================== */
.philosophy-section {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
  background: radial-gradient(circle at 50% 0%, rgba(197, 168, 128, 0.04) 0%, transparent 65%);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-top: 3.5rem;
}

@media (max-width: 900px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
}

.philosophy-card {
  background: rgba(18, 19, 23, 0.72);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg, 16px);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease, box-shadow 0.28s ease;
}

.philosophy-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold-strong, #dfcaaa);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), 0 0 24px rgba(197, 168, 128, 0.12);
}

.pillar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.golden-ratio-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(197, 168, 128, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: var(--font-mono, monospace);
}

.pillar-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
}

.pillar-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.45rem;
  line-height: 1.3;
}

.pillar-lead {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  line-height: 1.45;
}

.pillar-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
  flex-grow: 1;
}

.pillar-disclaimer {
  margin-top: 1.25rem;
  padding-top: 0.85rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  color: var(--text-muted, #777);
  line-height: 1.55;
  font-style: normal;
}

.statement-section {
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  background: transparent;
  position: relative;
}

.statement-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: clamp(2.25rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-ambient);
}

.statement-card::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
}

.accessibility-statement {
  overflow-wrap: anywhere;
}

.statement-language {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.statement-language-en,
html[lang="en"] .statement-language-he {
  display: none;
}

html[lang="en"] .statement-language-en {
  display: flex;
}

.statement-language :is(h1, h2, p, ul, address) {
  margin: 0;
}

.statement-language h2 {
  color: var(--accent-gold-light);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  line-height: 1.35;
  margin-top: 0.75rem;
}

.statement-language ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-inline-start: 1.5rem;
}

.statement-language li::marker {
  color: var(--accent-gold-light);
}

.statement-language a {
  color: var(--accent-gold-light);
  text-decoration: underline;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}

.statement-contact,
.statement-todo {
  padding: 1.25rem;
  border: 1px solid var(--border-gold-strong);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-style: normal;
}

.statement-todo {
  border-inline-start: 0.35rem solid var(--accent-gold-light);
}

.statement-updated {
  color: var(--text-primary);
}

.statement-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.28;
  color: var(--text-pure);
  margin-bottom: 2.5rem;
  font-style: italic;
}

.statement-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ==========================================================================
   THE DIFFERENCE
   ========================================================================== */
.difference-section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  position: relative;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.diff-col {
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.diff-col-ordinary {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.diff-col-ordinary .col-header {
  color: var(--text-muted);
}

.diff-col-ordinary .col-badge {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
}

.diff-col-atelier {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(197, 168, 128, 0.1);
}

.diff-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.diff-item strong {
  display: block;
  font-size: 1.0625rem;
  margin-bottom: 0.25rem;
  color: var(--text-pure);
}

.diff-item p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.diff-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-top: 2px;
}

.diff-item-icon.gold-icon {
  background: var(--gold-gradient-subtle);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  font-weight: 700;
}

.gold-text {
  color: var(--accent-gold-light) !important;
}

/* ==========================================================================
   INQUIRY SECTION & EXECUTIVE CONTACT CARDS
   ========================================================================== */
.inquiry-section {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.inquiry-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  height: 100%;
}

.inquiry-info-header {
  margin-bottom: 0.5rem;
}

.inquiry-info-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.85rem;
}

.inquiry-info-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.direct-contacts-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-grow: 1;
  justify-content: center;
}

.founder-executive-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-ambient);
  transition: transform var(--transition-med), border-color var(--transition-med), box-shadow var(--transition-med);
  position: relative;
  overflow: hidden;
}

.founder-executive-card::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 3px;
  height: 100%;
  background: var(--gold-gradient);
  opacity: 0.85;
}

.founder-executive-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(197, 168, 128, 0.2);
}

.exec-portrait-frame {
  width: 92px;
  height: 118px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border-gold-strong);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  flex-shrink: 0;
  background: var(--bg-surface);
}

.exec-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s var(--ease-luxury);
  display: block;
}

.founder-executive-card:hover .exec-portrait-img {
  transform: scale(1.06);
}

.exec-details {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex-grow: 1;
}

.exec-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.exec-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-pure);
}

.exec-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  background: rgba(197, 168, 128, 0.12);
  border: 1px solid rgba(197, 168, 128, 0.3);
  color: var(--accent-gold);
}

.exec-role {
  font-size: 0.8125rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.exec-cred {
  font-size: 0.78125rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 0.35rem;
}

.exec-links-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.35rem;
  flex-wrap: wrap;
}

.exec-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.exec-link:hover {
  color: var(--accent-gold);
}

.exec-link svg {
  width: 14px;
  height: 14px;
  color: var(--accent-gold);
}

.inquiry-trust-card {
  background: rgba(197, 168, 128, 0.04);
  border: 1px dashed rgba(197, 168, 128, 0.25);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.inquiry-trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-gradient-subtle);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.inquiry-trust-text {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.inquiry-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-ambient);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 991px) {
  .inquiry-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.diff-col .col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.diff-col .col-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.col-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.diff-col-atelier .col-badge {
  background: var(--gold-gradient);
  color: #07080a;
}

.diff-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.diff-card-item {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.diff-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-pure);
}

.diff-card-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: transparent;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
 align-items: stretch; }

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: clamp(2.25rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
 height: 100%; }

.service-card:hover {
  border-color: var(--accent-gold-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(197, 168, 128, 0.2);
}

.service-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(197, 168, 128, 0.25);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-tagline {
  font-size: 0.9375rem;
  color: var(--accent-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.service-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.service-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.service-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.service-highlights li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--accent-gold);
  margin-top: 3px;
}

.service-ideal {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.service-ideal strong {
  color: var(--accent-gold-light);
  display: block;
  margin-bottom: 0.25rem;
}

/* ==========================================================================
   SELECTED WORK / SHOWROOM GALLERY
   ========================================================================== */
.showcase-section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  position: relative;
  background: transparent;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
 align-items: stretch; }

.showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
 height: 100%; }

.showcase-card[hidden] {
  display: none;
}

.showcase-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.showcase-card:hover {
  border-color: var(--border-gold-strong);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85), var(--shadow-gold);
}

.showcase-preview {
  position: relative;
  height: 320px;
  background: linear-gradient(135deg, #161822 0%, #0d0e14 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.showcase-card-picture,
.showcase-card-image,
.showcase-card-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.showcase-card-image {
  z-index: 2;
  object-fit: cover;
  transition: transform var(--transition-slow), opacity var(--transition-med);
  opacity: 0;
}

.showcase-card-media.has-image .showcase-card-image {
  opacity: 1;
}

.showcase-card:hover .showcase-card-image {
  transform: scale(1.035);
}

.showcase-card-fallback {
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    radial-gradient(circle at 25% 20%, rgba(197, 168, 128, 0.2), transparent 40%),
    linear-gradient(135deg, #161822 0%, #090a0f 100%);
  color: var(--accent-gold-light);
  font: 700 clamp(1.2rem, 3vw, 2rem)/1.2 var(--font-display);
  letter-spacing: 0.08em;
  text-align: center;
}

.gallery-status {
  grid-column: 1 / -1;
  width: 100%;
  color: var(--text-muted);
  text-align: center;
}

.showcase-mockup-frame {
  width: 85%;
  height: 80%;
  background: rgba(8, 9, 12, 0.95);
  border: 1px solid rgba(197, 168, 128, 0.3);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  transition: transform var(--transition-slow);
}

.showcase-card:hover .showcase-mockup-frame {
  transform: scale(1.04) translateZ(15px);
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding-bottom: 0.5rem;
}

.mockup-dots {
  display: flex;
  gap: 5px;
}

.mockup-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mockup-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 0;
}

.mockup-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--text-pure);
}

.mockup-sub {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  margin-top: 0.25rem;
}

.showcase-info {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.showcase-link {
  margin-top: auto;
  color: var(--accent-gold-light);
  font-size: 0.875rem;
  font-weight: 700;
}

.showcase-category {
  font-size: 0.78125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.showcase-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.showcase-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.showcase-metrics {
  margin-top: auto;
  padding: 0.75rem 1rem;
  background: rgba(197, 168, 128, 0.06);
  border-inline-start: 3px solid var(--accent-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-gold-light);
}

html[dir="rtl"] .showcase-metrics {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

/* ==========================================================================
   OUR APPROACH
   ========================================================================== */
.approach-section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: transparent;
  position: relative;
}

.approach-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 4.5rem;
  position: relative;
}

.approach-step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.approach-step-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(197, 168, 128, 0.15);
}

.step-number {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-pure);
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   FOUNDERS DOSSIER & EDITORIAL PORTRAITS
   ========================================================================== */
.founders-section {
  padding: clamp(5rem, 9vw, 8.5rem) 0;
  position: relative;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
 align-items: stretch; }

.founder-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: clamp(2.25rem, 5vw, 3.5rem);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-ambient);
  overflow: hidden;
 height: 100%; }

.founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
}

.founder-header {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-bottom: 1.75rem;
}

.founder-portrait-frame {
  position: relative;
  width: 110px;
  height: 135px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border-gold-strong);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), 0 0 25px rgba(197, 168, 128, 0.25);
  flex-shrink: 0;
  background: var(--bg-surface);
}

.founder-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease-luxury), filter 0.6s ease;
  filter: contrast(1.05) brightness(0.98);
  display: block;
}

.founder-card:hover .founder-portrait-img {
  transform: scale(1.06);
  filter: contrast(1.08) brightness(1.03);
}

.founder-portrait-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 65%, rgba(6, 7, 9, 0.55) 100%);
  pointer-events: none;
}

.founder-meta {
  display: flex;
  flex-direction: column;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-pure);
}

.founder-role {
  font-size: 0.875rem;
  color: var(--accent-gold);
  font-weight: 600;
  margin-top: 0.25rem;
}

.founder-credentials {
  display: inline-block;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-subtle);
}

.founder-bio {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.founder-focus {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.875rem;
  color: var(--accent-gold-light);
  font-weight: 600;
}

/* ==========================================================================
   ESTIMATOR CALCULATOR
   ========================================================================== */
.estimator-section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: transparent;
  position: relative;
}

.estimator-card {
  position: relative;
  z-index: 10;
  background: var(--bg-card);
  border: 1px solid var(--border-gold-strong);
  border-radius: var(--radius-xl);
  padding: clamp(2.25rem, 5vw, 4rem);
  box-shadow: var(--shadow-ambient), var(--shadow-gold);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  margin-top: 3.5rem;
}

.calc-group {
  margin-bottom: 2rem;
}

.calc-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.85rem;
}

.calc-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.calc-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  touch-action: manipulation;
  min-height: 44px;
}

.calc-pill:hover {
  background: rgba(197, 168, 128, 0.08);
  border-color: var(--border-gold);
  color: var(--text-pure);
}

.calc-pill.active {
  background: var(--gold-gradient);
  color: #07080a;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
}

.calc-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.calc-checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  cursor: pointer;
  min-height: 44px;
}

.calc-checkbox-item input {
  accent-color: var(--accent-gold);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.estimator-summary {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.summary-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.5rem;
}

.summary-tier {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.summary-price-box {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: var(--gold-gradient-subtle);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
}

.summary-price-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.summary-price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-pure);
  margin-top: 0.25rem;
}

.summary-timeline {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* ==========================================================================
   TESTIMONIALS & CLIMAX
   ========================================================================== */
.testimonials-section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: transparent;
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: clamp(2.25rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-pure);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.testimonial-author-meta {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
}

.author-name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--accent-gold-light);
}

.author-title {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.final-climax-section {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: transparent;
  text-align: center;
  position: relative;
}

.climax-eyebrow {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.climax-headline {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-pure);
  max-width: 950px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.climax-subline {
  font-size: clamp(1.0625rem, 2vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

/* ==========================================================================
   INQUIRY SECTION
   ========================================================================== */
.inquiry-section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--bg-deep);
  position: relative;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.inquiry-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.direct-contacts {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-founder-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.founder-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient-subtle);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-weight: 700;
  flex-shrink: 0;
}

.inquiry-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-ambient);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-pure);
  margin-bottom: 0.5rem;
}

/* Important: font-size 16px to prevent iOS auto-zoom */
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--text-muted);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.25rem;
  font-size: 16px;
  color: var(--text-pure);
  font-family: var(--font-body);
  transition: all var(--transition-fast);
  -webkit-appearance: none;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: 3px solid var(--accent-gold-light);
  outline-offset: 2px;
  border-color: var(--accent-gold);
  background: rgba(197, 168, 128, 0.05);
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.2);
}

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

/* ==========================================================================
   FINAL VIP CTA SECTION
   ========================================================================== */
.cta-section {
  padding: 6.5rem 0 5.5rem;
  background: radial-gradient(circle at 50% 50%, rgba(197, 168, 128, 0.06) 0%, transparent 75%);
  position: relative;
  overflow: hidden;
}

.cta-card {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.cta-card .cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--text-pure);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.cta-card .cta-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 3.25rem; /* Generous spacing to lower the buttons */
}

.cta-card .hero-cta-group {
  margin-top: 1rem;
  margin-bottom: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #040507;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2.5rem 0;
  position: relative;
  z-index: 5;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo-main {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--accent-gold-light);
}

.footer-brand .brand-mark {
  width: clamp(3.5rem, 6vw, 4.75rem);
  height: clamp(3.5rem, 6vw, 4.75rem);
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 0.75rem;
  max-width: 320px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--accent-gold);
}

.footer-disclaimer-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  opacity: 0.8;
  line-height: 1.45;
  max-width: 680px;
}

/* ==========================================================================
   SCROLL REVEAL - ULTRA-GENTLE LUXURY GLIDE
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE PERFECTION - ZERO DEAD SPACE
   ========================================================================== */
@media (max-width: 1024px) {
  .difference-grid,
  .services-grid,
  .showcase-grid,
  .founders-grid,
  .testimonials-grid,
  .inquiry-grid,
  .estimator-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .approach-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .statement-body {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  .container {
    padding-inline: 1rem;
  }

  .nav-desktop,
  .d-none-mobile {
    display: none !important;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .brand-logo .logo-main {
    font-size: clamp(1.2rem, 6vw, 1.55rem);
    letter-spacing: 0.07em;
  }

  .brand-logo .brand-mark {
    width: 2.25rem;
    height: 2.25rem;
  }

  .brand-logo .logo-sub {
    font-size: 0.58rem;
  }

  /* Header Mobile */
  .site-header {
    height: 64px;
    min-height: 64px;
    max-height: 64px;
  }

  /* Inner Page Hero Mobile */
  .inner-page-hero {
    padding-top: calc(var(--header-height) + 0.65rem) !important;
    padding-bottom: 1.5rem !important;
  }

  /* Hero Mobile - Zero Dead Space */
  .hero-section {
    padding-top: calc(var(--header-height) + 0.65rem) !important;
    padding-bottom: 2rem !important;
    min-height: auto !important;
    display: block !important;
  }

  .hero-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .hero-badge {
    margin-top: 0 !important;
    margin-bottom: 0.75rem !important;
    padding: 0.3rem 0.75rem;
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: clamp(1.85rem, 8vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 0.85rem;
  }

  .hero-subheadline {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    min-height: 50px;
    padding: 0.85rem 1.5rem;
    font-size: 0.9375rem;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    padding-top: 1.5rem;
  }

  .stat-item {
    padding: 0.65rem 0.4rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
  }

  .stat-value {
    font-size: 1.45rem;
  }

  .stat-label {
    font-size: 0.7rem;
    line-height: 1.3;
  }

  /* Compact Sections Mobile */
  .statement-section,
  .difference-section,
  .services-section,
  .showcase-section,
  .founders-section,
  .estimator-section,
  .testimonials-section,
  .cta-section,
  .inquiry-section {
    padding: 2.25rem 0;
  }

  .section-eyebrow {
    font-size: 0.75rem;
    margin-bottom: 0.35rem;
  }

  .section-title {
    font-size: clamp(1.6rem, 6.5vw, 2.15rem);
    margin-bottom: 0.75rem;
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  /* Compact Cards Mobile */
  .statement-card,
  .diff-col,
  .service-card,
  .founder-card,
  .estimator-card,
  .testimonial-card,
  .cta-card,
  .inquiry-form-card,
  .founder-executive-card {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-lg);
  }

  .showcase-card {
    padding: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
  }

  .showcase-preview {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 9 / 16 !important;
    position: relative;
    overflow: hidden;
    background: #08090d;
  }

  .showcase-card-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
  }

  .showcase-info {
    padding: 1.5rem 1.25rem;
  }

  .statement-quote {
    font-size: 1.3rem;
    margin-bottom: 1.15rem;
    line-height: 1.35;
  }

  .statement-body {
    font-size: 0.9rem;
    line-height: 1.65;
    gap: 1rem;
  }

  .difference-grid,
  .services-grid,
  .showcase-grid,
  .founders-grid,
  .testimonials-grid,
  .inquiry-grid {
    margin-top: 1.25rem;
    gap: 1.15rem;
  }

  .service-num {
    font-size: 1.85rem;
    margin-bottom: 0.65rem;
  }

  .service-title {
    font-size: 1.35rem;
  }

  .service-desc {
    font-size: 0.9rem;
    margin-bottom: 1.15rem;
  }

  .service-highlights {
    gap: 0.65rem;
    margin-bottom: 1.35rem;
    padding-top: 1rem;
  }

  .service-highlights li {
    font-size: 0.875rem;
  }

  /* Founders Mobile */
  .founder-header {
    gap: 0.85rem;
    margin-bottom: 1rem;
  }

  .founder-portrait-frame {
    width: 78px;
    height: 98px;
    border-radius: var(--radius-sm);
  }

  .founder-name {
    font-size: 1.25rem;
  }

  .founder-credentials {
    font-size: 0.725rem;
    line-height: 1.45;
    margin-bottom: 0.75rem;
  }

  .founder-bio {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
  }

  .founder-focus {
    font-size: 0.75rem;
    padding-top: 0.75rem;
  }

  /* Executive Contact Cards Mobile */
  .founder-executive-card {
    gap: 0.85rem;
    padding: 1.15rem 0.85rem;
  }

  .exec-portrait-frame {
    width: 72px;
    height: 92px;
  }

  .exec-name {
    font-size: 1.15rem;
  }

  .exec-role {
    font-size: 0.75rem;
  }

  .exec-cred {
    font-size: 0.7rem;
  }

  .exec-links-row {
    gap: 0.75rem;
    margin-top: 0.35rem;
  }

  .exec-link {
    font-size: 0.8125rem;
  }

  /* Estimator Mobile */
  .estimator-card {
    gap: 1.5rem;
  }

  .calc-pill {
    padding: 0.5rem 0.85rem;
    font-size: 0.78125rem;
  }

  .estimator-summary {
    padding: 1.25rem 0.85rem;
  }

  .summary-price {
    font-size: 1.65rem;
  }

  /* Footer Mobile */
  .site-footer {
    padding: 2.5rem 0 1.5rem 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    font-size: 0.75rem;
  }

  /* Accessibility Floating Button Mobile */
  .a11y-floating-trigger {
    bottom: 14px;
    left: 14px;
    width: 42px;
    height: 42px;
  }

  html[dir="rtl"] .a11y-floating-trigger {
    left: auto;
    right: 14px;
  }
}


/* Global Structural Fixes for Bilingual Layouts */
* {
  min-width: 0;
  overflow-wrap: break-word;
}


/* Theme Toggle Button */
.theme-toggle-btn {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-gold-light);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
  transform: translateY(-1px);
  border-color: var(--border-gold);
  background: rgba(var(--accent-rgb), 0.12);
  box-shadow: 0 6px 18px rgba(var(--accent-rgb), 0.14);
}

.theme-toggle-btn:focus-visible {
  outline: 2px solid var(--accent-gold-light);
  outline-offset: 3px;
}

/* Light Theme Variables Overrides */
[data-theme="light"] {
  --bg-obsidian: #f7f5f1;
  --bg-deep: #eeeae3;
  --bg-surface: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.88);
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.96);
  --text-pure: #171512;
  --text-primary: #292620;
  --text-secondary: #575249;
  --text-muted: #756f65;
  --border-subtle: rgba(38, 33, 26, 0.13);
  --border-gold: rgba(var(--accent-rgb), 0.38);
  --border-gold-strong: rgba(var(--accent-rgb), 0.72);
  --shadow-ambient: 0 24px 64px rgba(48, 39, 27, 0.12);
  --shadow-card: 0 16px 38px -14px rgba(48, 39, 27, 0.2);
}

[data-theme="light"] .site-header {
  background: rgba(247, 245, 241, 0.92);
}

[data-theme="light"] .site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .mobile-drawer {
  background: rgba(247, 245, 241, 0.99);
}

[data-theme="light"] .calc-pill {
  background: rgba(38, 33, 26, 0.045);
  color: var(--text-secondary);
}

/* Light mode uses quiet, opaque surfaces instead of dark glass effects. */
[data-theme="light"] .ambient-glow-mesh,
[data-theme="light"] .ambient-glow {
  background:
    radial-gradient(circle at 12% 18%, rgba(var(--accent-rgb), 0.11) 0%, transparent 42%),
    radial-gradient(circle at 88% 75%, rgba(var(--accent-rgb), 0.08) 0%, transparent 40%);
  opacity: 0.7;
}

[data-theme="light"] .ambient-noise {
  opacity: 0.012;
}

[data-theme="light"] :is(.theme-toggle-btn, .accent-picker-toggle, .lang-toggle-btn, .sound-toggle-btn, .mobile-menu-btn) {
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--border-subtle);
  color: var(--text-secondary);
  box-shadow: 0 2px 10px rgba(48, 39, 27, 0.05);
}

[data-theme="light"] :is(.theme-toggle-btn, .accent-picker-toggle, .lang-toggle-btn, .sound-toggle-btn, .mobile-menu-btn):hover {
  background: #ffffff;
  color: var(--accent-gold-dim);
  border-color: var(--border-gold-strong);
}

[data-theme="light"] .accent-picker-toggle-dot {
  border-color: #ffffff;
}

[data-theme="light"] .accent-picker-backdrop {
  background: rgba(27, 24, 20, 0.42);
}

[data-theme="light"] .accent-picker-close,
[data-theme="light"] .accent-swatch:hover,
[data-theme="light"] .accent-swatch.selected,
[data-theme="light"] :is(.diff-col-ordinary, .service-ideal, .founder-credentials, .form-input, .form-textarea, .form-select) {
  background: rgba(38, 33, 26, 0.045);
}

[data-theme="light"] .accent-swatch-color {
  border-color: rgba(38, 33, 26, 0.14);
}

[data-theme="light"] .accent-swatch.selected .accent-swatch-color {
  border-color: #ffffff;
}

[data-theme="light"] :is(.service-card, .feature-card, .difference-card, .showcase-card, .founder-card, .estimator-card, .inquiry-form-card) {
  box-shadow: var(--shadow-card);
}

[data-theme="light"] .showcase-preview {
  background: linear-gradient(135deg, #eee9e1 0%, #ddd6ca 100%);
}

[data-theme="light"] .showcase-mockup-frame {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--border-gold);
  box-shadow: 0 12px 32px rgba(48, 39, 27, 0.12);
}

[data-theme="light"] .founder-image-wrap::after {
  background: linear-gradient(180deg, transparent 72%, rgba(38, 33, 26, 0.18) 100%);
}

[data-theme="light"] .form-input:focus,
[data-theme="light"] .form-textarea:focus,
[data-theme="light"] .form-select:focus {
  background: #ffffff;
}

[data-theme="light"] .site-footer {
  background: #ebe6de;
}

[data-theme="light"] .footer-bottom {
  border-top-color: var(--border-subtle);
}

[data-theme="light"] .gold-gradient-text {
  background: none;
  color: var(--accent-gold-dim);
  -webkit-text-fill-color: currentColor;
}
