/* ============================================================
   ADOKEY İNŞAAT — style.css
   Ferah krem tema: açık zemin, petrol/teal ve bakır vurgular
   (Logo ile uyumlu palet: krem + petrol yeşili + bakır)
   ============================================================ */

:root {
  --color-bg: #f4efe4; /* krem ana zemin */
  --color-surface: #ece4d3; /* sıcak kum — bölüm zemini (alternatif) */
  --color-card: #fcfaf4; /* kart zemini (krem üzeri açık) */
  --color-stone: #cfc4ae; /* açık beton/kum — görsel placeholder */
  --color-stone-deep: #b6a98e; /* placeholder gradyan ucu */
  --color-gold: #a86a33; /* bakır — birincil vurgu (logo) */
  --color-gold-muted: #8a5e38; /* koyu bakır — ikincil */
  --color-teal: #2e726a; /* petrol/teal — logo ana rengi */
  --color-teal-deep: #1b4a45; /* koyu petrol */
  --color-text: #23241f; /* sıcak koyu — gövde metni */
  --color-muted: #6e6a5f; /* sıcak gri — etiket/altyazı */
  --color-line: rgba(35, 36, 31, 0.12); /* açık temada ince çizgi/kenar */

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "Space Mono", "Courier New", monospace;

  --fs-hero: clamp(3rem, 8vw, 7rem);
  --fs-h2: clamp(2rem, 4vw, 3.5rem);
  --fs-h3: 1.5rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-mono: 1.1rem;

  --nav-h: 96px;
  --maxw: 1240px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}
ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.05;
}
h3 {
  font-family: var(--font-body);
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.section {
  padding-block: clamp(4rem, 9vw, 8rem);
}

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--color-gold);
  color: #0e0e0e;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  z-index: 2000;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  transition:
    background-color 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.2s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-gold {
  background-color: var(--color-gold);
  color: #fdfaf3;
  border-color: var(--color-gold);
}
.btn-gold:hover {
  background-color: #c0833f;
  border-color: #c0833f;
  transform: translateY(-2px);
}
.btn-outline {
  background-color: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.btn-outline:hover {
  background-color: var(--color-gold);
  color: #fdfaf3;
  transform: translateY(-2px);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: transparent;
  transition:
    background-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
}
.site-header.scrolled {
  background-color: rgba(244, 239, 228, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(168, 106, 51, 0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.logo-img {
  height: 72px;
  width: auto;
  display: block;
}
.footer-logo {
  height: 84px;
}
.logo-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--color-gold);
}
.logo-sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--color-muted);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.2rem);
}
.nav-links > a:not(.nav-cta) {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding-block: 4px;
  transition: color 0.25s;
}
.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-gold);
  transition: width 0.3s var(--ease);
}
.nav-links > a:not(.nav-cta):hover {
  color: var(--color-gold);
}
.nav-links > a:not(.nav-cta):hover::after {
  width: 100%;
}
.nav-cta {
  padding: 0.6rem 1.2rem;
}

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(80vw, 340px);
  background: var(--color-surface);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  padding: calc(var(--nav-h) + 1.5rem) 2rem 2rem;
  border-left: 1px solid rgba(194, 137, 90, 0.15);
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-nav a:not(.btn) {
  font-size: 1.15rem;
  font-weight: 500;
}
.mobile-nav a:not(.btn):hover {
  color: var(--color-gold);
}
.mobile-nav .btn {
  margin-top: 0.5rem;
}
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-nav-backdrop.show {
  opacity: 1;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background-color: var(--color-bg);
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(35, 36, 31, 0.025) 0 2px,
      transparent 2px 9px
    ),
    linear-gradient(180deg, #fbf7ee 0%, #f4efe4 55%, #ece4d3 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      120% 90% at 80% 10%,
      rgba(194, 137, 90, 0.1),
      transparent 55%
    ),
    radial-gradient(
      90% 80% at 10% 90%,
      rgba(46, 114, 106, 0.12),
      transparent 60%
    );
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: var(--fs-hero);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.hero-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.22em;
  margin-bottom: -0.22em;
}
.hero-line > span {
  display: block;
}
.hero-line .accent {
  color: var(--color-gold);
}
.hero-sub {
  max-width: 46ch;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  margin-bottom: 2.25rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroll-indicator {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3rem);
  bottom: 2rem;
  z-index: 2;
  width: 26px;
  height: 44px;
  border: 1.5px solid var(--color-muted);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-arrow {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--color-gold);
  animation: scrollDot 1.6s var(--ease) infinite;
}
@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  70% {
    transform: translateY(14px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}
.hero-vertical-label {
  position: absolute;
  right: 1.5rem;
  bottom: 2rem;
  z-index: 2;
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--color-muted);
}

/* Hero load animation */
.hero-line > span {
  transform: translateY(110%);
  opacity: 0;
}
.hero-loaded .hero-line > span {
  transform: translateY(0);
  opacity: 1;
  transition:
    transform 0.9s var(--ease),
    opacity 0.9s var(--ease);
}
.hero-loaded .hero-line:nth-child(1) > span {
  transition-delay: 0ms;
}
.hero-loaded .hero-line:nth-child(2) > span {
  transition-delay: 200ms;
}
.hero-loaded .hero-line:nth-child(3) > span {
  transition-delay: 400ms;
}
.hero-loaded .hero-sub,
.hero-loaded .hero-actions {
  animation: fadeUp 0.9s var(--ease) both;
}
.hero-loaded .hero-sub {
  animation-delay: 550ms;
}
.hero-loaded .hero-actions {
  animation-delay: 700ms;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--color-bg);
  border-block: 1px solid rgba(194, 137, 90, 0.18);
  overflow: hidden;
  padding-block: 0.9rem;
}
.ticker-alt {
  background: var(--color-surface);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 26s linear infinite;
}
.ticker-reverse {
  animation-direction: reverse;
}
.ticker:hover .ticker-track {
  animation-play-state: paused;
}
.ticker-track span {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--fs-mono);
  letter-spacing: 0.18em;
  color: var(--color-gold);
  padding-right: 1rem;
  white-space: nowrap;
}
@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-25%);
  }
}

/* ============================================================
   SHARED: eyebrow / section head / placeholders
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--color-teal);
  flex-shrink: 0;
}
.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 40ch;
}
.section-head h2 {
  font-size: var(--fs-h2);
}

.img-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 240px;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(35, 36, 31, 0.04) 0 2px,
      transparent 2px 12px
    ),
    linear-gradient(145deg, var(--color-stone), var(--color-stone-deep) 70%);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder > span {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about-visual {
  min-height: 100%;
}
.about-visual .img-placeholder.tall {
  min-height: clamp(360px, 45vw, 540px);
}
.about-img {
  width: 100%;
  height: clamp(360px, 45vw, 540px);
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  background:
    repeating-linear-gradient(
      135deg,
      rgba(35, 36, 31, 0.04) 0 2px,
      transparent 2px 12px
    ),
    linear-gradient(145deg, var(--color-stone), var(--color-stone-deep) 70%);
}
.about-text h2 {
  font-size: var(--fs-h2);
  margin-bottom: 1.5rem;
}
.about-text p {
  color: var(--color-muted);
  margin-bottom: 1.2rem;
}
.feature-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.8rem;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--color-text);
}
.feature-list .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border: 1px solid var(--color-teal);
  color: var(--color-teal);
  border-radius: 50%;
  font-size: 0.8rem;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--color-surface);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--color-card);
  border: 1px solid var(--color-line);
  border-top: 2px solid transparent;
  border-radius: var(--radius);
  padding: 2rem;
  transition:
    transform 0.35s var(--ease),
    border-top-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  border-top-color: var(--color-gold);
  box-shadow: 0 20px 40px -22px rgba(35, 36, 31, 0.28);
}
.service-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  background: rgba(194, 137, 90, 0.08);
  border-radius: var(--radius);
  margin-bottom: 1.4rem;
}
.service-icon svg {
  width: 28px;
  height: 28px;
}
.service-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 0.7rem;
}
.service-card p {
  color: var(--color-muted);
  font-size: var(--fs-small);
  margin-bottom: 1.4rem;
}
.card-link {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  color: var(--color-gold);
  letter-spacing: 0.05em;
  transition:
    letter-spacing 0.3s var(--ease),
    color 0.3s;
}
.card-link:hover {
  letter-spacing: 0.12em;
  color: var(--color-teal);
}

/* ============================================================
   PROJECTS
   ============================================================ */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.filter-tab {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  letter-spacing: 0.05em;
  color: var(--color-muted);
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  transition:
    color 0.3s,
    border-color 0.3s,
    background-color 0.3s;
}
.filter-tab:hover {
  color: var(--color-text);
  border-color: rgba(168, 106, 51, 0.5);
}
.filter-tab.is-active {
  color: #fdfaf3;
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1.25rem;
}
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease);
}
.project-card.tall {
  grid-row: span 2;
}
.project-card .img-placeholder {
  height: 100%;
  min-height: 100%;
  border: none;
  border-radius: 0;
}
.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(35, 36, 31, 0.04) 0 2px,
      transparent 2px 12px
    ),
    linear-gradient(145deg, var(--color-stone), var(--color-stone-deep) 70%);
}
.project-card.is-hidden {
  display: none;
}
.project-card.fade-out {
  opacity: 0;
  transform: scale(0.97);
}

.project-overlay {
  display: none;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  position: relative;
  background: var(--color-bg);
  padding-block: clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
}
.stats-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
  background: radial-gradient(
    80% 120% at 50% 0%,
    rgba(46, 114, 106, 0.12),
    transparent 60%
  );
}
.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat {
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--color-gold);
  line-height: 1;
}
.stat-text {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.1;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  filter: blur(5px);
}
.stat-text.is-in {
  animation: statTextIn 0.9s var(--ease) forwards;
}
@keyframes statTextIn {
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}
.stat-label {
  display: block;
  margin-top: 0.7rem;
  font-size: var(--fs-small);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ============================================================
   PROCESS
   ============================================================ */
.stepper {
  position: relative;
}
.stepper-line {
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-line);
}
.stepper-line-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--color-teal);
  transition: width 1.4s var(--ease);
}
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.step {
  list-style: none;
}
.step::marker {
  content: "";
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  font-family: var(--font-mono);
  font-weight: 700;
  color: #fdfaf3;
  background: var(--color-teal-deep);
  border: 2px solid var(--color-teal);
  border-radius: 50%;
  margin-bottom: 1.2rem;
}
.step h3 {
  font-size: var(--fs-h3);
  margin-bottom: 0.6rem;
}
.step p {
  color: var(--color-muted);
  font-size: var(--fs-small);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--color-surface);
}
.carousel {
  position: relative;
  max-width: 760px;
  margin-inline: auto;
  padding: 2rem 1rem 0;
}
.quote-mark {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 9rem;
  line-height: 1;
  color: rgba(194, 137, 90, 0.18);
  pointer-events: none;
}
.slides {
  position: relative;
  min-height: 200px;
}
.slide {
  position: absolute;
  inset: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease);
}
.slide.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.slide p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.6rem;
}
.slide footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.slide cite {
  font-style: normal;
  font-weight: 600;
  color: var(--color-gold);
}
.slide footer span {
  font-size: var(--fs-small);
  color: var(--color-muted);
}

.dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(35, 36, 31, 0.2);
  transition:
    background-color 0.3s,
    transform 0.3s;
}
.dot.is-active {
  background: var(--color-gold);
  transform: scale(1.25);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.info-list {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 2rem;
}
.info-list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.info-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.info-list a:hover {
  color: var(--color-gold);
}

.social-row {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  color: var(--color-text);
  transition:
    color 0.3s,
    border-color 0.3s,
    transform 0.3s;
}
.social svg {
  width: 20px;
  height: 20px;
}
.social:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.map-wrap {
  position: relative;
  height: 100%;
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
}
.map-embed {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  display: block;
  filter: grayscale(0.1);
}
.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(180deg, transparent 60%, rgba(7, 10, 9, 0.35));
  transition: background-color 0.3s var(--ease);
}
.map-overlay:hover,
.map-overlay:focus-visible {
  background: rgba(7, 10, 9, 0.45);
}
.map-cta {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  letter-spacing: 0.05em;
  color: #fdfaf3;
  background: var(--color-gold);
  padding: 0.65rem 1.3rem;
  border-radius: 100px;
  box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.5);
}
.map-placeholder {
  min-height: 320px;
  height: 100%;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(35, 36, 31, 0.04) 0 2px,
      transparent 2px 14px
    ),
    linear-gradient(145deg, var(--color-stone), var(--color-stone-deep));
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-placeholder span {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* Form */
.contact-form {
  display: grid;
  gap: 1.1rem;
  align-content: start;
}
.field {
  display: grid;
  gap: 0.45rem;
}
.field label {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-text);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--color-card);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  padding: 0.8rem 0.9rem;
  transition:
    border-color 0.3s,
    background-color 0.3s;
}
.contact {
  background: var(--color-bg);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-gold);
  outline: none;
  background: #ffffff;
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}
.field select {
  appearance: none;
  cursor: pointer;
}
.form-submit {
  margin-top: 0.5rem;
  justify-self: start;
}
.form-success {
  background: rgba(194, 137, 90, 0.1);
  border: 1px solid var(--color-gold-muted);
  color: var(--color-gold);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  font-size: var(--fs-small);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #e8e0ce;
  border-top: 2px solid var(--color-gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.footer-brand .logo-mark {
  font-size: 1.6rem;
}
.footer-tagline {
  color: var(--color-muted);
  margin-top: 1rem;
  font-size: var(--fs-small);
  max-width: 24ch;
}
.footer-col h3 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.2rem;
}
.footer-col ul {
  display: grid;
  gap: 0.7rem;
}
.footer-col a,
.footer-col li {
  color: var(--color-muted);
  font-size: var(--fs-small);
}
.footer-col a:hover {
  color: var(--color-gold);
}
.footer-bottom {
  border-top: 1px solid var(--color-line);
  padding-block: 1.5rem;
}
.footer-bottom p {
  color: var(--color-muted);
  font-size: var(--fs-small);
  text-align: center;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }
  .stepper-line {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-visual {
    order: -1;
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .project-card.tall {
    grid-row: span 1;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --nav-h: 78px;
  }
  .logo-img {
    height: 58px;
  }
  .footer-logo {
    height: 72px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-vertical-label {
    display: none;
  }
  .hero-actions .btn {
    flex: 1 1 auto;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-line > span {
    transform: none;
    opacity: 1;
  }
  .ticker-track {
    animation: none;
  }
  .scroll-arrow {
    animation: none;
  }
}
