:root {
  color-scheme: light;
  --ink: #122025;
  --muted: #617077;
  --paper: #f6f8f5;
  --surface: #ffffff;
  --line: rgba(18, 32, 37, 0.14);
  --deep: #102126;
  --mineral: #5f8793;
  --copper: #c16b34;
  --moss: #57755c;
  --sun: #e3b85c;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(15, 26, 30, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  width: min(calc(100% - 28px), var(--max));
  min-height: 62px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 10px 12px 10px 18px;
  color: #fff;
  background: rgba(16, 33, 38, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(18, 32, 37, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 780;
  letter-spacing: 0;
}

.brand span {
  font-size: 1.05rem;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 40px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.28));
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.91rem;
  font-weight: 650;
}

.nav-links a {
  opacity: 0.86;
  transition:
    opacity 180ms ease,
    color 180ms ease;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--sun);
}

.site-header.scrolled .nav-links a:hover {
  color: var(--copper);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.language-switch {
  display: grid;
  grid-template-columns: repeat(2, 40px);
  min-height: 40px;
  padding: 4px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
}

.language-switch button,
.menu-button,
.icon-link {
  min-width: 40px;
  min-height: 40px;
  display: inline-grid;
  place-items: center;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  cursor: pointer;
}

.language-switch button {
  font-size: 0.78rem;
  font-weight: 760;
}

.language-switch button.active {
  color: var(--deep);
  background: #fff;
}

.site-header.scrolled .language-switch button.active {
  color: #fff;
  background: var(--deep);
}

.icon-link {
  border: 1px solid currentColor;
}

.linkedin-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.site-header.scrolled .linkedin-icon {
  color: var(--deep);
  background: rgba(16, 33, 38, 0.04);
}

.icon-link svg,
.menu-button svg,
.primary-action svg,
.profile-link svg,
.social-links svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 21, 25, 0.9) 0%, rgba(8, 21, 25, 0.62) 42%, rgba(8, 21, 25, 0.16) 100%),
    linear-gradient(0deg, rgba(8, 21, 25, 0.82) 0%, rgba(8, 21, 25, 0.08) 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(118px, 14vh, 148px) 0 clamp(84px, 10vh, 112px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

h1,
h2,
h3 {
  overflow-wrap: normal;
  text-wrap: balance;
}

p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.9rem, 6.2vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-copy {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

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

.primary-action,
.secondary-action {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 760;
}

.primary-action {
  color: #101b1f;
  background: var(--sun);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.secondary-action {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.signal-strip {
  width: min(calc(100% - 32px), var(--max));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: -42px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--line);
}

.signal-strip div {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 22px;
  background: #fff;
}

.signal-strip strong {
  font-size: 1rem;
}

.signal-strip span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.turkey-copy h2,
.contact-inner h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 100px);
}

.intro-copy {
  display: grid;
  gap: 22px;
  color: #405158;
  font-size: 1.08rem;
}

.intro-copy p,
.turkey-copy p,
.contact-inner p {
  margin: 0;
}

.focus-section {
  padding-top: 48px;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.focus-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.focus-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  color: var(--copper);
  background: rgba(193, 107, 52, 0.1);
  border-radius: var(--radius);
}

.focus-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.focus-card h3,
.process-timeline h3,
.insight-list h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.22;
}

.focus-card p,
.process-timeline p,
.insight-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

.process-section {
  background:
    linear-gradient(135deg, rgba(16, 33, 38, 0.97), rgba(32, 56, 54, 0.95)),
    radial-gradient(circle at 20% 10%, rgba(227, 184, 92, 0.2), transparent 32%);
  color: #fff;
}

.process-inner {
  padding: 92px 0;
}

.process-section .eyebrow {
  color: var(--sun);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
}

.process-step {
  min-height: 260px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.05);
}

.process-timeline span {
  display: inline-block;
  margin-bottom: 58px;
  color: var(--sun);
  font-weight: 820;
}

.process-timeline p {
  color: rgba(255, 255, 255, 0.7);
}

.turkey-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.map-panel {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(95, 135, 147, 0.34), rgba(87, 117, 92, 0.3)),
    repeating-linear-gradient(0deg, rgba(18, 32, 37, 0.06) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, rgba(18, 32, 37, 0.06) 0 1px, transparent 1px 42px),
    #eef3ef;
  border: 1px solid var(--line);
}

.map-panel::before {
  content: "";
  position: absolute;
  inset: 14% 9% 18% 12%;
  border: 1px solid rgba(18, 32, 37, 0.18);
  transform: skew(-12deg) rotate(-4deg);
}

.map-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  transform-origin: left center;
}

.line-one {
  top: 45%;
  left: 16%;
  width: 70%;
  transform: rotate(-16deg);
}

.line-two {
  top: 59%;
  left: 20%;
  width: 62%;
  transform: rotate(18deg);
}

.map-node {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--copper);
  box-shadow: 0 0 0 10px rgba(193, 107, 52, 0.16);
}

.node-one {
  top: 52%;
  left: 47%;
}

.node-two {
  top: 33%;
  left: 25%;
}

.node-three {
  top: 65%;
  left: 72%;
}

.map-panel span {
  position: absolute;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 780;
}

.map-panel span:nth-of-type(1) {
  top: 46%;
  left: 52%;
}

.map-panel span:nth-of-type(2) {
  top: 28%;
  left: 18%;
}

.map-panel span:nth-of-type(3) {
  top: 69%;
  left: 58%;
}

.map-panel span:nth-of-type(4) {
  top: 32%;
  right: 16%;
}

.turkey-copy {
  display: grid;
  gap: 24px;
}

.turkey-copy p {
  color: #405158;
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #2f4248;
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 15px;
  height: 9px;
  border-bottom: 2px solid var(--moss);
  border-left: 2px solid var(--moss);
  transform: rotate(-45deg);
}

.founder-section {
  background: #fff;
  border-block: 1px solid var(--line);
}

.founder-inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(28px, 7vw, 92px);
  align-items: center;
}

.founder-profile {
  display: flex;
  gap: 22px;
  align-items: center;
}

.founder-monogram {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: linear-gradient(135deg, var(--copper), var(--moss));
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 820;
}

.founder-profile h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
}

.founder-role {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--muted);
}

.profile-link {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 0 13px;
  color: var(--deep);
  background: #f5f8f6;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 760;
}

.profile-link:hover {
  color: var(--copper);
  border-color: rgba(193, 107, 52, 0.36);
}

blockquote {
  margin: 0;
  color: #26383e;
  font-size: clamp(1.35rem, 2.6vw, 2.35rem);
  line-height: 1.15;
  font-weight: 720;
}

.insight-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.insight-card {
  min-height: 210px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-section {
  background:
    linear-gradient(120deg, rgba(16, 33, 38, 0.97), rgba(71, 96, 82, 0.95)),
    var(--deep);
  color: #fff;
}

.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr minmax(320px, 0.78fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.contact-section .eyebrow {
  color: var(--sun);
}

.contact-inner p {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.social-panel {
  max-width: 560px;
  margin-top: 28px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.social-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.96rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.social-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 760;
}

.social-links a:hover {
  color: var(--sun);
  border-color: rgba(227, 184, 92, 0.5);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 680;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: calc(var(--radius) - 2px);
  padding: 11px 12px;
  outline: none;
}

.contact-form textarea {
  min-height: 118px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--sun);
  box-shadow: 0 0 0 3px rgba(227, 184, 92, 0.16);
}

.contact-form select option {
  color: var(--ink);
}

.conditional-field[hidden] {
  display: none;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.site-footer {
  width: min(calc(100% - 32px), var(--max));
  min-height: 104px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin: 0 auto;
  color: var(--muted);
}

.site-footer .brand {
  color: var(--ink);
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 14px;
}

.footer-links a,
.footer-links button {
  color: var(--ink);
  background: transparent;
  border: 0;
  padding: 0;
  font-weight: 700;
  cursor: pointer;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--copper);
}

.cookie-banner {
  position: fixed;
  z-index: 80;
  right: 18px;
  bottom: 18px;
  left: 18px;
  width: min(calc(100% - 36px), 940px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 0 auto;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden],
.modal-backdrop[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.plain-action {
  min-height: 42px;
  color: var(--deep);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  font-weight: 760;
  cursor: pointer;
}

.compact-action {
  min-height: 42px;
  border: 0;
  cursor: pointer;
}

.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow-y: auto;
  background: rgba(16, 33, 38, 0.66);
  backdrop-filter: blur(10px);
}

.site-modal {
  position: relative;
  width: min(100%, 980px);
  max-height: calc(100svh - 40px);
  overflow: auto;
  padding: clamp(24px, 4vw, 38px);
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.28);
}

.privacy-modal {
  width: min(100%, 880px);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #f1f4f1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.site-modal h2 {
  max-width: 720px;
  margin: 0;
  padding-right: 46px;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.modal-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: #405158;
  font-size: 1.02rem;
}

.cookie-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cookie-toolbar span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.dark-action {
  min-height: 42px;
  color: var(--deep);
  border-color: var(--line);
  background: #f6f8f5;
  cursor: pointer;
}

.record-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
  min-width: 0;
}

.record-panel {
  min-width: 0;
  padding: 18px;
  background: #f8faf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.record-panel h3,
.notice-content h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.record-table {
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
}

.record-table table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.record-table th,
.record-table td {
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid rgba(18, 32, 37, 0.1);
}

.record-table th {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.record-table code {
  white-space: normal;
  word-break: break-word;
  color: #22343a;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.82rem;
}

.notice-content {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.notice-block {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.notice-content p {
  margin: 0;
  color: #405158;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    position: fixed;
    top: 86px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 12px;
  }

  .menu-button {
    display: inline-grid;
    border: 1px solid currentColor;
  }

  .icon-link {
    display: none;
  }

  .signal-strip,
  .focus-grid,
  .process-timeline,
  .insight-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-section,
  .turkey-section,
  .founder-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .map-panel {
    min-height: 360px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 28px 0;
  }

  .site-footer p {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-banner-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--max));
    gap: 10px;
    padding-left: 12px;
  }

  .brand span {
    font-size: 0.96rem;
  }

  .language-switch {
    grid-template-columns: repeat(2, 34px);
    min-height: 38px;
  }

  .language-switch button,
  .menu-button {
    min-width: 34px;
    min-height: 34px;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-content {
    width: min(calc(100% - 24px), var(--max));
    padding-bottom: 52px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
    line-height: 1;
  }

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

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

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .signal-strip {
    width: min(calc(100% - 24px), var(--max));
    grid-template-columns: 1fr;
    margin-top: -26px;
  }

  .signal-strip div {
    min-height: 98px;
  }

  .section {
    width: min(calc(100% - 24px), var(--max));
    padding: 68px 0;
  }

  .focus-grid,
  .process-timeline,
  .insight-list {
    grid-template-columns: 1fr;
  }

  .focus-card,
  .process-step,
  .insight-card {
    min-height: auto;
  }

  .process-timeline span {
    margin-bottom: 28px;
  }

  .founder-profile {
    align-items: flex-start;
  }

  .profile-link {
    width: 100%;
    justify-content: center;
  }

  .founder-monogram {
    width: 70px;
    height: 70px;
    font-size: 1.12rem;
  }

  .contact-form {
    padding: 18px;
  }

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

  .social-links a {
    justify-content: center;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
  }

  .cookie-banner-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .plain-action,
  .compact-action {
    width: 100%;
  }

  .modal-backdrop {
    padding: 12px;
  }

  .site-modal {
    max-height: calc(100svh - 24px);
    padding: 22px 16px;
  }

  .record-panel {
    padding: 14px;
  }
}

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