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

:root {
  --cream:       #FDFBF7;
  --cream-2:     #F5EEE3;
  --sand:        #E2D4C0;
  --espresso:    #0C0905;
  --espresso-2:  #18120C;
  --espresso-3:  #241B12;
  --ink:         #1A1208;
  --ink-2:       #5A4830;
  --ink-3:       #9C8870;
  --gold:        #B8935A;
  --gold-l:      #D4AE78;
  --gold-d:      #8A6E3F;
  --gold-a:      rgba(184,147,90,.13);
  --w10:         rgba(255,255,255,.10);
  --w05:         rgba(255,255,255,.05);
  --w22:         rgba(255,255,255,.22);
  --b08:         rgba(12,9,5,.08);
  --b05:         rgba(12,9,5,.05);
  --nav-h:       72px;
  --max-w:       1320px;
  --ease-s:      cubic-bezier(0.16,1,0.3,1);
  --ease-x:      cubic-bezier(0.87,0,0.13,1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 1.1vw, 16px);
  font-feature-settings: "kern" 1, "liga" 1, "ss01" 1, "tnum" 0;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  background: var(--espresso);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: 100px;
  font-size: 12px;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: top 0.3s ease;
}
.skip-link:focus { top: 16px; }

html[lang="de"] .en { display: none; }
html[lang="en"] .de { display: none; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--gold-a); color: var(--ink); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.026;
  mix-blend-mode: multiply;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(2px);
  transition:
    opacity  0.9s var(--ease-s),
    transform 0.9s var(--ease-s),
    filter   0.9s var(--ease-s);
  transition-delay: var(--delay, 0ms);
  will-change: transform, opacity;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow--light       { color: rgba(253,251,247,.40); }
.eyebrow--light::before { background: var(--gold); }

.bezel-outer {
  background: var(--b05);
  border: 1px solid var(--b08);
  border-radius: 32px;
  padding: 8px;
}
.bezel-inner {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255,255,255,.5);
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--espresso);
  color: var(--cream);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 12px 12px 12px 22px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.45s var(--ease-s), box-shadow 0.45s var(--ease-s);
}
.cta-pill:hover  { transform: scale(1.025); box-shadow: 0 8px 32px rgba(12,9,5,.18); }
.cta-pill:active { transform: scale(0.98); }
.cta-pill[disabled] { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }

.cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
  transition: transform 0.45s var(--ease-s), background 0.3s ease;
}
.cta-pill:hover .cta-icon {
  transform: translate(2px,-2px) scale(1.08);
  background: var(--gold);
}

.link-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}
.link-ghost::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--ink-3);
  transform: scaleX(.7);
  transform-origin: left;
  transition: transform 0.5s var(--ease-s), background 0.3s ease;
}
.link-ghost:hover        { color: var(--ink); }
.link-ghost:hover::after { transform: scaleX(1); background: var(--gold); }


#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  display: flex;
  justify-content: center;
  padding: 18px clamp(16px,3vw,48px);
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(253,251,247,.84);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid var(--b08);
  border-radius: 100px;
  padding: 8px 8px 8px 22px;
  box-shadow: 0 2px 20px rgba(12,9,5,.06);
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
#nav.scrolled .nav-pill {
  background: rgba(253,251,247,.97);
  box-shadow: 0 4px 28px rgba(12,9,5,.10);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ink);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-2);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-s);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  background: none;
  border: 1px solid var(--sand);
  border-radius: 100px;
  padding: 5px 14px;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.lang-btn:hover { color: var(--ink); border-color: var(--ink-3); background: rgba(184,147,90,.05); }

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--espresso);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.hb-line {
  display: block;
  width: 15px;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  position: absolute;
  transition: transform 0.48s var(--ease-s), opacity 0.3s ease;
}
.hb-line:nth-child(1) { transform: translateY(-4px); }
.hb-line:nth-child(2) { transform: translateY(4px); }
.hamburger.active .hb-line:nth-child(1) { transform: rotate(45deg); }
.hamburger.active .hb-line:nth-child(2) { transform: rotate(-45deg); }


.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 700;
  background: rgba(12,9,5,.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s var(--ease-s);
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.mobile-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 8vw, 58px);
  font-weight: 300;
  color: rgba(253,251,247,.85);
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1.18;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity  0.5s var(--ease-s),
    transform 0.5s var(--ease-s),
    color    0.25s ease;
}
.mobile-link:hover { color: var(--gold-l); }
.mobile-overlay.open .mobile-link:nth-child(1) { opacity:1; transform:none; transition-delay: 80ms; }
.mobile-overlay.open .mobile-link:nth-child(2) { opacity:1; transform:none; transition-delay:140ms; }
.mobile-overlay.open .mobile-link:nth-child(3) { opacity:1; transform:none; transition-delay:200ms; }
.mobile-overlay.open .mobile-link:nth-child(4) { opacity:1; transform:none; transition-delay:260ms; }
.mobile-overlay.open .mobile-link:nth-child(5) { opacity:1; transform:none; transition-delay:320ms; }
.mobile-overlay.open .mobile-link:nth-child(6) { opacity:1; transform:none; transition-delay:380ms; }

.overlay-footer {
  position: absolute;
  bottom: 32px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  font-weight: 500;
  color: rgba(253,251,247,.28);
  text-transform: uppercase;
}


.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--nav-h) + 56px);
  padding-bottom: 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,147,90,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,147,90,.035) 1px, transparent 1px);
  background-size: 88px 88px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  align-items: center;
  gap: 56px;
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 10.2vw, 156px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 44px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold-d);
  font-weight: 400;
}

.hero-foot {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 520px;
}

.hero-sub {
  font-size: clamp(14px, 1.2vw, 16.5px);
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.8;
}

.hero-tagline {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  text-transform: uppercase;
}

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

.hero-right {
  align-self: stretch;
  position: relative;
}
.hero-right .bezel-outer { height: 100%; min-height: 540px; }
.hero-right .bezel-inner { height: 100%; }
.hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
}
.hero-meta-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sand), transparent);
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-line {
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:1; transform:scaleY(1); }
  50%      { opacity:.25; transform:scaleY(.55); }
}


.marquee {
  background: var(--espresso);
  color: rgba(253,251,247,.45);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.marquee-track .dot { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


.philosophy {
  padding: 144px 0;
  background: var(--espresso);
  color: var(--cream);
}

.phil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.phil-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5.5vw, 78px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-top: 4px;
}
.phil-h2 em {
  font-style: italic;
  color: var(--gold-l);
  font-weight: 400;
}

.phil-right { padding-top: 16px; }

.phil-lead {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253,251,247,.40);
  margin-bottom: 28px;
}

.phil-list {
  list-style: none;
  border-top: 1px solid var(--w10);
}
.phil-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--w10);
  transition: padding-left 0.5s var(--ease-s);
  position: relative;
}
.phil-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0; bottom: 0;
  width: 0;
  background: var(--gold);
  opacity: .35;
  transition: width 0.5s var(--ease-s);
}
.phil-item:hover { padding-left: 14px; }
.phil-item:hover::before { width: 2px; }

.phil-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--gold);
  min-width: 26px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.phil-text {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.phil-closing {
  margin-top: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(17px, 1.7vw, 23px);
  font-weight: 300;
  color: rgba(253,251,247,.62);
  line-height: 1.55;
}


.image-strip {
  height: 52vh;
  overflow: hidden;
}
.strip-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  will-change: transform;
}


.competencies {
  padding: 144px 0;
  background: var(--cream);
}

.section-head  { margin-bottom: 64px; }

.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6.5vw, 96px);
  font-weight: 300;
  line-height: 0.97;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-top: 6px;
}
.section-h2 em {
  font-style: italic;
  color: var(--gold-d);
  font-weight: 400;
}
.section-h2--light       { color: var(--cream); }
.section-h2--light em    { color: var(--gold-l); }

.comp-cascade {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}

.card-outer {
  background: var(--b05);
  border: 1px solid var(--b08);
  border-radius: 28px;
  padding: 6px;
  transition: transform 0.5s var(--ease-s), box-shadow 0.5s var(--ease-s);
  height: 100%;
}
.comp-card:hover .card-outer {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(12,9,5,.09);
}
.card-inner {
  background: var(--cream);
  border-radius: 23px;
  padding: clamp(28px, 3vw, 44px);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.85);
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
.card-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}
.card-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  margin-top: -4px;
  font-variant-numeric: tabular-nums;
}
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
}
.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: auto;
}
.card-list li {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-2);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.card-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 3px;
}

.comp-closing {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300;
  color: var(--ink-2);
}


.for-whom {
  padding: 144px 0;
  background: var(--espresso);
  color: var(--cream);
}

.whom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.whom-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7.5vw, 108px);
  font-weight: 300;
  line-height: 0.93;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-top: 6px;
}
.whom-h2 em {
  font-style: italic;
  color: var(--gold-l);
  font-weight: 400;
}

.whom-list {
  list-style: none;
  border-top: 1px solid var(--w10);
}
.whom-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--w10);
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 300;
  color: rgba(253,251,247,.82);
  line-height: 1.5;
}
.whom-dash {
  color: var(--gold);
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
  margin-top: 2px;
}
.whom-note {
  margin-top: 36px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253,251,247,.38);
}


.standard {
  padding: 144px 0;
  background: var(--cream-2);
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
  margin: 56px 0;
  background: var(--sand);
  border-radius: 24px;
  overflow: hidden;
}

.standard-item {
  background: var(--cream);
  padding: clamp(32px,3.5vw,52px) clamp(20px,2.5vw,36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.38s ease;
  cursor: default;
}
.standard-item:first-child { border-radius: 24px 0 0 24px; }
.standard-item:last-child  { border-radius: 0 24px 24px 0; }
.standard-item:hover { background: var(--espresso); }
.standard-item:hover .standard-text { color: var(--cream); }
.standard-item:hover .standard-n { color: var(--gold-l); }

.standard-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gold);
  transition: color 0.38s ease;
}
.standard-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(19px, 1.9vw, 27px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  transition: color 0.38s ease;
}

.standard-closing {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 300;
  color: var(--ink-2);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.55;
}


.process {
  padding: 144px 0;
  background: var(--espresso);
  color: var(--cream);
  position: relative;
}

.process-track {
  display: flex;
  gap: 14px;
  margin-top: 64px;
  position: relative;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,147,90,.25), transparent);
  z-index: 0;
}

.process-step {
  flex: 1;
  position: relative;
  z-index: 1;
}

.step-outer {
  background: var(--w05);
  border: 1px solid var(--w10);
  border-radius: 24px;
  padding: 5px;
  height: 100%;
  transition: transform 0.45s var(--ease-s), border-color 0.45s ease;
}
.process-step:hover .step-outer {
  transform: translateY(-6px);
  border-color: rgba(184,147,90,.35);
}

.step-inner {
  border-radius: 20px;
  padding: clamp(28px,2.8vw,40px) clamp(22px,2.2vw,32px);
  box-shadow: inset 0 1px 0 var(--w10);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: rgba(255,255,255,.015);
}

.step-n {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.step-text {
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 300;
  color: rgba(253,251,247,.78);
  line-height: 1.6;
}


.pullquote {
  padding: 144px 0;
  background: var(--cream-2);
  position: relative;
  overflow: hidden;
}
.pullquote::before,
.pullquote::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 1px;
  width: 14%;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.pullquote::before { left: 0; }
.pullquote::after  { right: 0; transform: scaleX(-1); }

.pq-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(28px, 4.4vw, 64px);
  line-height: 1.18;
  letter-spacing: -0.018em;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  color: var(--ink);
}
.pq-text em {
  font-style: italic;
  color: var(--gold-d);
  font-weight: 400;
}


.faq {
  padding: 144px 0;
  background: var(--cream);
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--sand);
}

.faq-item {
  border-bottom: 1px solid var(--sand);
  transition: background 0.4s ease;
}
.faq-item[open] {
  background: rgba(184,147,90,.04);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: padding 0.4s var(--ease-s);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item:hover summary { padding-left: 14px; }

.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform 0.45s var(--ease-s);
}
.faq-icon::before {
  top: 50%; left: 0; right: 0;
  height: 1px;
  transform: translateY(-50%);
}
.faq-icon::after {
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}
.faq-item[open] .faq-icon::after { transform: translateX(-50%) scaleY(0); }

.faq-a {
  padding: 0 8px 32px;
  max-width: 720px;
}
.faq-a p {
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.78;
}


.contact {
  padding: 144px 0;
  background: var(--cream);
  border-top: 1px solid rgba(184,147,90,.10);
}

.contact-wrap { max-width: 760px; margin: 0 auto; }

.contact-top { margin-bottom: 52px; }

.contact-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 116px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 10px 0 22px;
}
.contact-h2 em {
  font-style: italic;
  color: var(--gold-d);
  font-weight: 400;
}

.contact-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 300;
  color: var(--ink-3);
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.lbl-opt {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  opacity: .7;
  margin-left: 4px;
}
.field-group input,
.field-group select,
.field-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--sand);
  padding: 11px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  width: 100%;
  resize: none;
  caret-color: var(--gold);
  transition: border-color 0.3s ease;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.field-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8935A' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus { border-color: var(--gold); }

.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.55;
  cursor: pointer;
}
.check input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
}
.check a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--sand);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.3s ease;
}
.check a:hover { text-decoration-color: var(--gold); }

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

.form-success,
.form-error {
  display: none;
  margin-top: 24px;
  padding: 20px 28px;
  border-radius: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
}
.form-success {
  background: var(--gold-a);
  border: 1px solid rgba(184,147,90,.20);
  color: var(--ink-2);
}
.form-error {
  background: rgba(180,30,30,.06);
  border: 1px solid rgba(180,30,30,.18);
  color: #6B1414;
}
.form-success.visible,
.form-error.visible { display: block; }

.contact-divider {
  height: 1px;
  background: var(--sand);
  margin: 64px 0 40px;
}

.contact-meta {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
  font-style: normal;
}
.contact-meta > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cm-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.cm-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.3s ease;
}
a.cm-value:hover { color: var(--gold-d); }


.footer {
  background: var(--espresso-2);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--cream);
  line-height: 1;
}
.footer-name {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253,251,247,.55);
  margin-top: -4px;
}
.footer-claim {
  font-size: 13px;
  font-weight: 300;
  color: rgba(253,251,247,.45);
  line-height: 1.7;
  max-width: 360px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-col-h {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(253,251,247,.30);
  margin-bottom: 4px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(253,251,247,.65);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.25s ease, padding-left 0.3s ease;
}
.footer-links a:hover { color: var(--cream); padding-left: 6px; }

.footer-loc,
.footer-mail {
  font-size: 13px;
  font-weight: 300;
  color: rgba(253,251,247,.65);
  line-height: 1.7;
}
.footer-mail a {
  color: rgba(253,251,247,.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,147,90,.4);
  padding-bottom: 1px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.footer-mail a:hover { color: var(--cream); border-color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal {
  font-size: 11px;
  color: rgba(253,251,247,.32);
  letter-spacing: 0.02em;
}
.footer-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  color: rgba(253,251,247,.32);
}
.footer-meta a {
  color: rgba(253,251,247,.55);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-meta a:hover { color: var(--cream); }


@media (max-width: 1100px) {
  .hero-grid        { grid-template-columns: 1fr; }
  .hero-right       { display: none; }
  .comp-cascade     { grid-template-columns: 1fr; }
  .standard-grid    { grid-template-columns: 1fr 1fr; }
  .standard-item:first-child { border-radius: 24px 0 0 0; }
  .standard-item:last-child  { border-radius: 0 0 24px 0; }
  .standard-item:nth-child(2) { border-radius: 0 24px 0 0; }
  .standard-item:nth-child(3) { border-radius: 0 0 0 24px; }
  .process-track    { flex-wrap: wrap; }
  .process-step     { flex: 0 0 calc(50% - 7px); }
  .process-track::before { display: none; }
  .footer-top       { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand     { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }

  .hero       { padding-top: calc(var(--nav-h) + 24px); padding-bottom: 56px; min-height: auto; }
  .hero-h1    { font-size: clamp(56px, 15vw, 100px); margin-bottom: 28px; }
  .hero-cta-row { gap: 18px; }

  .philosophy,
  .competencies,
  .for-whom,
  .standard,
  .process,
  .pullquote,
  .faq,
  .contact    { padding: 80px 0; }

  .phil-grid  { grid-template-columns: 1fr; gap: 44px; }
  .whom-grid  { grid-template-columns: 1fr; gap: 44px; }
  .whom-h2    { font-size: clamp(52px,14vw,80px); }

  .standard-grid { grid-template-columns: 1fr; }
  .standard-item:first-child,
  .standard-item:nth-child(2),
  .standard-item:nth-child(3),
  .standard-item:last-child { border-radius: 0; }
  .standard-item:first-child { border-radius: 24px 24px 0 0; }
  .standard-item:last-child  { border-radius: 0 0 24px 24px; }

  .process-track { flex-direction: column; gap: 10px; }
  .process-step  { flex: none; }

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

  .faq-item summary { padding: 22px 4px; gap: 14px; }
  .faq-q  { font-size: clamp(18px, 5vw, 22px); }
  .faq-a  { padding: 0 4px 26px; }

  .field-row  { grid-template-columns: 1fr; }
  .contact-h2 { font-size: clamp(52px, 14vw, 88px); }
  .contact-meta { grid-template-columns: 1fr; gap: 22px; }

  .footer            { padding: 56px 0 28px; }
  .footer-top        { grid-template-columns: 1fr; gap: 32px; text-align: left; padding-bottom: 36px; }
  .footer-bottom     { flex-direction: column; align-items: flex-start; gap: 14px; }

  .marquee-track     { font-size: clamp(16px, 5vw, 20px); gap: 26px; }
  .marquee           { padding: 16px 0; }

  .hero-meta         { font-size: 8.5px; gap: 8px; }
}

@media (max-width: 420px) {
  .nav-pill  { gap: 10px; padding: 6px 6px 6px 16px; }
  .nav-mark  { font-size: 16px; }
  .lang-btn  { padding: 5px 10px; font-size: 10px; }
  .hero-h1   { letter-spacing: -0.03em; }
  .container { padding: 0 20px; }
}

@media print {
  .grain, .scroll-hint, .marquee, #nav, .mobile-overlay,
  .image-strip, .pullquote::before, .pullquote::after { display: none !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  .hero, .philosophy, .competencies, .for-whom,
  .standard, .process, .faq, .contact, .pullquote { padding: 24pt 0; background: #fff; color: #000; }
  .phil-h2, .whom-h2, .section-h2, .contact-h2, .hero-h1, .pq-text, .faq-q { color: #000; }
}
