/* =========================================================
   LICHTEN & BIRRER RECHTSANWAELTE
   Diamond-feel copper + cream + EB Garamond + Roboto.
   Conservative editorial grid for a Zurich Wirtschaftskanzlei.
   ========================================================= */

:root {
  /* Surfaces — Swiss private-bank cream */
  --cream: #f0eee5;
  --paper: #f7f5ec;
  --paper-2: #e6e3d6;
  --white-bright: #ffffff;

  /* Ink — Bahnhofstrasse navy */
  --navy: #1a2434;
  --ink: #0d1325;
  --steel: #4a5564;
  --steel-soft: #7a8290;

  /* Warm muted gold accent — Swiss banking signature */
  --copper: #b8924a;
  --copper-deep: #8c6f33;
  --copper-soft: rgba(184, 146, 74, 0.10);
  --accent: #b8924a;
  --accent-deep: #8c6f33;
  --accent-soft: rgba(184, 146, 74, 0.10);

  /* Lines */
  --rule: #d9d6c9;
  --rule-strong: #b8b4a4;

  /* Type — Cormorant Garamond display (elegant Garamond serif) + Inter body */
  --f-display: 'Cormorant Garamond', 'Cormorant', 'EB Garamond', 'Garamond', 'Times New Roman', serif;
  --f-body: 'Inter', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --f-mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  /* Layout */
  --wrap: 1240px;
  --wrap-narrow: 920px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 10vw, 8rem);
  --radius: 4px;
  --radius-md: 6px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap: cubic-bezier(0.4, 0, 0.2, 1);

  /* Type scale (fluid) */
  --t-mega: clamp(3rem, 8vw, 6rem);
  --t-hero: clamp(2.6rem, 7.5vw, 5.6rem);
  --t-h1: clamp(2rem, 4.6vw, 3.4rem);
  --t-h2: clamp(1.55rem, 3vw, 2.3rem);
  --t-h3: clamp(1.1rem, 1.8vw, 1.35rem);
  --t-lead: clamp(1rem, 1.3vw, 1.15rem);
  --t-body: 16px;
  --t-small: 14px;
  --t-eyebrow: 11px;
}

/* =================== RESET =================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { min-height: 100%; }
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--copper); color: var(--cream); }

body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: var(--t-body);
  line-height: 1.65;
  color: var(--navy);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Subtle paper grain — gives the whole site a tactile editorial feel */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.45 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}
.nav, .mobile { z-index: 60; }

/* =================== TYPOGRAPHY =================== */
.display, h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.005em;
}

h1 { font-size: var(--t-h1); font-weight: 500; }
h2 { font-size: var(--t-h2); font-weight: 500; }
h3 { font-size: var(--t-h3); font-weight: 600; line-height: 1.2; letter-spacing: 0; }
h4 { font-family: var(--f-body); font-size: 0.95rem; font-weight: 500; letter-spacing: 0; }

em, .italic { font-style: italic; font-weight: 400; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: var(--t-eyebrow);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--copper);
}
.eyebrow--steel { color: var(--steel); }

.lead {
  font-size: var(--t-lead);
  color: var(--steel);
  line-height: 1.6;
  max-width: 62ch;
}

.mono {
  font-family: var(--f-mono);
  font-size: var(--t-small);
  letter-spacing: 0.03em;
}

.serif-italic {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
}

/* Copper underline for emphasized names */
.under {
  background-image: linear-gradient(var(--copper), var(--copper));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  padding-bottom: 2px;
}

/* =================== LAYOUT =================== */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  position: relative;
}
.section--tight {
  padding-top: clamp(2.25rem, 6vw, 4rem);
  padding-bottom: clamp(2.25rem, 6vw, 4rem);
}
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: var(--cream); }
.section--ink .eyebrow { color: var(--copper); }
.section--ink .lead { color: rgba(246, 242, 232, 0.78); }

.rule {
  height: 1px;
  width: 100%;
  background: var(--rule);
  border: 0;
  margin: 0;
}

/* =================== NAV =================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 242, 232, 0.94);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--rule); }

.nav__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0.95rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.brand__mark {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0;
}
.brand__amp {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-size: 1.55rem;
}
.brand__suffix {
  font-family: var(--f-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--steel);
  margin-left: 0.35rem;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 0.25rem 0;
  letter-spacing: 0.02em;
  transition: color 0.2s var(--ease);
}
.nav__links a:hover { color: var(--copper); }
.nav__links a.is-active { color: var(--copper); }
.nav__links a.is-active::after {
  content: '';
  position: absolute;
  inset: auto 0 -2px 0;
  height: 1px;
  background: var(--copper);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Phone in header — gold pill, accent CTA */
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-deep);
  background: var(--accent-soft);
  border: 1px solid rgba(184, 146, 74, 0.35);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav__phone:hover {
  background: var(--accent);
  color: var(--white-bright);
  border-color: var(--accent);
}
.nav__phone:hover::before { background: var(--white-bright); }
.nav__phone::before {
  content: '';
  width: 13px;
  height: 13px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M6.6 10.8c1.4 2.8 3.8 5.2 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.3 1.1.4 2.3.6 3.5.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1-9.4 0-17-7.6-17-17 0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.5.1.4 0 .8-.3 1l-2.1 2.3z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M6.6 10.8c1.4 2.8 3.8 5.2 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.3 1.1.4 2.3.6 3.5.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1-9.4 0-17-7.6-17-17 0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.5.1.4 0 .8-.3 1l-2.1 2.3z'/></svg>") center/contain no-repeat;
  transition: background 0.2s var(--ease);
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  padding: 0.35rem 0.6rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--paper);
}
.lang__btn {
  padding: 0.15rem 0.35rem;
  color: var(--steel);
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s var(--ease);
}
.lang__btn:hover { color: var(--ink); }
.lang__btn.is-active { color: var(--copper); font-weight: 600; }
.lang__sep { color: var(--rule-strong); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}
.nav__cta:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--cream);
}

.burger {
  display: none;
  width: 38px;
  height: 38px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.mobile {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 55;
  padding: 5rem var(--gutter) 2rem;
  transform: translateY(-100%);
  transition: transform 0.45s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  overflow-y: auto;
}
.mobile.is-open { transform: translateY(0); }
.mobile a:not(.mobile__phone) {
  font-family: var(--f-display);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  padding: 0.85rem 0;
  letter-spacing: -0.005em;
  transition: color 0.2s var(--ease), padding-left 0.25s var(--ease);
}
.mobile a:not(.mobile__phone):hover,
.mobile a:not(.mobile__phone).is-active {
  color: var(--accent);
  padding-left: 0.5rem;
}

/* Phone CTA in mobile menu — full-width pill, prominent */
.mobile__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--f-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white-bright);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 1.05rem 1.5rem;
  margin-top: 1.75rem;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.mobile__phone::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M6.6 10.8c1.4 2.8 3.8 5.2 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.3 1.1.4 2.3.6 3.5.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1-9.4 0-17-7.6-17-17 0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.5.1.4 0 .8-.3 1l-2.1 2.3z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M6.6 10.8c1.4 2.8 3.8 5.2 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.3 1.1.4 2.3.6 3.5.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1-9.4 0-17-7.6-17-17 0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.5.1.4 0 .8-.3 1l-2.1 2.3z'/></svg>") center/contain no-repeat;
}
.mobile__phone:hover { background: var(--accent); border-color: var(--accent); }
.mobile__phone:hover::before { background: var(--white-bright); }

/* Language toggle in mobile menu — visible, larger */
.mobile__lang {
  margin-top: 1.5rem;
  align-self: stretch;
  display: flex !important;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  font-size: 13px;
}
.mobile__lang .lang__btn { padding: 0.5rem 0.75rem; font-size: 13px; }
.mobile__lang-label {
  display: block;
  margin-top: 1rem;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  text-align: center;
}

/* =================== BUTTONS — Advis chip style =================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.45rem;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: none;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
  cursor: pointer;
  text-align: center;
}
.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white-bright);
}
.btn--primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn--cream {
  background: transparent;
  border-color: var(--cream);
  color: var(--cream);
}
.btn--cream:hover {
  background: var(--cream);
  color: var(--ink);
}
.btn__arrow { display: inline-block; transition: transform 0.25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* =================== HERO — full-width Lady Justice bg =================== */
.hero {
  position: relative;
  padding: clamp(5rem, 12vw, 9rem) 0 clamp(4rem, 9vw, 7rem);
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/hero/justice.webp');
  background-size: cover;
  background-position: 70% center;
  background-attachment: fixed;
  z-index: -2;
  opacity: 0.55;
  filter: grayscale(0.35) contrast(0.95);
  animation: hero-bg-zoom 24s var(--ease) forwards;
}
@keyframes hero-bg-zoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--cream) 0%, rgba(240, 238, 229, 0.92) 35%, rgba(240, 238, 229, 0.62) 60%, rgba(240, 238, 229, 0.35) 100%),
    radial-gradient(70% 90% at 90% 50%, rgba(184, 146, 74, 0.10), transparent 60%);
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rule), transparent);
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg { background-attachment: scroll; animation: none; }
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 920px;
  position: relative;
}
.hero__sub {
  max-width: 60ch;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.hero__eyebrow-rule {
  width: 36px;
  height: 1px;
  background: var(--copper);
}
.hero__title {
  font-family: var(--f-display);
  font-size: var(--t-hero);
  font-weight: 500;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.hero__title em {
  font-weight: 500;
  font-style: italic;
  color: var(--accent);
}
.hero__sub {
  margin-top: 1.35rem;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--steel);
  max-width: 56ch;
  line-height: 1.65;
}
.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__meta {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  max-width: 540px;
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hero__meta-key {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--steel);
}
.hero__meta-val {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(26, 36, 52, 0.18);
}
.hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 90% 0%, rgba(184, 146, 74, 0.22), transparent 60%),
    radial-gradient(80% 60% at 0% 100%, rgba(26, 36, 52, 0.22), transparent 60%);
  z-index: 2;
  pointer-events: none;
}
.hero__seal {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1rem;
  background: rgba(246, 242, 232, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  border: 1px solid var(--rule);
}
.hero__seal-inner { display: inline-flex; align-items: center; gap: 0.65rem; }
.hero__seal-year {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.hero__seal-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.hero__seal-label::before { content: ''; display: inline-block; width: 18px; height: 1px; background: var(--accent); vertical-align: middle; margin-right: 0.5rem; }

.hero__photo {
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/hero/lawyer.webp');
  background-size: cover;
  background-position: center;
  background-color: var(--paper-2);
  overflow: hidden;
}
.hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 60%, rgba(26, 36, 52, 0.35) 100%),
    radial-gradient(70% 50% at 80% 20%, rgba(184, 146, 74, 0.14), transparent 65%);
  z-index: 1;
}

.hero__quote {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 3;
  padding: 1.1rem 1.35rem;
  background: var(--cream);
  border-left: 2px solid var(--copper);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.4;
}
.hero__quote-source {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}

/* =================== STATS =================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stat {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--rule);
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat__num em {
  font-style: italic;
  color: var(--copper);
  font-weight: 500;
}
.stat__label {
  margin-top: 0.6rem;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}

/* =================== SECTION HEAD =================== */
.s-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.s-head::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 60px;
  height: 2px;
  background: var(--copper);
}
.s-head__title {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 3.6vw, 2.6rem);
  font-weight: 500;
  line-height: 1.1;
}
.s-head__title em { font-style: italic; color: var(--copper); font-weight: 500; }
.s-head__lead {
  font-size: 1rem;
  color: var(--steel);
  line-height: 1.65;
  max-width: 52ch;
}

/* =================== TRUST STRIP =================== */
.trust-strip {
  background: var(--ink);
  color: rgba(246, 242, 232, 0.65);
  padding: clamp(1rem, 2vw, 1.35rem) 0;
  overflow: hidden;
  position: relative;
}
.trust-strip::before, .trust-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.trust-strip::before { left: 0; background: linear-gradient(to right, var(--ink), transparent); }
.trust-strip::after { right: 0; background: linear-gradient(to left, var(--ink), transparent); }
.trust-strip__inner {
  display: flex;
  gap: 3rem;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: trust-marquee 38s linear infinite;
  will-change: transform;
}
.trust-strip__inner > * { flex: none; display: inline-flex; align-items: center; gap: 0.75rem; }
.trust-strip__dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--copper);
}
@keyframes trust-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .trust-strip__inner { animation: none; justify-content: center; flex-wrap: wrap; white-space: normal; }
}

/* =================== HERITAGE CTA =================== */
.heritage {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.heritage__bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/hero/lawyer.webp');
  background-size: cover;
  background-position: center;
  filter: grayscale(0.6) brightness(0.55);
  z-index: -2;
}
.heritage__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(13, 19, 32, 0.85) 0%, rgba(13, 19, 32, 0.65) 50%, rgba(184, 146, 74, 0.40) 100%);
  z-index: -1;
}
.heritage__inner {
  padding: clamp(4rem, 9vw, 7rem) 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.heritage__quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.2;
  color: var(--cream);
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--copper);
}
.heritage__attrib {
  display: block;
  margin-top: 1rem;
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}
.heritage__copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.heritage__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
}
.heritage__title {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--cream);
}
.heritage__title em { font-style: italic; color: var(--copper); font-weight: 500; }
.heritage__body {
  color: rgba(246, 242, 232, 0.8);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 40ch;
}

/* =================== PRACTICE AREAS (2x2 Diamond grid) =================== */
.practice {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.practice__card {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 280px;
}
.practice__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 19, 32, 0.06);
  border-color: var(--copper);
}
.practice__card:hover .practice__arrow { transform: translate(4px, -4px); color: var(--copper); }
.practice__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}
.practice__title {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}
.practice__desc {
  color: var(--steel);
  font-size: 0.95rem;
  line-height: 1.6;
}
.practice__sub {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--steel);
}
.practice__sub li::before { content: '·'; margin-right: 0.4rem; color: var(--copper); }
.practice__arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--f-mono);
  font-size: 1.05rem;
  color: var(--steel);
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}

/* =================== PARTNERS / TEAM (1:1 photos, Diamond) =================== */
.partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.partner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.partner__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--paper-2);
  overflow: hidden;
  border: 1px solid var(--rule);
}
.partner__photo-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 500;
  font-style: italic;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(13, 19, 32, 0.05) 0%, rgba(13, 19, 32, 0.3) 45%, rgba(13, 19, 32, 0.8) 100%),
    radial-gradient(120% 80% at 40% 25%, rgba(184, 146, 74, 0.5), transparent 60%),
    linear-gradient(160deg, var(--steel) 0%, var(--navy) 60%, var(--ink) 100%);
  letter-spacing: -0.02em;
  padding-bottom: 1.1rem;
  filter: grayscale(0.55);
  transition: filter 0.4s var(--ease);
}
.partner:hover .partner__photo-inner { filter: grayscale(0); }
.partner__photo-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(140% 100% at 50% 0%, transparent 40%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.partner__photo-inner::after {
  content: '';
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  width: 22px;
  height: 22px;
  border-top: 1px solid rgba(246, 242, 232, 0.45);
  border-left: 1px solid rgba(246, 242, 232, 0.45);
}
.partner__photo--img {
  background-size: cover;
  background-position: center top;
  background-color: var(--paper-2);
  filter: grayscale(0.7);
  transition: filter 0.4s var(--ease);
}
.partner:hover .partner__photo--img { filter: grayscale(0); }

.partner__name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.2;
}
.partner__name em { font-style: italic; font-weight: 500; }
.partner__role {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
}
.partner__meta {
  font-size: 0.9rem;
  color: var(--steel);
  margin-top: 0.15rem;
  line-height: 1.55;
}
.partner__langs {
  margin-top: 0.35rem;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel-soft);
}

/* =================== INSIGHTS / ARTICLE CARDS =================== */
.insights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.insight {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  min-height: 320px;
  overflow: hidden;
}
.insight__image {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-2);
  filter: grayscale(0.5);
  transition: filter 0.4s var(--ease);
}
.insight:hover .insight__image { filter: grayscale(0); }
.insight__body {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.insight:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 19, 32, 0.06);
  border-color: var(--copper);
}
.insight__meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--rule);
}
.insight__cat { color: var(--copper); }
.insight__title {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}
.insight__excerpt {
  color: var(--steel);
  font-size: 0.92rem;
  line-height: 1.6;
}
.insight__foot {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--steel);
}
.insight__author { font-style: italic; font-family: var(--f-display); font-size: 0.95rem; }
.insight__read {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  position: relative;
}
.insight__read::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.insight:hover .insight__read::after { transform: scaleX(1); }

/* =================== OFFICES =================== */
.offices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.office {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.office__image {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-2);
  filter: grayscale(0.4);
  transition: filter 0.4s var(--ease);
}
.office:hover .office__image { filter: grayscale(0); }
.office__body {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.office__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 1.5rem;
}
.office__city {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
}
.office__city em { font-style: italic; color: var(--copper); font-weight: 500; }
.office__role {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}
.office__addr {
  font-style: normal;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.office__addr strong { font-weight: 600; }
.office__line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--rule);
  font-size: 0.95rem;
}
.office__line:last-child { border-bottom: 1px solid var(--rule); }
.office__line a:hover { color: var(--copper); }
.office__line-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}

/* =================== FORM =================== */
.form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--white-bright);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.form__section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}
.form__section:last-of-type { border-bottom: 0; padding-bottom: 0; }
.form__section-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
}
.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}
.form__row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}
.form__row--full { grid-column: 1 / -1; }
.form label, .form__legend {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  padding: 0;
}
.form input, .form select, .form textarea {
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--rule);
  background: var(--cream);
  color: var(--ink);
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  width: 100%;
}
.form input::placeholder, .form textarea::placeholder { color: var(--steel-soft); opacity: 0.8; }
.form input:hover, .form select:hover, .form textarea:hover { border-color: var(--rule-strong); }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--copper);
  background: var(--white-bright);
  box-shadow: 0 0 0 3px var(--copper-soft);
}
.form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='%23525c6b'><path d='M6 8 0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 10px 7px;
  padding-right: 2.25rem;
}
.form textarea { resize: vertical; min-height: 140px; }

/* Radio chip group */
.form__choices {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.form__choices > .chip + .chip { margin-top: 0; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--cream);
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--navy);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
  user-select: none;
}
.chip:hover { border-color: var(--rule-strong); }
.chip input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border: 1px solid var(--rule-strong);
  border-radius: 50%;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  position: relative;
  background: var(--white-bright);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.chip input[type="radio"]:checked {
  border-color: var(--copper);
  background: var(--copper);
  box-shadow: inset 0 0 0 2.5px var(--white-bright);
}
.chip:has(input:checked) {
  border-color: var(--copper);
  background: var(--copper-soft);
  color: var(--ink);
}
.chip input[type="radio"]:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
}

.form__disclaimer {
  padding: 1rem 1.15rem;
  background: var(--copper-soft);
  border-left: 2px solid var(--copper);
  font-size: 0.85rem;
  color: var(--steel);
  line-height: 1.55;
}
.form__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.form__privacy {
  color: var(--steel);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  max-width: 38ch;
  line-height: 1.6;
}

/* =================== CTA STRIP =================== */
.cta-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.cta-strip__title {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  font-weight: 500;
  line-height: 1.15;
}
.cta-strip__title em { font-style: italic; color: var(--copper); font-weight: 500; }

/* =================== FOOTER =================== */
.footer {
  background: var(--ink);
  color: rgba(246, 242, 232, 0.7);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: 1.5rem;
  position: relative;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.footer__brand {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.footer__brand em { font-style: italic; color: var(--copper); font-weight: 500; }
.footer__tag {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 32ch;
}
.footer__col h4 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col a {
  color: rgba(246, 242, 232, 0.7);
  font-size: 0.9rem;
  transition: color 0.2s var(--ease);
}
.footer__col a:hover { color: var(--cream); }
.footer__col li {
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(246, 242, 232, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(246, 242, 232, 0.55);
}
.footer__bottom a {
  color: rgba(246, 242, 232, 0.7);
  transition: color 0.2s var(--ease);
}
.footer__bottom a:hover { color: var(--cream); }

/* =================== PAGE HERO (sub-pages) =================== */
.page-hero {
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  background: var(--white-bright);
  border-bottom: 1px solid var(--rule);
}
.page-hero__bread {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1.5rem;
}
.page-hero__bread a:hover { color: var(--copper); }
.page-hero__sep { color: var(--rule-strong); }
.page-hero__title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -0.005em;
}
.page-hero__title em { font-style: italic; color: var(--copper); font-weight: 500; }
.page-hero__lead {
  font-size: var(--t-lead);
  color: var(--steel);
  line-height: 1.6;
  max-width: 62ch;
}

/* =================== AREA BLOCK (rechtsgebiete) =================== */
.area-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 4vw, 3rem) 0;
  align-items: start;
}
.area-block__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
}
.area-block__title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.area-block__sub {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1.5rem;
}
.area-block__body p {
  color: var(--steel);
  margin-bottom: 1rem;
  line-height: 1.7;
  font-size: 0.98rem;
}
.area-block__list {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}
.area-block__list li {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--navy);
  padding: 0.2rem 0;
}
.area-block__list li::before {
  content: '·';
  color: var(--copper);
  margin-right: 0.5rem;
}
.area-block__case {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  background: var(--copper-soft);
  border-left: 2px solid var(--copper);
}
.area-block__case-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.5rem;
}
.area-block__case-text {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.5;
}

/* =================== ABOUT GRID (kanzlei / kontakt) =================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

/* =================== VALUES =================== */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.value {
  padding: 1.75rem;
  background: var(--white-bright);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.value__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--copper);
  margin-bottom: 0.85rem;
}
.value__title {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.value__body { color: var(--steel); font-size: 0.93rem; line-height: 1.6; }

/* =================== TIMELINE =================== */
.timeline {
  position: relative;
  padding-left: 1.75rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0.4rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: var(--rule);
}
.timeline__item {
  position: relative;
  padding-bottom: 1.75rem;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 0.4rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--copper);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 1px var(--rule);
}
.timeline__year {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.4rem;
}
.timeline__title {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.timeline__body { color: var(--steel); font-size: 0.93rem; line-height: 1.55; }

/* =================== TEAM GRID =================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

/* =================== ARTICLE (insights long-form) =================== */
.article {
  max-width: 68ch;
  margin: 0 auto;
}
.article__hero {
  width: 100%;
  aspect-ratio: 21 / 9;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-2);
  border-radius: var(--radius);
  margin-bottom: 2rem;
  filter: grayscale(0.3);
}
.article h2 {
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  font-weight: 500;
  margin: 2rem 0 0.75rem;
  line-height: 1.15;
}
.article h3 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 1.75rem 0 0.5rem;
}
.article p {
  margin-bottom: 1rem;
  color: var(--navy);
  line-height: 1.75;
  font-size: 1rem;
}
.article blockquote {
  margin: 1.5rem 0;
  padding: 1.1rem 1.35rem;
  background: var(--copper-soft);
  border-left: 2px solid var(--copper);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.4;
}

/* =================== MAP CARD =================== */
.map-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
}
.map-card svg { width: 100%; height: 100%; }

/* =================== VALUE PROPS (Advis 3-col) =================== */
.valueprops {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.valueprop {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.valueprop__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
}
.valueprop__title {
  font-family: var(--f-display);
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.valueprop__body {
  color: var(--steel);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 34ch;
}

/* =================== SERVICE CATEGORIES (Advis Individuals / Businesses) =================== */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}
.service {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.service:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}
.service__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
}
.service__title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.service__lead {
  color: var(--steel);
  line-height: 1.6;
  font-size: 1rem;
}
.service__list {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.service__list li {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--navy);
}
.service__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  transform: translateY(-2px);
}
.service__cta {
  align-self: flex-start;
  margin-top: 0.5rem;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s var(--ease);
}
.service__cta:hover { gap: 0.6rem; }

/* =================== TESTIMONIAL (Advis client quote) =================== */
.testimonial {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(4rem, 9vw, 7rem) 0;
  position: relative;
}
.testimonial__wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.testimonial__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.testimonial__quote {
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--cream);
}
.testimonial__quote::before {
  content: '"';
  display: inline-block;
  color: var(--accent);
  margin-right: 0.3rem;
  font-weight: 500;
}
.testimonial__quote::after {
  content: '"';
  color: var(--accent);
  font-weight: 500;
  margin-left: 0.15rem;
}
.testimonial__attrib {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 242, 232, 0.6);
}
.testimonial__attrib-line {
  width: 36px;
  height: 1px;
  background: var(--accent);
}

/* =================== COMPARISON TABLE (Advis traditional vs us) =================== */
.compare {
  background: var(--cream);
}
.compare__head {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
}
.compare__h {
  padding: 1.5rem 1.25rem;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
}
.compare__h--us {
  background: var(--accent);
  color: var(--white-bright);
  font-weight: 600;
}
.compare__row {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--rule);
}
.compare__row:last-child { border-bottom: 1px solid var(--ink); }
.compare__cell {
  padding: 1.4rem 1.25rem;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  line-height: 1.5;
}
.compare__cell--label {
  color: var(--ink);
  font-weight: 500;
}
.compare__cell--other {
  color: var(--steel);
  border-left: 1px solid var(--rule);
  justify-content: center;
}
.compare__cell--us {
  color: var(--ink);
  background: rgba(184, 146, 74, 0.06);
  border-left: 1px solid var(--rule);
  justify-content: center;
  font-weight: 500;
}
.compare__check {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white-bright);
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.compare__x {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--rule-strong);
  color: var(--steel);
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* =================== UTILITIES =================== */
.flex { display: flex; }
.col { flex-direction: column; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.center { align-items: center; }
.between { justify-content: space-between; }

/* Scroll reveal animations — Advis-style smooth fade+slide */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1), transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* Stagger children: each child fades in with a delay */
.reveal-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-children.is-in > * { opacity: 1; transform: translateY(0); }
.reveal-children.is-in > *:nth-child(1) { transition-delay: 60ms; }
.reveal-children.is-in > *:nth-child(2) { transition-delay: 140ms; }
.reveal-children.is-in > *:nth-child(3) { transition-delay: 220ms; }
.reveal-children.is-in > *:nth-child(4) { transition-delay: 300ms; }
.reveal-children.is-in > *:nth-child(5) { transition-delay: 380ms; }
.reveal-children.is-in > *:nth-child(6) { transition-delay: 460ms; }

/* Hero copy stagger — heading first, then sub, then actions, then meta */
.hero__copy.reveal .hero__eyebrow,
.hero__copy.reveal .hero__title,
.hero__copy.reveal .hero__sub,
.hero__copy.reveal .hero__actions,
.hero__copy.reveal .hero__meta {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1), transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}
.hero__copy.reveal.is-in .hero__eyebrow { opacity: 1; transform: none; transition-delay: 80ms; }
.hero__copy.reveal.is-in .hero__title   { opacity: 1; transform: none; transition-delay: 180ms; }
.hero__copy.reveal.is-in .hero__sub     { opacity: 1; transform: none; transition-delay: 320ms; }
.hero__copy.reveal.is-in .hero__actions { opacity: 1; transform: none; transition-delay: 440ms; }
.hero__copy.reveal.is-in .hero__meta    { opacity: 1; transform: none; transition-delay: 560ms; }

/* =================== RESPONSIVE =================== */
@media (max-width: 1080px) {
  .nav__phone { display: none; }
  .brand__suffix { display: none; }
}

@media (max-width: 960px) {
  .nav__menu, .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__right > .lang { display: none; }
  .burger { display: flex; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 460px; margin: 0 auto; }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 0; border-bottom: 1px solid var(--rule); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: 0; }
  .stat:nth-last-child(2) { border-right: 1px solid var(--rule); }

  .s-head { grid-template-columns: 1fr; align-items: start; gap: 1rem; }

  .partners, .team-grid, .insights, .values, .valueprops {
    grid-template-columns: repeat(2, 1fr);
  }
  .services { grid-template-columns: 1fr; }
  .testimonial__wrap { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav__inner { padding: 0.85rem var(--gutter); }
  .brand__mark { font-size: 1.2rem; }
  .brand__amp { font-size: 1.25rem; }

  .practice { grid-template-columns: 1fr; }
  .partners, .team-grid, .insights, .values, .valueprops {
    grid-template-columns: 1fr;
  }
  .offices { grid-template-columns: 1fr; }
  .compare__head, .compare__row { grid-template-columns: 1fr; }
  .compare__cell--other, .compare__cell--us { border-left: 0; border-top: 1px solid var(--rule); }

  .form__grid { grid-template-columns: 1fr; }
  .area-block { grid-template-columns: 1fr; gap: 1.5rem; }
  .area-block__list { grid-template-columns: 1fr; }

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

  .cta-strip { grid-template-columns: 1fr; }

  .heritage__inner { grid-template-columns: 1fr; gap: 2rem; padding: clamp(3rem, 8vw, 5rem) 0; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .hero__meta { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--rule); }
  .stat:last-child { border-bottom: 0; }
}

/* =================== REDUCED MOTION =================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =================== FOCUS =================== */
*:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}
button:focus-visible, a:focus-visible, .lang__btn:focus-visible {
  outline-offset: 2px;
}
