:root {
  --bg: #0f0f0f;
  --bg-soft: #1c1c1c;
  --panel: #1c1c1c;
  --text: #ffffff;
  --muted: #b6b6b6;
  --line: #2a2a2a;
  --accent: #c9a96e;
  --container: 1140px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.slide-title,
.section-head h2,
.about-card-title,
.project-card-body h3,
.card h3,
.footer h3,
.footer h4 {
  font-family: "Poppins", sans-serif;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  background: rgba(15, 15, 15, 0.95);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  padding-top: 0;
}

.logo img {
  height: 70px;
  width: auto;
  display: block;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav > ul > li {
  position: relative;
}

.nav > ul > li + li::before {
  content: "";
  position: absolute;
  left: calc(-0.5rem - 0.5px);
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0.95rem;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(201, 169, 110, 0.45),
    transparent
  );
  pointer-events: none;
}

.nav a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.nav > ul > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav a:hover {
  color: var(--text);
}

.nav > ul > li > a:hover::before,
.nav > ul > li > a:focus-visible::before {
  transform: scaleX(1);
}

.nav > ul > li > a.is-active {
  color: var(--accent);
}

.nav > ul > li > a.is-active::before {
  transform: scaleX(1);
}

.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.has-dropdown > a::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.8;
}

.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 30px;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 1.8rem);
  left: 0;
  width: min(520px, 82vw);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 0 0 0.7rem 0.7rem;
  padding: 0.8rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.8rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
  z-index: 30;
  overflow: hidden;
  pointer-events: none;
}

.mega-menu::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 2px;
  background: var(--accent);
}

.mega-links {
  display: grid;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 0.55rem;
  overflow: hidden;
}

.mega-links a {
  display: grid;
  grid-template-columns: 12px 1fr 12px;
  align-items: center;
  column-gap: 0.65rem;
  white-space: nowrap;
  font-size: 14px;
  letter-spacing: 0.35px;
  border-radius: 0;
  line-height: 1.25;
  min-height: 46px;
  padding: 0.58rem 0.9rem;
  color: #e8e8e8;
  border-top: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mega-links a:first-child {
  border-top: none;
}

.mega-links a + a {
  border-top-color: rgba(201, 169, 110, 0.28);
}

.mega-links a::before {
  content: "\f111";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.42rem;
  color: var(--accent);
  opacity: 0.95;
  justify-self: center;
}

.mega-links a::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.62rem;
  color: var(--accent);
  justify-self: end;
  transform: translateX(-6px);
  opacity: 0;
  transition: all 0.2s ease;
}

.mega-links a:hover {
  background: linear-gradient(90deg, rgba(201, 169, 110, 0.14), rgba(201, 169, 110, 0.04));
  color: var(--accent);
}

.mega-links a:hover::after {
  transform: translateX(0);
  opacity: 1;
}

.mega-card {
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 0.55rem;
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.08), rgba(201, 169, 110, 0.03));
  padding: 1rem;
  min-height: 100%;
  display: grid;
  place-items: center;
}

.mega-card img {
  width: min(110px, 100%);
  height: auto;
  display: block;
  object-fit: contain;
}

.has-dropdown:hover > .mega-menu,
.has-dropdown:focus-within > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.menu-toggle {
  display: none;
  position: relative;
  width: auto;
  height: 42px;
  padding: 0 0.76rem 0 0.85rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.16), rgba(201, 169, 110, 0.08));
  color: #f1d8ac;
  border-radius: 999px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  transition: all 0.22s ease;
}

.menu-toggle-label {
  font-family: "Poppins", sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}

.menu-toggle::after {
  content: "\f0c9";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.82rem;
  transition: transform 0.2s ease;
}

.menu-toggle:hover {
  border-color: rgba(201, 169, 110, 0.72);
  color: #ffe6bb;
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
}

.menu-toggle[aria-expanded="true"] {
  width: 42px;
  padding: 0;
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.24), rgba(201, 169, 110, 0.1));
  border-color: rgba(201, 169, 110, 0.8);
  color: #ffe9c3;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-label {
  display: none;
}

.menu-toggle[aria-expanded="true"]::after {
  content: "\f00d";
  transform: rotate(0deg);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: radial-gradient(circle at 70% 18%, rgba(201, 169, 110, 0.18), transparent 42%), rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.mobile-nav-overlay.show {
  opacity: 1;
}

body.menu-open {
  overflow: hidden;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 0.8rem;
  padding: 0.42rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(28, 28, 28, 0.55);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.lang-switch span {
  color: #7e7e7e;
}

.lang-switch a {
  color: #c9c9c9;
  font-weight: 500;
}

.lang-switch a.active,
.lang-switch a:hover {
  color: var(--accent);
}

.call-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.4rem;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 169, 110, 0.55);
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.26), rgba(201, 169, 110, 0.12));
  color: #f1d6a8;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  z-index: 60;
  transition: all 0.2s ease;
}

.call-fab:hover {
  transform: scale(1.06);
  border-color: rgba(201, 169, 110, 0.8);
  color: #ffe4b4;
  box-shadow: 0 0 16px rgba(201, 169, 110, 0.25);
}

.call-fab::after {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #f3f3f3;
  background: #1b1b1b;
  border: 1px solid rgba(201, 169, 110, 0.45);
  border-radius: 0.4rem;
  padding: 0.35rem 0.55rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

.call-fab:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 58;
  transform: translateY(110%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  pointer-events: none;
  background: rgba(12, 12, 12, 0.94);
  border-top: 1px solid rgba(201, 169, 110, 0.32);
  backdrop-filter: blur(10px);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.38);
}

.cookie-banner.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem 0.9rem;
  padding: 0.5rem 0;
}

.cookie-banner-text {
  margin: 0;
  flex: 1 1 14rem;
  max-width: 48rem;
  font-size: 0.76rem;
  line-height: 1.5;
  color: #c4c4c4;
}

.cookie-banner-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.cookie-banner-text a:hover {
  color: #e8d4a8;
}

.cookie-banner-actions {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.cookie-banner-btn {
  appearance: none;
  border: 1px solid rgba(201, 169, 110, 0.55);
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.24), rgba(201, 169, 110, 0.09));
  color: #f5e8c8;
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.4rem 0.88rem;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.cookie-banner-btn:hover {
  border-color: rgba(201, 169, 110, 0.85);
  color: #fff5de;
  box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.12);
}

.cookie-banner-btn--ghost {
  background: transparent;
  color: #b8b8b8;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.cookie-banner-btn--ghost:hover {
  border-color: rgba(201, 169, 110, 0.45);
  color: #ddd;
  box-shadow: none;
}

body.cookie-banner-visible .call-fab {
  bottom: calc(3.85rem + env(safe-area-inset-bottom, 0px));
}

/* 404 */
.page-404 {
  position: relative;
  overflow: hidden;
  min-height: min(68vh, 520px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 78%, rgba(201, 169, 110, 0.14), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(201, 169, 110, 0.08), transparent 38%),
    linear-gradient(155deg, #131313 0%, #0f0f0f 42%, #151515 100%);
}

.page-404::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23c9a96e' stroke-opacity='0.07'%3E%3Cpath d='M0 60h120M60 0v120'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.9;
  pointer-events: none;
}

.page-404-inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  padding-block: 3.25rem 3.5rem;
  text-align: center;
  margin-inline: auto;
}

.page-404-kicker {
  margin: 0 0 0.35rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(3.2rem, 14vw, 5.75rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
  background: linear-gradient(180deg, #e8d4a8 0%, var(--accent) 45%, #8a7348 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 12px 40px rgba(201, 169, 110, 0.15);
}

.page-404-title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.page-404-lead {
  margin: 0 auto 1.75rem;
  max-width: 40ch;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.page-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  align-items: center;
}

.page-404-actions .btn-minimal {
  border-radius: 999px;
}

@media (max-width: 560px) {
  .page-404-inner {
    padding-block: 2.5rem 2.75rem;
  }

  .page-404-actions {
    flex-direction: column;
    width: 100%;
  }

  .page-404-actions .btn-minimal {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Hero slider */
.hero-slider {
  position: relative;
  min-height: min(72vh, 620px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 82%, rgba(201, 169, 110, 0.12), transparent 40%),
    radial-gradient(circle at 85% 5%, rgba(201, 169, 110, 0.08), transparent 36%),
    linear-gradient(145deg, #131313 0%, #0f0f0f 38%, #151515 100%);
}

.slides {
  position: relative;
  height: min(72vh, 620px);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slide-inner {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: center;
  padding-block: 3.4rem 4.1rem;
}

.slide-copy {
  max-width: 33rem;
}

.slide-title {
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.14;
  margin-bottom: 1.1rem;
  font-weight: 800;
  color: var(--text);
}

.slide-text {
  color: var(--muted);
  margin-bottom: 1.75rem;
  max-width: 44ch;
  font-size: 1rem;
}

.slide-media {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 0.3rem;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.slide-card-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 390px;
  object-fit: cover;
  display: block;
}

.slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.1), rgba(15, 15, 15, 0.9));
  color: var(--text);
  padding: 0.9rem 1rem;
  text-align: center;
}

.slide-caption p {
  font-size: 0.73rem;
  letter-spacing: 0.09em;
  margin-bottom: 0.2rem;
}

.slide-caption strong {
  font-size: 0.95rem;
}

.slider-dots {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  z-index: 5;
  display: grid;
  gap: 0.65rem;
}

.slider-dots.container {
  width: auto;
  margin: 0;
}

.slider-dot {
  width: 3.1rem;
  height: 2.35rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: rgba(28, 28, 28, 0.9);
  color: #c8c8c8;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.slider-dot.is-active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.slider-dot:hover {
  border-color: var(--accent);
  color: #ffffff;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  font-weight: 600;
  width: fit-content;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

/* Hakkımızda (referans görsel yerleşimi) */
.about-ref-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.7rem;
  align-items: center;
}

.about-ref-copy {
  padding: 0.35rem 0;
}

.about-ref-copy h2 {
  font-size: clamp(1.65rem, 2.7vw, 2.55rem);
  margin-bottom: 0.45rem;
}

.about-ref-line {
  display: block;
  width: 58px;
  height: 2px;
  background: var(--accent);
  margin: 0.75rem 0 1rem;
}

.about-ref-copy h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.08rem;
  line-height: 1.4;
  margin-bottom: 0.95rem;
}

.about-ref-copy p {
  color: var(--muted);
  max-width: 67ch;
  margin-bottom: 0.82rem;
}

.about-ref-brand {
  background: linear-gradient(160deg, #1d1d1d, #171717);
  border: 1px solid var(--line);
  min-height: 360px;
  border-radius: 0.2rem;
  display: grid;
  place-items: center;
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.35);
}

.about-ref-brand img {
  width: min(220px, 72%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.hr-apply-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: stretch;
}

.hr-apply-brand {
  background: linear-gradient(160deg, #1d1d1d, #171717);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 2rem 1.5rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.hr-apply-brand-inner {
  text-align: center;
  max-width: 280px;
}

.hr-apply-brand-inner img {
  width: min(200px, 85%);
  height: auto;
  margin-bottom: 1.15rem;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.35));
}

.hr-apply-tagline {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hr-apply-panel {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 1.35rem 1.25rem;
}

.hr-apply-panel h2 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.company-info-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: stretch;
}

.company-info-brand {
  background: linear-gradient(160deg, #1d1d1d, #171717);
  border: 1px solid rgba(201, 169, 110, 0.22);
  border-radius: 0.85rem;
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 2.25rem 1.75rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.company-info-brand-inner {
  text-align: center;
  max-width: 300px;
}

.company-info-brand-inner img {
  width: min(220px, 88%);
  height: auto;
  margin-bottom: 1.25rem;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.35));
}

.company-info-brand-caption {
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.45;
}

.company-info-panel {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 0 0 0.85rem 0.85rem;
  padding: 1.6rem 1.5rem 1.75rem;
  border-top: 2px solid var(--accent);
}

.company-info-title {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 0;
}

.company-info-line {
  margin: 0.65rem 0 1.35rem;
}

.company-facts {
  margin: 0;
}

.company-fact-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 1rem 1.25rem;
  padding: 0.78rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.14);
}

.company-fact-row:last-child {
  border-bottom: none;
}

.company-fact-row dt {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #a4a4a4;
  line-height: 1.4;
}

.company-fact-row dd {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  text-align: right;
}

.legal-doc {
  max-width: 52rem;
  margin-inline: auto;
}

.legal-doc-title {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 700;
  margin: 0;
}

.legal-doc-line {
  margin: 0.65rem 0 1.15rem;
}

.legal-doc-lead {
  color: #d2d2d2;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.legal-doc h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.85rem 0 0.65rem;
  color: var(--text);
}

.legal-doc h3,
.legal-doc .legal-contact-title {
  font-size: 1rem;
  margin: 0 0 0.85rem;
  color: var(--accent);
}

.legal-doc p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
  margin: 0 0 0.85rem;
}

.legal-doc a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-doc a:hover {
  color: #e3cc9e;
}

.legal-doc-list {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.legal-doc-list li {
  margin-bottom: 0.4rem;
}

.legal-contact-box {
  margin-top: 2rem;
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(201, 169, 110, 0.28);
  border-radius: 0 0 0.85rem 0.85rem;
  border-top: 2px solid var(--accent);
  background: var(--bg-soft);
}

.legal-contact-box p {
  margin-bottom: 0.55rem;
}

.legal-contact-box p:last-child {
  margin-bottom: 0;
}

.legal-contact-firm {
  color: #e0e0e0;
}

.legal-doc-note-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 3rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  box-sizing: border-box;
}

.legal-doc .legal-doc-note {
  display: block;
  width: fit-content;
  max-width: min(94vw, 26rem);
  margin: 0;
  padding: 0.35rem 0.85rem;
  font-size: 0.62rem;
  line-height: 1.45;
  letter-spacing: 0.03em;
  text-align: center;
  color: #8e8e8e;
  background: rgba(28, 28, 28, 0.88);
  border: 1px solid rgba(201, 169, 110, 0.18);
  border-radius: 999px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
}

.section {
  padding: 4.5rem 0;
}

.section-dark {
  background: #151515;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: stretch;
}

.mv-panel {
  background: var(--bg);
  border: 1px solid rgba(201, 169, 110, 0.22);
  border-radius: 0 0 0.85rem 0.85rem;
  padding: 1.65rem 1.45rem 1.75rem;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  border-top: 2px solid var(--accent);
}

.mv-panel-title {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #f0f0f0;
}

.mv-panel-title::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  flex-shrink: 0;
  background: var(--accent);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(201, 169, 110, 0.35);
}

.mv-panel-line {
  margin: 0.65rem 0 1rem;
}

.mv-panel-text {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
  max-width: 62ch;
}

.section-head h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  margin-bottom: 1.4rem;
}

.section-head.section-head--row h2 {
  margin-bottom: 0;
}

.section-head.section-head--row {
  margin-bottom: 1.75rem;
}

.breadcrumb-wrap {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #131313, #101010);
}

.breadcrumb {
  padding: 0.72rem 0;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  color: #bdbdbd;
  font-family: "Poppins", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.55rem;
  color: #777;
}

.breadcrumb a {
  color: #bdbdbd;
  transition: color 0.2s ease;
}

.breadcrumb li:first-child a {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.breadcrumb li:first-child a::before {
  content: "\f015";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.72rem;
  color: var(--accent);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  color: var(--accent);
}

/* Projeler sekmeleri */
.tabs-list {
  display: flex;
  gap: 0.35rem;
  padding: 0.3rem;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 1.75rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
}

.tab-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.55rem 1.15rem;
  border-radius: 0.45rem;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.tab-btn.is-active {
  background: var(--accent);
  color: var(--bg);
}

.tab-btn:not(.is-active):hover {
  color: var(--text);
}

.tab-panel:not(.is-active) {
  display: none;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

/* Az sayıda devam eden proje: satırda dengeli yerleşim */
.project-grid--ongoing {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.project-carousel {
  --carousel-gap: 1.15rem;
  --per-view: 3;
  position: relative;
}

.project-carousel-viewport {
  overflow: hidden;
}

.project-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: none;
  grid-auto-columns: calc((100% - (var(--per-view) - 1) * var(--carousel-gap)) / var(--per-view));
  grid-auto-rows: 1fr;
  gap: var(--carousel-gap);
  transition: transform 0.35s ease;
  will-change: transform;
}

.project-carousel-track.project-grid--ongoing {
  grid-template-columns: none;
}

.project-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 110, 0.48);
  background: rgba(17, 17, 17, 0.92);
  color: var(--accent);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.project-carousel-nav--prev {
  left: -2.9rem;
}

.project-carousel-nav--next {
  right: -2.9rem;
}

.project-carousel-nav:hover:not(:disabled) {
  border-color: rgba(201, 169, 110, 0.75);
  color: #f1ddb4;
  background: rgba(20, 20, 20, 0.97);
}

.project-carousel-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.project-carousel-nav-icon {
  display: block;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  font-size: 0;
  line-height: 0;
}

.project-carousel-nav--prev .project-carousel-nav-icon {
  transform: rotate(-135deg);
}

.project-carousel-nav--next .project-carousel-nav-icon {
  transform: rotate(45deg);
}

.project-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.project-card-media-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.project-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg);
}

.project-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.project-card:hover .project-card-media img {
  transform: scale(1.04);
}

.project-card-media-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.project-card-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 1.15rem 1.2rem 1.25rem;
}

.project-card-body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  line-height: 1.35;
  flex-shrink: 0;
}

.project-card-body p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 0.5rem;
  flex-shrink: 0;
  line-height: 1.55;
}

.project-card-cta {
  margin-top: auto;
  padding-top: 0.65rem;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--accent);
  text-decoration: none;
  border: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  transition: color 0.2s ease;
}

.project-card-cta::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.68rem;
  color: var(--accent);
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.project-card-cta:hover {
  color: #e8d4a8;
  text-decoration: underline;
  text-decoration-color: rgba(201, 169, 110, 0.55);
  text-underline-offset: 0.22em;
}

.project-card-cta:hover::after {
  transform: translateX(4px);
  opacity: 1;
}

.project-card-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.project-meta-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.45rem;
}

.project-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(201, 169, 110, 0.32);
  background: linear-gradient(145deg, rgba(201, 169, 110, 0.12), rgba(201, 169, 110, 0.04));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.project-meta-badge__label {
  font-family: "Poppins", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.95;
}

.project-meta-badge__value {
  font-size: 0.78rem;
  font-weight: 600;
  color: #ebe4d6;
  letter-spacing: 0.02em;
}

.project-meta-badge--yer-teslim {
  border-color: rgba(201, 169, 110, 0.38);
}

.project-meta-badge--tamamlanma {
  border-color: rgba(232, 200, 140, 0.45);
  background: linear-gradient(145deg, rgba(201, 169, 110, 0.2), rgba(201, 169, 110, 0.06));
}

.project-meta-badge--tamamlanma .project-meta-badge__label {
  color: #f0dcc0;
}

.project-meta-badge--gecici-kabul {
  border-color: rgba(201, 169, 110, 0.42);
  border-style: dashed;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(201, 169, 110, 0.05));
}

.project-meta-badge--gecici-kabul .project-meta-badge__label {
  color: #d4bc8c;
}

.project-detail {
  width: 100%;
}

.project-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, min(46vw, 520px)) minmax(0, 1fr);
  gap: clamp(1.35rem, 3.5vw, 2.75rem);
  align-items: start;
}

.project-detail-media {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: min(100%, 520px);
}

.project-detail-copy h1 {
  font-size: clamp(1.12rem, 1.85vw, 1.45rem);
  line-height: 1.3;
  margin: 0;
  font-weight: 700;
}

.project-detail-copy .about-ref-line {
  margin-top: 0.65rem;
  margin-bottom: 0;
}

.project-detail-main {
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  overflow: hidden;
  background: #111;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: min(380px, 42vh);
}

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

.project-detail-thumbs {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.project-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  overflow: hidden;
  background: #101010;
  cursor: pointer;
  padding: 0;
  opacity: 0.75;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

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

.project-thumb:hover,
.project-thumb.is-active {
  opacity: 1;
  border-color: var(--accent);
}

.project-detail-copy .project-detail-meta {
  margin-top: 1rem;
}

.project-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.project-detail-copy .project-detail-milestones {
  margin-top: 0.85rem;
}

.project-detail-milestones {
  margin-bottom: 0.15rem;
}

.project-detail-summary {
  margin-top: 1.1rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.panel-action {
  display: flex;
  justify-content: center;
  margin-top: 1.7rem;
}

.btn-minimal {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #d7d7d7;
  border: 1px solid rgba(201, 169, 110, 0.32);
  background: rgba(201, 169, 110, 0.06);
  border-radius: 999px;
  padding: 0.48rem 0.9rem;
  transition: all 0.2s ease;
}

.btn-minimal::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.65rem;
  color: var(--accent);
}

.btn-minimal:hover {
  color: var(--accent);
  border-color: rgba(201, 169, 110, 0.55);
  background: rgba(201, 169, 110, 0.14);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1.1rem;
}

.card h3 {
  margin-bottom: 0.55rem;
}

.card p {
  color: var(--muted);
}

.refs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.refs span {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.6rem 0.9rem;
  border-radius: 0.45rem;
}

.refs-intro {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 48ch;
  margin-top: 0.35rem;
}

.section-head--row .refs-intro {
  margin-bottom: 0;
}

.refs-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.refs-logo-card {
  margin: 0;
  background: var(--bg);
  border: 1px solid rgba(201, 169, 110, 0.22);
  border-radius: 0.75rem;
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 1.35rem 1.25rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.refs-logo-card:hover {
  border-color: rgba(201, 169, 110, 0.45);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.refs-logo-card img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
  filter: grayscale(0.15);
  opacity: 0.92;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.refs-logo-card:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.02);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.1rem;
}

.contact-layout > .cards {
  grid-column: 1 / -1;
}

.contact-layout-bottom {
  margin-top: 1.1rem;
}

.contact-panel,
.contact-side {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 1.15rem;
}

.contact-side {
  display: flex;
}

.contact-panel h2 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.contact-lead {
  color: var(--muted);
  margin-bottom: 1rem;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #d5d5d5;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(201, 169, 110, 0.28);
  background: #141414;
  color: var(--text);
  border-radius: 0.55rem;
  padding: 0.68rem 0.75rem;
  font-family: inherit;
  font-size: 0.94rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(201, 169, 110, 0.72);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
}

.contact-form input[type="file"] {
  padding: 0.5rem 0;
  border: none;
  background: transparent;
  font-size: 0.86rem;
  color: var(--muted);
  cursor: pointer;
}

.contact-form input[type="file"]::file-selector-button {
  margin-right: 0.75rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 0.45rem;
  background: rgba(201, 169, 110, 0.1);
  color: var(--accent);
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
}

.contact-form input[type="file"]::file-selector-button:hover {
  background: rgba(201, 169, 110, 0.18);
  border-color: rgba(201, 169, 110, 0.55);
}

.check-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 0.5rem;
  font-size: 0.83rem;
  color: #bababa;
}

.check-row input {
  margin-top: 0.16rem;
}

.map-wrap {
  flex: 1;
  border-radius: 0.7rem;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.24);
  min-height: 460px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #121212, #0f0f0f);
  padding: 2.8rem 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.75fr 1fr;
  gap: 1.8rem;
  padding-bottom: 1.35rem;
}

.footer-brand img {
  width: min(110px, 60%);
  height: auto;
  margin-bottom: 0.65rem;
}

.footer-brand p {
  color: #b1b1b1;
  max-width: 34ch;
  font-size: 0.91rem;
  line-height: 1.55;
}

.footer-brand {
  text-align: center;
}

.footer h4 {
  margin-bottom: 0.7rem;
  font-size: 1rem;
  color: #f2f2f2;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-links a {
  color: #b9b9b9;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #b9b9b9;
  margin-bottom: 0.52rem;
  font-size: 0.94rem;
}

.footer-contact i {
  width: 16px;
  text-align: center;
  color: var(--accent);
  font-size: 0.82rem;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 0.5rem;
}

.footer-bottom-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.copyright {
  color: #9a9a9a;
  font-size: 0.88rem;
  justify-self: start;
}

.footer-note {
  color: #8b8b8b;
  font-size: 0.84rem;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-note a {
  color: #8b8b8b;
}

.footer-note a:hover {
  color: var(--accent);
}

.footer-note span {
  color: #666;
}

.footer-dev {
  justify-self: end;
  font-size: 0.85rem;
  color: #9a9a9a;
}

.footer-dev a {
  color: var(--accent);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  margin-left: 0.3rem;
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 999px;
  background: rgba(201, 169, 110, 0.08);
  box-shadow: 0 0 0 rgba(201, 169, 110, 0);
  transition: all 0.2s ease;
}

.footer-dev a:hover {
  color: #f0d4a5;
  border-color: rgba(201, 169, 110, 0.75);
  background: rgba(201, 169, 110, 0.16);
  box-shadow: 0 0 12px rgba(201, 169, 110, 0.18);
}

@media (max-width: 920px) {
  .slide-inner {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    align-content: center;
  }

  .contact-layout,
  .about-ref-grid,
  .hr-apply-grid,
  .company-info-grid,
  .mission-vision-grid,
  .project-grid,
  .cards,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .project-carousel-track {
    grid-template-columns: none;
  }

  .project-detail-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .project-detail-copy {
    order: -1;
  }

  .project-detail-media {
    max-width: 100%;
  }

  .project-detail-main {
    max-height: min(360px, 50vh);
  }

  .project-carousel {
    --per-view: 2;
  }

  .project-carousel-nav--prev {
    left: -1.1rem;
  }

  .project-carousel-nav--next {
    right: -1.1rem;
  }

  .footer-bottom-row {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.45rem;
  }

  .about-ref-brand {
    min-height: 280px;
  }

  .refs-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-fact-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .company-fact-row dd {
    text-align: left;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .slide-inner {
    padding-top: 4.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slide {
    transition: none;
  }

  .cookie-banner {
    transition: none;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 0.6rem;
    min-height: 84px;
  }

  .logo {
    justify-self: start;
  }

  .logo img {
    height: 56px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    z-index: 60;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(88vw, 360px);
    padding: 4.1rem 0.9rem 1.2rem;
    background:
      linear-gradient(180deg, rgba(23, 23, 23, 0.98), rgba(15, 15, 15, 0.98)),
      radial-gradient(circle at 86% 10%, rgba(201, 169, 110, 0.14), transparent 36%);
    border-left: 1px solid rgba(201, 169, 110, 0.28);
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.48);
    transform: translateX(104%);
    opacity: 0;
    pointer-events: none;
    z-index: 45;
    overflow-y: auto;
    transition: opacity 0.24s ease, transform 0.26s ease;
  }

  .lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    margin-left: 0;
    min-height: 42px;
    padding: 0 0.78rem;
    font-size: 0.73rem;
    border-radius: 999px;
    line-height: 1;
  }

  .call-fab {
    width: 52px;
    height: 52px;
    right: 0.75rem;
    bottom: 1rem;
  }

  body.cookie-banner-visible .call-fab {
    bottom: calc(5.35rem + env(safe-area-inset-bottom, 0px));
  }

  .nav.open {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
  }

  body.menu-open .menu-toggle {
    position: fixed;
    top: 0.95rem;
    right: 0.75rem;
    z-index: 70;
    border-color: rgba(201, 169, 110, 0.85);
    background: linear-gradient(180deg, rgba(201, 169, 110, 0.28), rgba(201, 169, 110, 0.12));
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  }

  .nav ul {
    flex-direction: column;
    padding: 0.35rem;
    gap: 0.46rem;
  }

  .nav > ul > li + li::before {
    display: none;
  }

  .nav > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 0.55rem;
    background: linear-gradient(90deg, rgba(201, 169, 110, 0.09), rgba(201, 169, 110, 0.03));
    padding: 0.68rem 0.84rem;
    font-size: 14px;
    letter-spacing: 0.03em;
    color: #ececec;
    transition: all 0.2s ease;
  }

  .nav > ul > li > a::before {
    display: none;
  }

  .nav > ul > li > a:hover,
  .nav > ul > li > a:focus-visible {
    border-color: rgba(201, 169, 110, 0.5);
    color: var(--accent);
    background: linear-gradient(90deg, rgba(201, 169, 110, 0.18), rgba(201, 169, 110, 0.06));
  }

  .mega-menu {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    opacity: 0;
    visibility: hidden;
    transform: none;
    margin-top: 0.45rem;
    box-shadow: none;
    border-radius: 0.45rem;
    background: #171717;
    max-height: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }

  .mega-card {
    display: none;
  }

  .has-dropdown.open .mega-menu {
    opacity: 1;
    visibility: visible;
    max-height: 520px;
    padding: 0.7rem;
    border: 1px solid rgba(201, 169, 110, 0.3);
    margin-top: 0.55rem;
    pointer-events: auto;
  }

  .mega-links a {
    font-size: 14px;
    color: #d8d8d8;
    padding: 0.55rem 0.85rem;
  }

  .hero-slider,
  .slides {
    min-height: 640px;
    height: 640px;
  }

  .slider-dots {
    top: auto;
    right: auto;
    left: 50%;
    bottom: 0.35rem;
    transform: translateX(-50%);
    grid-auto-flow: column;
    justify-content: center;
  }

  .slide-card-img {
    min-height: 250px;
    max-height: 280px;
  }

  .slide-copy {
    max-width: 100%;
    text-align: center;
    margin-inline: auto;
    display: grid;
    justify-items: center;
  }

  .slide-text {
    margin-inline: auto;
    text-align: center;
  }

  .slide-copy .btn {
    margin-top: 0.45rem;
    margin-bottom: 0.9rem;
  }

  .slide-media {
    margin-top: 0.7rem;
  }

  .tabs-list {
    width: 100%;
    justify-content: stretch;
    flex-wrap: wrap;
    row-gap: 0.35rem;
  }

  .tab-btn {
    flex: 1 1 30%;
    min-width: 0;
    text-align: center;
    font-size: 0.72rem;
    padding: 0.5rem 0.5rem;
    line-height: 1.25;
  }

  .project-carousel {
    --per-view: 1;
  }

  .project-carousel-nav {
    width: 32px;
    height: 32px;
  }

  .project-carousel-nav--prev {
    left: 0.35rem;
  }

  .project-carousel-nav--next {
    right: 0.35rem;
  }

  .project-detail-thumbs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .project-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .footer-bottom-row {
    justify-items: center;
    text-align: center;
    gap: 0.55rem;
  }

  .copyright,
  .footer-note,
  .footer-dev {
    justify-self: center;
  }

  .footer-dev {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
  }

  .footer-dev a {
    margin-left: 0;
  }
}
