:root {
      --limestone: #F8F6F0;
      --white: #FFFFFF;
      --concrete: #ECE8DF;
      --line: #D8D2C7;
      --text: #202529;
      --deep: #0F1417;
      --muted: #626A70;
      --burgundy: #8B1E2D;
      --burgundy-deep: #6F1724;
      --navy: #173B63;
      --navy-deep: #0E2A47;
      --navy-soft: #E8EEF4;
      --glass: rgba(255, 255, 255, 0.88);
      --max: 1360px;
      --display: "Instrument Sans", "Aptos Display", sans-serif;
      --body: "DM Sans", "Aptos", "Segoe UI", sans-serif;
      --mono: "IBM Plex Mono", "Cascadia Mono", monospace;
    }

    * { box-sizing: border-box; }
    html,
    body {
      width: 100%;
      max-width: 100%;
      overflow-x: clip;
    }
    html {
      color-scheme: light;
      scrollbar-width: none;
      scroll-behavior: smooth;
    }
    html::-webkit-scrollbar,
    body::-webkit-scrollbar { width: 0; height: 0; display: none; }
    body {
      margin: 0;
      background:
        linear-gradient(90deg, rgba(32,37,41,0.035) 1px, transparent 1px) 0 0 / 78px 78px,
        linear-gradient(180deg, var(--limestone) 0%, var(--white) 36%, var(--concrete) 100%);
      color: var(--text);
      font-family: var(--body);
      font-size: 16px;
      line-height: 1.65;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; }
    img, video { display: block; max-width: 100%; }
    section, header, main, footer { width: 100%; max-width: 100%; }
    button, a { -webkit-tap-highlight-color: transparent; }

    .skip {
      position: absolute;
      left: 12px;
      top: -80px;
      z-index: 30;
      padding: 12px 14px;
      background: var(--burgundy);
      color: var(--white);
    }
    .skip:focus { top: 12px; }

    .shell {
      width: min(100%, var(--max));
      margin: 0 auto;
      padding-inline: clamp(20px, 5vw, 48px);
    }

    .topbar {
      position: fixed;
      inset: 0 0 auto;
      z-index: 20;
      border-bottom: 1px solid rgba(32, 37, 41, 0.10);
      background: var(--glass);
      backdrop-filter: blur(12px);
      transition: min-height 260ms ease, box-shadow 280ms ease, background 280ms ease, border-color 280ms ease;
    }
    .topbar.is-scrolled {
      background: rgba(255,255,255,0.95);
      border-color: rgba(32,37,41,0.16);
      box-shadow: 0 10px 28px rgba(14,42,71,0.08);
    }
    .nav {
      position: relative;
      min-height: 84px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      transition: min-height 220ms ease;
    }
    .topbar.is-scrolled .nav { min-height: 70px; }
    .brand img { width: min(252px, 64vw); height: auto; }
    .navlinks { display: none; align-items: center; gap: 38px; font-size: 14px; font-weight: 600; }
    .navlinks a {
      position: relative;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      color: var(--text);
      text-decoration: none;
    }
    .navlinks a::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 8px;
      height: 1px;
      background: linear-gradient(90deg, var(--burgundy), var(--navy));
      transform: scaleX(0.18);
      opacity: 0;
      transform-origin: left;
      transition: transform 260ms ease, opacity 260ms ease;
    }
    .navlinks a:hover::before,
    .navlinks a.is-active::before { transform: scaleX(1); opacity: 1; }
    .nav-cta {
      display: none;
      min-height: 42px;
      align-items: center;
      padding: 12px 16px;
      border: 1px solid rgba(139,30,45,0.24);
      color: var(--burgundy);
      font-weight: 650;
      text-decoration: none;
    }
    .menu {
      flex: 0 0 auto;
      width: 48px;
      height: 48px;
      border: 1px solid var(--line);
      border-radius: 2px;
      background: var(--white);
      color: var(--text);
      font: 700 12px var(--mono);
      cursor: pointer;
    }

    .hero {
      position: relative;
      min-height: 92dvh;
      isolation: isolate;
      overflow: hidden;
      background: var(--deep);
    }
    .hero video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
      will-change: auto;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(90deg, rgba(15,20,23,0.58) 0%, rgba(15,20,23,0.31) 42%, rgba(15,20,23,0.04) 78%);
      pointer-events: none;
    }
    .hero::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: min(920px, 82vw);
      height: 1px;
      background: linear-gradient(90deg, var(--burgundy), rgba(255,255,255,0));
      transform-origin: left;
      animation: lineDraw 900ms ease both 520ms;
    }
    .hero-inner {
      min-height: 92dvh;
      display: grid;
      align-content: end;
      padding-block: 116px 58px;
    }
    .hero-copy {
      max-width: min(1180px, 100%);
      animation: heroIn 680ms cubic-bezier(.19,1,.22,1) both 140ms;
    }
    .eyebrow {
      margin-bottom: 12px;
      color: var(--burgundy);
      font: 700 11px/1.45 var(--mono);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .hero .eyebrow { color: #FFFFFF; }
    h1, h2, h3, p, figure { margin-top: 0; }
    h1 {
      max-width: 1160px;
      margin-bottom: 20px;
      color: var(--white);
      font-family: var(--display);
      font-size: clamp(42px, 4.6vw, 68px);
      font-weight: 620;
      line-height: 1.08;
      letter-spacing: -0.018em;
      text-wrap: balance;
    }
    .lead {
      max-width: 760px;
      margin-bottom: 28px;
      color: #F8F6F0;
      font-size: clamp(16px, 1.6vw, 19px);
      line-height: 1.64;
    }
    .actions { display: flex; flex-direction: column; gap: 12px; width: min(100%, 380px); }
    .btn {
      position: relative;
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 15px 19px;
      border: 1px solid var(--line);
      border-radius: 2px;
      background: var(--white);
      color: var(--text);
      text-decoration: none;
      font-weight: 650;
      line-height: 1;
      overflow: hidden;
      transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
    }
    .btn::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
      transform: translateX(-110%);
      transition: transform 430ms ease;
    }
    .btn:hover::after { transform: translateX(110%); }
    .btn:hover { transform: translateY(-2px); }
    .btn.primary { border-color: var(--burgundy); background: var(--burgundy); color: var(--white); }
    .btn.primary:hover { background: var(--burgundy-deep); box-shadow: 0 14px 30px rgba(139,30,45,0.18); }
    .btn.secondary { border-color: var(--navy); background: var(--navy); color: var(--white); }
    .btn.secondary:hover { background: var(--navy-deep); box-shadow: 0 14px 30px rgba(23,59,99,0.14); }
    .hero .btn {
      border-color: rgba(255,255,255,0.46);
      background: rgba(255,255,255,0.08);
      color: var(--white);
      backdrop-filter: blur(6px);
    }
    .hero .btn.primary:hover {
      border-color: rgba(139,30,45,0.80);
      background: rgba(139,30,45,0.34);
      box-shadow: none;
    }
    .hero .btn.secondary:hover {
      border-color: rgba(23,59,99,0.80);
      background: rgba(23,59,99,0.34);
      box-shadow: none;
    }
    .btn:focus-visible, .menu:focus-visible, a:focus-visible, button:focus-visible {
      outline: 3px solid rgba(139,30,45,0.36);
      outline-offset: 3px;
    }

    section { position: relative; padding-block: 70px; overflow: clip; }
    .section-head {
      display: grid;
      gap: 10px;
      margin-bottom: 34px;
    }
    .section-head h2,
    .panel h2 {
      max-width: 1120px;
      margin: 0;
      color: var(--deep);
      font-family: var(--display);
      font-size: clamp(28px, 2.7vw, 40px);
      font-weight: 600;
      line-height: 1.12;
      letter-spacing: -0.018em;
      text-wrap: balance;
    }
    .section-head p {
      max-width: 720px;
      margin: 0;
      color: var(--muted);
    }
    .section-topline {
      width: min(220px, 46vw);
      height: 2px;
      background: linear-gradient(90deg, var(--burgundy), var(--navy), transparent);
      transform-origin: left;
    }

    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 640ms ease, transform 640ms cubic-bezier(.19,1,.22,1);
    }
    .reveal.is-visible { opacity: 1; transform: translateY(0); }
    .image-reveal {
      clip-path: inset(0 0 16% 0);
      transform: translateY(16px) scale(1.03);
      transition: clip-path 680ms cubic-bezier(.19,1,.22,1), transform 680ms cubic-bezier(.19,1,.22,1);
    }
    .image-reveal.is-visible { clip-path: inset(0); transform: translateY(0) scale(1); }

    .scale-section { background: var(--limestone); }
    .scale-grid {
      display: grid;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .scale-item {
      position: relative;
      padding: 34px 0;
      border-bottom: 1px solid var(--line);
    }
    .scale-item:last-child { border-bottom: 0; }
    .scale-item::before {
      content: "";
      position: absolute;
      left: 0;
      top: -1px;
      width: 0;
      height: 1px;
      background: linear-gradient(90deg, var(--burgundy), var(--navy));
      transition: width 800ms ease;
    }
    .scale-grid.is-visible .scale-item::before { width: min(140px, 55%); }
    .num {
      color: var(--burgundy);
      font-family: var(--display);
      font-size: clamp(40px, 7vw, 68px);
      font-weight: 650;
      line-height: 1;
      letter-spacing: -0.04em;
    }
    .label {
      margin: 10px 0 0;
      color: var(--navy);
      font: 700 12px/1.35 var(--mono);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .activities { background: var(--white); }
    .activity-grid {
      display: grid;
      gap: 22px;
      grid-template-columns: 1fr;
      align-items: stretch;
    }
    .activity-card {
      min-width: 0;
      display: grid;
      grid-template-rows: auto 1fr;
      border: 1px solid rgba(216,210,199,0.68);
      background: var(--white);
      box-shadow: 0 16px 38px rgba(14,42,71,0.055);
      overflow: hidden;
      height: 100%;
      transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
    }
    .activity-card:hover {
      transform: translateY(-4px);
      border-color: rgba(139,30,45,0.42);
      box-shadow: 0 22px 52px rgba(14,42,71,0.09);
    }
    .media {
      margin: 0;
      overflow: hidden;
      background: var(--concrete);
      aspect-ratio: 16 / 10.5;
    }
    .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 520ms ease; }
    .activity-card:hover .media img,
    .project-card:hover img,
    .news-card:hover img { transform: scale(1.055); }
    .activity-body {
      min-height: 178px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .tag {
      display: inline-flex;
      margin-bottom: 16px;
      padding: 6px 10px;
      border: 1px solid rgba(23,59,99,0.14);
      background: rgba(232,238,244,0.72);
      color: var(--navy);
      font: 700 11px/1 var(--mono);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    h3 { color: var(--deep); font-size: 20px; line-height: 1.24; letter-spacing: -0.008em; font-weight: 600; }
    .activity-body h3 { margin-bottom: 10px; }
    .activity-body p, .project-card p, .news-card p { margin-bottom: 0; color: var(--muted); }
    #faaliyetler,
    #projeler,
    #tesisler,
    #haberler,
    #iletisim,
    #hakkimizda,
    #misyon-vizyon,
    #kalite-cevre-politikasi,
    [id^="faaliyet-"] {
      scroll-margin-top: calc(clamp(72px, 7vw, 92px) + 24px);
    }

    .projects { background: linear-gradient(180deg, var(--concrete), var(--limestone)); }
    .project-showcase {
      display: grid;
      gap: 18px;
      min-width: 0;
    }
    .project-card {
      position: relative;
      min-height: 360px;
      overflow: hidden;
      background: var(--deep);
      isolation: isolate;
      border: 1px solid rgba(216,210,199,0.52);
    }
    .project-card img {
      position: absolute;
      inset: 0;
      z-index: -2;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 820ms cubic-bezier(.19,1,.22,1), clip-path 760ms cubic-bezier(.19,1,.22,1);
    }
    .project-card::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(180deg, rgba(15,20,23,0.05), rgba(15,20,23,0.66));
    }
    .project-info {
      min-height: inherit;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: 12px;
      padding: clamp(24px, 4vw, 38px);
      color: var(--white);
    }
    .project-info h3 {
      color: var(--white);
      font-size: clamp(24px, 2.7vw, 34px);
      font-weight: 600;
      max-width: 680px;
    }
    .project-info p { max-width: 560px; color: rgba(255,255,255,0.78); }
    .project-stage {
      position: relative;
      min-height: clamp(460px, 56vw, 660px);
      overflow: hidden;
      background: var(--deep);
      isolation: isolate;
    }
    .project-stage img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
      opacity: 0;
      clip-path: inset(0 10% 0 0);
      transform: scale(1.025);
      transition: opacity 720ms cubic-bezier(.19,1,.22,1), clip-path 720ms cubic-bezier(.19,1,.22,1), transform 740ms cubic-bezier(.19,1,.22,1);
    }
    .project-stage img.is-active {
      opacity: 1;
      clip-path: inset(0);
      transform: scale(1);
    }
    .project-stage::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(90deg, rgba(15,20,23,0.60), rgba(15,20,23,0.26) 48%, rgba(15,20,23,0.06));
    }
    .project-copy {
      min-height: inherit;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      max-width: 680px;
      padding: clamp(24px, 5vw, 48px);
      color: var(--white);
    }
    .project-copy > * {
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 520ms cubic-bezier(.19,1,.22,1), transform 520ms cubic-bezier(.19,1,.22,1);
    }
    .project-copy.is-ready > * { opacity: 1; transform: translateY(0); }
    .project-copy h3 { color: var(--white); font-size: clamp(26px, 3vw, 38px); font-weight: 600; max-width: 680px; }
    .project-meta { color: #F8F6F0; font: 600 11px/1.4 var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }
    .project-type { color: #F8F6F0; margin: 0 0 12px; font-weight: 600; }
    .gallery-tools {
      position: absolute;
      right: clamp(18px, 3vw, 34px);
      bottom: clamp(18px, 3vw, 34px);
      display: flex;
      gap: 10px;
      z-index: 2;
    }
    .icon-btn {
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255,255,255,0.42);
      background: rgba(255,255,255,0.10);
      color: var(--white);
      cursor: pointer;
      transition: background 220ms ease, transform 220ms ease;
    }
    .icon-btn:hover { background: rgba(255,255,255,0.18); transform: translateY(-1px); }
    .slide-count { color: var(--navy); font: 600 11px/1 var(--mono); letter-spacing: 0.08em; }
    .gallery-progress {
      height: 1px;
      background: rgba(23,59,99,0.16);
      overflow: hidden;
    }
    .gallery-progress span {
      display: block;
      height: 100%;
      width: 20%;
      background: linear-gradient(90deg, var(--burgundy), var(--navy));
      transition: transform 620ms cubic-bezier(.19,1,.22,1);
      transform-origin: left;
    }

    .network { background: var(--white); }
    .network-layout { display: grid; gap: 24px; }
    .network-map {
      position: relative;
      min-height: 430px;
      border: 1px solid rgba(216,210,199,0.62);
      background:
        linear-gradient(90deg, rgba(23,59,99,0.055) 1px, transparent 1px) 0 0 / 46px 46px,
        linear-gradient(0deg, rgba(23,59,99,0.045) 1px, transparent 1px) 0 0 / 46px 46px,
        radial-gradient(circle at 66% 40%, rgba(139,30,45,0.06), transparent 16rem),
        linear-gradient(135deg, var(--limestone), var(--white));
      overflow: hidden;
    }
    .network-map::before {
      content: "";
      position: absolute;
      left: 10%;
      right: 10%;
      top: 44%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(23,59,99,0.22), transparent);
    }
    .network-map svg { width: 100%; height: 100%; min-height: 430px; display: block; }
    .turkey-shape { fill: #F2EFE8; stroke: rgba(23,59,99,0.38); stroke-width: 2; }
    .map-line { fill: none; stroke: rgba(23,59,99,0.18); stroke-width: 1.2; stroke-dasharray: 7 8; }
    .node {
      cursor: pointer;
      outline: none;
    }
    .node circle {
      background: var(--burgundy);
      fill: var(--burgundy);
      transform-box: fill-box;
      transform-origin: center;
      transition: r 220ms ease, fill 220ms ease;
    }
    .node text {
      fill: var(--navy);
      font: 600 11px var(--mono);
      opacity: 0;
      transition: opacity 220ms ease;
      pointer-events: none;
    }
    .node.is-active circle,
    .node:hover circle,
    .node:focus circle { r: 7; fill: var(--navy); }
    .node.is-active text,
    .node:hover text,
    .node:focus text { opacity: 1; }
    .node .pulse {
      fill: none;
      stroke: rgba(139,30,45,0.30);
      stroke-width: 1.4;
      animation: markerPulse 2600ms ease-in-out infinite;
    }
    .network-map > .node {
      position: absolute;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--burgundy);
      box-shadow: 0 0 0 8px rgba(139,30,45,0.10);
      transform: translate(-50%, -50%);
      transition: transform 260ms cubic-bezier(.19,1,.22,1), background 220ms ease, box-shadow 220ms ease;
    }
    .network-map > .node::after {
      content: "";
      position: absolute;
      inset: -8px;
      border: 1px solid rgba(139,30,45,0.22);
      border-radius: 50%;
      animation: markerPulse 2600ms ease-in-out infinite;
    }
    .network-map > .node:hover {
      background: var(--navy);
      transform: translate(-50%, -50%) scale(1.14);
      box-shadow: 0 0 0 10px rgba(23,59,99,0.10);
    }
    .network-map > .node span {
      position: absolute;
      left: 18px;
      top: -8px;
      padding: 6px 8px;
      background: rgba(255,255,255,0.92);
      border: 1px solid rgba(216,210,199,0.7);
      color: var(--navy);
      white-space: nowrap;
      font: 600 11px/1 var(--mono);
      opacity: 0;
      transform: translateY(4px);
      transition: opacity 220ms ease, transform 220ms ease;
    }
    .network-map > .node:hover span { opacity: 1; transform: translateY(0); }
    .locations {
      display: grid;
      gap: 10px;
    }
    .location-card {
      padding: 18px 18px 18px 20px;
      border: 1px solid rgba(216,210,199,0.62);
      border-left: 1px solid rgba(23,59,99,0.22);
      background: rgba(255,255,255,0.64);
    }
    .location-card strong { display: block; color: var(--deep); }
    .location-card span { color: var(--muted); font-size: 14px; }
    .location-card.is-active {
      border-color: rgba(139,30,45,0.34);
      border-left-color: var(--burgundy);
      background: var(--white);
    }

    .about { background: var(--concrete); }
    .about-layout {
      display: grid;
      gap: 24px;
      align-items: center;
    }
    .about-image {
      min-height: 340px;
      overflow: hidden;
      border: 1px solid rgba(216,210,199,0.62);
      background:
        radial-gradient(circle at 18% 20%, rgba(139,30,45,0.08), transparent 15rem),
        linear-gradient(135deg, var(--limestone), var(--white));
    }
    .about-image img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; opacity: 0.88; }
    .year {
      color: var(--burgundy);
      font: 650 clamp(52px, 9vw, 104px)/0.92 var(--display);
      letter-spacing: -0.055em;
    }
    .history-cue {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 0 0 18px;
      color: var(--navy);
      font: 600 11px/1 var(--mono);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .history-cue::after {
      content: "";
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, var(--burgundy), rgba(23,59,99,0.12));
    }

    .news { background: var(--limestone); }
    .news-layout {
      display: grid;
      gap: 18px;
    }
    .news-card {
      display: grid;
      grid-template-rows: auto 1fr;
      min-height: 100%;
      overflow: hidden;
      border: 1px solid rgba(216,210,199,0.54);
      background: rgba(255,255,255,0.72);
      transition: transform 320ms cubic-bezier(.19,1,.22,1), border-color 220ms ease, background 220ms ease;
    }
    .news-card:hover {
      transform: translateY(-3px);
      border-color: rgba(139,30,45,0.28);
      background: var(--white);
    }
    .news-card figure {
      margin: 0;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: var(--concrete);
    }
    .news-card figure img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 820ms cubic-bezier(.19,1,.22,1);
    }
    .news-body {
      display: grid;
      align-content: start;
      gap: 11px;
      padding: clamp(22px, 3vw, 30px);
    }
    .news-body h3 {
      font-size: clamp(20px, 2vw, 27px);
      font-weight: 600;
    }
    .news-slider {
      display: grid;
      gap: 18px;
      border: 1px solid rgba(216,210,199,0.62);
      background: rgba(255,255,255,0.70);
      overflow: hidden;
    }
    .news-visual {
      position: relative;
      min-height: 300px;
      overflow: hidden;
      background: var(--concrete);
    }
    .news-visual img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      clip-path: inset(0 8% 0 0);
      transform: scale(1.025);
      transition: opacity 720ms cubic-bezier(.19,1,.22,1), clip-path 720ms cubic-bezier(.19,1,.22,1), transform 740ms cubic-bezier(.19,1,.22,1);
    }
    .news-visual img.is-active { opacity: 1; clip-path: inset(0); transform: scale(1); }
    .news-content {
      padding: clamp(24px, 5vw, 44px);
      display: grid;
      align-content: center;
    }
    .news-content h3 { font-size: clamp(24px, 3vw, 34px); }
    .news-preview {
      margin-top: 24px;
      padding-top: 16px;
      border-top: 1px solid rgba(23,59,99,0.12);
      color: var(--muted);
      font-size: 14px;
    }
    .news-controls, .gallery-controls {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 22px;
    }
    .date { color: var(--burgundy); font: 600 11px/1.4 var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }

    .contact-cta {
      background:
        radial-gradient(circle at 18% 15%, rgba(23,59,99,0.06), transparent 18rem),
        linear-gradient(180deg, var(--white), var(--concrete));
    }
    .cta-band {
      display: grid;
      gap: 24px;
      align-items: center;
      padding: clamp(28px, 5vw, 48px);
      border-top: 1px solid rgba(23,59,99,0.16);
      border-bottom: 1px solid rgba(23,59,99,0.16);
      background:
        radial-gradient(circle at 86% 18%, rgba(139,30,45,0.06), transparent 16rem),
        linear-gradient(90deg, rgba(255,255,255,0.82), rgba(255,255,255,0.54));
    }
    .cta-band h2 {
      font-size: clamp(26px, 3vw, 38px);
      max-width: 760px;
    }
    .cta-band p { max-width: 700px; }
    .contact-layout {
      display: grid;
      gap: 22px;
      align-items: stretch;
      padding: clamp(26px, 5vw, 46px);
      border: 1px solid rgba(216,210,199,0.62);
      background:
        linear-gradient(90deg, rgba(255,255,255,0.76), rgba(255,255,255,0.54)),
        radial-gradient(circle at 80% 18%, rgba(139,30,45,0.06), transparent 16rem);
    }
    .contact-main h2 { font-size: clamp(24px, 3vw, 36px); }
    .contact-list { display: grid; gap: 12px; margin: 22px 0; }
    .contact-list p { margin: 0; color: var(--muted); }
    .contact-list strong { display: block; color: var(--deep); }
    .office-panel {
      position: relative;
      min-height: 320px;
      overflow: hidden;
      background: var(--navy);
      color: var(--white);
    }
    .office-panel img { width: 100%; height: 100%; object-fit: cover; opacity: 0.72; }
    .office-map {
      position: absolute;
      inset: auto 20px 20px;
      padding: 16px;
      background: rgba(255,255,255,0.90);
      color: var(--text);
      border: 1px solid rgba(255,255,255,0.45);
    }
    .mini-map {
      height: 94px;
      margin-top: 10px;
      background:
        linear-gradient(90deg, rgba(23,59,99,0.12) 1px, transparent 1px) 0 0 / 28px 28px,
        linear-gradient(0deg, rgba(23,59,99,0.12) 1px, transparent 1px) 0 0 / 28px 28px,
        var(--limestone);
      position: relative;
    }
    .mini-map::after {
      content: "";
      position: absolute;
      left: 56%;
      top: 42%;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--burgundy);
      box-shadow: 0 0 0 8px rgba(139,30,45,0.10);
    }

    .footer {
      background: var(--navy-deep);
      color: #E8EEF4;
      padding: 62px 0 28px;
      background:
        radial-gradient(circle at 16% 0%, rgba(255,255,255,0.07), transparent 19rem),
        linear-gradient(180deg, #173B63, var(--navy-deep));
    }
    .footer-grid {
      display: grid;
      gap: 34px;
    }
    .footer h3 {
      margin: 0 0 14px;
      color: var(--white);
      font-size: 13px;
      font-family: var(--body);
      font-weight: 600;
      letter-spacing: 0;
    }
    .footer a { display: block; color: rgba(232,238,244,0.78); text-decoration: none; margin: 9px 0; font-size: 14px; transition: color 180ms ease, transform 180ms ease; }
    .footer a:hover { color: var(--white); transform: translateX(2px); }
    .footer-bottom {
      margin-top: 32px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.12);
      display: flex;
      flex-direction: column;
      gap: 10px;
      color: rgba(232,238,244,0.72);
      font-size: 13px;
    }

    .to-top {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 25;
      width: 38px;
      height: 38px;
      border: 1px solid rgba(139,30,45,0.28);
      border-radius: 50%;
      background: var(--white);
      color: var(--burgundy);
      box-shadow: 0 12px 28px rgba(14,42,71,0.14);
      cursor: pointer;
      opacity: 0;
      pointer-events: none;
      transform: translateY(10px);
      transition: opacity 220ms ease, transform 220ms ease;
    }
    .to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

    @keyframes heroIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes lineDraw { from { transform: scaleX(0); opacity: 0.4; } to { transform: scaleX(1); opacity: 1; } }
    .is-paused *, .is-paused *::before, .is-paused *::after { animation-play-state: paused !important; }

    /* Strong visual redesign for lower homepage sections */
    .projects { background: linear-gradient(180deg, var(--white), var(--limestone) 55%, var(--concrete)); }
    .project-gallery { display: grid; gap: 18px; min-width: 0; }
    .project-cinema {
      position: relative;
      display: grid;
      width: 100%;
      max-width: 100%;
      min-width: 0;
      min-height: clamp(420px, 50vw, 670px);
      aspect-ratio: auto;
      overflow: hidden;
      background: var(--deep);
      isolation: isolate;
    }
    .project-cinema img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transform: scale(1.035);
      clip-path: inset(0 18% 0 0);
      transition: opacity 760ms cubic-bezier(.19,1,.22,1), clip-path 860ms cubic-bezier(.19,1,.22,1), transform 960ms cubic-bezier(.19,1,.22,1);
    }
    .project-cinema img.is-active { opacity: 1; transform: scale(1); clip-path: inset(0); }
    .project-cinema::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(15,20,23,0.06), rgba(15,20,23,0.01) 50%, rgba(15,20,23,0.24));
      pointer-events: none;
    }
    .project-panel {
      position: relative;
      z-index: 2;
      align-self: end;
      width: min(520px, calc(100% - 36px));
      margin: auto 18px 18px auto;
      padding: clamp(22px, 3vw, 34px);
      background: rgba(255,255,255,0.91);
      border: 1px solid rgba(255,255,255,0.72);
      box-shadow: 0 26px 70px rgba(14,42,71,0.20);
      backdrop-filter: blur(10px);
    }
    .project-panel.is-changing > *,
    .news-copy.is-changing > * { opacity: 0; transform: translateY(8px); }
    .project-panel > *,
    .news-copy > * { transition: opacity 340ms cubic-bezier(.19,1,.22,1), transform 340ms cubic-bezier(.19,1,.22,1); }
    .project-panel h3 {
      margin-bottom: 12px;
      color: var(--deep);
      font: 600 clamp(26px, 3vw, 40px)/1.08 var(--display);
      letter-spacing: -0.018em;
    }
    .project-detail-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 14px;
      margin-bottom: 16px;
      color: var(--navy);
      font: 600 11px/1.4 var(--mono);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .project-count {
      position: absolute;
      left: 18px;
      bottom: 18px;
      z-index: 2;
      color: var(--white);
      font: 600 12px/1 var(--mono);
      letter-spacing: 0.08em;
      text-shadow: 0 8px 22px rgba(0,0,0,0.35);
    }
    .project-arrows {
      position: absolute;
      left: 18px;
      top: 18px;
      z-index: 2;
      display: flex;
      gap: 8px;
    }
    .gallery-arrow {
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255,255,255,0.56);
      background: rgba(255,255,255,0.14);
      color: var(--white);
      cursor: pointer;
      backdrop-filter: blur(8px);
      transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
    }
    .gallery-arrow:hover { transform: translateY(-2px); background: rgba(139,30,45,0.50); border-color: rgba(139,30,45,0.70); }
    .project-progress,
    .news-progress { height: 2px; background: rgba(23,59,99,0.12); overflow: hidden; }
    .project-progress span,
     .news-progress span {
       display: block;
       width: 100%;
       height: 100%;
       background: linear-gradient(90deg, var(--burgundy), var(--navy));
       transform-origin: left;
       transform: scaleX(var(--progress, 0));
       transition: transform 640ms cubic-bezier(.19,1,.22,1);
     }
      .project-all-action {
        display: flex;
        justify-content: center;
        margin-top: clamp(20px, 3vw, 30px);
      }
      .project-all-action .btn {
        min-width: 156px;
        padding-inline: 22px;
      }
      .projects-page {
        background:
          linear-gradient(90deg, rgba(32,37,41,0.035) 1px, transparent 1px) 0 0 / 78px 78px,
          linear-gradient(180deg, var(--limestone) 0%, var(--white) 44%, var(--concrete) 100%);
      }
      .projects-page-hero {
        padding-block: clamp(136px, 16vw, 188px) clamp(28px, 3vw, 42px);
        background:
          radial-gradient(circle at 18% 16%, rgba(23,59,99,0.08), transparent 22rem),
          linear-gradient(180deg, var(--limestone), rgba(255,255,255,0.82));
      }
      .projects-page-intro {
        max-width: none;
      }
      .projects-page-intro h1 {
        max-width: none;
        margin-bottom: 18px;
        color: var(--deep);
        font-size: clamp(34px, 3.4vw, 46px);
      }
      .projects-page-intro p:not(.eyebrow) {
        max-width: 640px;
        margin: 0;
        color: var(--muted);
      }
      .projects-gallery-section {
        padding-block: clamp(20px, 2vw, 28px) clamp(74px, 9vw, 118px);
        background: var(--white);
      }
      .projects-gallery-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(22px, 3vw, 32px);
      }
      .public-project-card {
        display: grid;
        grid-template-rows: auto 1fr;
        min-width: 0;
        border: 1px solid rgba(216,210,199,0.72);
        background: var(--white);
        overflow: hidden;
        transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
      }
      .public-project-card:hover {
        transform: translateY(-3px);
        border-color: rgba(139,30,45,0.34);
        box-shadow: 0 18px 42px rgba(14,42,71,0.08);
      }
      .public-project-card figure {
        margin: 0;
        aspect-ratio: 16 / 10.5;
        background: var(--concrete);
        overflow: hidden;
      }
      .public-project-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 520ms cubic-bezier(.19,1,.22,1);
      }
      .public-project-card:hover img {
        transform: scale(1.035);
      }
      .public-project-card-body {
        display: grid;
        align-content: start;
        gap: 12px;
        min-height: 134px;
        padding: 22px 20px 24px;
        text-align: center;
      }
      .public-project-card h2 {
        margin: 0;
        color: var(--deep);
        font: 620 clamp(19px, 2vw, 23px)/1.22 var(--display);
        letter-spacing: -0.01em;
      }
      .public-project-meta {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 12px;
        color: var(--navy);
        font: 650 11px/1.45 var(--mono);
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }
      .public-project-meta span + span {
        position: relative;
      }
      .public-project-meta span + span::before {
        content: "";
        position: absolute;
        left: -7px;
        top: 0.3em;
        width: 1px;
        height: 0.9em;
        background: rgba(23,59,99,0.22);
      }
      .corporate-page {
        background:
          linear-gradient(90deg, rgba(32,37,41,0.035) 1px, transparent 1px) 0 0 / 84px 84px,
          linear-gradient(180deg, var(--limestone) 0%, var(--white) 38%, var(--concrete) 100%);
      }
      .corporate-hero {
        padding-block: clamp(118px, 10vw, 156px) clamp(54px, 7vw, 88px);
        background:
          radial-gradient(circle at 12% 16%, rgba(23,59,99,0.10), transparent 22rem),
          linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0));
      }
      .corporate-hero-grid,
      .corporate-editorial-grid,
      .corporate-policy-grid,
      .corporate-board-grid {
        display: grid;
        gap: clamp(28px, 5vw, 72px);
        align-items: center;
      }
      .corporate-hero-grid {
        grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
      }
      .corporate-hero-copy h1,
      .corporate-section-head h2 {
        margin: 0;
        color: var(--deep);
        font: 560 clamp(36px, 4.2vw, 64px)/1.02 var(--display);
        letter-spacing: 0;
      }
      .corporate-hero-copy p:not(.eyebrow),
      .corporate-section-head > p:not(.eyebrow) {
        max-width: 680px;
        color: rgba(32,37,41,0.72);
        font-size: clamp(16px, 1.2vw, 18px);
        line-height: 1.62;
      }
      .corporate-hero-media {
        min-height: clamp(280px, 30vw, 430px);
        overflow: hidden;
        border-radius: 8px;
        background:
          linear-gradient(135deg, rgba(23,59,99,0.18), rgba(139,30,45,0.10)),
          linear-gradient(180deg, #d8d4cb, #bdb7ae);
      }
      .corporate-hero-media img,
      .corporate-wide-image img,
      .policy-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
      }
      .corporate-editorial {
        background: var(--white);
      }
      .corporate-editorial-grid {
        grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
      }
      .corporate-section-head {
        display: grid;
        gap: 12px;
        align-content: start;
      }
      .corporate-section-head.is-centered {
        max-width: 920px;
        margin: 0 auto clamp(28px, 4vw, 48px);
        text-align: center;
        justify-items: center;
      }
      .corporate-section-head h2 {
        font-size: clamp(30px, 3.2vw, 48px);
        line-height: 1.1;
      }
      .corporate-richtext {
        max-width: 760px;
        color: rgba(32,37,41,0.76);
        font-size: clamp(15px, 1vw, 17px);
        line-height: 1.72;
      }
      .corporate-richtext p,
      .mission-vision-grid p {
        margin: 0 0 1em;
      }
      .corporate-wide-image {
        grid-column: 1 / -1;
        width: 100%;
        max-height: 460px;
        margin: 0;
        overflow: hidden;
        border-radius: 8px;
      }
      .corporate-history {
        background: var(--limestone);
      }
      .corporate-mission {
        background: var(--white);
      }
      .mission-vision-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(24px, 4vw, 52px);
        border-top: 1px solid rgba(23,59,99,0.15);
        padding-top: clamp(24px, 4vw, 44px);
      }
      .mission-vision-grid article {
        min-width: 0;
      }
      .mission-vision-grid h3 {
        margin: 0 0 14px;
        color: var(--burgundy);
        font: 600 clamp(24px, 2.2vw, 34px)/1.14 var(--display);
      }
      .mission-vision-grid p {
        color: rgba(32,37,41,0.74);
        line-height: 1.68;
      }
      .corporate-board {
        background: linear-gradient(180deg, var(--limestone), var(--white));
      }
      .corporate-board-grid {
        grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
      }
      .board-image,
      .policy-image {
        margin: 0;
        overflow: hidden;
        border-radius: 8px;
        background: var(--concrete);
      }
      .board-image img {
        width: 100%;
        height: auto;
        display: block;
      }
      .corporate-empty {
        min-height: 260px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(23,59,99,0.14);
        border-radius: 8px;
        padding: 24px;
        color: var(--muted);
        background: rgba(255,255,255,0.68);
        text-align: center;
      }
      .corporate-policy {
        background: var(--white);
      }
      .corporate-policy-grid {
        grid-template-columns: minmax(280px, 0.44fr) minmax(0, 0.56fr);
      }
      .policy-image {
        min-height: clamp(320px, 34vw, 520px);
      }
      @media (max-width: 900px) {
        .corporate-hero-grid,
        .corporate-editorial-grid,
        .corporate-board-grid,
        .corporate-policy-grid,
        .mission-vision-grid {
          grid-template-columns: 1fr;
        }
        .corporate-hero {
          padding-top: 108px;
        }
        .corporate-hero-copy h1,
        .corporate-section-head h2 {
          font-size: clamp(34px, 8vw, 48px);
        }
        .corporate-wide-image,
        .policy-image {
          max-height: none;
        }
      }
      .network { background: radial-gradient(circle at 68% 24%, rgba(23,59,99,0.06), transparent 20rem), var(--white); }
    .network-layout { display: grid; gap: 22px; align-items: start; }
    .network-map {
      position: relative;
      min-height: 0;
      padding: clamp(12px, 2vw, 22px);
      border: 1px solid rgba(216,210,199,0.58);
      background: linear-gradient(135deg, #FBFAF7, var(--limestone));
      overflow: hidden;
    }
    .network-map::before { display: none; }
    .network-map .turkey-map { width: 100%; min-height: 0; aspect-ratio: 1000 / 422; display: block; overflow: visible; }
    .turkey-map-img {
      width: 100%;
      height: auto;
      filter: drop-shadow(0 18px 22px rgba(14,42,71,0.08));
    }
    .turkey-land {
      fill: #F2EFE8;
      stroke: rgba(23,59,99,0.48);
      stroke-width: 3;
      vector-effect: non-scaling-stroke;
      filter: drop-shadow(0 20px 22px rgba(14,42,71,0.08));
    }
    .turkey-coastline {
      fill: none;
      stroke: rgba(23,59,99,0.14);
      stroke-width: 1.4;
      stroke-dasharray: 8 10;
      vector-effect: non-scaling-stroke;
    }
    .map-marker { cursor: pointer; outline: none; }
    .map-marker-html {
      position: absolute;
      width: 12px;
      height: 12px;
      border: 3px solid var(--white);
      border-radius: 999px;
      background: var(--burgundy);
      transform: translate(-50%, -50%);
      cursor: pointer;
      padding: 0;
      transition: transform 220ms ease, filter 220ms ease;
      box-shadow: 0 8px 16px rgba(14,42,71,0.18);
    }
    .map-marker-html.has-image {
      width: 16px;
      height: 16px;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      filter: drop-shadow(0 3px 6px rgba(14,42,71,0.18));
    }
    .map-marker-html img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      pointer-events: none;
    }
    .map-marker-html::after {
      content: attr(data-city);
      position: absolute;
      left: 28px;
      top: -8px;
      padding: 5px 7px;
      background: rgba(255,255,255,0.94);
      border: 1px solid rgba(216,210,199,0.7);
      color: var(--navy);
      font: 600 11px/1 var(--mono);
      white-space: nowrap;
      opacity: 0;
      transform: translateY(4px);
      transition: opacity 180ms ease, transform 180ms ease;
    }
    .map-marker-html:hover,
    .map-marker-html:focus,
    .map-marker-html.is-active {
      transform: translate(-50%, -50%) scale(1.14);
      box-shadow: 0 0 0 5px rgba(139,30,45,0.16), 0 8px 16px rgba(14,42,71,0.18);
    }
    .map-marker-html.has-image:hover,
    .map-marker-html.has-image:focus,
    .map-marker-html.has-image.is-active {
      filter: drop-shadow(0 0 7px rgba(139,30,45,0.38)) drop-shadow(0 5px 10px rgba(14,42,71,0.2));
      box-shadow: none;
    }
    @media (max-width: 820px) {
      .map-marker-html.has-image {
        width: 14px;
        height: 14px;
      }
    }
    .map-marker-html:hover::after,
    .map-marker-html:focus::after,
    .map-marker-html.is-active::after { opacity: 1; transform: translateY(0); }
    .map-marker .pulse { opacity: 0; fill: none; stroke: rgba(139,30,45,0.24); stroke-width: 2; transform-origin: center; }
    .map-marker.is-active .pulse { opacity: 1; animation: markerPulse 2600ms ease-in-out infinite; }
    .map-marker circle.dot {
      fill: var(--burgundy);
      stroke: var(--white);
      stroke-width: 3;
      vector-effect: non-scaling-stroke;
      transition: transform 220ms ease, fill 220ms ease;
      transform-box: fill-box;
      transform-origin: center;
    }
    .map-marker:hover circle.dot,
    .map-marker:focus circle.dot,
    .map-marker.is-active circle.dot { transform: scale(1.35); fill: var(--navy); }
    .map-marker text {
      opacity: 0;
      fill: var(--navy);
      paint-order: stroke;
      stroke: var(--white);
      stroke-width: 4;
      font: 600 12px var(--mono);
      letter-spacing: 0.04em;
      pointer-events: none;
      transition: opacity 180ms ease;
    }
    .map-marker:hover text,
    .map-marker:focus text,
    .map-marker.is-active text { opacity: 1; }
    .locations {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }
    .location-card {
      border: 0;
      border-bottom: 1px solid rgba(23,59,99,0.16);
      background: transparent;
      padding: 11px 2px 10px;
      cursor: pointer;
      transition: padding 220ms ease, border-color 220ms ease;
    }
    .location-card.is-active { border-color: var(--burgundy); background: transparent; color: var(--burgundy); }
    .location-card strong { color: inherit; font-size: 15px; font-weight: 600; white-space: nowrap; }
    .location-card span { display: none; }
    .map-location-panel {
      margin-top: 0;
      border: 1px solid rgba(216,210,199,0.64);
      background: rgba(255,255,255,0.82);
      overflow: hidden;
      transition: opacity 320ms ease, transform 320ms ease;
    }
    .map-location-panel.is-changing { opacity: 0.55; transform: translateY(4px); }
    .map-location-head { padding: 16px 18px; border-bottom: 1px solid rgba(23,59,99,0.12); }
    .map-location-head strong { display: block; color: var(--deep); font-size: 18px; }
    .map-location-head span { color: var(--muted); font-size: 14px; }
    .map-directions-link {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      margin-top: 12px;
      padding: 8px 12px;
      border: 1px solid rgba(139,30,45,0.28);
      color: var(--burgundy);
      font: 700 11px/1 var(--mono);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
    }
    .map-directions-link:hover,
    .map-directions-link:focus {
      border-color: var(--burgundy);
      background: rgba(139,30,45,0.06);
      color: var(--deep);
    }
    .map-frame { width: 100%; height: clamp(360px, 36vw, 520px); border: 0; display: block; background: var(--concrete); }
    .map-empty-state { display: grid; place-items: center; padding: 24px; color: var(--muted); text-align: center; }

      .about {
      background:
        linear-gradient(90deg, rgba(23,59,99,0.045) 1px, transparent 1px) 0 0 / 92px 92px,
        linear-gradient(180deg, var(--concrete), var(--limestone));
    }
    .corporate-history {
      padding-block: clamp(24px, 3.5vw, 40px);
    }
    .history-composition { position: relative; display: grid; gap: 0; align-items: center; min-width: 0; }
    .history-line { position: relative; height: 1px; margin: 22px 0; background: linear-gradient(90deg, var(--burgundy), rgba(23,59,99,0.26), var(--navy)); }
    .history-line::before,
    .history-line::after {
      content: attr(data-start);
      position: absolute;
      top: -31px;
      color: var(--navy);
      font: 600 11px/1 var(--mono);
      letter-spacing: 0.08em;
    }
    .history-line::before { left: 0; }
    .history-line::after { content: attr(data-end); right: 0; }
    .history-timeline-slider {
      position: relative;
      width: 100%;
      max-width: 100%;
      min-width: 0;
      overflow: hidden;
      min-height: clamp(155px, 12vw, 175px);
      margin: 0 0 clamp(20px, 2.2vw, 28px);
      padding-top: clamp(20px, 1.8vw, 28px);
    }
    .history-timeline-viewport {
      width: 100%;
      max-width: 100%;
      min-width: 0;
      overflow-x: auto;
      overflow-y: hidden;
      padding: 0 0 14px;
      scroll-snap-type: x mandatory;
      overscroll-behavior-x: contain;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    .history-timeline-viewport::-webkit-scrollbar {
      display: none;
    }
    .history-timeline-viewport:focus-visible {
      outline: 3px solid rgba(139,30,45,0.22);
      outline-offset: 8px;
    }
    .history-timeline-track {
      position: relative;
      display: flex;
      gap: 24px;
      width: max-content;
      min-width: 100%;
    }
    .history-timeline-track::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 24px;
      height: 1px;
      background: linear-gradient(90deg, var(--burgundy), rgba(23,59,99,0.22), var(--navy));
      pointer-events: none;
    }
    .history-timeline-item {
      position: relative;
      flex: 0 0 clamp(252px, 23vw, 320px);
      min-width: 0;
      scroll-snap-align: start;
      padding-top: 40px;
    }
    .history-timeline-item::before {
      content: "";
      position: absolute;
      top: 17px;
      left: 0;
      width: 14px;
      height: 14px;
      border: 2px solid var(--burgundy);
      border-radius: 999px;
      background: var(--limestone);
      box-shadow: 0 0 0 5px rgba(139,30,45,0.08);
    }
    .history-timeline-item strong {
      display: block;
      color: var(--navy);
      font: 650 clamp(24px, 2.35vw, 34px)/0.95 var(--display);
      letter-spacing: 0;
    }
    .history-timeline-item p {
      max-width: 29ch;
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
      min-height: 84px;
    }
    .history-timeline-controls {
      position: absolute;
      right: 0;
      top: 0;
      z-index: 2;
      display: flex;
      gap: 8px;
    }
    .history-timeline-arrow {
      width: 34px;
      height: 34px;
      display: inline-grid;
      place-items: center;
      border: 1px solid rgba(23,59,99,0.18);
      border-radius: 999px;
      color: var(--navy);
      background: rgba(255,255,255,0.72);
      font: 600 22px/1 var(--display);
      cursor: pointer;
      transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
    }
    .history-timeline-arrow svg {
      width: 18px;
      height: 18px;
      display: block;
    }
    .history-timeline-arrow:hover:not(:disabled) {
      border-color: rgba(139,30,45,0.5);
      color: var(--burgundy);
      background: var(--white);
    }
    .history-timeline-arrow:disabled {
      cursor: default;
      opacity: 0.34;
    }
    .news { background: var(--white); }
    .news-layout {
      position: relative;
      display: grid;
      gap: 0;
      border-top: 1px solid rgba(23,59,99,0.12);
      border-bottom: 1px solid rgba(23,59,99,0.12);
      background: var(--limestone);
      overflow: hidden;
    }
    .news-slider-shell {
      display: grid;
      grid-template-rows: auto minmax(0, 1fr);
      height: clamp(610px, 150vw, 700px);
      overflow: hidden;
    }
    .news-media {
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: var(--concrete);
    }
    .news-media img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      clip-path: inset(0 14% 0 0);
      transform: scale(1.035);
      transition: opacity 760ms cubic-bezier(.19,1,.22,1), clip-path 760ms cubic-bezier(.19,1,.22,1), transform 900ms cubic-bezier(.19,1,.22,1);
    }
    .news-media img.is-active { opacity: 1; clip-path: inset(0); transform: scale(1); }
    .news-empty-state {
      padding: clamp(28px, 5vw, 58px);
      color: var(--muted);
      background: var(--limestone);
      text-align: center;
    }
    .news-copy {
      position: relative;
      display: grid;
      align-content: center;
      gap: 14px;
      padding: clamp(28px, 5vw, 58px);
      background: rgba(248,246,240,0.90);
      min-height: 0;
      overflow: hidden;
    }
    .news-copy h3 { font: 600 clamp(26px, 3vw, 40px)/1.12 var(--display); letter-spacing: -0.018em; }
    .news-copy .gallery-arrow {
      border-color: rgba(23,59,99,0.22);
      background: rgba(255,255,255,0.72);
      color: var(--navy);
      backdrop-filter: none;
    }
    .news-copy .gallery-arrow:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
    .news-preview-card {
      display: block;
      position: static;
      width: auto;
      min-height: 0;
      padding: 12px;
      border: 1px solid rgba(216,210,199,0.64);
      background: rgba(255,255,255,0.84);
      color: var(--text);
    }
    .news-preview-card button {
      width: 100%;
      display: grid;
      grid-template-columns: 88px 1fr;
      gap: 12px;
      align-items: center;
      border: 0;
      background: transparent;
      padding: 0;
      text-align: left;
      cursor: pointer;
    }
    .news-preview-card img { width: 88px; height: 58px; object-fit: cover; }
    .news-preview-card strong { color: var(--deep); font-size: 14px; line-height: 1.25; }

    .contact-cta {
      background:
        linear-gradient(90deg, rgba(23,59,99,0.035) 1px, transparent 1px) 0 0 / 84px 84px,
        radial-gradient(circle at 16% 8%, rgba(23,59,99,0.08), transparent 18rem),
        linear-gradient(180deg, var(--limestone), var(--concrete));
    }
    .contact-intro { max-width: 1120px; margin: 0 auto 34px; }
    .contact-intro .eyebrow { margin-bottom: 12px; }
    .contact-intro h2 {
      max-width: 1120px;
      margin: 0;
      color: var(--deep);
      font: 560 clamp(28px, 3vw, 42px)/1.14 var(--display);
      letter-spacing: -0.02em;
    }
    .contact-layout { display: grid; gap: 24px; align-items: stretch; padding: 0; border: 0; background: transparent; }
    .contact-photo {
      display: block;
      align-self: stretch;
      height: 100%;
      margin: 0;
      overflow: hidden;
      border-radius: 8px;
      min-height: 520px;
      background: var(--concrete);
    }
    .contact-photo img { width: 100%; height: 100%; object-fit: cover; }
    .contact-map {
      align-self: stretch;
      height: 100%;
      min-height: 520px;
      overflow: hidden;
      border-radius: 8px;
      background: var(--concrete);
    }
    .contact-map iframe,
    .contact-map [data-contact-map] { width: 100%; height: 100%; min-height: 0; border: 0; display: block; }
    .contact-info-row {
      display: grid;
      gap: 22px;
      margin-top: 28px;
      padding-top: 24px;
      border-top: 1px solid rgba(23,59,99,0.16);
    }
    .contact-info-item { display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 12px; align-items: start; min-width: 0; }
    .contact-info-item svg { width: 20px; height: 20px; color: var(--burgundy); margin-top: 2px; }
    .contact-info-item > div { min-width: 0; }
    .contact-info-item strong { display: block; margin-bottom: 8px; color: var(--navy); font: 600 11px/1 var(--mono); letter-spacing: 0.1em; text-transform: uppercase; }
    .contact-info-item p, .contact-info-item a { display: block; margin: 0; color: var(--deep); font: 400 15px/1.62 var(--body); text-decoration: none; overflow-wrap: anywhere; }
    .contact-info-item a:hover { color: var(--burgundy); }
    .contact-cta-row {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 28px;
    }
    .contact-action {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: min(180px, 100%);
      min-height: 46px;
      margin: 0;
      border: 1px solid var(--burgundy);
      border-radius: 2px;
      background: var(--burgundy);
      color: var(--white);
      font: 600 14px/1 var(--body);
      text-decoration: none;
      transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
    }
    .contact-action:hover {
      background: var(--burgundy-dark);
      border-color: var(--burgundy-dark);
      transform: translateY(-1px);
      box-shadow: 0 12px 26px rgba(139,30,45,0.16);
    }
    .contact-list p { margin: 0; color: var(--muted); }
    .contact-list strong { display: block; color: var(--deep); font-weight: 600; }
    .contact-link {
      color: var(--burgundy);
      text-decoration: none;
      font-weight: 600;
      border-bottom: 1px solid rgba(139,30,45,0.35);
      width: max-content;
    }
    .contact-link:hover { color: var(--navy); border-color: var(--navy); }
    .office-panel {
      min-height: 500px;
      border: 0;
      background: var(--concrete);
    }
    .office-panel > img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 1;
      border: 0;
      box-shadow: none;
    }
    .office-map {
      position: absolute;
      left: clamp(18px, 4vw, 42px);
      bottom: clamp(18px, 4vw, 42px);
      top: auto;
      right: auto;
      bottom: auto;
      width: min(330px, calc(100% - 36px));
      padding: 20px;
      background: rgba(255,255,255,0.90);
      border: 1px solid rgba(216,210,199,0.74);
      box-shadow: 0 18px 46px rgba(14,42,71,0.10);
    }
    .mini-map { height: 118px; }

    .footer {
      position: relative;
      overflow: hidden;
      padding: 0 0 30px;
      background:
        radial-gradient(circle at 14% 0%, rgba(255,255,255,0.055), transparent 22rem),
        linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px) 0 0 / 92px 92px,
        linear-gradient(180deg, #0A203A, #07182B 24%, #061526);
    }
    .footer::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, transparent 0 18%, rgba(255,255,255,0.035) 18.1% 18.2%, transparent 18.3% 42%, rgba(255,255,255,0.025) 42.1% 42.2%, transparent 42.3% 71%, rgba(255,255,255,0.022) 71.1% 71.2%, transparent 71.3%),
        radial-gradient(circle at 24% 34%, rgba(255,255,255,0.035) 0 1px, transparent 1.5px) 0 0 / 26px 26px;
      pointer-events: none;
    }
    .footer-identity {
      position: relative;
      z-index: 1;
      margin-bottom: 42px;
      padding: 54px 0 42px;
      background: linear-gradient(105deg, rgba(255,255,255,0.96) 0%, rgba(225,232,240,0.56) 24%, rgba(23,59,99,0.10) 58%, transparent 82%);
    }
    .footer-identity::after {
      content: "";
      position: absolute;
      left: 0;
      right: 42%;
      bottom: 0;
      height: 1px;
      background: linear-gradient(90deg, rgba(139,30,45,0.55), rgba(23,59,99,0.16), transparent);
    }
    .footer-identity p { max-width: 430px; margin: 20px 0 0; color: rgba(8,26,46,0.72); font-size: 14px; line-height: 1.65; }
    .footer-grid {
      position: relative;
      z-index: 1;
      gap: 42px;
      padding-top: 0;
      border-top: 1px solid rgba(255,255,255,0.16);
    }
    .footer h3 { color: rgba(255,255,255,0.92); font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
    .footer a { color: rgba(205,218,231,0.72); margin: 12px 0; font-weight: 400; }

    .footer { background: radial-gradient(circle at 18% 0%, rgba(42,78,112,0.22), transparent 24rem), linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px) 0 0 / 92px 92px, linear-gradient(180deg, #0A203A, #06172A 32%, #06172A); }
    .footer-identity {
      margin-bottom: 46px;
      padding: 68px 0 48px;
      background: transparent;
    }
    .footer-identity::before {
      content: "";
      position: absolute;
      left: -8%;
      top: 0;
      width: 1px;
      height: 100%;
      background: linear-gradient(180deg, rgba(139,30,45,0.85), transparent 82%);
    }
    .footer-identity::after { right: 0; background: linear-gradient(90deg, rgba(139,30,45,0.7), rgba(139,30,45,0.08), transparent); }
    .footer-identity p { max-width: 420px; margin: 18px 0 0; color: rgba(205,218,231,0.7); }
    .footer-identity p::before { content: "MUHAMMET GÜMÜŞTAŞ A.Ş.\A 1974'TEN BUGÜNE\A\A"; white-space: pre; display: block; margin-bottom: 12px; color: var(--white); font: 560 13px/1.55 var(--display); letter-spacing: 0.05em; }
    .footer-grid { grid-template-columns: 1fr; border-top: 0; }
    .footer-grid > div:first-child { display: block; }
    .footer h3 { margin-bottom: 18px; color: rgba(255,255,255,0.86); font-weight: 560; }
    .footer a { margin: 13px 0; color: rgba(180,199,218,0.7); }
    .footer-contact-strip { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 10px 30px; margin-top: 46px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.12); border-bottom: 1px solid rgba(255,255,255,0.12); color: rgba(205,218,231,0.76); font: 400 14px/1.5 var(--body); }
    .footer-contact-strip span { position: relative; }
    .footer-contact-strip span + span::before { content: ""; position: absolute; left: -16px; top: 0.3em; width: 1px; height: 1em; background: rgba(255,255,255,0.2); }
    .footer-contact-strip a { display: inline; margin: 0; color: inherit; }
    .footer-identity p::before { content: none; display: none; }
    .footer-identity p strong, .footer-identity p span { display: block; color: var(--white); font: 560 13px/1.55 var(--display); letter-spacing: 0.05em; text-transform: uppercase; }
    .footer-identity p span { margin-bottom: 12px; color: rgba(205,218,231,0.74); font: 600 11px/1.5 var(--mono); }

    @media (min-width: 768px) {
      .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 56px; padding-left: 40%; }
    }

    .footer { background: #07182B; }
    .footer-identity, .footer-contact-strip { display: none !important; }
    .footer-grid { display: grid; grid-template-columns: 1fr; gap: 34px; padding-left: 0; border-top: 0; }
    .footer-grid > div:first-child { display: block; }
    .footer-grid > div:first-child p { max-width: 360px; color: rgba(205,218,231,0.72); }
    @media (min-width: 768px) {
      .footer-grid { grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr)); gap: 32px; }
    }

    @media (min-width: 640px) {
      .actions { flex-direction: row; width: auto; }
      .scale-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .scale-item:nth-child(odd) { border-right: 1px solid var(--line); }
      .activity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .projects-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (min-width: 768px) {
      section { padding-block: 90px; }
      .network-layout { grid-template-columns: 1fr; }
      .news-slider-shell {
        grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
        grid-template-rows: none;
        align-items: stretch;
        height: clamp(480px, 36vw, 560px);
      }
      .news-media { aspect-ratio: auto; height: 100%; }
      .contact-layout { grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr); }
      .contact-info-row { grid-template-columns: 1.15fr 0.75fr 0.7fr; }
      .contact-info-item + .contact-info-item { border-left: 1px solid rgba(23,59,99,0.14); padding-left: 24px; }
      .footer-identity { margin-inline: calc((min(100vw, 1380px) - 100vw) / 2); padding-inline: max(20px, calc((100vw - min(100vw, 1380px)) / 2)); }
      .footer-grid { grid-template-columns: 1.3fr repeat(4, minmax(0, 1fr)); }
      .footer-bottom { flex-direction: row; justify-content: space-between; }
    }
    @media (min-width: 1024px) {
      .navlinks, .nav-cta { display: flex; }
      .menu { display: none; }
      section { padding-block: 108px; }
      .scale-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
      .scale-item { border-bottom: 0; border-right: 1px solid var(--line); padding: 34px 28px; }
      .scale-item:last-child { border-right: 0; }
      .activity-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .projects-gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .project-showcase { grid-template-columns: 1fr; grid-template-rows: auto; }
      .project-panel { margin-right: clamp(24px, 5vw, 68px); margin-bottom: clamp(24px, 5vw, 58px); }
      .news-preview-card { display: block; margin-top: 14px; }
    }
    @media (max-width: 1023px) {
      .topbar.is-menu-open {
        background: rgba(255,255,255,0.98);
        box-shadow: 0 16px 34px rgba(14,42,71,0.12);
      }
      .topbar.is-menu-open .navlinks {
        position: absolute;
        left: clamp(20px, 5vw, 48px);
        right: clamp(20px, 5vw, 48px);
        top: calc(100% - 4px);
        z-index: 25;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0;
        border: 1px solid rgba(216,210,199,0.82);
        background: var(--white);
        box-shadow: 0 22px 48px rgba(14,42,71,0.14);
      }
      .topbar.is-menu-open .navlinks a {
        min-height: 48px;
        padding: 0 16px;
      }
      .topbar.is-menu-open .navlinks a::before {
        left: 16px;
        right: 16px;
      }
    }
    @media (max-width: 1199px) {
      .history-timeline-item {
        flex-basis: clamp(250px, 38vw, 330px);
      }
    }
    @media (min-width: 1440px) {
      :root { --max: 1380px; }
      h1 { font-size: 68px; }
    }
    @media (max-width: 767px) {
      .locations {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
      }
      .location-card {
        min-width: 0;
        padding: 10px 8px;
      }
      .location-card strong {
        white-space: normal;
        overflow-wrap: anywhere;
        font-size: 13px;
        line-height: 1.25;
      }
      .brand img { width: min(182px, 58vw); }
      .hero { min-height: 88dvh; }
      .hero-inner { min-height: 88dvh; }
      .project-cinema { aspect-ratio: auto; min-height: 560px; }
      .project-panel { margin: auto 14px 14px; width: calc(100% - 28px); }
      .project-count { top: 76px; bottom: auto; }
      .network-map {
        padding: 12px;
        overflow: visible;
      }
      .turkey-map { min-height: 230px; }
      .map-marker-html {
        width: 10px;
        height: 10px;
        border-width: 2px;
        transform: translate(calc(-50% + var(--mobile-marker-x, 0px)), calc(-50% + var(--mobile-marker-y, 0px)));
      }
      .map-marker-html.has-image {
        width: 12px;
        height: 12px;
      }
      .map-marker-html:hover,
      .map-marker-html:focus,
      .map-marker-html.is-active {
        transform: translate(calc(-50% + var(--mobile-marker-x, 0px)), calc(-50% + var(--mobile-marker-y, 0px))) scale(1.16);
      }
      .map-marker-html::after {
        left: 50%;
        top: calc(100% + 8px);
        max-width: min(156px, 42vw);
        padding: 5px 7px;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
        transform: translate(-50%, 4px);
      }
      .map-marker-html:hover::after,
      .map-marker-html:focus::after,
      .map-marker-html.is-active::after {
        transform: translate(-50%, 0);
      }
      .map-marker-html:nth-of-type(1) { --mobile-marker-x: 2px; --mobile-marker-y: -8px; }
      .map-marker-html:nth-of-type(2) { --mobile-marker-x: 9px; --mobile-marker-y: 8px; }
      .map-marker-html:nth-of-type(3) { --mobile-marker-x: -10px; --mobile-marker-y: -2px; }
      .map-marker-html:nth-of-type(4) { --mobile-marker-x: 13px; --mobile-marker-y: -4px; }
      .map-marker-html:nth-of-type(5) { --mobile-marker-x: -4px; --mobile-marker-y: 8px; }
      .map-marker-html:nth-of-type(6) { --mobile-marker-x: -12px; --mobile-marker-y: -8px; }
      .map-marker-html:nth-of-type(15) { --mobile-marker-x: -12px; --mobile-marker-y: 8px; }
      .map-marker-html:nth-of-type(16) { --mobile-marker-x: 10px; --mobile-marker-y: -7px; }
      .news-slider-shell {
        height: auto;
        overflow: visible;
      }
      .news-media {
        aspect-ratio: 4 / 3;
      }
      .news-copy {
        align-content: start;
        overflow: visible;
      }
      .news-copy h3 {
        overflow-wrap: anywhere;
        hyphens: auto;
      }
      .history-composition { min-height: auto; }
      .history-timeline-slider {
        min-height: 158px;
        margin-bottom: 22px;
        padding-top: 22px;
      }
      .history-timeline-track {
        gap: 18px;
      }
      .history-timeline-item {
        flex-basis: min(78vw, 300px);
      }
      .history-timeline-item strong {
        font-size: 24px;
      }
      .contact-photo, .contact-map, .contact-map iframe { min-height: 380px; }
    }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      .reveal, .image-reveal { opacity: 1; transform: none; clip-path: none; }
      .media img, .project-card img, .project-cinema img, .news-card img, .news-media img { transform: none !important; }
    }
    /* Final footer cascade: keeps the single navy identity system above older preview rules. */
    .footer { background: radial-gradient(circle at 18% 0%, rgba(42,78,112,0.22), transparent 24rem), linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px) 0 0 / 92px 92px, linear-gradient(180deg, #0A203A, #06172A 32%, #06172A); }
    .footer-identity { background: transparent !important; }
    .footer-grid { grid-template-columns: 1fr; padding-left: 0; border-top: 0; }
    .footer-grid > div:first-child { display: block; }
    @media (min-width: 768px) {
      .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 56px; padding-left: 40%; }
    }
    @media (min-width: 768px) {
      .footer-grid { grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr)); gap: 32px; padding-left: 0; }
    }
    /* Final public footer. */
    .footer {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 18% -12%, rgba(255,255,255,0.045), transparent 24rem),
        radial-gradient(circle at 82% 18%, rgba(139,30,45,0.06), transparent 20rem),
        linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0) 28%),
        #061729 !important;
      color: rgba(232,238,244,0.88);
      padding: clamp(44px, 6vw, 64px) 0 26px !important;
    }
    .footer::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.13;
      pointer-events: none;
      background-image:
        radial-gradient(circle at 18% 24%, rgba(255,255,255,0.75) 0 0.6px, transparent 0.8px),
        radial-gradient(circle at 72% 64%, rgba(255,255,255,0.42) 0 0.7px, transparent 0.9px);
      background-size: 38px 38px, 52px 52px;
    }
    .footer .shell {
      position: relative;
      z-index: 1;
    }
    .footer-grid {
      display: block !important;
      padding: 0 !important;
      border-top: 1px solid rgba(232,238,244,0.12) !important;
    }
    .footer-top {
      display: grid;
      padding-top: clamp(22px, 3vw, 34px);
      align-items: start;
    }
    .footer-nav-groups {
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px;
    }
    .footer h3,
    .footer-group h3 {
      margin: 0 0 16px !important;
      color: rgba(255,255,255,0.92) !important;
      font: 620 11px/1.25 var(--mono) !important;
      letter-spacing: 0.09em !important;
      text-transform: uppercase !important;
    }
    .footer a,
    .footer-group a {
      display: block;
      width: max-content;
      max-width: 100%;
      margin: 11px 0 !important;
      color: rgba(205,218,231,0.76) !important;
      font: 400 14px/1.35 var(--body) !important;
      text-decoration: none;
      transition: color 180ms ease, transform 180ms ease;
    }
    .footer a:hover,
    .footer-group a:hover {
      color: #FFFFFF !important;
      transform: translateX(2px);
    }
    .footer-bottom {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px 18px;
      margin-top: clamp(26px, 3vw, 36px) !important;
      padding-top: 0 !important;
      border-top: 0 !important;
      color: rgba(180,199,218,0.68);
      font: 400 13px/1.5 var(--body);
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 16px 24px;
    }
    .footer-signature {
      color: rgba(180,199,218,0.62);
    }
    .footer-bottom a {
      display: inline;
      width: auto;
      margin: 0 !important;
      color: rgba(180,199,218,0.72) !important;
      font-size: 13px !important;
    }
    @media (min-width: 768px) {
      .footer-nav-groups {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(28px, 4vw, 54px);
      }
      .footer-bottom {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
      }
      .footer-signature {
        justify-self: center;
        text-align: center;
      }
      .footer-legal {
        justify-self: end;
        justify-content: flex-end;
      }
    }

    .contact-page {
      background:
        linear-gradient(90deg, rgba(32,37,41,0.035) 1px, transparent 1px) 0 0 / 78px 78px,
        linear-gradient(180deg, var(--limestone) 0%, var(--white) 46%, var(--concrete) 100%);
    }
    .contact-workspace {
      padding-block: clamp(18px, 2vw, 28px) clamp(80px, 10vw, 126px);
      background: var(--white);
    }
    .contact-choice-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
      margin-bottom: clamp(24px, 4vw, 42px);
    }
    .contact-choice {
      min-height: 154px;
      display: grid;
      align-content: end;
      gap: 14px;
      border: 1px solid rgba(23,59,99,0.16);
      border-radius: 8px;
      padding: clamp(20px, 3vw, 30px);
      color: var(--deep);
      background:
        linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,246,240,0.86)),
        linear-gradient(90deg, rgba(139,30,45,0.12), transparent);
      text-align: left;
      cursor: pointer;
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }
    .contact-choice:hover,
    .contact-choice[aria-selected="true"] {
      border-color: rgba(139,30,45,0.42);
      box-shadow: 0 20px 54px rgba(14,42,71,0.12);
      transform: translateY(-2px);
    }
    .contact-choice[aria-selected="true"] {
      background:
        linear-gradient(135deg, rgba(255,255,255,0.98), rgba(242,239,232,0.96)),
        linear-gradient(90deg, rgba(139,30,45,0.20), transparent);
    }
    .contact-choice span {
      color: var(--burgundy);
      font: 700 12px/1 var(--mono);
      letter-spacing: 0.08em;
    }
    .contact-choice strong {
      max-width: 440px;
      color: var(--deep);
      font: 560 clamp(20px, 2vw, 28px)/1.18 var(--display);
      letter-spacing: 0;
    }
    .contact-form-shell {
      max-width: 940px;
      margin: 0 auto;
    }
    .contact-form-panel {
      border-top: 1px solid rgba(23,59,99,0.14);
      padding-top: clamp(24px, 4vw, 40px);
    }
    .contact-form-head {
      display: grid;
      gap: 8px;
      margin-bottom: 24px;
    }
    .contact-form-head h2 {
      margin: 0;
      color: var(--deep);
      font: 560 clamp(28px, 3vw, 40px)/1.12 var(--display);
    }
    .public-form {
      display: grid;
      gap: 22px;
    }
    .public-form-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      align-items: start;
    }
    .public-field {
      display: grid;
      gap: 8px;
      align-content: start;
      min-width: 0;
    }
    .public-field label,
    .public-consent {
      color: var(--deep);
      font-size: 14px;
      font-weight: 700;
    }
    .public-field input,
    .public-field select,
    .public-field textarea {
      width: 100%;
      min-height: 50px;
      border: 1px solid rgba(23,59,99,0.18);
      border-radius: 6px;
      padding: 12px 14px;
      color: var(--deep);
      background: #fff;
      font: 400 16px/1.45 var(--body);
    }
    .public-field textarea {
      min-height: 150px;
      resize: vertical;
    }
    .public-field input:focus,
    .public-field select:focus,
    .public-field textarea:focus {
      border-color: rgba(139,30,45,0.7);
      outline: none;
      box-shadow: 0 0 0 3px rgba(139,30,45,0.12);
    }
    .public-help,
    .public-field-error {
      font-size: 13px;
      line-height: 1.45;
    }
    .public-help {
      color: var(--muted);
    }
    .public-field-error {
      color: var(--burgundy);
      font-weight: 700;
    }
    .public-consent {
      min-height: 48px;
      display: grid;
      grid-template-columns: 20px minmax(0, 1fr);
      gap: 10px;
      align-items: start;
      color: var(--muted);
      line-height: 1.55;
    }
    .public-consent input {
      width: 18px;
      height: 18px;
      margin-top: 3px;
      accent-color: var(--burgundy);
    }
    .public-form-actions {
      display: flex;
      justify-content: flex-start;
    }
    .public-status-box,
    .public-error-box {
      margin-bottom: 18px;
      border-radius: 6px;
      padding: 13px 14px;
      font-weight: 700;
      line-height: 1.45;
    }
    .public-status-box {
      border: 1px solid rgba(19,89,45,0.24);
      color: #13592d;
      background: #effaf3;
    }
    .public-error-box {
      border: 1px solid rgba(139,30,45,0.24);
      color: var(--burgundy);
      background: #fff1f3;
    }
    @media (min-width: 768px) {
      .contact-choice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .public-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .public-field.is-wide,
      .public-consent.is-wide,
      .public-field-error.is-wide {
        grid-column: 1 / -1;
      }
    }

    /* Final public contact page composition. */
    .contact-page {
      background:
        linear-gradient(90deg, rgba(32,37,41,0.035) 1px, transparent 1px) 0 0 / 78px 78px,
        linear-gradient(180deg, #F5F2EC 0%, #FFFFFF 48%, #F3F5F6 100%);
    }
    .contact-page-hero {
      min-height: auto;
      padding-block: clamp(90px, 6.5vw, 106px) clamp(18px, 2.4vw, 28px);
      background:
        linear-gradient(90deg, rgba(23,59,99,0.07), transparent 44%),
        linear-gradient(180deg, rgba(255,255,255,0.68), rgba(255,255,255,0));
    }
    .contact-hero-stage {
      position: relative;
      width: 100%;
      overflow: hidden;
      isolation: isolate;
      background: #EEECE7;
    }
    .contact-hero-stage::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background: linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.78) 30%, rgba(255,255,255,0) 48%);
    }
    .contact-hero-stage.is-empty {
      display: flex;
      flex-direction: column;
      gap: 26px;
      overflow: visible;
      background: transparent;
    }
    .contact-hero-stage.is-empty::before {
      display: none;
    }
    .contact-hero-stage.is-empty .contact-hero-overlay {
      position: relative;
      left: auto;
      top: auto;
      order: 1;
      width: 100%;
      transform: none;
    }
    .contact-hero-stage.is-empty .contact-hero-empty {
      order: 2;
    }
    .contact-hero-overlay {
      position: absolute;
      z-index: 2;
      left: clamp(28px, 4vw, 64px);
      top: 50%;
      width: min(36%, 500px);
      max-width: 500px;
      transform: translateY(-50%);
    }
    .contact-hero-overlay h1 {
      max-width: 500px;
      margin-bottom: clamp(10px, 1vw, 14px);
      color: var(--deep);
      font-size: clamp(34px, 2.35vw, 46px);
      line-height: 1.03;
      letter-spacing: 0;
    }
    .contact-hero-overlay p:not(.eyebrow) {
      max-width: 440px;
      color: rgba(32,37,41,0.72);
      font-size: clamp(15px, 0.85vw, 16px);
      line-height: 1.54;
    }
    .contact-proof-list {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: clamp(7px, 0.7vw, 10px);
      max-width: 500px;
      margin-top: clamp(14px, 1.4vw, 20px);
    }
    .contact-proof-item {
      display: grid;
      grid-template-columns: 20px minmax(0, 1fr);
      gap: 6px;
      align-items: start;
      min-height: 0;
      min-width: 0;
    }
    .contact-proof-icon {
      width: 20px;
      height: 20px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(23,59,99,0.18);
      color: var(--burgundy);
      background: rgba(255,255,255,0.64);
    }
    .contact-proof-icon svg {
      width: 12px;
      height: 12px;
    }
    .contact-proof-item strong,
    .contact-proof-item small {
      display: block;
    }
    .contact-proof-item strong {
      color: var(--deep);
      overflow-wrap: anywhere;
      font: 650 11px/1.18 var(--display);
    }
    .contact-proof-item small {
      margin-top: 2px;
      color: rgba(32,37,41,0.62);
      overflow-wrap: anywhere;
      font: 400 10px/1.28 var(--body);
    }
    .contact-hero-image {
      display: block;
      width: 100%;
      max-width: 100%;
      height: auto;
    }
    .contact-hero-empty {
      aspect-ratio: 2171 / 724;
      width: 100%;
      background:
        linear-gradient(120deg, rgba(23,59,99,0.16), rgba(23,59,99,0.04) 46%, rgba(139,30,45,0.12)),
        linear-gradient(180deg, #D9D6D0 0%, #BEB8AF 100%);
    }
    .contact-workspace {
      padding-block: clamp(34px, 4vw, 52px) clamp(72px, 9vw, 116px);
      background: #FFFFFF;
    }
    .contact-page .contact-cta {
      padding-block: clamp(48px, 6vw, 78px);
    }
    .contact-choice-grid {
      max-width: 1120px;
      margin-inline: auto;
      margin-bottom: clamp(24px, 3.2vw, 38px);
      gap: clamp(16px, 1.8vw, 24px);
    }
    .contact-choice {
      position: relative;
      min-height: 142px;
      grid-template-columns: 72px minmax(0, 1fr) 48px;
      align-content: center;
      align-items: center;
      gap: clamp(16px, 2vw, 24px);
      border-color: rgba(23,59,99,0.14);
      border-radius: 8px;
      padding: clamp(22px, 2.4vw, 30px);
      background: #FFFFFF;
      box-shadow: none;
    }
    .contact-choice:hover,
    .contact-choice[aria-selected="true"] {
      border-color: rgba(139,30,45,0.28);
      box-shadow: none;
      transform: translateY(-2px);
    }
    .contact-choice[aria-selected="true"] {
      background: linear-gradient(180deg, rgba(255,250,248,0.98), rgba(250,247,244,0.98));
    }
    .contact-choice-icon {
      grid-row: 1 / span 2;
      width: 66px;
      height: 66px;
      display: grid;
      place-items: center;
      border: 0;
      border-radius: 0;
      color: var(--navy);
      background: transparent;
    }
    .contact-choice-icon svg {
      width: 50px;
      height: 50px;
    }
    .contact-choice[aria-selected="true"] .contact-choice-icon {
      color: var(--burgundy);
      border-color: transparent;
      background: transparent;
    }
    .contact-choice-label {
      grid-column: 2;
      align-self: end;
      color: var(--burgundy);
      font: 700 12px/1 var(--mono);
      letter-spacing: 0.08em;
    }
    .contact-choice strong {
      grid-column: 2;
      max-width: 420px;
      color: var(--deep);
      font: 500 clamp(19px, 1.6vw, 24px)/1.24 var(--display);
    }
    .contact-choice-arrow {
      grid-column: 3;
      grid-row: 1 / span 2;
      align-self: center;
      justify-self: end;
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(23,59,99,0.18);
      border-radius: 999px;
      color: rgba(23,59,99,0.52);
      font: 500 22px/1 var(--display);
      transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
    }
    .contact-choice[aria-selected="true"] .contact-choice-arrow,
    .contact-choice:hover .contact-choice-arrow {
      color: #FFFFFF;
      border-color: var(--burgundy);
      background: var(--burgundy);
      transform: translateX(2px);
    }
    .contact-form-shell {
      max-width: 920px;
      margin-inline: auto;
    }
    .contact-form-panel {
      border-top: 1px solid rgba(23,59,99,0.12);
      padding-top: clamp(20px, 3vw, 32px);
    }
    .contact-anchor {
      display: block;
      scroll-margin-top: calc(clamp(72px, 7vw, 92px) + 24px);
    }
    .contact-form-head {
      grid-template-columns: 1fr;
      border-bottom: 1px solid rgba(23,59,99,0.10);
      padding-bottom: 16px;
    }
    .contact-form-head h2 {
      font-size: clamp(30px, 2.6vw, 40px);
    }
    .public-form-grid {
      gap: 18px 20px;
    }
    .public-field input,
    .public-field select,
    .public-field textarea {
      min-height: 52px;
      border-color: rgba(23,59,99,0.17);
      border-radius: 7px;
      background: #FFFFFF;
    }
    .public-field textarea {
      min-height: 160px;
    }
    .public-consent {
      border: 1px solid rgba(23,59,99,0.12);
      border-radius: 7px;
      padding: 14px;
      background: rgba(247,248,249,0.72);
    }
    .public-form-actions .btn {
      min-width: 180px;
    }
    .public-legal-note {
      margin: 14px 0 0;
      color: var(--muted);
      font: 400 14px/1.55 var(--body);
    }
    .public-legal-note a {
      color: var(--burgundy);
      font-weight: 700;
      text-decoration: none;
    }
    .public-legal-note a:hover {
      color: var(--navy);
    }
    .legal-page {
      background:
        linear-gradient(90deg, rgba(32,37,41,0.035) 1px, transparent 1px) 0 0 / 78px 78px,
        var(--white);
      padding-top: 92px;
    }
    .legal-hero {
      padding: clamp(58px, 8vw, 96px) 0 clamp(72px, 9vw, 116px);
    }
    .legal-content {
      max-width: 860px;
      margin: 0 auto;
    }
    .legal-content h1 {
      margin: 12px 0 12px;
      color: var(--deep);
      font: 600 clamp(36px, 5vw, 64px)/1.02 var(--display);
      letter-spacing: -0.02em;
    }
    .legal-updated {
      margin: 0 0 30px;
      color: var(--muted);
      font: 500 14px/1.4 var(--mono);
      letter-spacing: 0.02em;
    }
    .legal-richtext {
      border-top: 1px solid rgba(23,59,99,0.14);
      padding-top: 28px;
    }
    .legal-richtext h2 {
      margin: 34px 0 14px;
      color: var(--deep);
      font: 650 clamp(23px, 3vw, 31px)/1.18 var(--display);
      letter-spacing: 0;
    }
    .legal-richtext h2:first-child {
      margin-top: 0;
    }
    .legal-richtext p {
      margin: 0 0 18px;
      color: rgba(22,31,42,0.82);
      font-size: clamp(16px, 2vw, 18px);
      line-height: 1.78;
    }
    .legal-richtext ul {
      display: grid;
      gap: 9px;
      margin: 0 0 22px;
      padding-left: 24px;
    }
    .legal-richtext li {
      color: rgba(22,31,42,0.82);
      font-size: clamp(16px, 2vw, 18px);
      line-height: 1.68;
      padding-left: 4px;
    }
    @media (max-width: 980px) {
      .contact-page-hero {
        padding-block: 100px 28px;
      }
      .contact-hero-overlay {
        left: 32px;
        width: min(38%, 440px);
      }
      .contact-hero-overlay h1 {
        font-size: clamp(32px, 3.8vw, 40px);
      }
      .contact-proof-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 9px;
      }
      .contact-proof-item {
        grid-template-columns: 20px minmax(0, 1fr);
      }
      .contact-proof-icon {
        width: 20px;
        height: 20px;
      }
      .contact-proof-icon svg {
        width: 12px;
        height: 12px;
      }
    }
    @media (max-width: 820px) {
      .contact-hero-stage {
        display: flex;
        flex-direction: column;
        gap: 26px;
        overflow: visible;
        background: transparent;
      }
      .contact-hero-stage::before {
        display: none;
      }
      .contact-hero-overlay {
        position: relative;
        left: auto;
        top: auto;
        order: 1;
        width: 100%;
        transform: none;
      }
      .contact-hero-image,
      .contact-hero-empty {
        order: 2;
      }
      .contact-hero-overlay h1,
      .contact-hero-overlay p:not(.eyebrow) {
        max-width: 620px;
      }
      .contact-proof-list {
        max-width: 640px;
      }
    }
    @media (max-width: 640px) {
      .contact-page-hero {
        padding-block: 94px 28px;
      }
      .contact-hero-stage {
        gap: 24px;
      }
      .contact-hero-overlay h1 {
        font-size: clamp(38px, 11vw, 48px);
      }
      .contact-proof-list {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
        margin-top: 22px;
      }
      .contact-choice {
        min-height: 160px;
        grid-template-columns: 58px minmax(0, 1fr) 40px;
      }
      .contact-choice-icon {
        width: 54px;
        height: 54px;
      }
      .contact-choice-icon svg {
        width: 40px;
        height: 40px;
      }
      .contact-choice-arrow {
        width: 38px;
        height: 38px;
      }
    }
