:root {
  --ink: #0b1420;
  --ink-2: #12233d;
  --ink-3: #1c3358;
  --surface: #f7f1e4;
  --surface-dim: #ece1c4;
  --highlight: #c69a4c;
  --highlight-2: #e6c17e;
  --highlight-deep: #8c6829;
  --muted: #5a5f6d;
  --muted-on-dark: rgba(247, 241, 228, 0.62);
  --line: rgba(198, 154, 76, 0.26);
  --line-dark: rgba(247, 241, 228, 0.13);
  --shadow-1: 0 22px 50px rgba(11, 20, 32, 0.16);
  --shadow-2: 0 48px 100px rgba(11, 20, 32, 0.52);
  --r-sm: 5px;
  --r-md: 16px;
  --r-lg: 30px;
  --display: "Big Shoulders Display", sans-serif;
  --accent-serif: "Instrument Serif", serif;
  --body: "IBM Plex Sans", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--surface);
  color: var(--ink);
  line-height: 1.62;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.shell {
  max-width: 1264px;
  margin: 0 auto;
  padding: 0 34px;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.98;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.002em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 14.5px;
  padding: 16px 30px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  white-space: nowrap;
}

.btn-fill {
  background: linear-gradient(128deg, var(--highlight-2), var(--highlight-deep));
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(140, 104, 41, 0.34);
}

.btn-fill:hover { transform: translateY(-2px) rotate(-0.3deg); box-shadow: 0 20px 42px rgba(140, 104, 41, 0.44); }

.btn-line-dark {
  background: transparent;
  color: var(--ink-2);
  border-color: rgba(11, 20, 32, 0.24);
}

.btn-line-dark:hover { border-color: var(--ink-2); background: var(--ink-2); color: var(--surface); }

.btn-line-light {
  background: transparent;
  color: var(--surface);
  border-color: rgba(247, 241, 228, 0.32);
}

.btn-line-light:hover { border-color: var(--highlight-2); color: var(--highlight-2); }

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 22;
  font-size: 21px;
  line-height: 1;
}

.duo { position: relative; overflow: hidden; }
.duo img { filter: grayscale(0.55) contrast(1.08) brightness(0.9); }
.duo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(11, 20, 32, 0.72), rgba(198, 154, 76, 0.28) 82%);
  mix-blend-mode: multiply;
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1.is-visible { transition-delay: 0.08s; }
.reveal-delay-2.is-visible { transition-delay: 0.16s; }
.reveal-delay-3.is-visible { transition-delay: 0.24s; }

/* ===== HEADER ===== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 24px 0;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header .shell { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.site-header.is-scrolled {
  padding: 13px 0;
  background: rgba(11, 20, 32, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(11, 20, 32, 0.3);
}

.brand { display: flex; align-items: center; gap: 13px; }

.brand-seal {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--highlight-2), var(--highlight-deep));
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 21px;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word strong {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--surface);
  text-transform: uppercase;
}
.brand-word small {
  margin-top: 5px;
  font-family: var(--body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--highlight-2);
}

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

.nav-links > a, .nav-drop-trigger {
  font-size: 14px;
  font-weight: 500;
  color: rgba(247, 241, 228, 0.82);
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1.5px;
  background: var(--highlight-2);
  transition: width 0.25s ease;
}

.nav-links > a:hover { color: var(--surface); }
.nav-links > a:hover::after { width: 100%; }
.nav-drop-trigger:hover { color: var(--surface); }
.nav-drop-trigger .material-symbols-outlined { font-size: 17px; transition: transform 0.22s ease; }
.nav-drop { position: relative; }

.nav-drop-panel {
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  padding: 10px;
  min-width: 236px;
  box-shadow: var(--shadow-2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.nav-drop.is-open .nav-drop-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-drop.is-open .nav-drop-trigger .material-symbols-outlined { transform: rotate(180deg); }

.nav-drop-panel a {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(247, 241, 228, 0.8);
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-drop-panel a:hover { background: rgba(198, 154, 76, 0.14); color: var(--highlight-2); }

.nav-cta { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid rgba(247, 241, 228, 0.26);
  background: none;
}
.nav-toggle span { width: 18px; height: 1.5px; background: var(--surface); margin: 0 auto; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-scrim { display: none; position: fixed; inset: 0; background: rgba(11, 20, 32, 0.58); z-index: 550; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.mobile-scrim.is-open { opacity: 1; pointer-events: auto; }

.mobile-panel {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 86vw);
  background: var(--ink);
  z-index: 600;
  padding: 106px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow-y: auto;
}
.mobile-panel.is-open { transform: translateX(0); }
.mobile-panel a, .mobile-panel button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: rgba(247, 241, 228, 0.86);
  font-size: 16px;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-panel .mobile-sub { padding-left: 16px; display: none; }
.mobile-panel .mobile-sub.is-open { display: block; }
.mobile-panel .mobile-sub a { font-size: 14.5px; font-weight: 400; border-bottom: none; padding: 12px 0; }
.mobile-panel .btn { margin-top: 20px; width: 100%; justify-content: center; }

/* ===== HERO ===== */

.hero {
  position: relative;
  background: radial-gradient(ellipse 90% 70% at 14% -8%, #1c3358 0%, var(--ink-2) 44%, var(--ink) 100%);
  padding: 172px 0 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(198, 154, 76, 0.5) 1px, transparent 1.4px);
  background-size: 27px 27px;
  opacity: 0.08;
  pointer-events: none;
}

.hero-monogram {
  position: absolute;
  right: -3%;
  top: -9%;
  font-family: var(--display);
  font-size: 46vw;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(198, 154, 76, 0.14);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

.hero .shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 30px;
  align-items: end;
}

.hero-copy { padding-bottom: 78px; }

.hero-copy h1 {
  font-size: clamp(3rem, 6.4vw, 6.1rem);
  color: var(--surface);
  margin: 0;
}

.hero-copy .accent-line {
  display: block;
  font-family: var(--accent-serif);
  font-style: italic;
  text-transform: none;
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  color: var(--highlight-2);
  margin: 4px 0 26px;
  letter-spacing: 0;
}

.hero-copy p.lead {
  font-size: 17.5px;
  color: var(--muted-on-dark);
  max-width: 48ch;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-visual { position: relative; align-self: end; }

.hero-visual-frame {
  position: relative;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 42px 100%, 0 calc(100% - 42px));
  box-shadow: var(--shadow-2);
  border: 1px solid var(--line-dark);
}
.hero-visual-frame img { width: 100%; height: 596px; object-fit: cover; }

.hero-badge {
  position: absolute;
  left: -46px;
  bottom: 62px;
  z-index: 3;
  background: var(--surface);
  border-radius: var(--r-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-1);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 258px;
  transform: rotate(-2deg);
}
.hero-badge .seal-mini {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(150deg, var(--highlight-2), var(--highlight-deep));
  display: grid; place-items: center; color: var(--ink);
}
.hero-badge strong { display: block; font-family: var(--display); font-size: 17px; text-transform: uppercase; color: var(--ink-2); }
.hero-badge span { font-size: 12.5px; color: var(--muted); }

/* ===== STATS BAND ===== */

.stats-band { background: var(--ink); }
.stats-band .shell {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
}
.stats-band-item { padding: 58px 32px; border-left: 1px solid var(--line-dark); }
.stats-band-item:first-child { border-left: none; padding-left: 0; }
.stats-band-item .figure { font-family: var(--display); font-size: clamp(2.4rem, 4vw, 3.6rem); color: var(--highlight-2); line-height: 0.9; }
.stats-band-item:first-child .figure { color: var(--surface); }
.stats-band-item .caption { margin-top: 12px; font-size: 13.5px; color: var(--muted-on-dark); max-width: 22ch; }

/* ===== ABOUT ===== */

.about-block { padding: 132px 0; background: var(--surface); }
.about-block .shell { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 76px; align-items: center; }

.about-media { position: relative; }
.about-media img { width: 100%; height: 528px; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-1); }
.about-media-tag {
  position: absolute;
  right: -30px;
  top: 40px;
  background: var(--ink-2);
  color: var(--surface);
  padding: 20px 22px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-2);
  font-family: var(--accent-serif);
  font-style: italic;
  font-size: 17px;
  max-width: 210px;
  line-height: 1.42;
  border: 1px solid var(--line);
  transform: rotate(2deg);
}

.about-copy h2 { margin: 0 0 24px; font-size: clamp(2.3rem, 4vw, 3.5rem); }
.about-copy > p { color: var(--muted); font-size: 16.5px; max-width: 58ch; margin-bottom: 38px; }

.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 32px; }
.about-point { display: flex; gap: 16px; }
.about-point .ico { width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px; background: var(--surface-dim); display: grid; place-items: center; color: var(--highlight-deep); }
.about-point h4 { font-family: var(--body); font-weight: 700; font-size: 15.5px; text-transform: none; margin-bottom: 6px; color: var(--ink-2); }
.about-point p { font-size: 14px; color: var(--muted); }

/* ===== PRACTICE BENTO ===== */

.practice-block { padding: 132px 0; background: var(--surface-dim); }
.practice-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 60px; }
.practice-head h2 { font-size: clamp(2.3rem, 4vw, 3.5rem); max-width: 14ch; }
.practice-head p { color: var(--muted); max-width: 38ch; font-size: 15.5px; }

.practice-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  grid-template-areas:
    "a a b"
    "a a c"
    "d e f";
  gap: 22px;
}

.practice-card {
  background: var(--surface);
  border: 1px solid rgba(11, 20, 32, 0.08);
  border-radius: var(--r-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.practice-card:hover { transform: translateY(-6px) rotate(-0.4deg); box-shadow: var(--shadow-1); border-color: transparent; }

.p-a { grid-area: a; padding: 40px; justify-content: flex-end; min-height: 320px; }
.p-b { grid-area: b; }
.p-c { grid-area: c; }
.p-d { grid-area: d; }
.p-e { grid-area: e; }
.p-f { grid-area: f; }

.practice-card .ico { width: 52px; height: 52px; border-radius: 13px; background: var(--ink-2); color: var(--highlight-2); display: grid; place-items: center; margin-bottom: 20px; }
.p-a .ico { width: 62px; height: 62px; }
.practice-card h3 { font-size: 21px; margin-bottom: 12px; text-transform: none; }
.p-a h3 { font-size: 30px; }
.practice-card p { font-family: var(--body); font-size: 14.5px; color: var(--muted); flex-grow: 1; margin-bottom: 18px; font-weight: 400; text-transform: none; }
.practice-card .link { font-size: 13px; font-weight: 600; color: var(--ink-2); display: inline-flex; align-items: center; gap: 6px; }
.practice-card .link .material-symbols-outlined { font-size: 17px; transition: transform 0.22s ease; }
.practice-card:hover .link .material-symbols-outlined { transform: translateX(4px); }

/* ===== PROCESS ===== */

.process-block { padding: 132px 0; background: var(--ink); color: var(--surface); position: relative; overflow: hidden; }
.process-block::before { content: ""; position: absolute; right: -8%; top: -22%; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(198, 154, 76, 0.14), transparent 70%); }

.process-head { max-width: 600px; margin-bottom: 74px; position: relative; z-index: 2; }
.process-head h2 { color: var(--surface); font-size: clamp(2.3rem, 4vw, 3.5rem); margin-bottom: 20px; }
.process-head p { color: var(--muted-on-dark); font-size: 16px; }

.process-rail { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.process-rail::before { content: ""; position: absolute; top: 27px; left: 4%; right: 4%; height: 1px; background-image: linear-gradient(to right, var(--line-dark) 55%, transparent 0%); background-size: 12px 1px; }

.process-step:nth-child(2) { transform: translateY(24px); }
.process-step:nth-child(4) { transform: translateY(24px); }

.process-step .step-mark {
  width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--highlight);
  display: grid; place-items: center; font-family: var(--display); font-size: 21px; color: var(--highlight-2);
  background: var(--ink); margin-bottom: 26px;
}
.process-step h4 { color: var(--surface); font-size: 18.5px; text-transform: none; margin-bottom: 10px; }
.process-step p { color: var(--muted-on-dark); font-size: 14px; }

/* ===== TEAM ===== */

.team-block { padding: 132px 0; background: var(--surface); }
.team-head { max-width: 620px; margin: 0 auto 70px; text-align: center; }
.team-head h2 { font-size: clamp(2.3rem, 4vw, 3.5rem); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card:nth-child(2) { transform: translateY(-26px); }

.team-card { border-radius: var(--r-lg); overflow: hidden; background: var(--surface-dim); }
.team-card .duo img { width: 100%; height: 348px; object-fit: cover; }
.team-card-body { padding: 26px 26px 30px; }
.team-card-body .role { font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--highlight-deep); font-weight: 700; }
.team-card-body h3 { margin: 10px 0 10px; font-size: 23px; text-transform: none; }
.team-card-body p { font-family: var(--body); font-size: 14px; color: var(--muted); font-weight: 400; }

.team-cta { text-align: center; margin-top: 58px; }

/* ===== CASE FILE (SIGNATURE) ===== */

.casefile-block { padding: 132px 0; background: var(--surface-dim); }
.casefile-block .shell { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; }

.casefile-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 48px 44px;
  position: relative;
  box-shadow: var(--shadow-1);
  border: 1px solid rgba(11, 20, 32, 0.06);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.casefile-ref { display: flex; align-items: center; justify-content: space-between; padding-bottom: 24px; margin-bottom: 26px; border-bottom: 1px dashed rgba(11, 20, 32, 0.18); }
.casefile-ref .label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.casefile-ref .code { font-family: var(--display); font-size: 16px; color: var(--ink-2); }

.casefile-seal {
  position: absolute; top: -22px; right: 42px; width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(150deg, var(--highlight-2), var(--highlight-deep));
  display: grid; place-items: center; box-shadow: var(--shadow-1); color: var(--ink);
  font-family: var(--display); font-size: 26px; transform: rotate(-8deg);
}

.casefile-card h3 { font-size: 25px; margin-bottom: 16px; max-width: 20ch; text-transform: none; }
.casefile-card p { color: var(--muted); font-family: var(--body); font-weight: 400; font-size: 15px; margin-bottom: 26px; text-transform: none; }

.casefile-metrics { display: flex; gap: 38px; }
.casefile-metrics .m-num { font-family: var(--display); font-size: 28px; color: var(--highlight-deep); }
.casefile-metrics .m-lbl { font-size: 12px; color: var(--muted); margin-top: 4px; }

.testimony-card { display: flex; flex-direction: column; justify-content: center; padding: 12px; }
.testimony-mark { font-family: var(--accent-serif); font-size: 80px; font-style: italic; color: var(--highlight); line-height: 1; margin-bottom: 4px; }
.testimony-card p.quote { font-family: var(--accent-serif); font-style: italic; font-size: 27px; line-height: 1.42; color: var(--ink-2); max-width: 32ch; margin-bottom: 30px; }

.testimony-person { display: flex; align-items: center; gap: 14px; }
.testimony-person .avatar-mark { width: 48px; height: 48px; border-radius: 50%; background: var(--ink-2); color: var(--highlight-2); display: grid; place-items: center; font-family: var(--display); font-size: 16px; }
.testimony-person strong { display: block; font-family: var(--body); font-weight: 700; font-size: 15px; color: var(--ink-2); }
.testimony-person span { font-size: 13px; color: var(--muted); }

/* ===== APPOINTMENT CTA ===== */

.appoint-block { position: relative; background: linear-gradient(120deg, var(--ink) 0%, var(--ink-3) 100%); padding: 108px 0; overflow: hidden; }
.appoint-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(11, 20, 32, 0.8), rgba(11, 20, 32, 0.8)), url("https://images.pexels.com/photos/618613/pexels-photo-618613.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=900&w=1600");
  background-size: cover;
  background-position: center;
  filter: grayscale(0.4);
  opacity: 0.42;
  z-index: 0;
}
.appoint-block .shell { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }

.appoint-copy h2 { color: var(--surface); margin: 0 0 22px; font-size: clamp(2.3rem, 4vw, 3.6rem); max-width: 16ch; }
.appoint-copy p { color: var(--muted-on-dark); font-size: 16px; max-width: 44ch; margin-bottom: 36px; }

.appoint-panel {
  position: relative;
  background: rgba(247, 241, 228, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  padding: 38px;
  backdrop-filter: blur(6px);
  clip-path: polygon(0 14px, 14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}
.appoint-panel-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px dashed var(--line-dark); }
.appoint-panel-row:last-child { border-bottom: none; padding-bottom: 6px; }
.appoint-panel-row:first-child { padding-top: 0; }
.appoint-panel-row .ico { width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px; background: rgba(198, 154, 76, 0.16); color: var(--highlight-2); display: grid; place-items: center; }
.appoint-panel-row .lbl { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-on-dark); margin-bottom: 4px; }
.appoint-panel-row .val { font-size: 15px; color: var(--surface); font-weight: 600; }

/* ===== FOOTER ===== */

.site-footer { background: var(--ink); color: var(--muted-on-dark); padding: 88px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid var(--line-dark); }
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { font-size: 14px; max-width: 32ch; line-height: 1.7; }
.footer-col h5 { font-family: var(--body); font-weight: 700; font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--highlight-2); margin-bottom: 22px; }
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a { font-size: 14.5px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--surface); }
.footer-contact li { font-size: 14.5px; line-height: 1.6; }

.footer-bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 26px 0; font-size: 13px; }
.footer-bar .legal-links { display: flex; gap: 26px; }

/* ===== COOKIE CONSENT ===== */

.cookie-bar {
  position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 900;
  max-width: 860px; margin: 0 auto;
  background: var(--ink); color: rgba(247, 241, 228, 0.88);
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 26px 28px; box-shadow: var(--shadow-2);
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
}
.cookie-bar.is-hidden { display: none; }
.cookie-bar-text { flex: 1 1 320px; font-size: 13.5px; line-height: 1.6; }
.cookie-bar-text strong { display: block; font-family: var(--display); font-size: 18px; text-transform: uppercase; color: var(--surface); margin-bottom: 6px; }
.cookie-bar-text a { color: var(--highlight-2); font-weight: 600; }

.cookie-bar-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-btn { font-size: 13px; font-weight: 600; padding: 12px 20px; border-radius: var(--r-sm); border: 1px solid rgba(247, 241, 228, 0.26); background: transparent; color: var(--surface); transition: all 0.2s ease; }
.cookie-btn:hover { border-color: var(--highlight-2); color: var(--highlight-2); }
.cookie-btn.primary { background: linear-gradient(135deg, var(--highlight-2), var(--highlight-deep)); color: var(--ink); border-color: transparent; }
.cookie-btn.primary:hover { transform: translateY(-2px); }

.cookie-modal { position: fixed; inset: 0; z-index: 950; background: rgba(11, 20, 32, 0.62); display: none; align-items: center; justify-content: center; padding: 24px; }
.cookie-modal.is-open { display: flex; }
.cookie-modal-card { background: var(--surface); border-radius: var(--r-lg); padding: 42px; max-width: 520px; width: 100%; max-height: 86vh; overflow-y: auto; box-shadow: var(--shadow-2); }
.cookie-modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 8px; }
.cookie-modal-card h3 { font-size: 25px; }
.cookie-modal-close { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(11, 20, 32, 0.14); background: none; display: grid; place-items: center; flex-shrink: 0; color: var(--muted); }
.cookie-modal-card > p { font-family: var(--body); font-size: 14px; color: var(--muted); margin-bottom: 28px; text-transform: none; }

.cookie-pref-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 20px 0; border-top: 1px solid rgba(11, 20, 32, 0.1); }
.cookie-pref-row:first-of-type { border-top: none; }
.cookie-pref-row h4 { font-family: var(--body); font-weight: 700; font-size: 15px; text-transform: none; color: var(--ink-2); margin-bottom: 6px; }
.cookie-pref-row p { font-size: 13px; color: var(--muted); max-width: 34ch; }

.switch { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .track { position: absolute; inset: 0; background: rgba(11, 20, 32, 0.18); border-radius: 999px; transition: background 0.2s ease; }
.switch .track::before { content: ""; position: absolute; left: 3px; top: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: transform 0.2s ease; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); }
.switch input:checked + .track { background: var(--highlight); }
.switch input:checked + .track::before { transform: translateX(20px); }
.switch input:disabled + .track { background: var(--highlight-deep); opacity: 0.55; }

.cookie-modal-actions { display: flex; gap: 12px; margin-top: 30px; }
.cookie-modal-actions .btn { flex: 1; justify-content: center; }

/* ===== RESPONSIVE ===== */

@media (max-width: 1080px) {
  .hero .shell { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-top: 30px; }
  .hero-copy { padding-bottom: 40px; }
  .hero-visual-frame img { height: 420px; }
  .hero-monogram { font-size: 62vw; top: -4%; }
  .about-block .shell { grid-template-columns: 1fr; }
  .about-media img { height: 400px; }
  .practice-bento { grid-template-columns: repeat(2, 1fr); grid-template-areas: "a a" "b c" "d e" "f f"; }
  .p-a { min-height: 260px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card:nth-child(3) { grid-column: span 2; }
  .casefile-block .shell { grid-template-columns: 1fr; }
  .appoint-block .shell { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-band .shell { grid-template-columns: 1fr 1fr; }
  .stats-band-item:nth-child(3) { border-left: none; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { gap: 12px; }
  .site-header { background: rgba(11, 20, 32, 0.95); padding: 16px 0; }
  .mobile-scrim { display: block; }
  .mobile-panel { display: block; }
  .hero { padding: 132px 0 0; }
  .hero-badge { left: 18px; bottom: 24px; }
  .about-media-tag { right: 12px; }
  .about-points { grid-template-columns: 1fr; }
  .practice-bento { grid-template-columns: 1fr; grid-template-areas: "a" "b" "c" "d" "e" "f"; }
  .practice-head { flex-direction: column; align-items: flex-start; }
  .process-rail { grid-template-columns: 1fr 1fr; row-gap: 44px; }
  .process-rail::before { display: none; }
  .process-step:nth-child(2), .process-step:nth-child(4) { transform: none; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card:nth-child(2) { transform: none; }
  .team-card:nth-child(3) { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bar { flex-direction: column; align-items: flex-start; }
  .cookie-bar { left: 14px; right: 14px; bottom: 14px; padding: 22px; }
}

@media (max-width: 540px) {
  .shell { padding: 0 22px; }
  h1 { font-size: 2.6rem !important; }
  .about-block, .practice-block, .process-block, .team-block, .casefile-block { padding: 92px 0; }
  .appoint-block { padding: 84px 0; }
  .hero-actions .btn, .cookie-bar-actions .btn { width: 100%; justify-content: center; }
  .process-rail { grid-template-columns: 1fr; }
  .casefile-seal { right: 26px; }
  .stats-band .shell { grid-template-columns: 1fr; }
  .stats-band-item { border-left: none; padding: 40px 0; border-top: 1px solid var(--line-dark); }
  .stats-band-item:first-child { border-top: none; }
}
.nav-links > a.is-current { color: var(--surface); }
.nav-links > a.is-current::after { width: 100%; }
.mobile-panel a.is-current { color: var(--surface); }

.subhero { position: relative; padding-top: 172px; background: var(--ink); color: var(--surface); }
.subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(198, 154, 76, 0.5) 1px, transparent 1.4px);
  background-size: 27px 27px;
  opacity: 0.08;
  pointer-events: none;
}

.page-crumb { position: relative; z-index: 2; display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted-on-dark); margin-bottom: 26px; }
.page-crumb a { color: var(--muted-on-dark); transition: color 0.2s ease; }
.page-crumb a:hover { color: var(--highlight-2); }
.page-crumb span { opacity: 0.5; }

/* ===== BUREAU (o-kancelarii) ===== */

.bureau-hero { padding-bottom: 96px; }
.bureau-hero .shell { position: relative; z-index: 2; }
.bureau-hero-copy { max-width: 820px; }
.bureau-hero-copy h1 { font-size: clamp(2.8rem, 6vw, 5.4rem); color: var(--surface); margin-bottom: 22px; }
.bureau-hero-copy p { font-size: 17.5px; color: var(--muted-on-dark); max-width: 60ch; margin-bottom: 52px; }
.bureau-hero-frame { position: relative; border-radius: var(--r-lg) var(--r-lg) 0 0; overflow: hidden; }
.bureau-hero-frame img { width: 100%; height: 420px; object-fit: cover; }
.bureau-hero-stats {
  position: relative;
  z-index: 3;
  margin: -58px 30px 0;
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.bureau-hero-stats > div { padding: 34px 30px; border-left: 1px solid rgba(11, 20, 32, 0.08); text-align: center; }
.bureau-hero-stats > div:first-child { border-left: none; }
.bureau-hero-stats .num { font-family: var(--display); font-size: 34px; color: var(--highlight-deep); }
.bureau-hero-stats .lbl { margin-top: 6px; font-size: 12.5px; color: var(--muted); }

.bureau-values-block { padding: 128px 0; background: var(--surface-dim); }
.bureau-values-head { max-width: 640px; margin-bottom: 54px; }
.bureau-values-head h2 { font-size: clamp(2.2rem, 3.8vw, 3.3rem); }
.bureau-values-intro { margin-bottom: 76px; }
.bureau-value-list { display: flex; flex-direction: column; gap: 24px; max-width: 780px; }
.bureau-value-list li { display: flex; gap: 18px; }
.bureau-value-list .material-symbols-outlined { color: var(--highlight-deep); flex-shrink: 0; margin-top: 2px; }
.bureau-value-list strong { display: block; font-family: var(--body); font-weight: 700; font-size: 16px; color: var(--ink-2); margin-bottom: 6px; }
.bureau-value-list p { font-size: 14.5px; color: var(--muted); max-width: 60ch; }

.bureau-value-row { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.bureau-value-row.is-reverse { direction: rtl; }
.bureau-value-row.is-reverse > * { direction: ltr; }
.bureau-value-media img { width: 100%; height: 360px; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-1); }
.bureau-value-copy h3 { font-size: 26px; margin-bottom: 16px; text-transform: none; }
.bureau-value-copy p { color: var(--muted); font-family: var(--body); font-weight: 400; text-transform: none; font-size: 15.5px; max-width: 56ch; }

/* ===== VERTICAL TIMELINE (shared: bureau story + process steps) ===== */

.v-timeline-block { padding: 128px 0; background: var(--surface); }
.v-timeline-head { max-width: 660px; margin-bottom: 60px; }
.v-timeline-head h2 { font-size: clamp(2.2rem, 3.8vw, 3.3rem); margin-bottom: 18px; }
.v-timeline-head p { color: var(--muted); font-size: 16px; max-width: 62ch; }
.v-timeline { position: relative; padding-left: 38px; border-left: 1px dashed rgba(11, 20, 32, 0.18); display: flex; flex-direction: column; gap: 44px; }
.v-timeline-item { position: relative; }
.v-timeline-item::before {
  content: "";
  position: absolute;
  left: -45px;
  top: 5px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--highlight);
  box-shadow: 0 0 0 5px var(--surface), 0 0 0 6px var(--line);
}
.v-timeline-item .tag { font-family: var(--display); font-size: 22px; color: var(--highlight-deep); display: block; margin-bottom: 8px; }
.v-timeline-item h4 { font-family: var(--body); font-weight: 700; font-size: 16.5px; text-transform: none; color: var(--ink-2); margin-bottom: 8px; }
.v-timeline-item p { font-size: 14.5px; color: var(--muted); max-width: 64ch; }

.v-timeline-block--dark { background: var(--ink); color: var(--surface); }
.v-timeline-block--dark .v-timeline-head h2 { color: var(--surface); }
.v-timeline-block--dark .v-timeline-head p { color: var(--muted-on-dark); }
.v-timeline-block--dark .v-timeline { border-left-color: var(--line-dark); }
.v-timeline-block--dark .v-timeline-item::before { box-shadow: 0 0 0 5px var(--ink), 0 0 0 6px var(--line); }
.v-timeline-block--dark .v-timeline-item h4 { color: var(--surface); }
.v-timeline-block--dark .v-timeline-item p { color: var(--muted-on-dark); }
.v-timeline-block--dark .v-timeline-item .tag { color: var(--highlight-2); }

.v-timeline-faq { margin-top: 74px; background: var(--surface); border-radius: var(--r-lg); padding: 40px 42px; box-shadow: var(--shadow-1); }
.v-timeline-faq h3 { font-family: var(--body); font-weight: 700; font-size: 19px; text-transform: none; color: var(--ink-2); margin-bottom: 20px; }

/* ===== ACCORDION (services detail / individual FAQ / process FAQ) ===== */

.detail-accordion { display: flex; flex-direction: column; gap: 14px; }
.detail-accordion-item { background: var(--surface); border: 1px solid rgba(11, 20, 32, 0.09); border-radius: var(--r-md); padding: 6px 26px; transition: border-color 0.2s ease; }
.detail-accordion-item[open] { border-color: var(--line); }
.detail-accordion-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-family: var(--body);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--ink-2);
}
.detail-accordion-item summary::-webkit-details-marker { display: none; }
.detail-accordion-item summary::after {
  content: "+";
  font-family: var(--display);
  font-size: 26px;
  color: var(--highlight-deep);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.detail-accordion-item[open] summary::after { transform: rotate(45deg); }
.detail-accordion-item p { font-family: var(--body); font-weight: 400; font-size: 14.5px; color: var(--muted); padding-bottom: 24px; max-width: 72ch; text-transform: none; }

/* ===== SERVICES (uslugi-prawne) ===== */

.services-hero .shell { position: relative; z-index: 2; display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 64px; align-items: center; padding-bottom: 110px; }
.services-hero-media { order: -1; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-2); }
.services-hero-media img { width: 100%; height: 520px; object-fit: cover; }
.services-hero-copy h1 { font-size: clamp(2.6rem, 5.2vw, 4.6rem); color: var(--surface); margin-bottom: 22px; }
.services-hero-copy p { font-size: 17px; color: var(--muted-on-dark); max-width: 52ch; margin-bottom: 30px; }
.services-pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.services-pill { font-size: 12.5px; font-weight: 600; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line-dark); color: var(--muted-on-dark); }

.pricing-block { padding: 128px 0; background: var(--surface-dim); }
.pricing-head { max-width: 640px; margin-bottom: 56px; }
.pricing-head h2 { font-size: clamp(2.2rem, 3.8vw, 3.3rem); margin-bottom: 18px; }
.pricing-head p { color: var(--muted); font-size: 16px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card { background: var(--surface); border-radius: var(--r-md); padding: 36px 30px; border: 1px solid rgba(11, 20, 32, 0.06); }
.pricing-card .tag { font-family: var(--display); font-size: 15px; color: var(--highlight-deep); display: block; margin-bottom: 18px; }
.pricing-card h3 { font-size: 21px; margin-bottom: 14px; text-transform: none; }
.pricing-card p { font-family: var(--body); font-weight: 400; text-transform: none; font-size: 14.5px; color: var(--muted); }

/* ===== BUSINESS (klienci-biznesowi) ===== */

.business-hero {
  position: relative;
  padding-top: 172px;
  background: linear-gradient(115deg, var(--ink) 0 58%, var(--ink-3) 58% 100%);
  color: var(--surface);
  overflow: hidden;
}
.business-hero .shell { position: relative; z-index: 2; padding-bottom: 120px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: start; }
.business-hero-copy h1 { font-size: clamp(2.7rem, 5.6vw, 5rem); margin-bottom: 24px; }
.business-hero-copy p { font-size: 17.5px; color: var(--muted-on-dark); max-width: 50ch; margin-bottom: 34px; }
.business-hero-card { background: var(--surface); border-radius: var(--r-lg); padding: 34px; box-shadow: var(--shadow-2); margin-top: 30px; }
.business-hero-card .duo { border-radius: var(--r-md); overflow: hidden; margin-bottom: 22px; }
.business-hero-card .duo img { width: 100%; height: 190px; object-fit: cover; }
.business-hero-card .num { font-family: var(--display); font-size: 34px; color: var(--highlight-deep); }
.business-hero-card .lbl { font-size: 13px; color: var(--muted); margin-top: 6px; max-width: 30ch; }

.offer-block { padding: 128px 0; background: var(--surface-dim); }
.offer-head { max-width: 640px; margin-bottom: 56px; }
.offer-head h2 { font-size: clamp(2.2rem, 3.8vw, 3.3rem); }
.offer-list { display: flex; flex-direction: column; }
.offer-row { display: flex; gap: 30px; align-items: flex-start; padding: 30px 0; border-top: 1px solid rgba(11, 20, 32, 0.1); }
.offer-list .offer-row:first-child { border-top: none; padding-top: 0; }
.offer-row .idx { font-family: var(--display); font-size: 26px; color: var(--highlight-deep); width: 52px; flex-shrink: 0; }
.offer-row h3 { font-size: 19px; margin-bottom: 8px; text-transform: none; }
.offer-row p { font-family: var(--body); font-weight: 400; text-transform: none; font-size: 14.5px; color: var(--muted); max-width: 64ch; }

/* ===== INDIVIDUAL (klienci-indywidualni) ===== */

.individual-hero {
  position: relative;
  padding-top: 172px;
  background: radial-gradient(ellipse 80% 60% at 82% 0%, #1c3358 0%, var(--ink-2) 46%, var(--ink) 100%);
  overflow: hidden;
  color: var(--surface);
}
.individual-hero .shell { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; padding-bottom: 100px; }
.individual-hero-copy h1 { font-size: clamp(2.7rem, 5.6vw, 5rem); margin-bottom: 24px; }
.individual-hero-copy p { font-size: 17.5px; color: var(--muted-on-dark); max-width: 48ch; }
.individual-hero-media { position: relative; border-radius: 50% 50% 8% 50% / 55% 55% 8% 45%; overflow: hidden; box-shadow: var(--shadow-2); }
.individual-hero-media img { width: 100%; height: 460px; object-fit: cover; }

.situation-block { padding: 128px 0; background: var(--surface); }
.situation-head { max-width: 640px; margin-bottom: 56px; }
.situation-head h2 { font-size: clamp(2.2rem, 3.8vw, 3.3rem); }
.situation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.situation-grid .practice-card { min-height: 0; padding: 32px 28px; }

.reassure-block { padding: 128px 0; background: var(--surface-dim); }
.reassure-head { max-width: 640px; margin-bottom: 50px; }
.reassure-head h2 { font-size: clamp(2.2rem, 3.8vw, 3.3rem); }

/* ===== PROCESS (przebieg-wspolpracy) ===== */

.process-hero { position: relative; padding-top: 172px; background: var(--ink); color: var(--surface); overflow: hidden; }
.process-hero-numerals {
  position: absolute;
  right: -4%;
  bottom: -16%;
  font-family: var(--display);
  font-size: 15vw;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(198, 154, 76, 0.16);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  letter-spacing: 0.02em;
}
.process-hero .shell { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; padding-bottom: 110px; }
.process-hero-copy h1 { font-size: clamp(2.7rem, 5.6vw, 5rem); margin-bottom: 24px; }
.process-hero-copy p { font-size: 17.5px; color: var(--muted-on-dark); max-width: 50ch; }
.process-hero-media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-2); }
.process-hero-media img { width: 100%; height: 380px; object-fit: cover; }

/* ===== RESPONSIVE ===== */

@media (max-width: 1080px) {
  .subhero { padding-top: 132px; }
  .business-hero { padding-top: 132px; }
  .individual-hero { padding-top: 132px; }
  .process-hero { padding-top: 132px; }

  .bureau-hero-frame img { height: 340px; }
  .bureau-hero-stats { margin: -46px 18px 0; grid-template-columns: 1fr; }
  .bureau-hero-stats > div { border-left: none; border-top: 1px solid rgba(11, 20, 32, 0.08); }
  .bureau-hero-stats > div:first-child { border-top: none; }
  .bureau-value-row { grid-template-columns: 1fr; }
  .bureau-value-media img { height: 300px; }

  .services-hero .shell { grid-template-columns: 1fr; padding-bottom: 80px; }
  .services-hero-media img { height: 360px; }

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

  .business-hero .shell { grid-template-columns: 1fr; padding-bottom: 80px; }
  .business-hero-card { max-width: 420px; }

  .individual-hero .shell { grid-template-columns: 1fr; padding-bottom: 70px; }
  .individual-hero-media { order: -1; border-radius: 24px; }
  .individual-hero-media img { height: 320px; }
  .situation-grid { grid-template-columns: 1fr 1fr; }

  .process-hero .shell { grid-template-columns: 1fr; padding-bottom: 80px; }
  .process-hero-media { order: -1; }
  .process-hero-media img { height: 280px; }
  .process-hero-numerals { font-size: 24vw; }
}

@media (max-width: 860px) {
  .bureau-values-block, .v-timeline-block, .pricing-block, .offer-block, .situation-block, .reassure-block { padding: 92px 0; }
  .v-timeline-faq { padding: 30px 26px; }
}

@media (max-width: 540px) {
  .bureau-hero-copy h1, .services-hero-copy h1, .business-hero-copy h1, .individual-hero-copy h1, .process-hero-copy h1 { font-size: 2.5rem !important; }
  .bureau-hero-stats { grid-template-columns: 1fr; margin: -30px 10px 0; }
  .v-timeline { padding-left: 28px; }
  .v-timeline-item::before { left: -35px; }
  .situation-grid { grid-template-columns: 1fr; }
  .offer-row { flex-direction: column; gap: 10px; }
  .offer-row .idx { width: auto; }
}
.contact-hero { padding-bottom: 120px; }
.contact-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: start; }

.contact-hero-info h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); color: var(--surface); margin-bottom: 22px; }
.contact-hero-info h1 span { font-family: var(--accent-serif); font-style: italic; text-transform: none; color: var(--highlight-2); font-size: 0.62em; display: inline-block; margin-top: 8px; }
.contact-hero-info p { font-size: 16.5px; color: var(--muted-on-dark); max-width: 44ch; margin-bottom: 44px; }

.contact-hero-details { display: flex; flex-direction: column; gap: 4px; padding-top: 30px; border-top: 1px solid var(--line-dark); }
.contact-hero-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px dashed var(--line-dark); }
.contact-hero-row:last-child { border-bottom: none; }
.contact-hero-row .material-symbols-outlined { color: var(--highlight-2); flex-shrink: 0; margin-top: 2px; }
.contact-hero-row .lbl { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-on-dark); margin-bottom: 4px; }
.contact-hero-row .val { font-size: 15px; color: var(--surface); font-weight: 600; }

.consult-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 44px 42px;
  box-shadow: var(--shadow-2);
  clip-path: polygon(0 14px, 14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}
.consult-card-seal {
  position: absolute;
  top: -22px;
  right: 40px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--highlight-2), var(--highlight-deep));
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-1);
  color: var(--ink);
  font-family: var(--display);
  font-size: 22px;
  transform: rotate(-8deg);
}
.consult-card h2 { font-size: 25px; text-transform: none; margin-bottom: 8px; color: var(--ink-2); }
.consult-card-lead { font-family: var(--body); font-weight: 400; font-size: 14px; color: var(--muted); margin-bottom: 28px; }

.consult-form { display: flex; flex-direction: column; gap: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-group { display: flex; flex-direction: column; gap: 8px; }
.field-group label, .field-services > label { font-family: var(--body); font-weight: 600; font-size: 13.5px; color: var(--ink-2); }
.field-group input, .field-group textarea {
  font-family: var(--body);
  font-size: 14.5px;
  padding: 13px 16px;
  border: 1px solid rgba(11, 20, 32, 0.16);
  border-radius: var(--r-sm);
  background: var(--surface-dim);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field-group input:focus, .field-group textarea:focus { outline: none; border-color: var(--highlight); background: var(--surface); }
.field-group textarea { resize: vertical; min-height: 110px; }
.field-error { font-size: 12px; color: #b0432f; min-height: 15px; display: block; }

.field-services { display: flex; flex-wrap: wrap; gap: 8px; }
.service-chip { position: relative; cursor: pointer; }
.service-chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.service-chip span {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid rgba(11, 20, 32, 0.16);
  color: var(--muted);
  transition: all 0.2s ease;
}
.service-chip input:checked + span { background: var(--ink-2); border-color: var(--ink-2); color: var(--surface); }

.field-honey { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.field-consent { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.field-consent input { margin-top: 3px; flex-shrink: 0; }
.field-consent span { font-size: 12.5px; color: var(--muted); line-height: 1.55; }
.field-consent a { color: var(--highlight-deep); font-weight: 600; }

.consult-submit { width: 100%; justify-content: center; margin-top: 6px; }

.thanks-modal { position: fixed; inset: 0; z-index: 980; background: rgba(11, 20, 32, 0.62); display: none; align-items: center; justify-content: center; padding: 24px; }
.thanks-modal.is-open { display: flex; }
.thanks-modal-card { position: relative; background: var(--surface); border-radius: var(--r-lg); padding: 52px 44px 42px; max-width: 420px; width: 100%; text-align: center; box-shadow: var(--shadow-2); }
.thanks-seal {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--highlight-2), var(--highlight-deep));
  color: var(--ink);
  font-family: var(--display);
  font-size: 26px;
}
.thanks-modal-card h3 { font-size: 27px; margin-bottom: 14px; }
.thanks-modal-card p { font-family: var(--body); font-weight: 400; text-transform: none; font-size: 14.5px; color: var(--muted); margin-bottom: 28px; }
.thanks-modal-card .btn { width: 100%; justify-content: center; }

.legal-block { padding: 172px 0 128px; background: var(--surface); }
.legal-shell { max-width: 760px; }
.legal-shell h1 { font-size: clamp(2.4rem, 4.4vw, 3.6rem); color: var(--ink-2); margin-bottom: 36px; }
.legal-copy h2 { font-family: var(--body); font-weight: 700; font-size: 19px; text-transform: none; color: var(--ink-2); margin: 34px 0 14px; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy p { font-family: var(--body); font-weight: 400; text-transform: none; font-size: 15px; color: var(--muted); margin-bottom: 16px; max-width: 70ch; }
.legal-copy ul { margin: 0 0 16px 0; display: flex; flex-direction: column; gap: 10px; }
.legal-copy li { font-size: 15px; color: var(--muted); padding-left: 20px; position: relative; }
.legal-copy li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--highlight); }

.page-crumb-light { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.page-crumb-light a { color: var(--muted); transition: color 0.2s ease; }
.page-crumb-light a:hover { color: var(--highlight-deep); }
.page-crumb-light span { opacity: 0.5; }

@media (max-width: 1080px) {
  .legal-block { padding-top: 132px; }
  .contact-hero-grid { grid-template-columns: 1fr; }
  .contact-hero-info h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); }
}

@media (max-width: 860px) {
  .field-row { grid-template-columns: 1fr; }
  .consult-card { padding: 34px 26px; }
}

@media (max-width: 540px) {
  .legal-block { padding-top: 118px; padding-bottom: 88px; }
  .thanks-modal-card { padding: 44px 28px 34px; }
}
