/* Switzer (variable) — Indian Type Foundry, ITF Free Font License (FFL).
   Free for commercial use, no attribution required. License file lives in
   the same directory: assets/fonts/SWITZER-LICENSE.txt
   https://www.fontshare.com/licenses/itf-ffl
   Used for body and UI labels. */
@font-face {
  font-family: "Switzer";
  src: url("../fonts/Switzer-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Switzer";
  src: url("../fonts/Switzer-VariableItalic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* Fraunces (variable) — Undercase Type, OFL.
   Used for headlines (h1/h2/h3) only; body stays Switzer. The
   optical-sizing axis kicks in automatically based on rendered size. */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/Fraunces[SOFT,WONK,opsz,wght].woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/Fraunces-Italic[SOFT,WONK,opsz,wght].woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  /* Surfaces — neutral light grey, plain and modern. */
  --bg: #f4f4f4;
  --bg-soft: #ececec;
  --surface: #ffffff;
  --surface-muted: #ededed;

  /* Ink — near-black neutral on the cool grey base. */
  --ink: #18181f;
  --ink-soft: #555560;
  --ink-inverse: #ffffff;

  /* Dark contrast surfaces (contact card, error page) — neutral near-black
     with a tiny blue cast so it echoes the gradient end. */
  --charcoal: #18181f;
  --charcoal-soft: #20202a;

  /* Brand palette: a magenta -> deep-blue gradient with the magenta as the
     standalone "pop" colour. Buttons and emphasis blocks use the gradient,
     hover/focus states and small accents fall back to flat brand-magenta. */
  --brand: #bc15bf;                 /* neon magenta — pop for accents */
  --brand-strong: #d633d9;          /* hover/focus brighter magenta */
  --accent: #5d0ce4;                /* deep purple — secondary accent */
  --accent-strong: #7530eb;         /* hover */
  --gradient-start: #bc15bf;
  --gradient-end: #3000f4;
  --gradient-start-strong: #d633d9;
  --gradient-end-strong: #4d1ff7;
  --brand-gradient: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  --brand-gradient-strong: linear-gradient(135deg, var(--gradient-start-strong) 0%, var(--gradient-end-strong) 100%);

  --line: #d6d6dc;
  --line-strong: #b8b8c2;
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 16px 44px rgba(20, 20, 30, 0.08);
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: min(1160px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fafafa 0%, var(--bg) 100%);
  font-family: "Switzer", "Inter", "Helvetica Neue", "Arial", system-ui, sans-serif;
  line-height: 1.7;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.08;
  font-family: "Fraunces", Georgia, "Iowan Old Style", "Times New Roman", serif;
  font-optical-sizing: auto;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.8rem);
  max-width: 18ch;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  max-width: 24ch;
  letter-spacing: -0.005em;
}

h3 {
  font-size: 1.35rem;
}

p,
ul {
  margin: 0 0 1rem;
}

.nowrap {
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 30;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--brand);
  color: var(--ink-inverse);
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(252, 252, 252, 0.96) 0%, rgba(244, 244, 244, 0.92) 100%);
  border-bottom: 1px solid rgba(24, 24, 31, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-bar,
.footer-bar,
.dual-panel,
.contact-shell {
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
}

.header-bar,
.footer-bar {
  align-items: center;
  min-height: 5rem;
}

.header-bar {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  text-decoration: none;
}

.brand span {
  display: grid;
  gap: 0.15rem;
}

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

.brand small {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.eyebrow {
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.95rem;
}

.site-nav,
.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.site-nav a,
.footer-links a,
.hero-mail,
.contact-link {
  text-decoration: none;
}

.site-nav a,
.footer-links a {
  color: var(--ink-soft);
}

.site-nav a {
  font-size: 1rem;
  position: relative;
  padding: 0.25rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--brand);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.hero-mail:hover,
.hero-mail:focus-visible,
.contact-link:hover,
.contact-link:focus-visible {
  color: var(--brand);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 0.45rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: color 160ms ease, border-color 160ms ease;
}

.lang-switch:hover,
.lang-switch:focus-visible {
  color: var(--brand);
  border-color: var(--brand);
}

.hero,
.section,
.page-hero {
  padding: 3rem 0;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 60% at 88% 22%, rgba(188, 21, 191, 0.12), transparent 65%),
    radial-gradient(ellipse 60% 60% at 10% 92%, rgba(48, 0, 244, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(244, 244, 244, 0.78) 0%, rgba(244, 244, 244, 0.88) 100%),
    url("../img/hero-bg.jpg") no-repeat center / cover;
  padding-top: 7rem;
  padding-bottom: 6rem;
}

.hero-decoration {
  position: absolute;
  bottom: 48px;
  right: 56px;
  width: 220px;
  height: 220px;
  background: url("../img/brand-mark.png") no-repeat center / contain;
  opacity: 0;
  pointer-events: none;
}

.hero-graphic {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.9;
  object-fit: cover;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-copy {
  padding: 0.4rem 0;
  max-width: 60rem;
}

.hero-copy h1 {
  max-width: 22ch;
  text-wrap: balance;
}

.lead {
  max-width: 60ch;
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.hero-panel,
.card,
.panel,
.statement-panel,
.contact-card,
.legal-card,
.error-layout,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: none;
}

.hero-panel {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-dark);
  box-shadow: none;
}

.hero-panel h2 {
  max-width: none;
  font-size: clamp(1.3rem, 1.8vw, 1.75rem);
  line-height: 1.15;
}

.hero-list,
.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-list li,
.feature-list li {
  position: relative;
  padding-left: 1.25rem;
}

.hero-list li {
  font-size: 0.98rem;
  color: rgba(244, 239, 222, 0.88);
}

.hero-list li + li,
.feature-list li + li {
  margin-top: 0.85rem;
}

.hero-list li::before,
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--brand);
}

.contact-link {
  color: var(--accent-strong);
  font-weight: 600;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.section-contrast {
  background: linear-gradient(180deg, rgba(188, 21, 191, 0.04), rgba(255, 255, 255, 0));
}

.section-proof {
  background:
    linear-gradient(180deg, rgba(237, 237, 237, 0.9), rgba(244, 244, 244, 0.98)),
    radial-gradient(circle at top left, rgba(48, 0, 244, 0.07), transparent 55%);
  border-top: 1px solid rgba(24, 24, 31, 0.06);
  border-bottom: 1px solid rgba(24, 24, 31, 0.06);
}

.approach-intro {
  margin-bottom: 2rem;
}

.section-heading {
  max-width: 34rem;
}

.section-heading h2 {
  max-width: 30ch;
}

.section-heading-wide {
  max-width: 56rem;
  margin-bottom: 2rem;
}

.section-heading-wide h2 {
  max-width: none;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 34rem) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.split-section > .section-heading {
  max-width: none;
}

.rich-text {
  max-width: 60rem;
  font-size: 1.03rem;
  color: var(--ink-soft);
}

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

.service-card {
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 20, 30, 0.06);
}

.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3) {
  grid-column: span 4;
}

.service-card:nth-child(4),
.service-card:nth-child(5),
.service-card:nth-child(6) {
  grid-column: span 4;
}

.service-card-highlight {
  background: linear-gradient(135deg, rgba(188, 21, 191, 0.10), rgba(48, 0, 244, 0.06));
  border-color: rgba(188, 21, 191, 0.35);
}

.service-card-highlight .eyebrow {
  color: var(--accent);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  color: var(--accent-strong);
  text-decoration: none;
  font-weight: 600;
}

.service-card-link:hover,
.service-card-link:focus-visible {
  color: var(--accent);
}

.proof-rows {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(24, 24, 31, 0.12);
}

.proof-row {
  display: grid;
  grid-template-columns: minmax(14rem, 22rem) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(24, 24, 31, 0.12);
}

.proof-row h3 {
  max-width: 28ch;
  margin-bottom: 0.3rem;
}

.proof-row > p:last-child {
  max-width: 62rem;
  color: var(--ink-soft);
}

.proof-meta {
  margin: 0 0 0.95rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.fit-list-shell {
  max-width: 56rem;
}

.fit-list-shell .feature-list li {
  font-size: 1.08rem;
  line-height: 1.72;
}

.fit-list-shell .feature-list li + li {
  margin-top: 1.15rem;
}

.fit-list-shell .feature-list strong {
  color: var(--ink);
}

.dual-panel {
  align-items: stretch;
}

.panel,
.statement-panel,
.contact-card,
.legal-card,
.error-layout {
  padding: 1.75rem;
  background: var(--surface);
}

.panel,
.legal-card {
  flex: 1 1 0;
}

.statement-panel {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-soft) 100%);
  border-color: var(--line-dark);
  color: var(--ink-inverse);
}

.statement-panel .eyebrow {
  color: var(--accent-strong);
}

.statement-panel h2 {
  max-width: none;
}

.statement {
  max-width: 56rem;
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  line-height: 1.55;
}

.statement-detail {
  max-width: 56rem;
  color: rgba(244, 239, 222, 0.74);
}

.contact-shell {
  align-items: stretch;
}

.contact-copy {
  flex: 1 1 auto;
  max-width: 48rem;
}

.contact-process-title {
  margin-top: 1.25rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: var(--ink);
}

.contact-process {
  list-style: none;
  counter-reset: contact-step;
  padding-left: 0;
  margin: 0 0 1.4rem;
  max-width: 50rem;
}

.contact-process li {
  counter-increment: contact-step;
  position: relative;
  padding-left: 2.2rem;
  margin: 0 0 0.7rem;
  line-height: 1.6;
}

.contact-process li::before {
  content: counter(contact-step) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--brand);
}

.contact-closing {
  margin-top: 0.5rem;
}

.contact-card {
  flex: 0 0 28rem;
  width: min(100%, 28rem);
  background: var(--brand-gradient);
  border: 0;
  color: #ffffff;
}

.contact-card .contact-link {
  color: rgba(255, 255, 255, 0.95);
}

.contact-card .contact-link:hover,
.contact-card .contact-link:focus-visible {
  color: #ffffff;
}

.contact-company {
  color: var(--accent-strong);
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button-primary {
  background: var(--brand-gradient);
  color: #ffffff;
  border: 0;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--brand-gradient-strong);
}

.button-secondary {
  border-color: rgba(24, 24, 31, 0.22);
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--ink);
  color: var(--ink);
}

.site-footer {
  padding-bottom: 2rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 2.25rem;
  padding-bottom: 1.4rem;
  border-top: 1px solid rgba(24, 24, 31, 0.08);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}

.footer-brand img {
  display: block;
}

.footer-brand strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
}

.footer-brand small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.footer-social {
  display: flex;
  gap: 0.4rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: color 160ms ease, background-color 160ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--brand);
  background-color: rgba(188, 21, 191, 0.08);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-bar {
  min-height: auto;
  padding-top: 1.2rem;
}

.content-page {
  background: linear-gradient(180deg, #fafafa 0%, var(--bg) 100%);
}

.content-main {
  min-height: calc(100vh - 11rem);
}

.page-hero {
  padding-bottom: 1rem;
}

.legal-card {
  max-width: 50rem;
}

.legal-notice-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-section {
  padding: 1.2rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-muted);
}

.legal-section h2 {
  max-width: none;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.legal-section-wide {
  grid-column: 1 / -1;
}

.legal-kv {
  margin: 0;
}

.legal-kv div + div {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(24, 24, 31, 0.08);
}

.legal-kv dt {
  margin-bottom: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.legal-kv dd {
  margin: 0;
  line-height: 1.6;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-soft));
}

.error-layout {
  width: min(38rem, calc(100vw - 2rem));
  text-align: center;
  background: rgba(20, 20, 30, 0.92);
  border-color: var(--line-dark);
  color: var(--ink-inverse);
}

.error-layout img {
  margin-inline: auto;
}

/* --- Stats strip --------------------------------------------- */

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(24, 24, 31, 0.12);
  border-bottom: 1px solid rgba(24, 24, 31, 0.12);
}

.stat {
  padding: 1.5rem 1.25rem;
  border-right: 1px solid rgba(24, 24, 31, 0.12);
}

.stat:last-child {
  border-right: none;
}

.stat-number {
  display: block;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 700;
  color: var(--brand);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-label {
  margin: 0;
  font-size: 0.96rem;
  color: var(--ink-soft);
}

/* --- Result list (numbers + plain achievements) -------------- */

.result-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
  max-width: 56rem;
}

.result-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 1.02rem;
  line-height: 1.6;
}

.result-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

/* --- Logo strip (clients) ----------------------------------- */

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  color: var(--ink-soft);
}

.logo-strip-item {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  opacity: 0.78;
  display: inline-flex;
  align-items: center;
}

.logo-strip-item img {
  display: block;
  height: 88px;
  width: auto;
  opacity: 0.9;
  transition: opacity 160ms ease;
}

.logo-strip-item:hover img {
  opacity: 1;
}

/* --- Testimonials -------------------------------------------- */

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

.testimonial-card {
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.testimonial-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 20, 30, 0.06);
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
}

.testimonial-card blockquote p {
  margin: 0 0 0.6rem;
}

.testimonial-card blockquote p:last-child {
  margin-bottom: 0;
}

.testimonial-attribution {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(24, 24, 31, 0.08);
  color: var(--ink-soft);
}

.testimonial-photo {
  display: block;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.testimonial-meta strong {
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}

.testimonial-org {
  font-size: 0.88rem;
  line-height: 1.35;
  color: var(--ink-soft);
}

/* --- About page / prose ------------------------------------- */

.prose {
  max-width: 50rem;
}

.prose h2 {
  max-width: none;
  margin-top: 2.6rem;
  margin-bottom: 0.85rem;
  font-size: clamp(1.35rem, 1.6vw, 1.6rem);
}

.prose h2:first-of-type {
  margin-top: 1.6rem;
}

.prose p {
  max-width: 64ch;
  margin-bottom: 1.1rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose .contact-actions {
  margin-top: 1.25rem;
}

/* --- Icon + text links -------------------------------------- */

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.icon-link svg {
  width: 1.05em;
  height: 1.05em;
  flex-shrink: 0;
}

/* --- About hero (portrait + intro side by side) ------------- */

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr clamp(180px, 20vw, 300px);
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-hero-grid .hero-copy {
  max-width: 42rem;
}

.about-hero-portrait {
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(244, 239, 222, 0.10);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  background: var(--charcoal);
}

.about-hero-portrait img {
  display: block;
  width: 100%;
  height: auto;
}

/* --- Index inline portrait (Über mich block) ---------------- */

.intro-grid {
  display: grid;
  grid-template-columns: clamp(180px, 22vw, 280px) 1fr;
  gap: 3rem;
  align-items: center;
}

.intro-portrait {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.intro-portrait img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1080px) {
  .header-bar {
    min-height: auto;
    padding: 1rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-layout,
  .dual-panel,
  .contact-shell {
    grid-template-columns: 1fr;
    flex-direction: column;
    justify-content: flex-start;
  }

  .contact-card {
    flex: 0 1 auto;
    width: min(100%, 28rem);
  }

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

  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5),
  .service-card:nth-child(6) {
    grid-column: span 6;
  }

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

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

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

  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(24, 24, 31, 0.12);
  }

  .stat:last-child {
    border-bottom: none;
  }

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

  .intro-portrait {
    width: clamp(220px, 60vw, 320px);
  }
}

@media (max-width: 720px) {
  .hero,
  .section {
    padding: 3.5rem 0;
  }

  .page-hero {
    padding: 3.5rem 0 1rem;
  }

  .page-hero + .section {
    padding-top: 1rem;
  }

  .hero-graphic {
    opacity: 0.9;
  }

  .hero-decoration {
    display: none;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  h1,
  h2 {
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .button {
    width: 100%;
  }

  .legal-notice-grid {
    grid-template-columns: 1fr;
  }

  .legal-section-wide {
    grid-column: auto;
  }

  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5),
  .service-card:nth-child(6) {
    grid-column: span 12;
  }
}

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

  .button,
  .service-card,
  .testimonial-card,
  .footer-social a,
  .site-nav a::after,
  .lang-switch {
    transition: none;
  }

  .service-card:hover,
  .testimonial-card:hover {
    transform: none;
  }
}
