:root {
  --carbon: #232f37;
  --carbon-deep: #162027;
  --carbon-soft: #334049;
  --gold: #d0a870;
  --gold-deep: #c8a060;
  --gold-soft: #d0b070;
  --paper: #f7f3ee;
  --paper-strong: #efe8df;
  --white: #ffffff;
  --ink: #111518;
  --muted: #68717a;
  --line: #ded7cf;
  --shadow: 0 18px 56px rgba(22, 32, 39, 0.13);
  --radius: 8px;
  --container: 1180px;
  --header-height: 78px;
  --font-body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(208, 168, 112, 0.42);
}

:focus-visible {
  outline: 3px solid rgba(208, 168, 112, 0.84);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 860px);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--carbon);
  color: var(--white);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(35, 47, 55, 0.08);
  background: rgba(247, 243, 238, 0.9);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 243, 238, 0.98);
  box-shadow: 0 12px 36px rgba(35, 47, 55, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand img {
  width: 286px;
  height: auto;
}

.footer-brand img {
  width: 320px;
}

.footer-brand {
  display: inline-block;
}

.footer-brand img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  color: var(--carbon-soft);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-panel a {
  padding-block: 0.55rem;
  border-bottom: 2px solid transparent;
}

.nav-panel a:hover {
  color: var(--carbon);
  border-color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.65rem 1rem;
  border: 1px solid var(--carbon);
  border-radius: 999px;
  color: var(--carbon);
  font-weight: 800;
}

.header-cta:hover {
  background: var(--carbon);
  color: var(--white);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

.language-switcher button {
  min-width: 38px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.language-switcher button.is-active {
  background: var(--carbon);
  color: var(--white);
}

.language-switcher-mobile {
  display: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-button span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--carbon);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 82svh;
  padding-top: var(--header-height);
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(22, 32, 39, 0.92) 0%, rgba(22, 32, 39, 0.78) 42%, rgba(22, 32, 39, 0.32) 100%),
    linear-gradient(180deg, rgba(22, 32, 39, 0.24), rgba(22, 32, 39, 0.7));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 5.5rem;
}

.eyebrow,
.section-label {
  margin: 0 0 0.9rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.about h2,
.section-heading h2,
.method-copy h2,
.contact-copy h2,
.cta-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
}

.hero h1 {
  max-width: 760px;
  font-size: 4.4rem;
}

.hero-lead {
  max-width: 680px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.28rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: #1d1608;
}

.button-primary:hover {
  background: var(--gold-soft);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.button-outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--carbon);
}

.button-outline:hover {
  border-color: var(--carbon);
}

.proof-strip {
  border-block: 1px solid var(--line);
  background: var(--paper-strong);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid article {
  padding: 1.45rem 1.2rem;
  border-right: 1px solid var(--line);
}

.proof-grid article:last-child {
  border-right: 0;
}

.proof-grid strong {
  display: block;
  color: var(--carbon);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.proof-grid span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
}

.section {
  padding-block: 6.2rem;
}

.about,
.services,
.audience,
.contact {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 4rem;
  align-items: start;
}

.about-copy h2,
.section-heading h2,
.method-copy h2,
.contact-copy h2 {
  color: var(--carbon);
  font-size: 3rem;
}

.about-copy p,
.section-heading p,
.method-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.about-copy p:not(.section-label) {
  max-width: 720px;
}

blockquote {
  margin: 2rem 0 0;
  padding: 1.35rem 1.5rem;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.68);
  color: var(--carbon);
  font-family: var(--font-display);
  font-size: 1.26rem;
  line-height: 1.45;
}

blockquote p {
  margin: 0;
  color: var(--carbon);
}

blockquote cite {
  display: block;
  margin-top: 0.8rem;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 800;
}

.profile-panel {
  display: grid;
  gap: 1rem;
}

.profile-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.profile-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.credential-list {
  display: grid;
  gap: 0.85rem;
}

.credential-list article,
.diff-card,
.audience-card {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.credential-list span,
.service-card span,
.contact-channels span,
.contact-form label span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.credential-list h3,
.service-card h3,
.method-list h3,
.diff-card h3,
.audience-card h3,
.contact-form h3 {
  margin: 0;
  color: var(--carbon);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
}

.credential-list p,
.service-card p,
.method-list p,
.diff-card p,
.audience-card p,
.contact-form p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.7rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.diff-card:hover,
.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(208, 168, 112, 0.7);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.service-card div {
  padding: 1.35rem;
}

.service-card span {
  color: var(--gold-deep);
}

.methodology,
.differentials {
  background: var(--carbon);
  color: var(--white);
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 4rem;
  align-items: start;
}

.method-copy h2,
.differentials .section-heading h2,
.differentials .diff-card h3 {
  color: var(--white);
}

.method-copy p,
.differentials .section-heading p,
.differentials .diff-card p {
  color: rgba(255, 255, 255, 0.72);
}

.method-list {
  display: grid;
  gap: 1rem;
}

.method-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.method-list span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: #1d1608;
  font-weight: 900;
}

.method-list h3 {
  color: var(--white);
}

.method-list p {
  color: rgba(255, 255, 255, 0.72);
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.diff-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.diff-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.audience-grid {
  grid-template-columns: repeat(4, 1fr);
}

.cta-band {
  padding-block: 4.7rem;
  background: var(--paper-strong);
}

.cta-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.85fr);
  gap: 2.5rem;
  align-items: center;
}

.cta-band h2 {
  color: var(--carbon);
  font-size: 2.8rem;
}

.cta-band p:not(.section-label) {
  margin: 0;
  color: var(--muted);
}

.cta-band .hero-actions {
  margin-top: 1.4rem;
}

.cta-band .button-secondary {
  border-color: var(--carbon);
  background: var(--carbon);
  color: var(--white);
}

.faq {
  background: var(--white);
}

.faq .section-heading {
  margin-inline: auto;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border: 0;
  background: transparent;
  color: var(--carbon);
  font-weight: 900;
  text-align: left;
}

.faq-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  color: var(--gold-deep);
  transition: transform 160ms ease;
}

.js .faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.25rem 1.2rem;
  color: var(--muted);
}

.js .faq-answer {
  grid-template-rows: 0fr;
  transition: grid-template-rows 180ms ease;
}

.js .faq-answer p {
  padding-bottom: 0;
}

.js .faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.js .faq-item.is-open .faq-answer p {
  padding-bottom: 1.2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(390px, 1fr);
  gap: 4rem;
  align-items: start;
}

.contact-channels {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.contact-channels a,
.contact-channels div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-channels a:hover {
  border-color: var(--gold);
}

.contact-channels strong {
  display: block;
  color: var(--carbon);
  font-size: 1.05rem;
}

.contact-form {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.55rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.86rem 0.9rem;
  border: 1px solid #cac2b9;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-deep);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(208, 168, 112, 0.18);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.recaptcha-slot {
  margin-top: 1rem;
}

.recaptcha-slot:empty {
  display: none;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.9rem 0 0;
  color: var(--carbon);
  font-weight: 800;
}

.form-status.is-error {
  color: #9d2d2d;
}

.site-footer {
  background: var(--carbon-deep);
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-block: 4rem;
}

.site-footer p {
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}

.site-footer .footer-note {
  max-width: 420px;
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.52);
}

.site-footer h2 {
  margin: 0 0 0.8rem;
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-top: 0.35rem;
  line-height: 1.55;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.62);
  transition: color 180ms ease;
}

.back-to-top:hover {
  color: var(--gold);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.back-to-top:hover svg {
  transform: translateY(-3px);
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: none;
  gap: 0.55rem;
}

.floating-contact a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--carbon);
  color: var(--white);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-contact a:last-child {
  background: #1f8f55;
}

.floating-contact a:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 32px rgba(31, 143, 85, 0.35);
}

.floating-contact svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 450ms ease, transform 450ms ease;
}

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

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

  .button:hover,
  .service-card:hover,
  .diff-card:hover,
  .audience-card:hover {
    transform: none;
  }

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

@media (max-width: 1120px) {
  .brand img {
    width: 238px;
  }

  .nav-panel {
    gap: 0.8rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 980px) {
  .menu-button {
    display: inline-flex;
  }

  .header-cta,
  .language-switcher-desktop {
    display: none;
  }

  .nav-panel {
    position: fixed;
    inset: var(--header-height) 0 auto;
    z-index: 99;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 1rem 20px 1.25rem;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 20px 50px rgba(35, 47, 55, 0.14);
    height: calc(100svh - var(--header-height));
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
  }

  .js .nav-panel {
    transform: translateY(-116%);
    transition: transform 180ms ease;
  }

  .js .nav-panel.is-open {
    transform: translateY(0);
  }

  .nav-panel a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }

  .language-switcher-mobile {
    display: inline-flex;
    width: max-content;
    margin-top: 1rem;
  }

  .hero h1 {
    font-size: 3.3rem;
  }

  .proof-grid,
  .service-grid,
  .diff-grid,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid article:nth-child(2) {
    border-right: 0;
  }

  .proof-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .about-grid,
  .method-grid,
  .contact-grid,
  .cta-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand img {
    width: 196px;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(22, 32, 39, 0.7), rgba(22, 32, 39, 0.92)),
      linear-gradient(90deg, rgba(22, 32, 39, 0.78), rgba(22, 32, 39, 0.54));
  }

  .hero-content {
    padding-block: 4.4rem 3.2rem;
  }

  .hero h1 {
    font-size: 2.35rem;
    max-width: 12ch;
    line-height: 1.08;
  }

  .hero-lead {
    max-width: 32ch;
    font-size: 1rem;
  }

  .hero-actions,
  .form-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .proof-grid,
  .service-grid,
  .diff-grid,
  .audience-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .proof-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-grid article:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 4rem;
  }

  .about-copy h2,
  .section-heading h2,
  .method-copy h2,
  .contact-copy h2,
  .cta-band h2 {
    font-size: 2.2rem;
  }

  blockquote {
    font-size: 1.12rem;
  }

  .profile-image img {
    height: 280px;
  }

  .contact-form {
    padding: 1rem;
  }

  .footer-brand img {
    width: 220px;
  }

  .floating-contact {
    display: flex;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 176px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: 2.02rem;
  }

  .hero-content {
    padding-block: 3.8rem 3rem;
  }
}
