/* ============================================
   PROFIT MIND — Light Swiss Boutique (Alpine green accent)
   ============================================ */

:root {
  /* Cool grey · white · blue — institutional palette */
  --bg-0: #e8ebf0;
  --bg-1: #ffffff;
  --bg-2: #dde2ea;
  --bg-3: #cdd4df;
  --border: rgba(14, 27, 61, 0.12);
  --border-strong: rgba(14, 27, 61, 0.22);

  --text: #0e1b3d;
  --text-muted: #3d4660;
  --text-dim: #707a92;

  /* Deep navy primary, steel-blue secondary (variable names kept) */
  --gold: #1d3878;
  --gold-2: #4768ab;
  --gold-glow: rgba(29, 56, 120, 0.20);
  --gold-soft: rgba(29, 56, 120, 0.05);

  --accent-2: #8a93a8;

  --danger: #c0392b;
  --success: #2d8f4f;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 8px rgba(28, 35, 56, 0.06);
  --shadow: 0 10px 30px rgba(28, 35, 56, 0.10);
  --shadow-lg: 0 30px 80px rgba(28, 35, 56, 0.14);

  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Ambient + grid backgrounds */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(900px 600px at 85% -10%, rgba(58, 106, 79, 0.10), transparent 60%),
    radial-gradient(800px 600px at -10% 30%, rgba(196, 192, 174, 0.04), transparent 60%),
    radial-gradient(900px 700px at 50% 110%, rgba(58, 106, 79, 0.06), transparent 60%);
  pointer-events: none; z-index: -2;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none; z-index: -1;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 80%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============== Typography ============== */

.serif { font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #fff;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: -0.02em; }
h4 { font-family: 'Inter', sans-serif; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 999px;
  margin-bottom: 1.4rem;
  font-family: 'Inter', sans-serif;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--gold-glow);
}

.gradient-text {
  background: linear-gradient(135deg, #fff 0%, #fff 45%, var(--gold-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-text {
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 660px;
  line-height: 1.7;
}

/* ============== Layout ============== */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 768px) {
  section { padding: 80px 0; }
}

/* ============== Navigation ============== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 7, 10, 0.75);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.85; }

.logo-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  color: var(--gold-2);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.015em;
  color: var(--text);
}
.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--gold-2);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  padding: 9px 16px;
  font-size: 0.92rem;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.nav-cta {
  padding: 11px 20px !important;
  background: linear-gradient(135deg, var(--gold-2), var(--gold)) !important;
  color: #06070a !important;
  font-weight: 600;
  border-radius: 999px !important;
  box-shadow: 0 6px 20px var(--gold-glow);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px var(--gold-glow);
}

.menu-toggle {
  display: none;
  background: none; border: none;
  color: #fff; font-size: 1.6rem;
  cursor: pointer; padding: 4px 8px;
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 4px;
    padding: 16px 24px;
    background: rgba(10, 12, 18, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; }
  .menu-toggle { display: block; }
}

/* ============== Buttons ============== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 0.98rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #06070a;
  box-shadow: 0 10px 28px var(--gold-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px var(--gold-glow);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-2);
  border: 1px solid rgba(212, 175, 55, 0.4);
}
.btn-outline-gold:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
}

.btn-arrow::after {
  content: '→';
  transition: transform 0.25s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(5px); }

/* ============== Hero ============== */

.hero {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 920px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin-bottom: 1.8rem;
}

.hero .lead {
  font-size: 1.3rem;
  max-width: 660px;
  margin-bottom: 2.8rem;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-meta {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.hero-meta-item {
  display: flex; align-items: center; gap: 10px;
}
.hero-meta-item::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-glow);
}

/* Hero visual orbs */
.hero-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -120px; right: -80px;
  opacity: 0.35;
  animation: float 12s ease-in-out infinite;
}
.orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%);
  bottom: -120px; right: 20%;
  opacity: 0.18;
  animation: float 14s ease-in-out infinite reverse;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--gold-2) 0%, transparent 70%);
  top: 40%; right: 30%;
  opacity: 0.1;
  animation: float 16s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 40px) scale(1.08); }
}

/* ============== Stats Strip ============== */

.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
}
.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
@media (max-width: 768px) {
  .stat-item:nth-child(2n) { border-right: none; }
}
.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1;
}
.stat-value .gold { color: var(--gold-2); }
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

/* ============== Section Header ============== */

.section-head {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}
.section-head.left { margin: 0 0 60px; text-align: left; }
.section-head h2 { margin-bottom: 1.2rem; }
.section-head p {
  color: var(--text-muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

/* ============== Service Cards ============== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 38px 32px 32px;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(500px 250px at var(--mx, 50%) var(--my, 0%), rgba(212, 175, 55, 0.1), transparent 70%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.service-card:hover::before,
.service-card:hover::after { opacity: 1; }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: #fff;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 22px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-2);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.service-link::after {
  content: '→';
  transition: transform 0.25s var(--ease);
}
.service-card:hover .service-link::after { transform: translateX(4px); }

/* ============== Industries ============== */

.industries {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.industry {
  padding: 28px 20px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s var(--ease);
}
.industry:hover {
  background: var(--bg-2);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-3px);
}
.industry-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  filter: grayscale(0.2);
}
.industry-name {
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
}

/* ============== Process / Timeline ============== */

.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 11px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(212, 175, 55, 0.1));
}
.timeline-step {
  position: relative;
  margin-bottom: 56px;
}
.timeline-step:last-child { margin-bottom: 0; }
.timeline-step::before {
  content: '';
  position: absolute;
  left: -40px; top: 6px;
  width: 22px; height: 22px;
  background: var(--bg-0);
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}
.timeline-step::after {
  content: '';
  position: absolute;
  left: -34px; top: 12px;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold-glow);
}
.timeline-num {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  display: block;
}
.timeline-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  margin-bottom: 8px;
}
.timeline-step p {
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============== Testimonials ============== */

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial {
  position: relative;
  padding: 36px 32px 32px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.testimonial:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
  position: absolute;
  top: 12px; left: 24px;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #fff;
  margin: 24px 0 28px;
  position: relative;
  font-style: italic;
  font-weight: 500;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  display: grid; place-items: center;
  color: #06070a;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  color: #fff;
  font-size: 0.96rem;
}
.testimonial-role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============== About / Bio ============== */

.bio {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 860px) { .bio { grid-template-columns: 1fr; } }

.bio-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-3), var(--bg-1));
  border: 1px solid var(--border);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.bio-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.18), transparent 60%);
}
.bio-visual::after {
  content: '';
  position: absolute; inset: 14px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
}
.bio-monogram {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12rem;
  font-weight: 500;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.05em;
  position: relative;
  line-height: 1;
}

.bio-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 24px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.bio-logo-mark {
  width: 140px;
  height: 140px;
  color: var(--gold-2);
  filter: drop-shadow(0 6px 22px rgba(212, 175, 55, 0.18));
}
.bio-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 2.9rem;
  letter-spacing: 0.015em;
  color: var(--text);
  line-height: 1;
}
.bio-logo-rule {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  opacity: 0.7;
}
.bio-logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold-2);
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .bio-logo-mark { width: 100px; height: 100px; }
  .bio-logo-name { font-size: 2.2rem; }
  .bio-logo-sub { font-size: 0.62rem; letter-spacing: 0.26em; }
}

.bio-text p {
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
  line-height: 1.8;
}
.bio-text p strong { color: var(--text); font-weight: 500; }

.tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 24px;
}
.tag {
  padding: 7px 16px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
}

/* ============== CTA Banner ============== */

.cta-banner {
  position: relative;
  margin: 40px 0;
  padding: 80px 56px;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0%, transparent 60%);
  opacity: 0.15;
  top: -300px; left: 50%;
  transform: translateX(-50%);
  filter: blur(80px);
}
.cta-banner h2 {
  margin-bottom: 1.2rem;
  position: relative;
  font-size: clamp(2rem, 4vw, 3rem);
}
.cta-banner p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.4rem;
  font-size: 1.1rem;
  line-height: 1.7;
  position: relative;
}
.cta-banner .btn { position: relative; }

@media (max-width: 600px) {
  .cta-banner { padding: 60px 28px; }
}

/* ============== Contact / Form ============== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.75;
  font-size: 1.05rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: all 0.25s var(--ease);
}
.contact-detail:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateX(3px);
  background: var(--bg-2);
}

.contact-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.06));
  border: 1px solid rgba(212, 175, 55, 0.22);
  display: grid; place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--gold-2);
}
.contact-detail-label {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 3px;
}
.contact-detail-value {
  color: #fff;
  font-weight: 500;
  font-size: 0.98rem;
}

.form {
  padding: 40px;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-0);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.97rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }

.form .btn { width: 100%; margin-top: 8px; }

.form-success {
  margin-top: 16px;
  padding: 14px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 10px;
  color: var(--success);
  text-align: center;
  font-size: 0.95rem;
  display: none;
}
.form-success.show { display: block; }

/* ============== Values grid ============== */

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.value-item {
  padding: 32px 28px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
}
.value-item:hover {
  border-color: rgba(212, 175, 55, 0.25);
  transform: translateY(-3px);
}
.value-icon {
  font-size: 1.6rem;
  width: 52px; height: 52px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 20px;
  color: var(--gold-2);
}
.value-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  margin-bottom: 10px;
}
.value-item p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* ============== Footer ============== */

footer {
  margin-top: 60px;
  padding: 80px 0 30px;
  border-top: 1px solid var(--border);
  background: var(--bg-0);
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 18px;
  font-size: 0.95rem;
  max-width: 340px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-2);
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--text-muted);
  font-size: 0.94rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-2); }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.86rem;
  color: var(--text-dim);
}

/* ============== Reveal Animation ============== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }

/* ============== Utility ============== */

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.gold-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
  margin: 0 auto 28px;
  border-radius: 2px;
}
.section-head.left .gold-line { margin-left: 0; }

/* ============== Language switcher ============== */

.lang-switcher {
  position: relative;
  margin-left: 8px;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.lang-toggle:hover {
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.06);
}
.lang-toggle::after {
  content: '▾';
  font-size: 0.7rem;
  color: var(--text-muted);
  transition: transform 0.2s;
}
.lang-switcher.open .lang-toggle::after { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  padding: 8px;
  background: rgba(10, 12, 18, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s var(--ease);
  z-index: 200;
}
.lang-switcher.open .lang-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 14px;
  background: none;
  border: none;
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}
.lang-option:hover {
  background: rgba(255, 255, 255, 0.05);
}
.lang-option.active {
  background: var(--gold-soft);
  color: var(--gold-2);
}
.lang-flag {
  font-size: 1.05rem;
  width: 22px;
  text-align: center;
}
.lang-short {
  margin-left: auto;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
}
.lang-option.active .lang-short { color: var(--gold); }

@media (max-width: 860px) {
  .lang-switcher {
    order: -1;
    margin-left: auto;
    margin-right: 8px;
  }
  .lang-menu { right: 0; }
}

/* ============== RTL adjustments (Arabic) ============== */

body.rtl {
  font-family: 'Segoe UI', Tahoma, sans-serif;
}
body.rtl h1, body.rtl h2, body.rtl h3, body.rtl h4 {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  letter-spacing: 0;
}
body.rtl .serif,
body.rtl .manifesto-text,
body.rtl .bio-monogram,
body.rtl .milestone-year,
body.rtl .stat-value,
body.rtl .case-headline,
body.rtl .case-meta-value,
body.rtl .marquee-item,
body.rtl .timeline-step h3,
body.rtl .timeline-num,
body.rtl .footer-col h4,
body.rtl .testimonial-text,
body.rtl .value-item h3,
body.rtl .price-card .price-amount strong,
body.rtl .logo {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  letter-spacing: 0;
}
body.rtl .section-head.left { text-align: right; }
body.rtl .timeline { padding-left: 0; padding-right: 40px; }
body.rtl .timeline::before { left: auto; right: 11px; }
body.rtl .timeline-step::before { left: auto; right: -40px; }
body.rtl .timeline-step::after { left: auto; right: -34px; }
body.rtl .nav-cta { padding: 11px 20px !important; }
body.rtl .btn-arrow::after { content: '←'; }
body.rtl .btn-arrow:hover::after { transform: translateX(-5px); }
body.rtl .service-link::after { content: '←'; }
body.rtl .service-card:hover .service-link::after { transform: translateX(-4px); }
body.rtl .contact-detail:hover { transform: translateX(-3px); }
body.rtl .lang-menu { right: auto; left: 0; }
body.rtl .lang-short { margin-left: 0; margin-right: auto; }
body.rtl .map-overlay { left: auto; right: 24px; }
body.rtl .price-card.featured::before { right: auto; left: 24px; }
body.rtl .step::before { right: auto; left: 24px; }
body.rtl .case-meta { gap: 28px; }
body.rtl .marquee-track { animation-direction: reverse; }

/* ============== Hero background image ============== */

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('hero-mountains.jpg');
  background-size: cover;
  background-position: center 35%;
  filter: grayscale(1) brightness(0.6) contrast(1.15);
  z-index: 0;
  transform: scale(1.05);
  animation: kenburns 28s ease-in-out infinite alternate;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 18, 15, 0.5) 0%, rgba(18, 18, 15, 0.78) 70%, var(--bg-0) 100%),
    linear-gradient(90deg, rgba(18, 18, 15, 0.7) 0%, rgba(18, 18, 15, 0.25) 55%, rgba(18, 18, 15, 0.55) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 3; }
.hero .orb { z-index: 2; }

@keyframes kenburns {
  0% { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.12) translate(-2%, -1%); }
}

/* ============== Mobile improvements ============== */

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .container { padding: 0 20px; }

  h1 { font-size: clamp(2rem, 8vw, 2.8rem); line-height: 1.15; }
  h2 { font-size: clamp(1.6rem, 6.5vw, 2.2rem); line-height: 1.2; }
  h3 { font-size: 1.15rem; }

  .nav-inner { padding: 14px 18px; }
  .logo-name { font-size: 1.05rem; }
  .logo-mark { width: 32px; height: 32px; }
  .logo-sub { font-size: 0.5rem; letter-spacing: 0.22em; }

  .hero {
    padding-top: 50px;
    padding-bottom: 60px;
    min-height: auto;
  }
  .hero h1 { margin-bottom: 1.2rem; }
  .hero .lead {
    font-size: 1.02rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-cta .btn { width: 100%; padding: 14px 20px; }
  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 36px;
    font-size: 0.85rem;
  }
  .hero-meta-item { gap: 8px; }
  .hero-bg-image { background-position: center; }

  .marquee { padding: 16px 0; }
  .marquee-item { font-size: 1.05rem; gap: 32px; }
  .marquee-track { gap: 32px; }

  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item {
    padding: 24px 12px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .stat-value { font-size: 2rem; }
  .stat-label { font-size: 0.7rem; letter-spacing: 0.08em; }

  .manifesto { padding: 70px 0; }
  .manifesto-text {
    font-size: clamp(1.3rem, 5.5vw, 1.9rem);
    line-height: 1.3;
  }
  .manifesto-sign { font-size: 0.72rem; margin-top: 28px; }
  .manifesto-sign::before, .manifesto-sign::after { width: 30px; }

  .section-head { margin-bottom: 40px; }
  .section-head p { font-size: 1rem; }
  .gold-line { margin-bottom: 22px; }

  .services-grid,
  .grid-3,
  .pricing-grid,
  .cases,
  .testimonials,
  .values-grid,
  .compare,
  .industries,
  .process { grid-template-columns: 1fr; gap: 16px; }
  .industries { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .service-card,
  .case,
  .compare-col,
  .value-item,
  .testimonial { padding: 28px 24px; }

  .service-card h3 { font-size: 1.45rem; }
  .case-headline { font-size: 1.35rem; }

  .case-meta {
    flex-wrap: wrap;
    gap: 18px;
  }
  .case-meta-value { font-size: 1.15rem; }

  .compare-col h3 { font-size: 1.5rem; margin-bottom: 20px; }
  .compare-list li { font-size: 0.93rem; padding: 10px 0; }

  .industry { padding: 20px 12px; }
  .industry-icon { font-size: 1.5rem; margin-bottom: 8px; }
  .industry-name { font-size: 0.85rem; }

  .timeline { padding-left: 26px; }
  .timeline-step { margin-bottom: 38px; }
  .timeline-step::before {
    left: -26px; top: 8px;
    width: 18px; height: 18px;
  }
  .timeline-step::after {
    left: -21px; top: 13px;
    width: 8px; height: 8px;
  }
  .timeline-step h3 { font-size: 1.4rem; }

  .cta-banner {
    padding: 50px 24px;
  }
  .cta-banner h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .cta-banner p { font-size: 1rem; }

  .bio { gap: 32px; }
  .bio-monogram { font-size: 7rem; }

  .form { padding: 28px 22px; }
  .field input, .field textarea, .field select { padding: 13px 14px; font-size: 0.95rem; }
  .contact-detail { padding: 14px; gap: 12px; }
  .contact-detail-value { font-size: 0.92rem; }

  footer { padding: 50px 0 24px; }
  .footer-grid { gap: 28px; margin-bottom: 32px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    font-size: 0.78rem;
  }

  .lang-switcher { margin: 0; }
  .lang-toggle { padding: 7px 12px; font-size: 0.78rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 2.05rem; }
  .nav-inner { padding: 12px 14px; }
  .logo { gap: 10px; }
  .logo-mark { width: 28px; height: 28px; }
  .logo-name { font-size: 1rem; }
  .logo-sub { display: none; }

  .stats-strip { grid-template-columns: 1fr; }
  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
    padding: 22px 12px;
  }
  .stat-item:last-child { border-bottom: none; }

  .marquee-item { font-size: 0.95rem; }

  .industries { grid-template-columns: repeat(2, 1fr); }
  .industry-icon { font-size: 1.3rem; }

  .case-meta { gap: 16px; }

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

/* ============== EST badge ============== */

.est-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 18px 8px 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
}
.est-badge-seal {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #06070a;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0;
  box-shadow: 0 0 16px var(--gold-glow);
}
.est-badge-text {
  display: flex; flex-direction: column;
  font-size: 0.78rem;
  line-height: 1.2;
}
.est-badge-text strong {
  color: #fff;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
}
.est-badge-text span {
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

/* Hero word rotator */
.rotator {
  display: inline-block;
  position: relative;
  min-width: 8ch;
  text-align: left;
}
.rotator-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  position: absolute;
  left: 0; top: 0;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rotator-word.active {
  opacity: 1;
  transform: translateY(0);
}
.rotator-word.exiting {
  opacity: 0;
  transform: translateY(-20px);
}

/* ============== Marquee ticker ============== */

.marquee {
  position: relative;
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.04), transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll-x 45s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 60px;
  font-weight: 500;
}
.marquee-item::after {
  content: '◆';
  color: var(--gold);
  font-size: 0.7rem;
}
.marquee-item:last-child::after { display: inline; }
@keyframes scroll-x {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============== Manifesto ============== */

.manifesto {
  padding: 140px 0;
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.04), transparent);
}
.manifesto-text {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  font-weight: 500;
}
.manifesto-text .gold-text {
  font-weight: 600;
}
.manifesto-sign {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.manifesto-sign::before,
.manifesto-sign::after {
  content: '';
  width: 50px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.manifesto-sign::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ============== Featured engagements ============== */

.cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.case {
  position: relative;
  padding: 36px 34px 32px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.case:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
}
.case-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 999px;
  margin-bottom: 20px;
}
.case-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 14px;
}
.case-summary {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 22px;
}
.case-meta {
  display: flex;
  gap: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.case-meta div {
  display: flex; flex-direction: column;
}
.case-meta-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.case-meta-value {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-2);
  font-size: 1.3rem;
  line-height: 1;
}

/* ============== Compare (Boutique vs Big firm) ============== */

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 760px) { .compare { grid-template-columns: 1fr; } }
.compare-col {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  position: relative;
}
.compare-col.bad {
  background: var(--bg-1);
  border: 1px solid var(--border);
}
.compare-col.good {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.05), transparent);
  border: 1px solid rgba(212, 175, 55, 0.25);
}
.compare-label {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.compare-col.bad .compare-label { color: var(--text-muted); }
.compare-col.good .compare-label { color: var(--gold); }
.compare-col h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  margin-bottom: 26px;
  color: #fff;
}
.compare-list {
  list-style: none;
  display: grid;
  gap: 12px;
}
.compare-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.97rem;
  line-height: 1.55;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}
.compare-list li:last-child { border-bottom: none; }
.compare-col.bad .compare-list li::before {
  content: '✕';
  color: var(--text-dim);
  font-weight: 700;
  font-size: 1rem;
  margin-top: -1px;
}
.compare-col.good .compare-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  margin-top: -1px;
}
.compare-col.bad .compare-list li { color: var(--text-muted); }

/* ============== History Timeline (horizontal) ============== */

.history {
  position: relative;
  padding-top: 30px;
}
.history-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.history-rail::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(212, 175, 55, 0.1));
}
@media (max-width: 700px) {
  .history-rail::before { display: none; }
}
.milestone {
  position: relative;
}
.milestone-dot {
  width: 14px; height: 14px;
  background: var(--gold);
  border-radius: 50%;
  margin: 25px 0 18px;
  box-shadow: 0 0 0 6px var(--bg-0), 0 0 18px var(--gold-glow);
  position: relative;
  z-index: 2;
}
.milestone-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-2);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
}
.milestone-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 6px;
  color: #fff;
}
.milestone-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============== Section dividers ============== */

.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 8px auto 28px;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}
.divider-ornament::before,
.divider-ornament::after {
  content: '';
  width: 50px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.divider-ornament::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ============== Credentials strip ============== */

.creds {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px 50px;
  padding: 30px 0;
  opacity: 0.7;
}
.cred {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cred::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.6rem;
}

/* ============================================
   LIGHT PREVIEW OVERRIDES — Swiss Boutique
   ============================================ */

body { background: var(--bg-0); color: var(--text); }
body::before {
  background:
    radial-gradient(900px 600px at 85% -10%, rgba(29, 56, 120, 0.05), transparent 60%),
    radial-gradient(800px 600px at -10% 30%, rgba(29, 56, 120, 0.03), transparent 60%),
    radial-gradient(900px 700px at 50% 110%, rgba(29, 56, 120, 0.03), transparent 60%);
}
body::after {
  background-image:
    linear-gradient(rgba(14, 27, 61, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 27, 61, 0.022) 1px, transparent 1px);
}

h1, h2, h3, h4 { color: var(--text); }

.gradient-text {
  background: linear-gradient(135deg, var(--text) 0%, var(--text) 45%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav {
  background: rgba(232, 235, 240, 0.88);
  border-bottom: 1px solid var(--border);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(28, 35, 56, 0.06);
}
.nav-cta { color: #fff !important; }
.menu-toggle { color: var(--text); }

@media (max-width: 860px) {
  .nav-links {
    background: rgba(232, 235, 240, 0.98);
    border-bottom: 1px solid var(--border);
  }
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #fff;
}
.btn-ghost {
  background: rgba(28, 35, 56, 0.03);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  background: rgba(28, 35, 56, 0.07);
  border-color: rgba(28, 35, 56, 0.32);
}

.service-card {
  background: var(--bg-1);
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  box-shadow: 0 20px 50px rgba(28, 35, 56, 0.10);
  border-color: rgba(45, 90, 63, 0.30);
}
.service-card h3 { color: var(--text); }

.industry { background: var(--bg-1); box-shadow: var(--shadow-sm); }
.industry:hover { background: var(--bg-2); border-color: rgba(45, 90, 63, 0.28); }

.stats-strip { background: rgba(28, 35, 56, 0.03); }
.stat-value { color: var(--text); }
.stat-value .gold { color: var(--gold); }

.timeline-step::before { background: var(--bg-0); }
.milestone-dot {
  box-shadow: 0 0 0 6px var(--bg-0), 0 0 18px var(--gold-glow);
}
.milestone-title { color: var(--text); }

.case { background: var(--bg-1); box-shadow: var(--shadow-sm); }
.case-headline { color: var(--text); }

.compare-col.bad { background: var(--bg-1); box-shadow: var(--shadow-sm); }
.compare-col h3 { color: var(--text); }
.compare-list li { border-bottom: 1px dashed rgba(28, 35, 56, 0.10); }

.bio-visual {
  background: linear-gradient(135deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
}
.bio-visual::before {
  background: radial-gradient(circle at 30% 20%, rgba(45, 90, 63, 0.11), transparent 60%);
}
.bio-visual::after { border-color: rgba(45, 90, 63, 0.28); }
.bio-logo-name { color: var(--text); }

.cta-banner {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border-color: rgba(45, 90, 63, 0.28);
  box-shadow: var(--shadow);
}
.cta-banner::before {
  background: radial-gradient(circle, var(--gold-2) 0%, transparent 60%);
  opacity: 0.20;
}

.contact-detail { background: var(--bg-1); box-shadow: var(--shadow-sm); }
.contact-detail-value { color: var(--text); }

.form { background: var(--bg-1); box-shadow: var(--shadow); }
.field input, .field textarea, .field select {
  background: var(--bg-2);
  color: var(--text);
}

.value-item { background: var(--bg-1); box-shadow: var(--shadow-sm); }

footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.marquee {
  background: linear-gradient(180deg, rgba(31, 49, 88, 0.035), transparent);
}
.manifesto {
  background: linear-gradient(180deg, transparent, rgba(31, 49, 88, 0.03), transparent);
}
.manifesto-text { color: var(--text); }

.tag { background: rgba(28, 35, 56, 0.04); }

.lang-toggle {
  background: rgba(28, 35, 56, 0.04);
  color: var(--text);
}
.lang-toggle:hover { background: rgba(28, 35, 56, 0.07); }
.lang-menu {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 50px rgba(28, 35, 56, 0.15);
}
.lang-option:hover { background: rgba(28, 35, 56, 0.05); }

.testimonial { background: var(--bg-1); box-shadow: var(--shadow-sm); }
.testimonial-text { color: var(--text); }
.testimonial-name { color: var(--text); }
.testimonial-avatar { color: #fff; }

.est-badge { background: rgba(28, 35, 56, 0.03); }
.est-badge-seal { color: #fff; }
.est-badge-text strong { color: var(--text); }

/* Hero: visible mountains, green meadow faded into cool grey */
.hero-bg-image {
  background-position: center 12%;
  background-size: 115% auto;
  filter: grayscale(0.85) brightness(1.0) contrast(0.95) opacity(0.85);
}
.hero-bg-overlay {
  background:
    linear-gradient(180deg,
      rgba(232, 235, 240, 0.10) 0%,
      rgba(232, 235, 240, 0.22) 25%,
      rgba(232, 235, 240, 0.62) 50%,
      rgba(232, 235, 240, 0.92) 72%,
      var(--bg-0) 90%),
    linear-gradient(90deg,
      rgba(232, 235, 240, 0.30) 0%,
      rgba(232, 235, 240, 0.10) 50%,
      rgba(232, 235, 240, 0.28) 100%);
}
.hero h1 { color: var(--text); }
.hero .lead { color: var(--text-muted); }

.case-meta-value { color: var(--gold); }
