@font-face {
  font-family: "Care Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("cormorant-garamond-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Care Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("cormorant-garamond-latin-400-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Care Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("inter-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Care Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("inter-latin-600-normal.woff2") format("woff2");
}

:root {
  --ink: #132331;
  --ink-soft: #344755;
  --night: #10202d;
  --night-deep: #0a1721;
  --paper: #f7f3eb;
  --paper-strong: #fffdf8;
  --paper-muted: #eee8dc;
  --gold: #aa8958;
  --gold-light: #d7c39e;
  --gold-readable: #72542b;
  --sage: #6d7e72;
  --line: rgba(19, 35, 49, 0.14);
  --white-line: rgba(255, 255, 255, 0.17);
  --shadow: 0 28px 70px rgba(24, 36, 45, 0.11);
  --serif: "Care Serif", Georgia, serif;
  --sans: "Care Sans", Arial, sans-serif;
  --wrap: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  transform: translateY(-160%);
  padding: 12px 18px;
  border-radius: 999px;
  color: white;
  background: var(--night);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.preview-ribbon {
  padding: 8px 20px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--night-deep);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 243, 235, 0.95);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: var(--wrap);
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}

.brand-primary {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.brand-secondary {
  margin-top: 7px;
  color: var(--gold-readable);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.site-nav > a,
.nav-services > summary {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.nav-services > summary[aria-current="page"] {
  color: var(--gold-readable);
}

.site-nav > .nav-future {
  padding-left: 20px;
  border-left: 1px solid var(--line);
  font-weight: 400;
}

.nav-services {
  position: relative;
}

.nav-services > summary {
  list-style: none;
  cursor: pointer;
}

.nav-services > summary::-webkit-details-marker {
  display: none;
}

.nav-services > summary::after {
  content: " +";
  color: var(--gold);
}

.nav-services[open] > summary::after {
  content: " −";
}

.nav-panel {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  width: 260px;
  transform: translateX(-50%);
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.nav-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
  text-decoration: none;
}

.nav-panel a:hover {
  background: var(--paper-muted);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-left: 4px;
}

.language-switcher a {
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}

.language-switcher a[aria-current="true"] {
  border-color: var(--gold);
  color: var(--ink);
}

.nav-contact {
  padding: 12px 18px;
  border-radius: 999px;
  color: white !important;
  background: var(--night);
}

.menu-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.page-main {
  overflow: clip;
}

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

.hero {
  min-height: calc(100vh - 118px);
  display: grid;
  align-items: stretch;
  background: var(--night);
}

.hero-inner {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: clamp(60px, 9vw, 110px) 0;
}

.hero-copy {
  color: white;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
}

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(3.25rem, 6.8vw, 6.8rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 5vw, 4.8rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
}

.hero-lead,
.section-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.06rem, 1.8vw, 1.28rem);
  line-height: 1.75;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button-primary {
  color: var(--night);
  background: var(--gold-light);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  color: white;
  background: transparent;
}

.button-dark {
  color: white;
  background: var(--night);
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 220px 220px 22px 22px;
  object-fit: cover;
  object-position: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 20px -18px -18px 20px;
  border: 1px solid rgba(215, 195, 158, 0.55);
  border-radius: 220px 220px 22px 22px;
  pointer-events: none;
}

.section {
  padding: clamp(78px, 10vw, 130px) 0;
}

.section-paper {
  background: var(--paper-strong);
}

.section-night {
  color: white;
  background: var(--night);
}

.section:not(.section-night) .eyebrow,
.future-panel .eyebrow,
.contact-hub .eyebrow {
  color: var(--gold-readable);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

.section-heading .section-lead {
  color: var(--ink-soft);
}

.section-night .section-heading .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.audience-grid,
.service-grid,
.choice-grid,
.insights-grid,
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

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

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

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

.audience-card,
.service-card,
.choice-card,
.insight-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--paper-strong);
  text-decoration: none;
}

.audience-card:first-child {
  color: white;
  background: var(--night);
}

.audience-card:first-child p {
  color: rgba(255, 255, 255, 0.72);
}

.card-index {
  color: var(--gold-readable);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.card-link {
  margin-top: 28px;
  color: var(--gold-readable);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audience-card:first-child .card-index,
.audience-card:first-child .card-link {
  color: var(--gold-light);
}

.service-card p,
.choice-card p,
.insight-card p,
.audience-card p {
  color: var(--ink-soft);
}

.content-card {
  min-height: 230px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper-strong);
}

.section-paper .content-card {
  background: var(--paper);
}

.content-card h3 {
  margin-top: 28px;
  font-size: clamp(1.75rem, 3vw, 2.3rem);
}

.content-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 190px;
  padding: 32px;
  border-top: 1px solid var(--white-line);
  counter-increment: process;
}

.process-step + .process-step {
  border-left: 1px solid var(--white-line);
}

.process-step::before {
  content: "0" counter(process);
  display: block;
  margin-bottom: 42px;
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.process-step h3 {
  font-size: 1.75rem;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(38px, 8vw, 110px);
  align-items: center;
}

.portrait {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 200px 200px 24px 24px;
  box-shadow: var(--shadow);
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quiet-list {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.quiet-list li {
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.future-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: clamp(34px, 6vw, 68px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, var(--paper-strong), var(--paper-muted));
}

.closing-panel {
  color: var(--ink);
}

.closing-panel h2 {
  max-width: 760px;
  color: var(--ink);
}

.trust-intro {
  margin-bottom: clamp(48px, 7vw, 84px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.trust-item {
  min-height: 210px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item h3 {
  margin-top: 22px;
  font-size: 1.65rem;
}

.trust-item p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.trust-boundary {
  max-width: 820px;
  margin: 28px 0 0;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.future-note {
  margin-top: 54px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.future-note h3 {
  margin: 8px 0 10px;
  font-size: 1.8rem;
}

.future-note p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.future-note-label {
  color: var(--gold-readable);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quiet-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.section-compact {
  padding: 42px 0 76px;
}

.commerce-note {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) 1fr;
  gap: 40px;
  align-items: start;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}

.commerce-note h3,
.commerce-note p {
  margin-bottom: 0;
}

.commerce-note p {
  color: var(--ink-soft);
}

.boundary-panel {
  display: grid;
  grid-template-columns: minmax(230px, 0.65fr) 1fr;
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
  padding: clamp(34px, 6vw, 62px);
  border-left: 4px solid var(--gold);
  background: var(--paper-muted);
}

.boundary-panel h2,
.boundary-panel p {
  margin-bottom: 0;
}

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

.future-mark {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  letter-spacing: 0.08em;
}

.contact-hub {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.contact-card {
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.contact-method {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-method small {
  display: block;
  color: var(--gold-readable);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-method strong {
  display: block;
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.field-optional {
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: white;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.radio-option,
.check-option {
  min-height: 44px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.radio-option input,
.check-option input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.form-notice {
  margin: 0;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  color: var(--ink-soft);
  background: var(--paper-muted);
  font-size: 0.9rem;
}

.form-status {
  min-height: 28px;
  margin: 0;
  color: var(--sage);
  font-weight: 600;
}

.form-status[data-state="error"] {
  color: #8a2525;
}

.form-status[data-state="loading"] {
  color: var(--ink-soft);
}

.contact-form[aria-busy="true"] {
  cursor: wait;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding: 74px 0 120px;
  color: white;
  background: var(--night-deep);
}

.site-footer .brand-secondary {
  color: var(--gold-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 60px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links a {
  text-decoration: none;
}

.footer-title {
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-legal {
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--white-line);
  font-size: 0.78rem;
}

.mobile-contact-bar {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr;
  padding: 6px;
  border: 1px solid var(--white-line);
  border-radius: 18px;
  background: rgba(10, 23, 33, 0.95);
  box-shadow: 0 18px 44px rgba(10, 23, 33, 0.3);
  backdrop-filter: blur(16px);
}

.mobile-contact-bar[hidden],
body.menu-open .mobile-contact-bar {
  display: none;
}

.mobile-contact-bar a {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: white;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-contact-bar a:first-child {
  color: var(--night);
  background: var(--gold-light);
}

@media (max-width: 1040px) {
  .site-nav {
    position: fixed;
    inset: 117px 16px auto;
    max-height: calc(100vh - 140px);
    display: none;
    overflow-y: auto;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--paper-strong);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
    gap: 10px;
  }

  .site-nav > a,
  .nav-services > summary {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .site-nav > .nav-future {
    padding-left: 10px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .nav-panel {
    position: static;
    width: auto;
    transform: none;
    margin-top: 4px;
    box-shadow: none;
  }

  .language-switcher {
    padding: 14px 0 4px;
    border-top: 1px solid var(--line);
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 800px) {
  :root {
    --wrap: min(100% - 32px, 680px);
  }

  body {
    font-size: 16px;
  }

  .header-inner {
    min-height: 74px;
  }

  .site-nav {
    top: 107px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 64px 0 80px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

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

  .audience-grid,
  .service-grid,
  .choice-grid,
  .insights-grid,
  .content-grid,
  .split-panel,
  .contact-hub,
  .footer-grid,
  .future-panel,
  .trust-grid,
  .future-note,
  .commerce-note,
  .boundary-panel {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .section {
    padding: 56px 0;
  }

  body[data-page="home"] .audience-card,
  body[data-page="home"] .service-card {
    min-height: 168px;
    padding: 24px;
  }

  body[data-page="home"] .process-step {
    min-height: 0;
    padding: 24px 0;
  }

  body[data-page="home"] .trust-intro {
    margin-bottom: 38px;
  }

  body[data-page="home"] .home-trust .portrait {
    aspect-ratio: 4 / 3;
  }

  body[data-page="home"] .trust-item {
    padding: 24px;
  }

  body[data-page="home"] .future-note {
    margin-top: 36px;
  }

  .trust-item {
    min-height: 0;
  }

  .future-note,
  .commerce-note {
    gap: 18px;
  }

  .audience-card,
  .service-card,
  .choice-card,
  .insight-card,
  .content-card {
    min-height: 230px;
  }

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

  .process-step + .process-step {
    border-left: 0;
  }

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

  .field-full {
    grid-column: auto;
  }

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

  .site-footer {
    padding-bottom: 130px;
  }
}

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

.insights-all {
  margin-top: 28px;
  text-align: right;
}

.insights-all a {
  font-weight: 600;
  color: var(--gold-readable);
}

.form-disabled-notice {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  line-height: 1.6;
}

/* Sprachhinweis-Band: unauffaellig, tastaturbedienbar, kein Layout-Sprung.
   Standardmaessig via [hidden] unsichtbar — ohne JavaScript erscheint es nie. */
.lang-hint[hidden] { display: none; }

.lang-hint {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

.lang-hint-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-hint-option[hidden] { display: none; }

.lang-hint-option {
  margin: 0;
  flex: 1 1 auto;
  line-height: 1.5;
}

.lang-hint-option a {
  font-weight: 600;
  color: var(--gold-readable);
  white-space: nowrap;
}

.lang-hint-dismiss {
  flex: 0 0 auto;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: inherit;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.lang-hint-dismiss:hover,
.lang-hint-dismiss:focus-visible {
  border-color: var(--gold-readable);
  color: var(--gold-readable);
}

@media (max-width: 640px) {
  .lang-hint-inner { padding: 12px 18px; gap: 12px; }
  .lang-hint { font-size: 0.9rem; }
}
