/* ============================
   STEEL TOWERS INTERNATIONAL
   ============================ */
:root {
  --navy: #0E1B3A;
  --navy-deep: #08122A;
  --navy-soft: #1B2B53;
  --gold: #C8A04B;
  --gold-soft: #D4B36A;
  --gold-deep: #A88334;
  --cream: #F5F0E4;
  --cream-2: #ECE4D2;
  --ink: #0A0F1F;
  --ink-soft: #2A3252;
  --muted: #6F7591;
  --line: rgba(14, 27, 58, 0.12);
  --line-on-dark: rgba(200, 160, 75, 0.22);
  --shadow-sm: 0 1px 2px rgba(8, 18, 42, 0.06), 0 2px 8px rgba(8, 18, 42, 0.04);
  --shadow-md: 0 4px 18px rgba(8, 18, 42, 0.10);
  --shadow-lg: 0 24px 60px rgba(8, 18, 42, 0.18);

  --maxw: 1320px;
  --pad: clamp(20px, 4vw, 56px);
  --radius-sm: 4px;
  --radius: 10px;
  --radius-lg: 18px;

  --font-ar: "Cairo", "Tajawal", system-ui, -apple-system, sans-serif;
  --font-en: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ar);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  direction: rtl;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

.en { font-family: var(--font-en); direction: ltr; unicode-bidi: isolate; letter-spacing: 0.01em; }
.mono { font-family: var(--font-mono); direction: ltr; unicode-bidi: isolate; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad);
}

/* ===== Eyebrow ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.eyebrow.on-dark { color: var(--gold); }

/* ===== Section title ===== */
.section-title {
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 14px 0 0;
}
.section-title.on-dark { color: #fff; }
.section-sub {
  margin-top: 14px;
  max-width: 640px;
  color: var(--muted);
  font-size: 16px;
}
.section-sub.on-dark { color: rgba(255,255,255,0.65); }

section { padding-block: clamp(64px, 9vw, 120px); }
section.tight { padding-block: clamp(48px, 6vw, 80px); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-soft); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--navy); }
.btn-ghost.on-dark { border-color: rgba(255,255,255,0.18); color: #fff; }
.btn-ghost:hover { background: rgba(14,27,58,0.04); }
.btn-ghost.on-dark:hover { background: rgba(255,255,255,0.06); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-soft); }

.arrow-l { display: inline-block; transform: scaleX(-1); }

/* ===== Header ===== */
.topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 10px;
  gap: 16px;
}
.topbar .info { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar .info span { display: inline-flex; align-items: center; gap: 8px; }
.topbar .info svg { color: var(--gold); }
.topbar .lang { display: inline-flex; align-items: center; gap: 4px; }
.topbar .lang button {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.55);
  padding: 4px 8px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.topbar .lang button.active { color: var(--gold); font-weight: 700; }

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 240, 228, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .25s, padding .25s;
}
header.site.scrolled { background: rgba(255,255,255,0.95); }
header.site .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand .logo-wrap {
  width: 64px; height: 48px;
  border-radius: 6px;
  background: #fff;
  display: grid; place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.brand .logo-wrap img { width: 100%; height: 100%; object-fit: contain; }
.brand .name { line-height: 1.1; }
.brand .name .ar { font-weight: 800; font-size: 17px; color: var(--navy); }
.brand .name .en { font-family: var(--font-en); font-size: 11px; letter-spacing: 0.18em; color: var(--gold-deep); margin-top: 2px; }

nav.primary { display: flex; gap: 4px; align-items: center; }
nav.primary a {
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
  transition: background .15s, color .15s;
}
nav.primary a:hover { background: rgba(14,27,58,0.05); color: var(--navy); }
nav.primary a.active { color: var(--navy); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.menu-btn { display: none; }

@media (max-width: 1000px) {
  nav.primary { display: none; }
  .menu-btn {
    display: inline-flex; gap: 4px; flex-direction: column;
    width: 42px; height: 42px; align-items: center; justify-content: center;
    border: 1px solid var(--line); background: transparent; border-radius: 8px;
  }
  .menu-btn span { width: 18px; height: 2px; background: var(--navy); display:block; }
  .topbar .info span:nth-child(n+3) { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  padding: 0;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  min-height: 720px;
  align-items: stretch;
}
.hero-left {
  padding: clamp(60px, 8vw, 110px) var(--pad) clamp(60px, 8vw, 100px);
  display: flex; flex-direction: column; justify-content: center;
  max-width: 760px;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(40px, 5.8vw, 84px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 22px 0 0;
}
.hero h1 .accent-line {
  display: inline-block;
  color: var(--gold);
  position: relative;
  padding-bottom: 14px;
  margin-top: 4px;
}
.hero h1 .accent-line::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  height: 5px;
  width: 88px;
  background: var(--gold);
}
.hero-lead {
  margin-top: 28px;
  max-width: 520px;
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  line-height: 1.7;
}
.hero-ctas { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero-meta {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line-on-dark);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 560px;
}
.hero-meta .v { font-family: var(--font-en); font-weight: 800; font-size: 32px; color: var(--gold); }
.hero-meta .k { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }

.hero-right {
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
}
.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(1.02) contrast(1.05) brightness(0.98);
  image-rendering: -webkit-optimize-contrast;
}
.hero-photo-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(14,27,58,0.45) 0%, rgba(14,27,58,0.20) 50%, rgba(8,18,42,0.6) 100%),
    linear-gradient(180deg, transparent 60%, rgba(8,18,42,0.6));
  pointer-events: none;
}

/* ===== Hero (full-bleed slideshow) ===== */
.hero-full {
  position: relative;
  min-height: 100vh;
  min-height: 92svh;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.hero-slides {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease-in-out, transform 8s ease-out;
  transform: scale(1.05);
  filter: saturate(0.95) contrast(1.05);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1.0);
}
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(8,18,42,0.55) 0%, rgba(8,18,42,0.7) 35%, rgba(8,18,42,0.92) 100%),
    linear-gradient(135deg, rgba(14,27,58,0.4), rgba(8,18,42,0.3));
  pointer-events: none;
}
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 2;
  background-image:
    linear-gradient(rgba(200,160,75,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,160,75,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-full-content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: clamp(40px, 5vw, 80px) 32px;
}
.hero-full-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-inline: var(--pad);
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== Hero SVG logo (transparent + animated) ===== */
.hero-svg-logo-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8px;
  animation: heroFloat 7s ease-in-out infinite;
}
.hero-logo-svg {
  width: clamp(160px, 18vw, 220px);
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 30px rgba(8,18,42,0.55)) drop-shadow(0 0 24px rgba(200,160,75,0.18));
}
.hero-logo-svg .t-navy { fill: #1F3066; stroke: rgba(200,160,75,0.4); stroke-width: 0.8; }
.hero-logo-svg .t-gold { fill: #D4B36A; stroke: #A88334; stroke-width: 0.6; }
.hero-logo-svg .t-windows line {
  stroke: rgba(200,160,75,0.55);
  stroke-width: 1;
}
.hero-logo-svg .towers rect {
  transform-origin: bottom center;
  transform-box: fill-box;
  animation: towerRise 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-logo-svg .t1 { animation-delay: 0.0s; }
.hero-logo-svg .t2 { animation-delay: 0.12s; }
.hero-logo-svg .t3 { animation-delay: 0.24s; }
.hero-logo-svg .t4 { animation-delay: 0.36s; }
.hero-logo-svg .t5 { animation-delay: 0.48s; }
.hero-logo-svg .swoosh {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: drawSwoosh 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}
.hero-logo-svg .swoosh-2 {
  animation-delay: 0.85s;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
}
.hero-logo-svg .t-windows line {
  opacity: 0;
  animation: fadeIn 0.6s ease 1.0s both;
}

@keyframes towerRise {
  0%   { transform: scaleY(0); opacity: 0; }
  100% { transform: scaleY(1); opacity: 1; }
}
@keyframes drawSwoosh {
  to { stroke-dashoffset: 0; }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.hero-svg-name {
  margin-top: 16px;
  text-align: center;
  animation: fadeUp 0.9s ease 1.4s both;
}
.hero-svg-name .ar {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
}
.hero-svg-name .en {
  font-family: var(--font-en);
  font-size: clamp(9px, 0.85vw, 11px);
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-top: 4px;
  font-weight: 700;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Inject gold gradient definition into SVG via CSS — not possible.
   Instead, add gradient via <defs> already in SVG. We use 'url(#__goldGrad)' below.
   Re-define a CSS fallback color: */
.hero-logo-svg .t-gold {
  fill: #C8A04B;  /* fallback if linearGradient not parsed */
}

.hero-eyebrow {
  margin-top: 36px;
  display: inline-flex;
}

/* Now update headline + remove old logo wrap styles */
.hero-headline {
  font-family: var(--font-ar);
  margin: 28px 0 0;
  text-align: center;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-headline .line-1 {
  display: block;
  font-size: clamp(28px, 3.6vw, 50px);
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  animation: fadeUp 0.9s ease 0.4s both;
}
.hero-headline .line-2 {
  display: block;
  position: relative;
  animation: fadeUp 0.9s ease 0.6s both;
}
.hero-headline .line-2-inner {
  font-size: clamp(54px, 8vw, 116px);
  font-weight: 900;
  background: linear-gradient(180deg, #F3D88A 0%, #D4B36A 50%, #A88334 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -0.025em;
  filter: drop-shadow(0 8px 24px rgba(200,160,75,0.25));
  display: inline-block;
  padding: 0 6px;
}
.hero-headline .line-2::before,
.hero-headline .line-2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(40px, 8vw, 100px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,160,75,0.55), transparent);
}
.hero-headline .line-2::before { inset-inline-start: 0; transform: translateY(-50%); }
.hero-headline .line-2::after  { inset-inline-end: 0;  transform: translateY(-50%); }

.hero-eyebrow {
  animation: fadeUp 0.9s ease 0.2s both;
}
.hero-lead-center {
  animation: fadeUp 0.9s ease 0.8s both;
}
.hero-ctas-center {
  animation: fadeUp 0.9s ease 1.0s both;
}

.hero-lead-center {
  margin: 30px auto 0 !important;
  max-width: 700px !important;
  text-align: center;
  color: rgba(255,255,255,0.82);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.75;
}
.hero-ctas-center {
  justify-content: center;
  margin-top: 36px !important;
}
.md-only { display: none; }
@media (min-width: 700px) { .md-only { display: inline; } }

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-inline: var(--pad);
  flex-wrap: wrap;
  border-top: 1px solid rgba(200,160,75,0.18);
  padding-top: 28px;
  margin-top: 40px;
}
.hero-meta-row {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 56px);
  border-top: none !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
  max-width: none !important;
}
.hero-meta-row > div:not(.divider-vert) { display: flex; flex-direction: column; }
.hero-meta-row .v {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--gold);
  line-height: 1;
}
.hero-meta-row .v sup { font-size: 0.55em; color: rgba(200,160,75,0.7); margin-inline-start: 2px; }
.hero-meta-row .k {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.hero-meta-row .divider-vert {
  width: 1px;
  height: 32px;
  background: rgba(200,160,75,0.18);
}

.hero-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-dot {
  width: 32px;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .25s, width .25s;
}
.hero-dot:hover { background: rgba(255,255,255,0.4); }
.hero-dot.active {
  background: var(--gold);
  width: 56px;
}

@media (max-width: 760px) {
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-meta-row { flex-wrap: wrap; gap: 16px; }
  .hero-meta-row .divider-vert { display: none; }
}

/* hide old split layout */
.hero .hero-inner { display: none; }
.hero-mosaic { position: relative; }
.mosaic-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  padding: 6px;
}
.mosaic-cell {
  overflow: hidden;
  border-radius: 4px;
  background: var(--navy-deep);
}
.mosaic-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  opacity: 0.55;
  transition: opacity .3s, transform .5s;
}
.mosaic-cell:hover img { opacity: 0.85; transform: scale(1.04); }

.mosaic-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(8,18,42,0.65) 0%, rgba(8,18,42,0.92) 70%),
    linear-gradient(135deg, rgba(14,27,58,0.4), rgba(8,18,42,0.7));
  pointer-events: none;
}

.hero-brand-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 32px;
  z-index: 3;
  pointer-events: none;
}
.hero-logo-wrap {
  width: clamp(180px, 24vw, 280px);
  height: auto;
  aspect-ratio: 4/3;
  border-radius: 12px;
  background: #fff;
  padding: 0;
  box-shadow: 0 30px 80px rgba(8,18,42,0.55), 0 0 0 4px rgba(200,160,75,0.25), 0 0 0 1px rgba(200,160,75,0.6);
  display: grid; place-items: center;
  overflow: hidden;
}
.hero-logo-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.hero-brand-name {
  margin-top: 24px;
  color: #fff;
}
.hero-brand-name .ar {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 800;
  letter-spacing: -0.005em;
}
.hero-brand-name .en {
  font-family: var(--font-en);
  font-size: clamp(10px, 0.9vw, 12px);
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-top: 6px;
  font-weight: 700;
}
.hero-brand-tag {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(8,18,42,0.7);
  border: 1px solid rgba(200,160,75,0.35);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-family: var(--font-en);
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}
.hero-brand-tag .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,160,75,0.18);
  animation: pulse 2s infinite;
}
.hero-right .placeholder-tag {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(200,160,75,0.55);
  letter-spacing: 0.08em;
  background: rgba(8,18,42,0.5);
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px dashed rgba(200,160,75,0.3);
}

/* Building blocks illustration */
.skyline {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  padding-bottom: 0;
}
.skyline .bldg {
  background: linear-gradient(180deg, rgba(200,160,75,0.18), rgba(200,160,75,0.06));
  border-inline: 1px solid rgba(200,160,75,0.25);
  border-top: 1px solid rgba(200,160,75,0.5);
  position: relative;
}
.skyline .bldg.dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
}
.skyline .bldg::before {
  content:"";
  position: absolute; inset: 12px 6px 28px;
  background-image:
    linear-gradient(rgba(200,160,75,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,160,75,0.15) 1px, transparent 1px);
  background-size: 10px 14px;
  opacity: 0.7;
}
.hero-stripe {
  position: absolute;
  inset-inline-start: 0; right: 0; bottom: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 32px, var(--navy-deep) 32px 64px);
}

.hero-floating-card {
  position: absolute;
  inset-inline-end: 32px;
  bottom: 110px;
  background: rgba(8,18,42,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-on-dark);
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  width: 280px;
  box-shadow: var(--shadow-lg);
}
.hero-floating-card .head { display:flex; align-items: center; gap: 10px; font-size: 13px; color: var(--gold); }
.hero-floating-card .dot { width:8px; height:8px; border-radius:50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(200,160,75,0.15); animation: pulse 2s infinite; }
.hero-floating-card .title { color:#fff; font-weight: 700; margin-top: 8px; font-size: 16px; }
.hero-floating-card .meta { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 6px; font-family: var(--font-en); }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 360px; }
  .hero-floating-card { inset-inline-end: 20px; bottom: 20px; width: 240px; }
}

/* ===== Marquee / clients strip ===== */
.strip {
  background: var(--navy-deep);
  color: #fff;
  padding: 22px 0;
  border-block: 1px solid var(--line-on-dark);
}
.strip .row {
  display: flex; align-items: center; gap: 56px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  justify-content: center;
}
.strip .row .label { color: var(--gold); font-size: 12px; letter-spacing: 0.18em; }
.strip .pip { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); opacity: 0.5; }

/* ===== About ===== */
.about {
  background: var(--cream);
}
.about .grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  margin-top: 56px;
}
.about-art, .about-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo .badge {
  position: absolute;
  inset-inline-end: -28px; top: 40px;
  background: var(--navy);
  color: #fff;
  padding: 22px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 160px;
}
.about-photo .badge .y { font-family: var(--font-en); font-size: 44px; font-weight: 900; color: var(--gold); line-height: 1; }
.about-photo .badge .l { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 6px; }
.about-art .tag { position: absolute; bottom: 18px; inset-inline-start: 18px; font-family: var(--font-mono); font-size: 11px; color: var(--ink-soft); letter-spacing: 0.06em; background: #fff; padding: 6px 10px; border-radius: 4px; }
.about-art .badge {
  position: absolute;
  inset-inline-end: -28px; top: 40px;
  background: var(--navy);
  color: #fff;
  padding: 22px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 160px;
}
.about-art .badge .y { font-family: var(--font-en); font-size: 44px; font-weight: 900; color: var(--gold); line-height: 1; }
.about-art .badge .l { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 6px; }

.about-text p { font-size: 17px; color: var(--ink-soft); margin: 18px 0 0; }
.about-text p.lead { font-size: 22px; color: var(--navy); line-height: 1.45; font-weight: 600; margin-top: 24px; }

.feature-list { margin-top: 32px; display: grid; gap: 16px; }
.feature-list li {
  list-style: none;
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.feature-list .num { font-family: var(--font-en); font-weight: 800; color: var(--gold-deep); font-size: 13px; min-width: 28px; }
.feature-list .txt strong { color: var(--navy); font-weight: 700; display: block; margin-bottom: 2px; }
.feature-list .txt span { color: var(--muted); font-size: 14px; }

@media (max-width: 820px) {
  .about .grid { grid-template-columns: 1fr; }
  .about-art .badge { inset-inline-end: 18px; }
}

/* ===== Services ===== */
.services { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.services::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(200,160,75,0.04) 0 12px, transparent 12px 24px);
  pointer-events: none;
}
.services .head { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; }
.services-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-on-dark);
  border: 1px solid var(--line-on-dark);
}
.services-grid-3 { grid-template-columns: repeat(3, 1fr); }
.service-card {
  background: var(--navy);
  padding: 36px 32px;
  transition: background .25s;
  position: relative;
  min-height: 280px;
  display: flex; flex-direction: column;
}
.service-card:hover { background: var(--navy-soft); }
.service-card .num { font-family: var(--font-en); font-size: 12px; color: var(--gold); letter-spacing: 0.12em; }
.service-card h3 { font-size: 22px; font-weight: 800; margin: 18px 0 12px; color: #fff; line-height: 1.25; }
.service-card p { color: rgba(255,255,255,0.6); font-size: 15px; flex: 1; }
.service-card .arrow {
  margin-top: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-on-dark);
  display: grid; place-items: center;
  color: var(--gold);
  transition: background .2s, transform .2s;
}
.service-card:hover .arrow { background: var(--gold); color: var(--navy); transform: scale(1.05); }
.service-card .icon-box {
  width: 56px; height: 56px;
  border-radius: 10px;
  background: rgba(200,160,75,0.12);
  display: grid; place-items: center;
  color: var(--gold);
  margin-bottom: 8px;
}

@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ===== Vision 2030 ===== */
.vision { background: var(--cream); }
.vision .panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  box-shadow: var(--shadow-md);
}
.vision .body { padding: clamp(36px, 5vw, 72px); }
.vision .body .v-meta { display: flex; align-items: center; gap: 14px; }
.vision .body .v-meta .crest {
  width: 56px; height: 56px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.gm-avatar, .sig-photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}
.gm-avatar img, .sig-photo img { width: 100%; height: 100%; object-fit: cover; }
.vision .body .signature { display: flex; align-items: center; gap: 14px; }
.vision .body h2 { font-size: clamp(28px, 3.4vw, 44px); font-weight: 800; color: var(--navy); line-height: 1.15; margin: 22px 0 0; letter-spacing: -0.01em; }
.vision .body .quote {
  margin-top: 28px;
  padding-inline-start: 22px;
  border-inline-start: 3px solid var(--gold);
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.8;
}
.vision .body .signature {
  margin-top: 28px;
  display: flex; align-items: center; gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.vision .body .signature .who strong { display: block; color: var(--navy); font-weight: 800; }
.vision .body .signature .who span { color: var(--muted); font-size: 13px; }

.vision .aside {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
  padding: clamp(36px, 5vw, 64px);
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
}
.vision .aside .v-num {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(96px, 14vw, 168px);
  color: var(--gold);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.vision .aside .pillars {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}
.vision .aside .pillar {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius);
}
.vision .aside .pillar .p-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(200,160,75,0.15); color: var(--gold); display: grid; place-items: center; }
.vision .aside .pillar .p-txt strong { display: block; font-weight: 700; }
.vision .aside .pillar .p-txt span { font-size: 13px; color: rgba(255,255,255,0.6); }

@media (max-width: 980px) {
  .vision .panel { grid-template-columns: 1fr; }
}

/* ===== Projects ===== */
.projects { background: var(--cream-2); }
.projects .head { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; }
.filter-bar {
  margin-top: 40px;
  display: flex; gap: 10px; flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0;
}
.filter-chip {
  padding: 12px 18px;
  background: transparent;
  border: none;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
  margin-bottom: -1px;
}
.filter-chip:hover { color: var(--navy); }
.filter-chip.active { color: var(--navy); border-bottom-color: var(--gold); }
.filter-chip .count { font-family: var(--font-en); font-weight: 600; color: var(--muted); margin-inline-start: 6px; font-size: 12px; }

.projects-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  display: flex; flex-direction: column;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.project-thumb {
  aspect-ratio: 4/3;
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.project-thumb .skyline-mini {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center; gap: 3px;
}
.project-thumb .skyline-mini .b {
  background: linear-gradient(180deg, rgba(200,160,75,0.30), rgba(200,160,75,0.10));
  border-top: 1px solid rgba(200,160,75,0.5);
  border-inline: 1px solid rgba(200,160,75,0.25);
}
.project-thumb.lighting {
  background: radial-gradient(ellipse at 50% 100%, rgba(200,160,75,0.35), transparent 60%), var(--navy);
}
.project-thumb.lighting::before {
  content:""; position: absolute; inset-inline: 10% 10%; bottom: 30%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
}
.project-thumb.lighting::after {
  content:""; position:absolute; inset: auto 0 0 0; height: 30%;
  background: linear-gradient(180deg, transparent, rgba(8,18,42,0.7));
}
.project-thumb.roads {
  background: var(--navy);
  background-image:
    repeating-linear-gradient(90deg, transparent 0 32px, rgba(200,160,75,0.4) 32px 56px),
    linear-gradient(180deg, var(--navy-soft) 0%, var(--navy) 100%);
  background-size: 100% 4px, 100% 100%;
  background-repeat: no-repeat;
  background-position: 0 60%, 0 0;
}
.project-thumb .ph-tag {
  position: absolute; top: 14px; inset-inline-end: 14px;
  font-family: var(--font-mono); font-size: 10px;
  color: rgba(200,160,75,0.7);
  background: rgba(8,18,42,0.6);
  padding: 4px 8px; border-radius: 3px;
  border: 1px dashed rgba(200,160,75,0.3);
}
.project-thumb .cat {
  position: absolute; bottom: 14px; inset-inline-start: 14px;
  background: var(--gold); color: var(--navy);
  font-size: 11px; font-weight: 800;
  padding: 4px 10px; border-radius: 3px;
  letter-spacing: 0.05em;
}
.project-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.project-body h4 { font-size: 19px; font-weight: 800; color: var(--navy); margin: 0; line-height: 1.3; }
.project-body .loc { color: var(--muted); font-size: 13px; margin-top: 6px; display: flex; align-items: center; gap: 6px; }
.project-body .meta-row { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line); display: flex; justify-content: space-between; align-items: center; }
.project-body .meta-row .y { font-family: var(--font-en); font-size: 13px; color: var(--ink-soft); font-weight: 700; }
.project-body .meta-row .more {
  color: var(--gold-deep); font-weight: 700; font-size: 13px;
  display: inline-flex; align-items: center; gap: 4px;
}

@media (max-width: 980px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .projects-grid { grid-template-columns: 1fr; } }

/* ===== Gallery (replaces projects) ===== */
.gallery-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s;
  background: #fff;
}
.gallery-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.gallery-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gallery-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.gallery-card:hover .gallery-thumb img { transform: scale(1.05); }
.gallery-thumb .cat {
  position: absolute; top: 14px; inset-inline-start: 14px;
  background: var(--gold); color: var(--navy);
  font-size: 11px; font-weight: 800;
  padding: 5px 10px; border-radius: 3px;
  letter-spacing: 0.03em;
  z-index: 2;
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,18,42,0.92));
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .25s;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-title {
  color: #fff; font-weight: 700; font-size: 16px;
  line-height: 1.3;
}
.gallery-overlay-cta {
  margin-top: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 6px;
}
@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: 1fr; } }

/* Image modal */
.modal-image {
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  width: 100%;
  max-height: 92vh;
}
.modal-img-wrap {
  background: #000;
  flex: 1;
  min-height: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.modal-img-wrap img {
  max-width: 100%; max-height: 78vh;
  object-fit: contain;
}
.modal-img-info {
  padding: 18px 24px;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; gap: 18px;
  border-top: 1px solid var(--line-on-dark);
}
.modal-img-info .cat {
  background: var(--gold);
  color: var(--navy);
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.modal-img-info h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

/* ===== Project modal ===== */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(8,18,42,0.7);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: grid; place-items: center;
  padding: 24px;
  animation: fadeIn .2s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: #fff;
  max-width: 980px;
  width: 100%;
  max-height: 92vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  box-shadow: var(--shadow-lg);
  animation: modalIn .25s ease-out;
}
@keyframes modalIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-head {
  position: relative;
  aspect-ratio: 16/8;
  background: var(--navy);
  overflow: hidden;
}
.modal-close {
  position: absolute; top: 16px; inset-inline-end: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  display: grid; place-items: center;
  z-index: 5;
  box-shadow: var(--shadow-md);
}
.modal-body { padding: 36px; overflow: auto; }
.modal-body h3 { font-size: 28px; font-weight: 800; color: var(--navy); margin: 0 0 6px; }
.modal-body .m-loc { color: var(--muted); font-size: 14px; }
.modal-body .m-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.modal-body .m-stat {
  background: var(--cream);
  padding: 16px;
  border-radius: var(--radius);
}
.modal-body .m-stat .k { font-size: 12px; color: var(--muted); }
.modal-body .m-stat .v { font-family: var(--font-en); font-weight: 800; color: var(--navy); margin-top: 6px; }
.modal-body .m-desc { margin-top: 24px; color: var(--ink-soft); line-height: 1.85; }
.modal-body .m-scope { margin-top: 22px; display: grid; gap: 8px; }
.modal-body .m-scope li {
  list-style: none;
  padding-inline-start: 24px;
  position: relative;
  color: var(--ink-soft);
}
.modal-body .m-scope li::before {
  content: "✓"; position: absolute; inset-inline-start: 0; color: var(--gold-deep); font-weight: 800;
}

@media (max-width: 720px) {
  .modal-body .m-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Counters ===== */
.counters { background: var(--navy-deep); color: #fff; padding-block: 80px; }
.counters .grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-on-dark);
}
.counter {
  background: var(--navy-deep);
  padding: 36px 28px;
}
.counter .v {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.counter .v sup { font-size: 0.5em; color: rgba(200,160,75,0.6); }
.counter .k { margin-top: 14px; color: rgba(255,255,255,0.65); font-size: 15px; }
@media (max-width: 720px) {
  .counters .grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Certifications ===== */
.certs { background: var(--cream); }
.certs .grid { margin-top: 48px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cert {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: transform .15s, box-shadow .15s;
}
.cert:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.cert .seal {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.cert .t { font-weight: 700; color: var(--navy); font-size: 14px; }
.cert .d { font-size: 12px; color: var(--muted); }
@media (max-width: 900px) { .certs .grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .certs .grid { grid-template-columns: repeat(2, 1fr); } }

/* Legal info grid (real credentials) */
.legal-info {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.legal-card .k { font-size: 11px; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; font-family: var(--font-en); font-weight: 600; }
.legal-card .v { font-weight: 700; color: var(--navy); font-size: 15px; }
.legal-card .v.mono { font-family: var(--font-mono); font-size: 14px; }
@media (max-width: 900px) { .legal-info { grid-template-columns: repeat(2, 1fr); } }

/* ===== Why Us (replaces fake testimonials) ===== */
.testimonials { background: var(--navy); color: #fff; }
.whyus-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-on-dark);
  border: 1px solid var(--line-on-dark);
}
.whyus-card {
  background: var(--navy);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: background .25s;
}
.whyus-card:hover { background: var(--navy-soft); }
.whyus-num {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
}
.whyus-card strong { display: block; color: #fff; font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.whyus-card p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.65; margin: 0; }
@media (max-width: 900px) { .whyus-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .whyus-grid { grid-template-columns: 1fr; } }

/* ===== Leadership ===== */
.leadership { background: var(--cream); }
.leadership-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  box-shadow: var(--shadow-md);
}
.lead-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--navy);
}
.lead-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.lead-photo-tag {
  position: absolute; bottom: 16px; inset-inline-start: 16px;
  font-family: var(--font-mono); font-size: 11px;
  background: rgba(8,18,42,0.85);
  color: var(--gold);
  padding: 6px 10px; border-radius: 3px;
  letter-spacing: 0.05em;
}
.lead-body { padding: clamp(36px, 5vw, 64px); display: flex; flex-direction: column; justify-content: center; }
.lead-name { margin: 24px 0 0; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.lead-name strong { display: block; color: var(--navy); font-size: 22px; font-weight: 800; }
.lead-name span { color: var(--gold-deep); font-size: 14px; font-weight: 600; }
.lead-body p { margin-top: 18px; color: var(--ink-soft); font-size: 16px; line-height: 1.8; }
.lead-stats {
  margin-top: 32px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.lead-stats .v { display: block; font-family: var(--font-en); font-weight: 900; font-size: 28px; color: var(--gold-deep); line-height: 1; }
.lead-stats .k { display: block; font-size: 12px; color: var(--muted); margin-top: 6px; }
@media (max-width: 820px) {
  .leadership-panel { grid-template-columns: 1fr; }
  .lead-photo { aspect-ratio: 16/10; }
}



/* ===== Blog ===== */
.blog { background: var(--cream-2); }
.blog .grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .15s, box-shadow .15s;
}
.post:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.post .thumb {
  aspect-ratio: 16/10;
  background:
    linear-gradient(135deg, var(--navy-soft) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.post .thumb .tag { position: absolute; top: 14px; inset-inline-start: 14px; background: var(--gold); color: var(--navy); font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 3px; }
.post .thumb .pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(200,160,75,0.08) 0 8px, transparent 8px 18px);
}
.post .body { padding: 22px 22px 26px; }
.post .body .date { font-family: var(--font-en); color: var(--muted); font-size: 12px; }
.post .body h4 { margin: 8px 0 0; color: var(--navy); font-size: 18px; font-weight: 800; line-height: 1.3; }
.post .body p { color: var(--muted); font-size: 14px; margin-top: 10px; }
@media (max-width: 900px) { .blog .grid { grid-template-columns: 1fr; } }

/* ===== Contact ===== */
.contact { background: var(--navy); color: #fff; }
.contact .grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
}
.contact-info-list { margin-top: 32px; display: grid; gap: 18px; }
.contact-info-list .item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px;
  background: var(--navy-soft);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius);
}
.contact-info-list .ic { width: 44px; height: 44px; border-radius: 8px; background: rgba(200,160,75,0.15); color: var(--gold); display: grid; place-items: center; flex-shrink: 0; }
.contact-info-list .item strong { display: block; color: #fff; font-weight: 700; }
.contact-info-list .item span { color: rgba(255,255,255,0.65); font-size: 14px; }
.contact-info-list .item .mono { color: var(--gold-soft); font-size: 14px; margin-top: 2px; }

.map-mock {
  margin-top: 28px;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(200,160,75,0.06), rgba(200,160,75,0.02)),
    repeating-linear-gradient(0deg, rgba(200,160,75,0.07) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, rgba(200,160,75,0.07) 0 1px, transparent 1px 40px),
    var(--navy-deep);
  border: 1px solid var(--line-on-dark);
  position: relative;
}
.map-mock .pin {
  position: absolute;
  top: 50%; inset-inline-start: 50%;
  transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center;
}
.map-mock .pin .dot { width: 18px; height: 18px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 8px rgba(200,160,75,0.2), 0 0 0 18px rgba(200,160,75,0.08); }
.map-mock .pin .lbl { margin-top: 6px; background: var(--gold); color: var(--navy); font-size: 11px; font-weight: 800; padding: 4px 8px; border-radius: 3px; white-space: nowrap; }

/* Form */
.form-card {
  background: #fff;
  color: var(--ink);
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.form-card .ft { font-size: 22px; font-weight: 800; color: var(--navy); }
.form-card .fs { color: var(--muted); font-size: 14px; margin-top: 6px; }
.field { margin-top: 18px; }
.field label { display: block; font-size: 13px; color: var(--ink-soft); font-weight: 700; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .15s, background .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 110px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card button.submit {
  margin-top: 22px; width: 100%; justify-content: center;
}
.form-success {
  margin-top: 22px;
  padding: 16px;
  background: rgba(200,160,75,0.12);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 700;
}

@media (max-width: 900px) {
  .contact .grid { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
footer.site {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.6);
  padding-block: 64px 0;
  border-top: 1px solid var(--line-on-dark);
}
footer.site .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
footer.site .col h5 { color: #fff; font-size: 14px; font-weight: 800; letter-spacing: 0.04em; margin: 0 0 16px; text-transform: uppercase; }
footer.site .col ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
footer.site .col a { color: rgba(255,255,255,0.6); font-size: 14px; transition: color .15s; }
footer.site .col a:hover { color: var(--gold); }
footer.site .col p { font-size: 14px; line-height: 1.7; max-width: 360px; }
footer.site .footer-legal {
  margin-top: 18px;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12px;
  color: var(--gold-soft);
  opacity: 0.85;
}
footer.site .social { display: flex; gap: 10px; margin-top: 18px; }
footer.site .social a {
  width: 38px; height: 38px; border-radius: 8px;
  border: 1px solid var(--line-on-dark);
  display: grid; place-items: center;
  transition: background .15s, border-color .15s, color .15s;
}
footer.site .social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
footer.site .base {
  border-top: 1px solid var(--line-on-dark);
  padding-block: 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 13px;
}
@media (max-width: 820px) { footer.site .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { footer.site .grid { grid-template-columns: 1fr; } footer.site .base { flex-direction: column; } }

/* Utility */
.divider-vert { width: 1px; height: 16px; background: var(--line-on-dark); }
