:root {
  --bg: #d6d3c7;
  --ink: #0b0b0b;
  --ink-soft: #3f3f3f;
  --gold: #f2c300;
  --gold-soft: #ffd94a;
  --gold-deep: #b98b00;
  --paper: #f6f4ee;
  --paper-strong: rgba(255, 255, 255, 0.92);
  --panel: rgba(248, 248, 243, 0.78);
  --panel-dark: rgba(11, 11, 11, 0.94);
  --line: rgba(11, 11, 11, 0.14);
  --line-strong: rgba(11, 11, 11, 0.26);
  --shadow: 0 25px 70px rgba(11, 11, 11, 0.12);
  --shadow-deep: 0 42px 110px rgba(11, 11, 11, 0.28);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(242, 195, 0, 0.16), transparent 22%),
    radial-gradient(circle at 88% 16%, rgba(11, 11, 11, 0.12), transparent 18%),
    linear-gradient(180deg, #eef0ea 0%, #dcdcd0 42%, #cfcfc0 100%);
  overflow-x: hidden;
}

body.chatbot-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(11, 11, 11, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 11, 11, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 36%, transparent 85%);
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 22px auto 72px;
}

.site-header,
.credibility,
.manifesto-card,
.service-card,
.metrics,
.firm-panel,
.firm-quote,
.process-step,
.cta,
.contact-card,
.site-footer {
  backdrop-filter: blur(16px);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(250, 250, 246, 0.72);
}

.site-header.is-scrolled {
  background: rgba(252, 252, 249, 0.95);
  box-shadow: 0 16px 40px rgba(11, 11, 11, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  overflow: visible;
  background: #0b0b0b;
}

.brand-mark-outer,
.brand-mark-mid,
.brand-mark-inner {
  position: absolute;
  display: block;
}

.brand-mark-outer {
  inset: 0;
  background: var(--gold);
}

.brand-mark-outer::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 18px;
  height: 11px;
  transform: translateX(-50%);
  background: #0b0b0b;
}

.brand-mark-mid {
  left: 50%;
  top: 11px;
  width: 38px;
  height: 38px;
  transform: translateX(-50%);
  background: #0b0b0b;
}

.brand-mark-mid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 18px;
  height: 11px;
  transform: translateX(-50%);
  background: #0b0b0b;
}

.brand-mark-inner {
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  background: #ffffff;
}

.brand-mark-inner::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  background: #0b0b0b;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.site-nav {
  display: flex;
  gap: 24px;
}

.site-nav a {
  position: relative;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    radial-gradient(circle at top, rgba(255, 236, 153, 0.3), transparent 48%),
    linear-gradient(145deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #0b0b0b;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

button.button,
.quick-action,
.mobile-contact-link,
.chatbot-toggle,
.chatbot-close,
.chatbot-choice,
.contact-card-button {
  font: inherit;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(11, 11, 11, 0.24);
}

.button-outline,
.button-secondary {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(11, 11, 11, 0.18);
  color: var(--ink);
}

.button-outline:hover,
.button-secondary:hover,
.button-outline:focus-visible,
.button-secondary:focus-visible {
  box-shadow: none;
  background: rgba(255, 250, 244, 0.88);
}

.inline-link {
  color: inherit;
  text-decoration: none;
}

.inline-link:hover,
.inline-link:focus-visible {
  text-decoration: underline;
}

.inline-link-button {
  padding: 0;
  border: 0;
  background: transparent;
}

.hero {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 26px;
  padding: 30px 0 0;
  min-height: 720px;
}

.hero-copy,
.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-deep);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px;
  min-height: 680px;
  background:
    linear-gradient(180deg, rgba(242, 195, 0, 0.08), transparent 26%),
    radial-gradient(circle at top right, rgba(242, 195, 0, 0.18), transparent 24%),
    linear-gradient(160deg, rgba(11, 11, 11, 0.99) 0%, rgba(19, 19, 19, 0.98) 68%, rgba(32, 32, 32, 0.96) 100%);
  color: #f8f7f2;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 28px;
  border: 1px solid rgba(242, 195, 0, 0.2);
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 195, 0, 0.18), transparent 66%);
  filter: blur(14px);
}

.eyebrow,
.panel-label {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-kicker,
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 22px;
}

.hero-brand-mark {
  width: 88px;
  height: 88px;
}

.hero-brand-mark .brand-mark-outer {
  inset: 0;
}

.hero-brand-mark .brand-mark-outer::after {
  width: 26px;
  height: 16px;
}

.hero-brand-mark .brand-mark-mid {
  top: 16px;
  width: 56px;
  height: 56px;
}

.hero-brand-mark .brand-mark-mid::before {
  width: 26px;
  height: 16px;
}

.hero-brand-mark .brand-mark-inner {
  width: 30px;
  height: 30px;
}

.hero-brand-mark .brand-mark-inner::before {
  width: 14px;
  height: 14px;
}

.hero-brand-lines {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-brand-lines span {
  color: #f7de75;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-brand-lines strong {
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 0.95;
}

.hero-kicker {
  margin-bottom: 24px;
}

.hero-kicker span,
.hero-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(242, 195, 0, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #f7de75;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 0.94;
  text-wrap: balance;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.8rem, 7vw, 7.2rem);
}

h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

h3 {
  font-size: clamp(1.9rem, 2.5vw, 2.55rem);
}

.hero-text,
.manifesto-copy p,
.manifesto-card p,
.service-card p,
.firm-panel p,
.firm-quote p,
.signature-copy p,
.process-step p,
.contact-card p,
.section-heading p,
.credibility p,
.hero-panel-body p,
.metrics span,
.site-footer p {
  line-height: 1.78;
  font-size: 1rem;
}

.hero-text {
  max-width: 58ch;
  margin: 20px 0 0;
  color: rgba(248, 247, 242, 0.86);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 28px 0 20px;
}

.hero .button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #f8f7f2;
}

.hero .button-secondary:hover,
.hero .button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.hero-badges {
  margin-top: 12px;
}

.hero-panel {
  display: grid;
  grid-template-rows: 340px 1fr;
  background:
    linear-gradient(150deg, rgba(11, 11, 11, 0.96) 0%, rgba(11, 11, 11, 0.96) 56%, rgba(255, 255, 255, 0) 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 244, 237, 0.92));
  border: 1px solid rgba(11, 11, 11, 0.14);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 28px;
  border: 1px solid rgba(11, 11, 11, 0.12);
  pointer-events: none;
}

.hero-panel-photo {
  position: relative;
  overflow: hidden;
}

.hero-panel-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 12, 8, 0.04), rgba(17, 12, 8, 0.42)),
    linear-gradient(145deg, rgba(242, 195, 0, 0.14), transparent 44%);
}

.hero-panel-photo img,
.service-card-media img,
.signature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-panel-body {
  position: relative;
  z-index: 1;
  padding: 30px;
}

.hero-panel-body::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  height: clamp(210px, 42%, 300px);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.4), rgba(11, 11, 11, 0.12) 72%, rgba(11, 11, 11, 0));
  pointer-events: none;
}

.hero-panel-body > .panel-label,
.hero-panel-body > h2,
.hero-panel-body > p,
.hero-panel-note,
.hero-panel-signature {
  position: relative;
  z-index: 1;
}

.hero-panel-body h2 {
  font-size: clamp(2.3rem, 3vw, 3.25rem);
  margin-bottom: 18px;
  color: var(--paper);
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.hero-panel-body p {
  color: var(--ink-soft);
}

.hero-panel-body > p {
  max-width: 30rem;
  color: rgba(246, 244, 238, 0.82);
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.hero-panel-body > .panel-label {
  color: var(--gold-soft);
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.34);
}

.hero-panel-note {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 11, 11, 0.12);
}

.hero-panel-note small,
.credibility small,
.metrics small {
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-panel-note strong {
  font-size: 1.05rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.hero-panel-signature {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(11, 11, 11, 0.12);
  color: var(--ink);
}

.hero-panel-signature span {
  font-size: 0.86rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-panel-signature strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.credibility {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
  padding: 24px;
  border-radius: var(--radius-xl);
}

.credibility article {
  position: relative;
  padding-right: 16px;
}

.credibility article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(106, 77, 34, 0.22), transparent);
}

.credibility strong {
  display: block;
  margin: 6px 0 8px;
  font-size: 1.15rem;
}

.section {
  padding-top: 96px;
}

.manifesto {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.manifesto-copy {
  padding-top: 6px;
}

.manifesto-copy h2,
.section-heading h2,
.firm-panel h2,
.signature-copy h2,
.cta h2 {
  margin-bottom: 16px;
}

.manifesto-copy p,
.section-heading p,
.firm-panel p,
.signature-copy p {
  color: var(--ink-soft);
}

.manifesto-grid,
.service-grid,
.metrics,
.firm-grid,
.process-list,
.contact-grid {
  display: grid;
  gap: 18px;
}

.manifesto-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.manifesto-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.manifesto-card::before,
.service-card::before,
.process-step::before,
.contact-card::before,
.firm-panel::before,
.firm-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.18), transparent 40%);
  pointer-events: none;
}

.manifesto-card-large {
  grid-column: span 2;
  min-height: 280px;
  background:
    radial-gradient(circle at 82% 20%, rgba(242, 195, 0, 0.2), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 253, 0.88), rgba(244, 244, 238, 0.82));
}

.services .section-heading {
  max-width: 62ch;
  margin-bottom: 28px;
}

.service-grid {
  grid-template-columns: 1.15fr repeat(2, 1fr);
  grid-auto-rows: minmax(220px, auto);
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--radius-lg);
}

.service-card-featured {
  grid-row: span 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 244, 238, 0.84));
}

.service-card span,
.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(242, 195, 0, 0.14);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-card-media {
  position: relative;
  height: 220px;
  margin: -8px -8px 24px;
  border-radius: 22px;
  overflow: hidden;
}

.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 13, 8, 0.04), rgba(18, 13, 8, 0.24));
}

.metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
  padding: 24px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(90deg, rgba(242, 195, 0, 0.94) 0%, rgba(242, 195, 0, 0.94) 15px, transparent 15px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 244, 238, 0.82));
}

.metrics div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.metrics strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  line-height: 0.9;
}

.metrics span {
  color: var(--ink-soft);
}

.firm-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.firm-panel,
.firm-quote {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: var(--radius-lg);
}

.firm-quote {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 20% 14%, rgba(242, 195, 0, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(11, 11, 11, 0.98) 0%, rgba(30, 30, 30, 0.98) 100%);
}

.firm-quote p,
.firm-quote strong {
  color: #f7eedf;
}

.firm-quote p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.14;
}

.firm-quote strong {
  margin-top: 18px;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signature-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.signature-photo,
.signature-copy {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-deep);
}

.signature-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(19, 13, 8, 0.06), rgba(19, 13, 8, 0.78)),
    linear-gradient(145deg, rgba(242, 195, 0, 0.12), transparent 42%);
}

.signature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  background:
    radial-gradient(circle at top right, rgba(242, 195, 0, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 244, 238, 0.88));
  border: 1px solid rgba(11, 11, 11, 0.14);
}

.signature-logo {
  margin-bottom: 24px;
}

.signature-brand-mark {
  width: 104px;
  height: 104px;
}

.signature-brand-mark .brand-mark-outer {
  inset: 0;
}

.signature-brand-mark .brand-mark-outer::after {
  width: 30px;
  height: 19px;
}

.signature-brand-mark .brand-mark-mid {
  top: 19px;
  width: 66px;
  height: 66px;
}

.signature-brand-mark .brand-mark-mid::before {
  width: 30px;
  height: 19px;
}

.signature-brand-mark .brand-mark-inner {
  width: 36px;
  height: 36px;
}

.signature-brand-mark .brand-mark-inner::before {
  width: 16px;
  height: 16px;
}

.process-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-step,
.contact-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--radius-lg);
}

.process-step {
  min-height: 250px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-item {
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.05;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 16px 0 0;
  line-height: 1.75;
  color: var(--ink-soft);
}

.faq-item[open] {
  border-color: rgba(185, 139, 0, 0.22);
  box-shadow: 0 20px 40px rgba(11, 11, 11, 0.12);
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 26px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 14% 50%, rgba(242, 195, 0, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(243, 243, 237, 0.82));
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 16px;
}

.contact-card-link {
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-card-button {
  width: 100%;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 245, 239, 0.86));
  text-align: left;
}

.contact-card-link:hover,
.contact-card-link:focus-visible,
.contact-card-button:hover,
.contact-card-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(11, 11, 11, 0.14);
}

.contact-card-primary {
  background:
    linear-gradient(180deg, rgba(255, 248, 217, 0.92), rgba(248, 243, 224, 0.88));
}

.contact-label {
  margin: 0 0 10px;
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-link-text {
  display: inline-flex;
  margin-top: 12px;
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.quick-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(11, 11, 11, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.quick-action-primary {
  background: linear-gradient(145deg, var(--gold) 0%, var(--gold-deep) 100%);
}

.quick-action:hover,
.quick-action:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(11, 11, 11, 0.14);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-radius: 22px;
}

.site-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.site-footer-brand div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-footer-brand strong {
  font-size: 0.98rem;
}

.site-footer-brand span,
.site-footer p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--gold-deep);
}

.mobile-contact-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 40;
  display: none;
  gap: 10px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(13, 13, 13, 0.94);
  box-shadow: 0 18px 42px rgba(11, 11, 11, 0.28);
}

.mobile-contact-link {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.mobile-contact-primary {
  background: linear-gradient(145deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #0b0b0b;
}

.chatbot-shell {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 41;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.chatbot-shell.is-open {
  z-index: 60;
}

.chatbot-backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(11, 11, 11, 0.32);
}

.chatbot-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(11, 11, 11, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(11, 11, 11, 0.18);
}

.chatbot-toggle:hover,
.chatbot-toggle:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(11, 11, 11, 0.22);
}

.chatbot-shell.is-open .chatbot-toggle {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.chatbot-brand-mark {
  width: 46px;
  height: 46px;
}

.chatbot-brand-mark .brand-mark-outer {
  inset: 0;
}

.chatbot-brand-mark .brand-mark-outer::after {
  width: 14px;
  height: 9px;
}

.chatbot-brand-mark .brand-mark-mid {
  top: 8px;
  width: 30px;
  height: 30px;
}

.chatbot-brand-mark .brand-mark-mid::before {
  width: 14px;
  height: 9px;
}

.chatbot-brand-mark .brand-mark-inner {
  width: 16px;
  height: 16px;
}

.chatbot-brand-mark .brand-mark-inner::before {
  width: 8px;
  height: 8px;
}

.chatbot-toggle-text {
  font-size: 0.95rem;
  font-weight: 800;
}

.chatbot-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(380px, calc(100vw - 24px));
  max-height: min(78vh, 720px);
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(11, 11, 11, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 244, 237, 0.94));
  box-shadow: 0 24px 64px rgba(11, 11, 11, 0.24);
}

.chatbot-header {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(11, 11, 11, 0.08);
}

.chatbot-eyebrow {
  margin: 0 0 6px;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chatbot-header strong {
  font-size: 1.05rem;
}

.chatbot-close {
  min-width: 44px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(11, 11, 11, 0.08);
  border-radius: 999px;
  background: rgba(11, 11, 11, 0.05);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.chatbot-close:hover,
.chatbot-close:focus-visible {
  background: rgba(11, 11, 11, 0.09);
  border-color: rgba(11, 11, 11, 0.14);
}

.chatbot-body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.chatbot-conversation {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 190px;
  overflow-y: auto;
  padding-right: 6px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.chatbot-message {
  max-width: 92%;
  padding: 14px 16px;
  border-radius: 18px;
  line-height: 1.65;
  font-size: 0.95rem;
}

.chatbot-message-bot {
  background: rgba(11, 11, 11, 0.05);
}

.chatbot-message-user {
  align-self: flex-end;
  background: rgba(242, 195, 0, 0.2);
}

.chatbot-helper,
.chatbot-form-intro {
  margin: 0;
  line-height: 1.6;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.chatbot-query-form {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 11, 11, 0.08);
}

.chatbot-query-label {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.chatbot-query-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.chatbot-query-row input {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(11, 11, 11, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
}

.chatbot-query-button {
  min-width: 124px;
}

.chatbot-disclaimer {
  margin: 0;
  line-height: 1.55;
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.chatbot-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.chatbot-choice {
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(11, 11, 11, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
}

.chatbot-choice:hover,
.chatbot-choice:focus-visible {
  border-color: rgba(185, 139, 0, 0.34);
  background: rgba(255, 249, 229, 0.94);
}

.chatbot-form {
  position: relative;
  display: grid;
  gap: 12px;
}

.chatbot-form label {
  display: grid;
  gap: 8px;
}

.chatbot-form label span {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.chatbot-form input,
.chatbot-form textarea {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid rgba(11, 11, 11, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
}

.chatbot-query-row input:focus-visible,
.chatbot-form input:focus-visible,
.chatbot-form textarea:focus-visible {
  outline: 2px solid rgba(185, 139, 0, 0.38);
  outline-offset: 2px;
  border-color: rgba(185, 139, 0, 0.24);
}

.chatbot-form textarea {
  resize: vertical;
  min-height: 110px;
}

.chatbot-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.chatbot-form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chatbot-note,
.chatbot-status {
  margin: 0;
  line-height: 1.6;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.chatbot-note {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(11, 11, 11, 0.04);
}

.chatbot-status {
  min-height: 20px;
  color: var(--gold-deep);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1080px) {
  .hero,
  .manifesto,
  .firm-grid,
  .signature-strip {
    grid-template-columns: 1fr;
  }

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

  .service-card-featured {
    grid-row: auto;
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .site-header,
  .credibility,
  .manifesto-grid,
  .metrics,
  .process-list,
  .faq-grid,
  .contact-grid,
  .cta {
    grid-template-columns: 1fr;
  }

  .site-header {
    border-radius: 28px;
    padding: 18px;
  }

  .site-nav {
    display: none;
  }

  .hero-copy {
    min-height: auto;
    padding: 40px 28px;
  }

  .hero-brand-lockup {
    margin-bottom: 22px;
  }

  .hero-panel {
    grid-template-rows: 290px 1fr;
  }

  h1 {
    max-width: 100%;
  }

  .credibility article:not(:last-child)::after {
    display: none;
  }

  .manifesto-card-large {
    grid-column: auto;
  }

  .cta {
    justify-items: start;
  }

  .cta-actions {
    width: 100%;
  }

  .contact-quick-actions {
    grid-template-columns: 1fr;
  }

  .chatbot-panel {
    width: min(420px, calc(100vw - 32px));
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  body.chatbot-open {
    overflow: hidden;
  }

  body {
    padding-bottom: 92px;
  }

  .page-shell {
    width: min(calc(100% - 18px), var(--max-width));
    margin-top: 10px;
  }

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

  .hero-copy,
  .hero-panel-body,
  .manifesto-card,
  .service-card,
  .firm-panel,
  .firm-quote,
  .signature-copy,
  .process-step,
  .contact-card,
  .cta {
    padding: 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-brand-lockup {
    gap: 14px;
  }

  .hero-brand-mark {
    width: 72px;
    height: 72px;
  }

  .hero-brand-mark .brand-mark-outer {
    inset: 0;
  }

  .hero-brand-mark .brand-mark-outer::after {
    width: 22px;
    height: 13px;
  }

  .hero-brand-mark .brand-mark-mid {
    top: 13px;
    width: 46px;
    height: 46px;
  }

  .hero-brand-mark .brand-mark-mid::before {
    width: 22px;
    height: 13px;
  }

  .hero-brand-mark .brand-mark-inner {
    width: 24px;
    height: 24px;
  }

  .hero-brand-mark .brand-mark-inner::before {
    width: 10px;
    height: 10px;
  }

  .hero-brand-lines strong {
    font-size: 2rem;
  }

  .site-header {
    padding: 12px 14px;
    gap: 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand-text strong {
    font-size: 0.95rem;
  }

  .brand-text span {
    font-size: 0.8rem;
  }

  .hero {
    gap: 18px;
    padding-top: 22px;
  }

  .hero-actions,
  .cta-actions,
  .chatbot-form-actions {
    width: 100%;
  }

  .mobile-contact-bar {
    display: flex;
  }

  .chatbot-shell {
    right: 12px;
    bottom: 86px;
    left: 12px;
    align-items: stretch;
  }

  .chatbot-toggle {
    align-self: flex-end;
  }

  .chatbot-panel {
    width: 100%;
    max-height: 70vh;
  }

  .chatbot-conversation {
    max-height: 150px;
  }

  .chatbot-choices {
    grid-template-columns: 1fr;
  }

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

  .button {
    width: 100%;
  }
}
