@font-face {
  font-family: "TB Sans";
  src: url("../fonts/nimbus-sans-regular.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "TB Sans";
  src: url("../fonts/nimbus-sans-bold.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 700 900;
}

@font-face {
  font-family: "TB Sans Narrow";
  src: url("../fonts/nimbus-sans-narrow-regular.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "TB Sans Narrow";
  src: url("../fonts/nimbus-sans-narrow-bold.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 700 900;
}

:root {
  --ink: #090b0d;
  --ink-soft: #111417;
  --panel: #171a1d;
  --white: #f7f5ef;
  --muted: #c5c5c0;
  --gold: #d8aa18;
  --gold-light: #f0d06a;
  --gold-dark: #8e6b08;
  --line: rgba(216, 170, 24, 0.38);
  --max: 1240px;
  --font-body: "TB Sans", sans-serif;
  --font-condensed: "TB Sans Narrow", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}


.hidden {display:none;}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  padding: 0.7rem 1rem;
  color: #111;
  background: var(--gold-light);
  font-weight: 800;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(9, 11, 13, 0.94);
  backdrop-filter: blur(18px);
}

.header-shell {
  width: min(calc(100% - 3rem), var(--max));
  min-height: 94px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(220px, 285px) 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.brand {
  display: block;
  line-height: 0;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.25rem, 2.6vw, 2.8rem);
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 1rem 0;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.55rem;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.header-phone > svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-phone span {
  display: grid;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.header-phone small {
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 18% 38%,
      rgba(216, 170, 24, 0.08),
      transparent 28%
    ),
    linear-gradient(130deg, #0b0d0f 0%, #121518 48%, #080a0b 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-grid {
  position: relative;
  width: min(calc(100% - 3rem), var(--max));
  min-height: 700px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.35rem;
  color: var(--gold-light);
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 42px;
  height: 2px;
  background: var(--gold);
}

h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-condensed);
  font-size: clamp(2.85rem, 4.7vw, 4.65rem);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-intro {
  max-width: 650px;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.2rem;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: #121212;
  background: linear-gradient(
    110deg,
    var(--gold) 0%,
    var(--gold-light) 60%,
    #bd8d0a 100%
  );
}

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

.button-secondary:hover {
  color: #111;
  background: var(--gold);
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.45rem;
  margin: 2rem 0 0;
  padding: 0;
  color: #deddd8;
  list-style: none;
  font-size: 0.82rem;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-benefits svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  min-height: 100%;
}

.hero-frame {
  position: absolute;
  inset: 0 0 0 8%;
  overflow: hidden;
  border: 1px solid rgba(216, 170, 24, 0.48);
  background: #181818;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.48);
}

.hero-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  pointer-events: none;
}

.hero-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: contrast(1.07) saturate(0.88);
}

.image-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 11, 13, 0.56), transparent 40%),
    linear-gradient(0deg, rgba(8, 9, 10, 0.48), transparent 42%);
}

.response-card {
  position: absolute;
  z-index: 4;
  right: -18px;
  bottom: 54px;
  width: min(390px, 88%);
  min-height: 90px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--gold);
  background: rgba(16, 18, 20, 0.95);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(15px);
}

.response-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: #111;
  background: var(--gold);
}

.response-icon svg,
.response-card > a svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.response-card > span:nth-child(2) {
  display: grid;
}

.response-card small {
  color: var(--gold-light);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.response-card strong {
  margin-top: 0.15rem;
  font-size: 0.88rem;
}

.response-card > a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 170, 24, 0.6);
  color: var(--gold-light);
}

.visual-caption {
  position: absolute;
  z-index: 4;
  top: 16px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
  padding: 0.7rem 1rem;
  color: #e5e3dc;
  background: #0d0f11;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-caption span {
  color: var(--gold);
  font-size: 1rem;
}

.credential-strip {
  position: relative;
  background: #0c0e10;
  border-bottom: 1px solid var(--line);
}

.credential-shell {
  width: min(calc(100% - 3rem), var(--max));
  min-height: 118px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 1.2fr;
  align-items: center;
  gap: 3rem;
}

.credential-shell > p {
  display: grid;
  margin: 0;
  color: #aaa9a5;
  font-size: 0.75rem;
  padding:1rem;
}

.credential-shell > p span {
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credential-shell ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.credential-shell li {
  min-height: 46px;
  display: grid;
  place-items: center;
  border-left: 1px solid var(--line);
  color: var(--gold-light);
  font-family: var(--font-condensed);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.section,
.cause-section,
.expertise-section,
.contact-section {
  scroll-margin-top: 92px;
}

.section {
  padding: clamp(5rem, 8vw, 8rem) 0;
}

.section-shell {
  width: min(calc(100% - 3rem), var(--max));
  margin-inline: auto;
}

h2,
h3 {
  font-family: var(--font-condensed);
}

h2 {
  margin: 0;
  font-size: clamp(2.15rem, 3.5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
}

h2 em {
  color: var(--gold);
  font-style: normal;
}

h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.section-heading > p {
  max-width: 530px;
  margin: 0 0 0.2rem;
  color: #555653;
  font-size: 1rem;
  line-height: 1.75;
}

.services-section {
  color: #131517;
  background:
    linear-gradient(rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.54)),
    #e9e5dc;
}

.services-section .eyebrow,
.faq-section .eyebrow {
  color: #8e6900;
}

.services-section h2 em,
.faq-section h2 em {
  color: #765800;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(20, 22, 24, 0.2);
  border-left: 1px solid rgba(20, 22, 24, 0.2);
}

.service-card {
  position: relative;
  min-height: 310px;
  padding: clamp(1.6rem, 3vw, 2.45rem);
  border-right: 1px solid rgba(20, 22, 24, 0.2);
  border-bottom: 1px solid rgba(20, 22, 24, 0.2);
  background: rgba(255, 255, 255, 0.34);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(24, 24, 22, 0.13);
}

.service-card-featured {
  color: var(--white);
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(216, 170, 24, 0.14),
      transparent 34%
    ),
    var(--ink-soft);
}

.service-card > svg {
  width: 55px;
  height: 55px;
  margin: 2.4rem 0 1.9rem;
  fill: none;
  stroke: var(--gold-dark);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card-featured > svg {
  stroke: var(--gold-light);
}

.service-number {
  position: absolute;
  top: 1.45rem;
  right: 1.6rem;
  color: #666760;
  font-family: var(--font-condensed);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-card h3 {
  max-width: 260px;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.service-card p {
  max-width: 300px;
  margin: 0.85rem 0 0;
  color: #5b5b56;
  font-size: 0.92rem;
}

.service-card-featured p {
  color: #bdbdb8;
}

.cause-section {
  color: var(--white);
  background: #0d0f11;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cause-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--max);
  margin: 0 auto;
}

.cause-gallery figure {
  position: relative;
  min-height: clamp(310px, 31vw, 470px);
  margin: 0;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cause-gallery figure:last-child {
  border-right: 0;
}

.cause-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.06);
  transition: transform 400ms ease;
}

.cause-gallery figure:hover img {
  transform: scale(1.025);
}

.cause-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem 1.2rem;
  color: #efede7;
  background: linear-gradient(0deg, rgba(9, 11, 13, 0.94), transparent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cause-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
  padding: clamp(4.5rem, 7vw, 7rem) max(2rem, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(
      circle at 100% 25%,
      rgba(216, 170, 24, 0.07),
      transparent 34%
    ),
    #111417;
}

.cause-heading {
  max-width: 560px;
}

.cause-details {
  max-width: 650px;
}

.cause-lead {
  max-width: 510px;
  margin: 0;
  color: #bebeba;
  font-size: 1.02rem;
  line-height: 1.75;
}

.cause-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
}

.cause-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.cause-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-section {
  background:
    radial-gradient(
      circle at 18% 5%,
      rgba(216, 170, 24, 0.09),
      transparent 24%
    ),
    #0b0d0f;
}

.compact-heading {
  margin-bottom: 4rem;
}

.compact-heading > p {
  color: #aeada8;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line);
  list-style: none;
}

.process-grid::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 68px;
  right: 16.67%;
  left: 16.67%;
  height: 1px;
  background: rgba(216, 170, 24, 0.48);
}

.process-grid li {
  min-height: 310px;
  padding: 2.35rem;
  background: #131619;
}

.process-grid li > span {
  position: relative;
  z-index: 3;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 2.2rem;
  border: 1px solid var(--gold);
  color: #111;
  background: var(--gold);
  font-family: var(--font-condensed);
  font-size: 1.05rem;
  font-weight: 900;
}

.process-grid li:nth-child(2) > span,
.process-grid li:nth-child(3) > span {
  color: var(--gold-light);
  background: #131619;
}

.process-grid small {
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.process-grid h3 {
  margin-top: 0.35rem;
  font-size: 1.22rem;
  text-transform: uppercase;
}

.process-grid p {
  max-width: 320px;
  margin: 0.85rem 0 0;
  color: #aaa9a5;
  font-size: 0.9rem;
}

.expertise-section {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  background: #15181b;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.expertise-copy {
  padding: clamp(5rem, 8vw, 8rem) clamp(3rem, 7vw, 7rem) clamp(5rem, 8vw, 8rem)
    max(2rem, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(
      circle at 78% 20%,
      rgba(216, 170, 24, 0.09),
      transparent 30%
    ),
    #111417;
}

.expertise-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 2rem 0 0;
  color: #b9b8b3;
  line-height: 1.75;
}

.expertise-audiences {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2.1rem;
}

.expertise-audiences span {
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(216, 170, 24, 0.38);
  color: #dedcd5;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.qualification-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.qualification-card {
  appearance: none;
  min-height: 235px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.018), transparent 58%),
    #171a1d;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
  text-decoration: none;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.qualification-card:hover,
.qualification-card:focus-visible {
  z-index: 2;
  transform: translateY(-3px);
  background: #1e2225;
}

.qualification-card:first-child {
  color: #111;
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold) 65%,
    #a67b08
  );
}

.qualification-grid strong {
  font-family: var(--font-condensed);
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  line-height: 1;
}

.qualification-grid span {
  margin-top: 0.5rem;
  color: #aeada8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qualification-card:first-child span {
  color: #25210f;
}

.qualification-card small {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.6rem;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qualification-card:first-child small {
  color: #2b240d;
}

.qualification-card small svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.certificate-lightbox {
  position: fixed;
  z-index: 500;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
  display: none;
  place-items: center;
  padding: 2rem;
  border: 0;
  color: var(--white);
  background: transparent;
  overflow: auto;
}

.certificate-lightbox[open] {
  display: grid;
}

.certificate-lightbox::backdrop {
  background: rgba(3, 4, 5, 0.88);
  backdrop-filter: blur(12px);
}

.certificate-dialog {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  max-height: calc(100vh - 4rem);
  display: grid;
  /* grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr); */
  overflow: auto;
  color: var(--white);
  background: #121518;
  border: 1px solid rgba(216, 170, 24, 0.52);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.62);
}

.certificate-close {
  position: absolute;
  z-index: 3;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(10, 12, 14, 0.86);
  border: 1px solid var(--gold);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
  text-decoration: none;
}

.certificate-document {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0rem 0rem;
  color: #151719;
  background:
    linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
    #efede6;
  border: 18px solid #ddd7c8;
  text-align: center;
}

.certificate-document > span {
  color: #7e6500;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.certificate-document > strong {
  margin-top: 1.2rem;
  font-family: var(--font-condensed);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
}

.certificate-document > p {
  margin: 1rem 0 0;
  font-weight: 800;
}

.certificate-document > small {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid #aaa28f;
  color: #756f62;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.certificate-document > img.hidden { display:block;}

.certificate-info {
  align-self: center;
  padding: clamp(3rem, 6vw, 5rem);
  display:none;
}

.certificate-info h3 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.certificate-info > p:not(.eyebrow) {
  margin: 1.5rem 0 0;
  color: #b9b8b3;
  line-height: 1.75;
}

.text-link-button {
  border-top: 0;
  border-right: 0;
  border-left: 0;
  background: transparent;
  cursor: pointer;
}

.faq-section {
  color: #151719;
  background: #ede9e0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 9vw, 9rem);
}

.faq-grid > div:first-child > p:last-child {
  max-width: 420px;
  margin: 1.8rem 0 0;
  color: #5d5d58;
}

.faq-list {
  border-top: 1px solid rgba(18, 20, 22, 0.25);
}

.faq-list details {
  border-bottom: 1px solid rgba(18, 20, 22, 0.25);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.45rem 0;
  cursor: pointer;
  font-family: var(--font-condensed);
  font-size: 1.02rem;
  font-weight: 900;
  list-style: none;
  text-transform: uppercase;
}

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

.faq-list summary span {
  width: 34px;
  height: 34px;
  line-height:26px;
  display: block;
  text-align: center;
  border: 1px solid #8d6800;
  color: #8d6800;
  font-family: var(--font-body);
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  margin: -0.4rem 0 1.6rem;
  color: #585954;
  line-height: 1.7;
}

.contact-section {
  padding: clamp(5rem, 8vw, 8rem) 0;
  background:
    linear-gradient(110deg, rgba(216, 170, 24, 0.18), transparent 40%), #0a0c0e;
  border-top: 1px solid var(--line);
}

.contact-shell {
  width: min(calc(100% - 3rem), var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
}

.contact-action {
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.contact-action > p {
  margin: 0 0 1.8rem;
  color: #bdbcb7;
  line-height: 1.7;
}

.contact-phone {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1rem 1.15rem;
  color: #111;
  background: linear-gradient(110deg, var(--gold), var(--gold-light));
  text-decoration: none;
}

.contact-phone > svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-phone span {
  display: grid;
  font-size: clamp(1.1rem, 2.1vw, 1.5rem);
  font-weight: 900;
}

.contact-phone small {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-mail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.contact-mail svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  background: #07090a;
}

.footer-shell {
  width: min(calc(100% - 3rem), var(--max));
  min-height: 150px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(210px, 285px) 1fr auto;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.footer-brand {
  display: block;
  line-height: 0;
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.footer-shell address {
  color: #a9a8a3;
  font-size: 0.78rem;
  font-style: normal;
}

.footer-shell address a {
  color: inherit;
}

.footer-meta {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.35rem 1.15rem;
  color: #b9b8b3;
  font-size: 0.72rem;
}

.footer-meta small {
  grid-column: 1 / -1;
  color: #9b9b96;
}

#imprint { margin-top:4rem; padding-top:2rem;}
#imprint h1 {padding-bottom:2rem;}
#imprint b { display:inline-block; width:80px;}

#imprint h2, #imprint h3 {font-size:1.8rem; margin-top:2.0rem;}


@media (max-width: 1060px) {
  .header-shell {
    grid-template-columns: minmax(210px, 260px) 1fr auto;
  }

  .desktop-nav {
    gap: 1.2rem;
  }

  .header-phone span {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
    gap: 2.5rem;
  }

  .cause-section {
    grid-template-columns: 42% 58%;
  }

  .diagnostic-stack {
    grid-column: 1 / -1;
    grid-template-rows: none;
    grid-template-columns: repeat(3, 1fr);
    min-height: 270px;
  }

  .process-grid li {
    padding: 2rem;
  }

  .expertise-section {
    grid-template-columns: 1fr;
  }

  .expertise-copy {
    padding-inline: max(2rem, calc((100vw - var(--max)) / 2));
  }
}

@media (max-width: 820px) {
  .header-shell {
    min-height: 78px;
    grid-template-columns: minmax(190px, 235px) 1fr auto;
  }

  .desktop-nav,
  .header-phone {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    width: 48px;
    height: 48px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 0 11px;
    /* border: 1px solid var(--line); */
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::after {content:"Menü"; font-size:0.8rem; }


  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    height: 2px;
    background: var(--gold-light);
  }

  .mobile-menu nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    padding: 1rem 1.5rem 1.4rem;
    border-bottom: 1px solid var(--gold);
    background: #0c0e10;
  }

  .mobile-menu nav a {
    padding: 0.9rem 0.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3.5rem 0 4rem;
  }

  .hero-copy {
    max-width: 680px;
	padding:1rem;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-frame {
    inset: 0 4% 0 4%;
  }

  .response-card {
    right: 0;
  }

  .credential-shell {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.7rem 0;
  }

  .section-heading,
  .faq-grid,
  .contact-shell {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .cause-section {
    grid-template-columns: 1fr;
  }

  .cause-media {
    min-height: 500px;
  }

  .cause-copy {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem max(1.5rem, calc((100vw - var(--max)) / 2));
  }

  .certificate-dialog {
    grid-template-columns: 1fr;
  }

  .certificate-document {
    min-height: 420px;
  }

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

  .process-grid::before {
    display: none;
  }

  .process-grid li {
    min-height: auto;
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 1.3rem;
  }

  .process-grid li > span {
    margin-bottom: 0;
  }

  .footer-shell {
    grid-template-columns: 1fr 1fr;
    padding: 2rem 0;
  }

  .footer-brand {
    max-width: 240px;
  }
}

@media (max-width: 540px) {
  .header-shell,
  .hero-grid,
  .credential-shell {
    width: 100%;
  }

  .section-shell,
  .contact-shell,
  .footer-shell {
    width: min(calc(100% - 2rem), var(--max));
  }

  .brand {
    max-width: 215px;
	margin-left:calc(50% - 100px);
  }

  .hero-grid {
    padding-top: 0rem;
  }

  .hero-grid .visual-caption {display: none;}


  h1 {
    font-size: clamp(2.25rem, 10.5vw, 3.2rem);
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-benefits {
    display: grid;
    gap: 0.6rem;
  }

  .hero-visual {
    min-height: 455px;
  }

  .hero-frame {
    inset-inline: 0;
  }

  .response-card {
    right: 12px;
    bottom: 24px;
    width: calc(100% - 24px);
    grid-template-columns: auto 1fr;
  }

  .response-card > a {
    display: none;
  }

  .visual-caption {
    top: 12px;
    left: 12px;
  }

  .credential-shell ul {
    grid-template-columns: 1fr 1fr;
  }

  .credential-shell li {
    border-top: 1px solid var(--line);
  }

  .service-grid,
  .qualification-grid,
  .cause-gallery {
    grid-template-columns: 1fr;
  }

  .cause-gallery figure {
    min-height: 300px;
    border-right: 0;
  }

  .service-card {
    min-height: 280px;
  }

  .cause-media {
    min-height: 380px;
  }

  .diagnostic-stack {
    min-height: auto;
  }

  .diagnostic-stack figure {
    height: 260px;
  }

  .process-grid li {
    grid-template-columns: 52px 1fr;
  }

  .process-grid li > span {
    width: 52px;
    height: 52px;
  }

  .qualification-grid article {
    min-height: 180px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

html.dialog-open {
  overflow: hidden;
}
