:root {
  --ink: #111313;
  --panel: #181a1b;
  --panel-soft: #222527;
  --paper: #f7f1df;
  --paper-strong: #fff7d6;
  --gold: #d6b35c;
  --gold-light: #f1d878;
  --brick: #9d2b21;
  --brick-dark: #621812;
  --green: #2e7d47;
  --text: #f7f4ea;
  --muted: #c9c2af;
  --dark-muted: #716b5c;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(17, 19, 19, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand img {
  width: 104px;
  height: 104px;
  object-fit: contain;
  border-radius: 8px;
}

.brand small {
  display: block;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 14px;
}

.top-nav a:hover,
.text-link:hover,
.contact-links a:hover {
  color: var(--gold-light);
}

.btn,
.small-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 6px;
  font-weight: 800;
  white-space: nowrap;
}

.btn.primary,
.small-btn {
  color: #17130a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.header-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #17130a;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.header-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  color: #17130a;
}

.header-call svg {
  width: 18px;
  height: 18px;
  fill: #17130a;
  flex-shrink: 0;
}

.header-call span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.header-call small {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.72;
  margin-bottom: 4px;
}

.header-call strong {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.social-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.social-icon:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.social-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.whatsapp-icon {
  background: #25d366;
}

.instagram-icon {
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 72%, #515bd4);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 19, 19, 0.92), rgba(17, 19, 19, 0.5) 48%, rgba(17, 19, 19, 0.1)),
    linear-gradient(0deg, rgba(17, 19, 19, 0.96), rgba(17, 19, 19, 0.18) 58%, rgba(17, 19, 19, 0.34));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto 76px clamp(18px, 6vw, 86px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.15;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-lead {
  max-width: 650px;
  color: #fff7e7;
  font-size: clamp(19px, 2.2vw, 26px);
  line-height: 1.45;
}

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

.btn {
  padding: 0 22px;
  min-width: 176px;
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.hero {
  padding-bottom: 72px;
}

.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 56px;
  background-color: var(--gold);
  background-image: url("../images/hero-strip.svg");
  background-repeat: repeat-x;
  background-position: left center;
  background-size: auto 64%;
  border-top: 1px solid rgba(17, 19, 19, 0.18);
  border-bottom: 1px solid rgba(17, 19, 19, 0.12);
  box-shadow: 0 -14px 30px rgba(0, 0, 0, 0.35);
}

@media (max-width: 780px) {
  .hero { padding-bottom: 48px; }
  .hero-strip { height: 44px; background-size: auto 60%; }
}

.campaign-alert {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  padding: clamp(34px, 5vw, 58px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(98, 24, 18, 0.98), rgba(157, 43, 33, 0.9)),
    var(--brick);
  border-block: 1px solid rgba(241, 216, 120, 0.36);
}

.campaign-alert h2 {
  max-width: 780px;
}

.campaign-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.campaign-logos img {
  display: block;
  object-fit: contain;
}

.yarisi-logo {
  width: min(300px, 58vw);
  max-height: 112px;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.28));
}

.ministry-logo {
  width: 78px;
  height: 78px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 50%;
}

.deadline-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 0 0 20px;
  padding: 0 16px;
  background: var(--paper-strong);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  color: var(--brick-dark);
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 900;
  text-transform: uppercase;
}

.campaign-alert p {
  max-width: 760px;
  color: #fff1dd;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.support-item {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  background: rgba(17, 19, 19, 0.32);
  border: 1px solid rgba(241, 216, 120, 0.5);
  border-radius: 8px;
  text-align: center;
}

.support-item strong {
  color: var(--gold-light);
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1;
}

.support-item span {
  margin-top: 12px;
  font-weight: 900;
}

.source-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.section {
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.intro {
  background: var(--paper);
  color: var(--ink);
}

.intro-grid,
.standards,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.intro h2,
.standards h2,
.contact h2 {
  color: var(--ink);
}

.intro p,
.standards p,
.contact p {
  color: var(--dark-muted);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill-list span {
  padding: 10px 14px;
  background: #fff;
  border: 1px solid rgba(17, 19, 19, 0.12);
  border-radius: 6px;
  color: var(--ink);
  font-weight: 800;
}

.brand-showcase {
  margin-top: clamp(42px, 6vw, 72px);
  padding-top: clamp(30px, 4vw, 44px);
  border-top: 1px solid rgba(17, 19, 19, 0.12);
}

.brand-showcase-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.brand-showcase-heading .eyebrow {
  margin-bottom: 8px;
}

.brand-showcase h3 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.brand-card {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(17, 19, 19, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.brand-card img {
  width: 100%;
  height: 100%;
  max-width: 148px;
  max-height: 54px;
  object-fit: contain;
}

.brand-card.brand-wide img {
  max-width: 168px;
  max-height: 62px;
}

.brand-card.brand-tall img {
  max-width: 132px;
  max-height: 68px;
}

.proof-band {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.proof-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.74;
}

.proof-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 19, 19, 0.95), rgba(17, 19, 19, 0.14));
}

.proof-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin: 0 0 clamp(42px, 7vw, 88px) clamp(18px, 6vw, 86px);
}

.maps-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  margin-top: 18px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  color: #1f1f1f;
  font-weight: 900;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.26);
}

.maps-link:hover {
  transform: translateY(-1px);
}

.maps-pin {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50% 50% 50% 0;
  background:
    conic-gradient(from 40deg, #4285f4 0 25%, #34a853 0 50%, #fbbc04 0 75%, #ea4335 0 100%);
  transform: rotate(-45deg);
}

.maps-pin::after {
  content: "";
  position: absolute;
  inset: 7px;
  background: #fff;
  border-radius: 50%;
}

.maps-link span:last-child {
  display: inline-block;
}

.ongoing {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  background: var(--paper);
  color: var(--ink);
}

.ongoing-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(17, 19, 19, 0.18);
}

.ongoing-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.ongoing-copy h2 {
  color: var(--ink);
}

.ongoing-copy p {
  color: var(--dark-muted);
}

.value-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 26px 0 24px;
}

.value-list span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: #fff;
  border: 1px solid rgba(17, 19, 19, 0.1);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 900;
}

.value-list span::before {
  content: "";
  width: 10px;
  height: 18px;
  margin-right: 12px;
  border-right: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(45deg);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.section-heading > div {
  max-width: 820px;
}

.text-link {
  color: var(--gold-light);
  font-weight: 900;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.timeline article {
  min-height: 250px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline span {
  display: block;
  margin-bottom: 42px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
}

.timeline p {
  font-size: 15px;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--panel);
}

figure {
  margin: 0;
}

.gallery-strip figure {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-right: 1px solid var(--ink);
}

.gallery-strip img,
.comparison img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-strip figcaption,
.comparison figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 12px;
  background: rgba(17, 19, 19, 0.82);
  border: 1px solid rgba(241, 216, 120, 0.34);
  border-radius: 6px;
  color: #fff;
  font-weight: 900;
}

.standards {
  background: var(--paper);
  color: var(--ink);
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.standard-grid div {
  min-height: 128px;
  padding: 22px;
  background: #fff;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
}

.standard-grid strong,
.standard-grid span {
  display: block;
}

.standard-grid strong {
  font-size: 21px;
}

.standard-grid span {
  margin-top: 10px;
  color: var(--dark-muted);
}

.project-head {
  max-width: 820px;
  margin: 0 0 clamp(28px, 3.5vw, 44px);
}

.project-head .eyebrow {
  margin-bottom: 14px;
}

.project-head h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.project-lead {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 640px;
}

/* Before/after slider */
.ba-slider {
  --ba-pos: 50%;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: min(62vh, 620px);
  margin-left: auto;
  margin-right: auto;
  border-radius: 18px;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  user-select: none;
}

@supports (aspect-ratio: 1) {
  .ba-slider {
    width: min(100%, calc(min(62vh, 620px) * 16 / 9));
  }
}

.ba-img {
  position: absolute;
  inset: 0;
}

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

.ba-before {
  clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
}

.ba-tag {
  position: absolute;
  top: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
}

.ba-tag-before {
  left: 16px;
  background: rgba(157, 43, 33, 0.85);
  color: #fff;
}

.ba-tag-after {
  right: 16px;
  background: rgba(241, 216, 120, 0.92);
  color: #17130a;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos);
  width: 2px;
  transform: translateX(-1px);
  background: #fff;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.ba-handle-line {
  flex: 1;
  width: 2px;
  background: rgba(255, 255, 255, 0.95);
}

.ba-handle-knob {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #17130a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.ba-handle-knob svg {
  width: 22px;
  height: 22px;
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  cursor: ew-resize;
  appearance: none;
  -webkit-appearance: none;
  opacity: 0;
  z-index: 2;
}

.ba-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 60px;
  height: 100%;
  background: transparent;
  cursor: ew-resize;
}

.ba-range::-moz-range-thumb {
  width: 60px;
  height: 100%;
  background: transparent;
  border: none;
  cursor: ew-resize;
}

/* Project stats — typographic emphasis */
.project-stats {
  margin-top: clamp(28px, 3.5vw, 44px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ps-item {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.ps-item:last-child {
  border-right: none;
}

.ps-num {
  font-size: clamp(38px, 4.4vw, 56px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold-light);
}

.ps-unit {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin-top: 2px;
}

.ps-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* Visit CTA */
.project-visit {
  margin-top: clamp(24px, 3vw, 36px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: linear-gradient(135deg, rgba(241, 216, 120, 0.1), rgba(241, 216, 120, 0.02));
  border: 1px solid rgba(241, 216, 120, 0.2);
  border-radius: 14px;
  color: #fff;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.project-visit:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 216, 120, 0.45);
  background: linear-gradient(135deg, rgba(241, 216, 120, 0.18), rgba(241, 216, 120, 0.04));
  color: #fff;
}

.project-visit span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.project-visit small {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
}

.project-visit strong {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.005em;
}

.project-visit svg {
  width: 28px;
  height: 28px;
  fill: var(--gold-light);
  flex-shrink: 0;
}

@media (max-width: 780px) {
  .project-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .ps-item:nth-child(2) {
    border-right: none;
  }
  .ps-item:nth-child(1),
  .ps-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .ba-slider {
    aspect-ratio: 4 / 5;
  }
  .project-visit {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

.project {
  background: var(--panel);
}

.project-meta {
  margin: 0;
  color: var(--gold-light);
  font-weight: 900;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 560px;
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: 8px;
}

.comparison figure {
  position: relative;
  min-height: 480px;
}

.project-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.project-facts div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.project-facts span,
.project-facts strong {
  display: block;
}

.project-facts span {
  color: var(--muted);
  font-size: 14px;
}

.project-facts strong {
  margin-top: 8px;
  color: #fff;
  font-size: 20px;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, var(--green), #1d4f31);
}

.cta-section h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(28px, 4.2vw, 54px);
}

.contact {
  background: var(--paper);
  color: var(--ink);
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid rgba(17, 19, 19, 0.12);
  border-radius: 6px;
  color: var(--ink);
  font-weight: 900;
}

.contact-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: currentColor;
}

.maps-contact-icon {
  color: #4285f4;
}

.instagram-contact-icon {
  color: #dd2a7b;
}

.mail-contact-icon {
  color: var(--brick);
}

.contact-people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.person {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 28px 20px;
  background: #fff;
  border: 1px solid rgba(17, 19, 19, 0.1);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(17, 19, 19, 0.08);
}

.person-avatar {
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 3px solid #fff;
  box-shadow: 0 8px 22px rgba(17, 19, 19, 0.2);
}

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

.person-monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #17130a;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.person-name {
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
}

.person-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--paper);
  border-radius: 999px;
  color: var(--brick-dark);
  font-size: 16px;
  font-weight: 800;
  transition: background 0.18s ease;
}

.person-phone:hover {
  background: var(--paper-strong);
}

.person-phone svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  opacity: 0.7;
}

.small-btn {
  min-height: 38px;
  padding: 0 14px;
  font-size: 14px;
}

.site-footer {
  padding: 0 clamp(18px, 5vw, 72px) 36px;
  background: #0c0d0d;
  text-align: center;
}

.site-footer::before {
  content: "";
  display: block;
  height: 100px;
  margin: 0 calc(clamp(18px, 5vw, 72px) * -1) 18px;
  background-color: #fff;
  background-image: url("../images/footer-bg.svg");
  background-repeat: repeat-x;
  background-size: 323px 100px;
  background-position: left top;
}

@media (max-width: 640px) {
  .site-footer::before {
    background-repeat: repeat-x;
    background-position: left center;
    background-size: auto 100%;
    background-color: #fff;
    height: 64px;
    margin-bottom: 18px;
  }
}

.site-footer p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
}

/* ============================================================
   Critical period (Yarısı Bizden) — v3
   Single-tone brick gradient + golden radial accents
   max-width 1399 · equal-height vertical cards
   ============================================================ */
.critical {
  position: relative;
  padding: clamp(48px, 6vw, 80px) clamp(18px, 5vw, 56px);
  background:
    radial-gradient(58% 48% at 18% 8%,  rgba(241, 216, 120, 0.22), transparent 70%),
    radial-gradient(50% 60% at 96% 100%, rgba(241, 216, 120, 0.16), transparent 72%),
    radial-gradient(70% 90% at 50% 50%, rgba(157, 43, 33, 0.55), transparent 78%),
    var(--brick-dark);
  color: var(--text);
  overflow: hidden;
  border-block: 1px solid rgba(241, 216, 120, 0.22);
}

.critical-bg {
  display: none;
}

.critical-grid {
  position: relative;
  max-width: 1399px;
  margin: 0 auto;
  display: grid;
  gap: clamp(28px, 3.4vw, 44px);
}

.critical-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
}

.critical-head-main {
  min-width: 0;
}

.critical-flag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  margin-bottom: 18px;
  background: rgba(255, 247, 214, 0.06);
  border: 1px solid rgba(241, 216, 120, 0.42);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.critical-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff5b4a;
  box-shadow: 0 0 0 0 rgba(255, 91, 74, 0.7);
  animation: critPulse 1.8s ease-out infinite;
}

@keyframes critPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 91, 74, 0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(255, 91, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 91, 74, 0); }
}

.critical-head h2 {
  margin: 0 0 18px;
  color: #fff7e7;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 0.96;
  letter-spacing: -0.015em;
  max-width: 16ch;
}

.critical-head h2 em {
  font-style: normal;
  font-weight: 900;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.critical-intro {
  margin: 0 0 24px;
  max-width: 56ch;
  color: rgba(255, 247, 231, 0.86);
  font-size: 16px;
  line-height: 1.6;
}

.critical-logos {
  align-self: end;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px;
  background: rgba(12, 6, 5, 0.4);
  border: 1px solid rgba(241, 216, 120, 0.22);
  border-radius: 14px;
}

.critical-logos .yarisi-logo {
  width: 180px;
  max-height: 70px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
}

.critical-logos-divider {
  width: 1px;
  height: 40px;
  background: rgba(241, 216, 120, 0.28);
}

.critical-logos .ministry-logo {
  width: 50px;
  height: 50px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 50%;
}

.critical-logos-caption {
  color: rgba(255, 247, 231, 0.78);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Cards row — equal height, vertical: icon → tag → title → body → footer */
.critical-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
  align-items: stretch;
}

.ccard {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(22px, 2.2vw, 28px);
  background:
    radial-gradient(110% 70% at 100% 0%, rgba(241, 216, 120, 0.12), transparent 65%),
    rgba(12, 6, 5, 0.55);
  border: 1px solid rgba(241, 216, 120, 0.22);
  border-radius: 16px;
  backdrop-filter: blur(6px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 40px rgba(0, 0, 0, 0.32);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.ccard:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 216, 120, 0.42);
}

.ccard-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background:
    radial-gradient(80% 80% at 30% 20%, rgba(241, 216, 120, 0.45), rgba(241, 216, 120, 0.08));
  border: 1px solid rgba(241, 216, 120, 0.4);
  color: var(--gold-light);
}

.ccard-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.ccard-tag {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ccard h3 {
  margin: 0;
  color: #fff7e7;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.005em;
}

.ccard-note {
  margin: auto 0 0;
  padding-top: 14px;
  border-top: 1px dashed rgba(241, 216, 120, 0.24);
  color: rgba(255, 247, 231, 0.62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Countdown clock inside ccard */
.ccard .countdown-clock {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 4px;
}

.cd-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 4px;
  background: rgba(241, 216, 120, 0.08);
  border: 1px solid rgba(241, 216, 120, 0.22);
  border-radius: 10px;
}

.cd-cell strong {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff7e7;
  font-variant-numeric: tabular-nums;
}

.cd-cell span {
  margin-top: 6px;
  color: rgba(255, 247, 231, 0.6);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Support breakdown list inside ccard */
.ccard-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.ccard-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(241, 216, 120, 0.16);
  border-radius: 8px;
}

.ccard-list strong {
  color: var(--gold-light);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.ccard-list span {
  color: rgba(255, 247, 231, 0.72);
  font-size: 13px;
  text-align: right;
}

/* Steps list inside ccard */
.ccard-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.ccard-steps li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}

.ccard-steps i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(241, 216, 120, 0.14);
  border: 1px solid rgba(241, 216, 120, 0.42);
  color: var(--gold-light);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  margin-top: 2px;
}

.ccard-steps strong {
  display: block;
  color: #fff7e7;
  font-size: 14px;
  font-weight: 900;
}

.ccard-steps span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 247, 231, 0.66);
  font-size: 12.5px;
  line-height: 1.45;
}

.ccard-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
}

.ccard-actions .btn {
  flex: 1;
  min-width: 0;
}

.critical-source {
  margin: 0;
  color: rgba(255, 247, 231, 0.55);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  max-width: 80ch;
  margin-inline: auto;
}

@media (max-width: 1024px) {
  .critical-head { grid-template-columns: 1fr; }
  .critical-cards { grid-template-columns: 1fr; }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .critical { padding-left: clamp(20px, 3vw, 40px); padding-right: clamp(20px, 3vw, 40px); }
  .critical-cards { gap: 14px; }
  .ccard { padding: 22px; }
}

/* ============================================================
   Contact V2 — redesigned section
   ============================================================ */
.contact-v2 {
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background: var(--paper);
  color: var(--ink);
}

.contact-v2-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  grid-template-areas:
    "intro people"
    "map map"
    "social social";
  gap: clamp(20px, 2.6vw, 32px);
  align-items: stretch;
}

.contact-intro { grid-area: intro; }
.contact-people-v2 { grid-area: people; }
.contact-map { grid-area: map; }
.contact-social { grid-area: social; }

.contact-intro {
  padding: clamp(28px, 3vw, 40px);
  background: #fff;
  border: 1px solid rgba(17, 19, 19, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(17, 19, 19, 0.06);
}

.contact-intro h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: -0.015em;
}

.contact-intro-lead {
  margin: 0 0 26px;
  color: #4a4639;
  font-size: 16px;
  line-height: 1.6;
}

.contact-meta {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(17, 19, 19, 0.08);
}

.cm-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(17, 19, 19, 0.08);
  align-items: start;
}

.cm-label {
  color: var(--brick);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-top: 3px;
}

.cm-value {
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.cm-value a {
  border-bottom: 1px solid rgba(157, 43, 33, 0.4);
  color: var(--brick);
}

/* People — single dark container */
.contact-people-v2 {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 24px;
  background: var(--ink);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(17, 19, 19, 0.18);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.contact-people-v2::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 216, 120, 0.16), transparent 65%);
  pointer-events: none;
}

.people-eyebrow {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.person-v2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 0;
  position: relative;
  z-index: 1;
  flex: 1;
}

.person-v2 + .person-v2 {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.person-v2-head {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.person-v2-head .person-avatar {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  font-size: 22px;
  border-width: 2px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.32);
}

.person-v2-head > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.person-role {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.person-v2 .person-name {
  color: #fff7e7;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.person-v2-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.pv2-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  text-align: left;
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.pv2-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.pv2-btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: currentColor;
}

.pv2-btn span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.pv2-btn small {
  color: rgba(255, 247, 231, 0.6);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pv2-btn strong {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pv2-call { color: var(--gold-light); border-color: rgba(241, 216, 120, 0.3); }
.pv2-call:hover { border-color: rgba(241, 216, 120, 0.55); }
.pv2-wa { color: #25d366; border-color: rgba(37, 211, 102, 0.3); }
.pv2-wa:hover { border-color: rgba(37, 211, 102, 0.55); }

/* Map */
.contact-map {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(17, 19, 19, 0.08);
  background: #eee6cf;
  min-height: 300px;
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(17, 19, 19, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-map:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(17, 19, 19, 0.14);
}

.contact-map-canvas {
  position: absolute;
  inset: 0;
}

.contact-map-canvas svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-map-pin {
  position: absolute;
  top: 46%;
  left: 56%;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
}

.cmp-dot {
  position: absolute;
  inset: 4px;
  background: var(--brick);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.cmp-ring {
  position: absolute;
  inset: 0;
  border: 2px solid var(--brick);
  border-radius: 50%;
  opacity: 0.5;
  animation: pinPulse 2s ease-out infinite;
}

@keyframes pinPulse {
  0%   { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(2.4); opacity: 0; }
}

.contact-map-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(17, 19, 19, 0.08);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(17, 19, 19, 0.12);
}

.cmc-label {
  color: var(--brick);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cmc-title {
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  flex: 1;
  min-width: 100px;
}

.cmc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brick);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.cmc-cta svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform 0.18s ease;
}

.contact-map:hover .cmc-cta svg {
  transform: translateX(3px);
}

/* Social row */
.contact-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid rgba(17, 19, 19, 0.08);
  border-radius: 14px;
}

.cs-label {
  color: var(--brick);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cs-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.18s ease;
}

.cs-pill:hover { transform: translateY(-1px); }

.cs-pill svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.cs-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 72%, #515bd4);
}

.cs-divider {
  width: 1px;
  height: 22px;
  background: rgba(17, 19, 19, 0.12);
}

.cs-note {
  flex: 1;
  min-width: 200px;
  color: #4a4639;
  font-size: 13px;
  line-height: 1.45;
}

/* Responsive */
@media (max-width: 1100px) {
  .contact-v2-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "people"
      "map"
      "social";
  }
}

@media (max-width: 640px) {
  .person-v2-actions { grid-template-columns: 1fr; }
  .cmc-cta { width: 100%; justify-content: flex-end; }

  /* Prevent contact-v2 children from overflowing on mobile */
  .contact-v2 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-v2-grid > * { min-width: 0; }

  .contact-intro,
  .contact-people-v2 {
    padding: 22px 18px;
  }

  /* Stack the meta rows so long email/address don't push width */
  .cm-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 0;
  }

  .cm-value {
    font-size: 15px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  /* Buttons: allow inner text to truncate cleanly */
  .person-v2-actions { min-width: 0; }
  .pv2-btn { min-width: 0; padding: 12px 14px; gap: 10px; }
  .pv2-btn span { min-width: 0; flex: 1 1 auto; }
  .pv2-btn strong { min-width: 0; }
}

@media (max-width: 1100px) {
  .campaign-alert,
  .intro-grid,
  .ongoing,
  .standards,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .gallery-strip,
  .project-facts,
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .site-header {
    position: sticky;
    flex-wrap: wrap;
    padding: 12px 18px;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
    order: 2;
    margin-left: auto;
  }

  .header-social {
    order: 3;
  }

  .top-nav {
    order: 4;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: rgba(17, 19, 19, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 8px -18px -12px;
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease;
  }

  body.nav-open .top-nav {
    max-height: 320px;
    padding: 8px 18px 16px;
  }

  .top-nav a {
    display: block;
    padding: 14px 4px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text);
  }

  .top-nav a:last-child {
    border-bottom: none;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 64px;
    height: 64px;
  }

  .brand small {
    font-size: 11px;
  }

  .header-call {
    padding: 8px 12px;
  }

  .header-call small {
    display: none;
  }

  .header-call strong {
    font-size: 14px;
  }

  .hero {
    min-height: 650px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(17, 19, 19, 0.96), rgba(17, 19, 19, 0.36)),
      linear-gradient(90deg, rgba(17, 19, 19, 0.72), rgba(17, 19, 19, 0.28));
  }

  .hero-content {
    margin: 0 18px 46px;
  }

  .support-grid,
  .timeline,
  .gallery-strip,
  .value-list,
  .comparison,
  .project-facts,
  .cta-section {
    grid-template-columns: 1fr;
  }

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

  .person {
    padding: 24px 18px;
  }

  .person-avatar {
    width: 84px;
    height: 84px;
    flex-basis: 84px;
  }

  .person-btn {
    width: 100%;
  }

  .brand-showcase-heading {
    display: block;
  }

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

  .section-heading {
    display: block;
  }

  .gallery-strip figure,
  .comparison figure {
    min-height: 380px;
  }

  .cta-section .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .brand {
    gap: 10px;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .brand small {
    font-size: 10px;
  }

  .header-call strong {
    font-size: 0;
  }

  .header-call svg {
    width: 22px;
    height: 22px;
  }

  .header-call {
    padding: 10px;
  }

  .social-icon {
    width: 42px;
    height: 42px;
  }

  .social-icon svg {
    width: 23px;
    height: 23px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 31px;
  }

  .btn {
    width: 100%;
  }

  .proof-band {
    min-height: 500px;
  }

  .proof-content {
    margin: 0 18px 42px;
  }
}

/* ============================================================
   Why Aydın İnşaat + Brand marquee (redesigned)
   ============================================================ */
.why-us {
  padding: clamp(56px, 7vw, 96px) 0 0;
  background: var(--paper);
  color: var(--ink);
}

.why-grid {
  max-width: 1399px;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.4fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.why-head .eyebrow {
  color: var(--brick);
  margin-bottom: 14px;
}

.why-head h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  max-width: 14ch;
}

.why-lead {
  margin: 0 0 22px;
  color: #4a4639;
  font-size: 16px;
  line-height: 1.65;
  max-width: 48ch;
}

.why-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-tags li {
  padding: 6px 12px;
  background: rgba(157, 43, 33, 0.08);
  border: 1px solid rgba(157, 43, 33, 0.18);
  border-radius: 999px;
  color: var(--brick);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(17, 19, 19, 0.12);
  border-left: 1px solid rgba(17, 19, 19, 0.12);
}

.why-stat {
  padding: clamp(22px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid rgba(17, 19, 19, 0.12);
  border-bottom: 1px solid rgba(17, 19, 19, 0.12);
  background: #fff;
  position: relative;
}

.why-num {
  font-size: clamp(44px, 4.8vw, 64px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--brick);
  display: inline-flex;
  align-items: baseline;
}

.why-num i {
  font-style: normal;
  font-size: 0.55em;
  font-weight: 800;
  color: var(--gold);
  margin-left: 2px;
}

.why-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(157, 43, 33, 0.08);
  color: var(--brick);
  margin-bottom: 4px;
}

.why-icon svg {
  width: 24px;
  height: 24px;
}

.why-label {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.why-sub {
  font-size: 13px;
  color: #6b6555;
  line-height: 1.45;
}

/* Brand marquee */
.brand-marquee {
  margin-top: clamp(48px, 6vw, 80px);
  padding: clamp(28px, 3vw, 40px) 0 clamp(40px, 5vw, 64px);
  background: #fff;
  border-top: 1px solid rgba(17, 19, 19, 0.08);
  border-bottom: 1px solid rgba(17, 19, 19, 0.08);
  overflow: hidden;
}

.brand-marquee-head {
  max-width: 1399px;
  margin: 0 auto clamp(20px, 2.4vw, 28px);
  padding: 0 clamp(18px, 5vw, 72px);
}

.brand-marquee-head .eyebrow {
  color: var(--brick);
  margin-bottom: 8px;
}

.brand-marquee-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  max-width: 600px;
}

.bm-track {
  display: flex;
  width: max-content;
  animation: bmScroll 60s linear infinite;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.bm-track:hover {
  animation-play-state: paused;
}

.bm-row {
  display: flex;
  align-items: center;
  gap: clamp(36px, 4vw, 64px);
  padding: 0 clamp(18px, 2.5vw, 32px);
  flex-shrink: 0;
}

.bm-row img {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.65);
  transition: filter 0.2s ease;
}

.bm-row img:hover {
  filter: grayscale(0) opacity(1);
}

@keyframes bmScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bm-row img { height: 36px; }
  .bm-track { animation-duration: 40s; }
}

@media (max-width: 480px) {
  .why-stats { grid-template-columns: 1fr; }
}

/* ============================================================
   Dönüşüm yol haritası (process redesign)
   ============================================================ */
.roadmap {
  background: var(--ink);
  color: var(--text);
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

.roadmap-head {
  max-width: 1399px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  padding: 0 clamp(18px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) auto;
  gap: clamp(24px, 3vw, 48px);
  align-items: end;
}

.roadmap-head .eyebrow {
  color: var(--gold-light);
  margin-bottom: 12px;
}

.roadmap-head h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 16ch;
  color: var(--text);
}

.roadmap-lead {
  margin: 0;
  color: rgba(247, 244, 234, 0.72);
  font-size: 16px;
  line-height: 1.6;
  max-width: 56ch;
}

.roadmap-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 14px 22px;
  background: var(--brick);
  color: #fff;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.roadmap-cta:hover {
  background: var(--brick-dark);
  transform: translateY(-2px);
}

.roadmap-cta small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2px;
}

.roadmap-cta strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.005em;
}

.roadmap-cta svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
  flex-shrink: 0;
}

/* Track */
.roadmap-track {
  list-style: none;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 72px);
  max-width: 1399px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  position: relative;
}

.rstep {
  position: relative;
  padding: 0 clamp(10px, 1.5vw, 18px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* connector line behind markers */
.rstep::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    rgba(241, 216, 120, 0.32) 0 6px,
    transparent 6px 12px
  );
  z-index: 0;
}

.rstep:last-child::before {
  display: none;
}

.rstep-marker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.rstep-num {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brick);
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 0 0 6px var(--ink);
  flex-shrink: 0;
}

.rstep:nth-child(odd) .rstep-num {
  background: var(--gold);
  color: var(--ink);
}

.rstep-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(241, 216, 120, 0.12);
  color: var(--gold-light);
  flex-shrink: 0;
}

.rstep-icon svg {
  width: 22px;
  height: 22px;
}

.rstep-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--text);
}

.rstep-body p {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(247, 244, 234, 0.7);
}

.rstep-meta {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
}

@media (max-width: 1024px) {
  .roadmap-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }
  .rstep::before { display: none; }
}

@media (max-width: 700px) {
  .roadmap-head {
    grid-template-columns: 1fr;
  }
  .roadmap-track {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .rstep {
    padding: 18px;
    background: var(--panel-soft);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
  }
}
