:root {
      --header-dark: #0f0f0f;
      --header-white: #ffffff;
      --nav-text: #797e82;
      --nav-active: #d67d5c;
      --social: #d67d5c;
      --submenu-text: #d67d5c;
      --mega-text: #2a1612;
      --font: "Red Hat Display", sans-serif;
      --logo-width: 210px;
    }

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

    body {
      font-family: var(--font);
      background: #fff;
      color: #222;
      min-height: 100vh;
      overflow-x: clip;
    }

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

    ul {
      list-style: none;
    }

    /* ========== HEADER (İK Grup birebir yapı) ========== */
    .site-header {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      width: 100%;
      overflow: visible;
    }

    .header-bar {
      display: flex;
      align-items: stretch;
      width: 100%;
      min-height: 76px;
      background: transparent;
    }

    /* Sol: Logo bloğu — şeffaf, slider üstünde */
    .header-logo {
      flex: 0 0 var(--logo-width);
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding: 0 18px 0 24px;
      background: transparent;
    }

    .header-logo a {
      display: flex;
      align-items: center;
      height: 100%;
    }

    .header-logo img {
      display: block;
      height: 52px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
    }

    /* Orta: beyaz alan */
    .header-main {
      flex: 1;
      display: flex;
      align-items: flex-end;
      background: var(--header-white);
      min-width: 0;
      padding-bottom: 0;
    }

    /* Sosyal ikonlar */
    .header-social {
      display: flex;
      align-items: center;
    }

    .social-grid {
      display: flex;
      flex-wrap: nowrap;
      gap: 10px;
      max-width: none;
    }

    .social-grid a {
      width: 22px;
      height: 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--social);
      font-size: 18px;
      transition: opacity 0.2s ease;
    }

    .social-grid a:hover {
      opacity: 0.7;
    }

    /* Navigasyon */
    .header-nav {
      flex: 1;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      min-width: 0;
      padding: 0 8px;
    }

    .nav-menu {
      display: flex;
      align-items: flex-end;
      height: 45px;
      margin-bottom: 0;
    }

    .nav-menu > li {
      position: relative;
      height: 100%;
      display: flex;
      align-items: flex-end;
    }

    .nav-menu > li > a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      height: 100%;
      padding: 0 15px;
      font-size: 16px;
      font-weight: 400;
      text-transform: uppercase;
      color: var(--nav-text);
      border-bottom: 7px solid transparent;
      transition: color 0.2s ease, border-color 0.2s ease;
      white-space: nowrap;
    }

    .nav-menu > li > a .chevron {
      font-size: 10px;
      color: #101010;
      transition: color 0.2s ease;
    }

    .nav-menu > li:hover > a,
    .nav-menu > li.active > a {
      color: var(--nav-active);
      border-bottom-color: var(--nav-active);
    }

    .nav-menu > li:hover > a .chevron,
    .nav-menu > li.active > a .chevron {
      color: var(--nav-active);
    }

    /* Dropdown */
    .submenu {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 220px;
      background: #fff;
      box-shadow: 0 6px 6px 0 var(--nav-active);
      opacity: 0;
      visibility: hidden;
      transform: translateY(4px);
      transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
      z-index: 50;
      padding: 0;
    }

    .nav-menu > li:hover > .submenu,
    .nav-menu > li:focus-within > .submenu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .submenu li a {
      display: block;
      padding: 11px;
      font-size: 14px;
      font-weight: 400;
      color: var(--submenu-text);
      transition: background 0.15s ease;
    }

    .submenu li a:hover {
      background: #faf7f2;
    }

    /* Sağ araçlar: sosyal + telefon */
    .header-tools {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 0 18px 0 8px;
      background: var(--header-white);
      align-self: stretch;
    }

    .header-phone {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .header-phone a {
      color: var(--nav-text);
      font-size: 20px;
      transition: color 0.2s ease;
    }

    .header-phone a:hover {
      color: var(--nav-active);
    }

    /* Sağ: Hamburger */
    .header-burger {
      flex: 0 0 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--header-dark);
    }

    .burger-btn {
      background: none;
      border: none;
      cursor: pointer;
      color: #fff;
      font-size: 28px;
      line-height: 1;
      padding: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .burger-btn:hover {
      opacity: 0.85;
    }

    /* ========== Mega menü (hamburger) ========== */
    .mega-menu {
      position: absolute;
      top: 100%;
      left: var(--logo-width);
      right: 0;
      z-index: 900;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
      transition: max-height 0.4s ease, opacity 0.25s ease;
    }

    .mega-menu.is-open {
      max-height: min(78vh, 640px);
      opacity: 1;
      pointer-events: auto;
      overflow-y: auto;
    }

    .mega-menu-panel {
      position: relative;
      width: 100%;
      min-height: 320px;
      background: linear-gradient(90deg, #d67d5c 0%, #f7ebe6 42%, #ffffff 100%);
      padding: 40px clamp(28px, 4vw, 56px) 56px;
      overflow: hidden;
    }

    .mega-menu-panel::after {
      content: "";
      position: absolute;
      right: 3%;
      top: 50%;
      transform: translateY(-50%);
      width: min(300px, 28%);
      aspect-ratio: 1;
      background:
        url("../../images/logo.png") center / 58% no-repeat;
      opacity: 0.12;
      filter: brightness(0);
      pointer-events: none;
    }

    .mega-menu-panel::before {
      content: "";
      position: absolute;
      right: 5%;
      top: 50%;
      transform: translateY(-50%);
      width: min(270px, 24%);
      aspect-ratio: 1;
      border-radius: 50%;
      border: 1px solid rgba(42, 22, 18, 0.1);
      box-shadow:
        0 0 0 28px rgba(42, 22, 18, 0.03),
        0 0 0 56px rgba(42, 22, 18, 0.02);
      pointer-events: none;
    }

    .mega-menu-columns {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: nowrap;
      gap: 28px 40px;
      align-items: flex-start;
      width: min(100%, calc(100% - min(260px, 24%)));
      max-width: 1100px;
    }

    .mega-col {
      min-width: 0;
      flex: 1 1 0;
    }

    .mega-col-contact {
      flex: 1.15 1 0;
      padding-top: 2px;
    }

    .mega-col-contact ul li a {
      font-size: 13.5px;
      font-weight: 500;
    }

    .mega-col h3 {
      color: var(--mega-text);
      font-size: clamp(15px, 1.35vw, 18px);
      font-weight: 700;
      margin: 0 0 14px;
      text-transform: uppercase;
      letter-spacing: 0.4px;
      line-height: 1.25;
    }

    .mega-col h3 a {
      color: inherit;
      font: inherit;
      letter-spacing: inherit;
      text-transform: inherit;
    }

    .mega-col h3 a:hover {
      opacity: 0.7;
      color: inherit;
    }

    .mega-col ul li {
      margin-top: 6px;
      padding-bottom: 4px;
    }

    .mega-col ul li:first-child {
      margin-top: 0;
    }

    .mega-col a {
      color: var(--mega-text);
      font-size: 13.5px;
      font-weight: 400;
      line-height: 1.45;
      transition: opacity 0.2s ease;
    }

    .mega-col a:hover {
      opacity: 0.65;
      color: var(--mega-text);
    }

    .mega-social {
      display: flex;
      gap: 10px;
      margin-top: 14px;
    }

    .mega-social a {
      width: 36px;
      height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(42, 22, 18, 0.22);
      color: var(--mega-text);
      font-size: 15px;
      transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .mega-social a:hover {
      background: var(--mega-text);
      border-color: var(--mega-text);
      color: #fff;
      opacity: 1;
    }

    .header-burger .burger-btn.is-active {
      opacity: 0.7;
    }

    .mega-backdrop {
      position: fixed;
      inset: 0;
      z-index: 800;
      background: transparent;
      display: none;
    }

    .mega-backdrop.is-open {
      display: block;
    }

    /* ========== Hero Slider ========== */
    .hero-slider {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 640px;
      max-height: 980px;
      overflow: hidden;
      background: #1a1210;
    }

    .hero-slides {
      position: absolute;
      inset: 0;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.8s ease, visibility 0.8s ease;
      z-index: 1;
    }

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

    .hero-slide-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      image-rendering: auto;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      transform: translateZ(0) scale(1);
      transition: transform 6s ease;
    }

    .hero-slider:not(.is-static) .hero-slide-bg {
      transform: translateZ(0) scale(1.02);
    }

    .hero-slider:not(.is-static) .hero-slide.is-active .hero-slide-bg {
      transform: translateZ(0) scale(1);
    }

    .hero-slider.is-static .hero-slide-bg {
      transform: none;
      transition: none;
    }

    .hero-slide-overlays {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 2;
    }

    .hero-slide-overlays::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(20, 12, 10, 0.72) 0%, rgba(20, 12, 10, 0.18) 38%, rgba(20, 12, 10, 0.05) 55%),
        radial-gradient(ellipse 70% 55% at 35% 30%, rgba(214, 125, 92, 0.22) 0%, transparent 70%);
    }

    .hero-slide-overlays::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 48%;
      background: linear-gradient(
        180deg,
        rgba(10, 8, 7, 0) 0%,
        rgba(10, 8, 7, 0.45) 45%,
        rgba(10, 8, 7, 0.92) 100%
      );
    }

    .hero-watermark {
      position: absolute;
      right: 4%;
      top: 50%;
      transform: translateY(-50%);
      width: min(420px, 38vw);
      height: min(420px, 38vw);
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow:
        inset 0 0 0 40px transparent,
        0 0 0 70px rgba(255, 255, 255, 0.03),
        0 0 0 140px rgba(255, 255, 255, 0.025);
      opacity: 0.55;
      z-index: 2;
      pointer-events: none;
    }

    .hero-watermark::before,
    .hero-watermark::after {
      content: "";
      position: absolute;
      inset: 18%;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.07);
    }

    .hero-watermark::after {
      inset: 36%;
      border-color: rgba(214, 125, 92, 0.18);
    }

    .hero-content {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      z-index: 3;
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
      padding: 0 clamp(24px, 5vw, 72px) clamp(40px, 7vh, 72px);
      max-width: 760px;
    }

    .hero-copy {
      max-width: 520px;
      transform: translateY(14px);
      opacity: 0;
      transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
    }

    .hero-slide.is-active .hero-copy {
      transform: translateY(0);
      opacity: 1;
    }

    .hero-title {
      color: var(--nav-active);
      font-size: clamp(22px, 2.6vw, 34px);
      font-weight: 600;
      line-height: 1.2;
      letter-spacing: 0;
      margin-bottom: 16px;
      max-width: 22ch;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 0;
      padding: 8px 16px;
      background: transparent;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.55);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
      flex-shrink: 0;
    }

    .hero-btn:hover {
      background: var(--nav-active);
      border-color: var(--nav-active);
      color: #fff;
      transform: none;
    }

    .hero-desc {
      flex: 1;
      min-width: 180px;
      max-width: 340px;
      color: rgba(255, 255, 255, 0.78);
      font-size: clamp(12px, 1vw, 13.5px);
      line-height: 1.55;
      font-weight: 400;
    }

    .hero-nav {
      position: absolute;
      right: clamp(20px, 4vw, 48px);
      bottom: clamp(24px, 4vh, 48px);
      z-index: 4;
      display: flex;
      gap: 10px;
    }

    .hero-nav button {
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255, 255, 255, 0.35);
      background: rgba(0, 0, 0, 0.25);
      color: #fff;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease, border-color 0.2s ease;
    }

    .hero-nav button:hover {
      background: var(--nav-active);
      border-color: var(--nav-active);
    }

    /* ========== Projeler (Bordo145 tarzı kart listesi) ========== */
    .projects-section {
      position: relative;
      z-index: 2;
      background: #f7f4f1;
      padding: 56px 0 72px;
    }

    .projects-inner {
      width: min(1280px, calc(100% - 48px));
      margin: 0 auto;
    }

    .projects-filter {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      background: #fff;
      border-radius: 14px;
      padding: 14px 16px;
      margin-bottom: 36px;
      box-shadow: 0 10px 30px rgba(42, 22, 18, 0.06);
    }

    .projects-filter select {
      flex: 1;
      min-width: 160px;
      appearance: none;
      border: none;
      background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d67d5c' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") right 8px center no-repeat;
      color: var(--nav-active);
      font-family: var(--font);
      font-size: 15px;
      font-weight: 500;
      padding: 10px 28px 10px 10px;
      cursor: pointer;
      outline: none;
    }

    .projects-filter-btn {
      border: none;
      background: var(--nav-active);
      color: #fff;
      font-family: var(--font);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      padding: 12px 28px;
      border-radius: 10px;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .projects-filter-btn:hover {
      background: #c46848;
      transform: translateY(-1px);
    }

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

    .project-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 14px;
      transition: transform 0.3s ease;
    }

    .project-card:hover {
      transform: scale(0.97);
    }

    .project-card-media {
      position: relative;
      width: 100%;
      aspect-ratio: 498 / 630;
      border-radius: 28px;
      overflow: hidden;
      background: #3a221c;
      box-shadow: 0 14px 34px rgba(42, 22, 18, 0.14);
    }

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

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

    .project-card-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(42, 22, 18, 0.15) 0%, rgba(42, 22, 18, 0.2) 40%, rgba(42, 22, 18, 0.78) 100%),
        radial-gradient(circle at 50% 42%, rgba(214, 125, 92, 0.18) 0%, transparent 55%);
      pointer-events: none;
    }

    .project-card-badge {
      position: absolute;
      inset: 0;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
    }

    .project-card-badge img {
      width: 52%;
      max-width: 130px;
      height: auto;
      object-fit: contain;
      opacity: 0.92;
      filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
      transition: transform 0.35s ease, opacity 0.35s ease;
      padding: 0 4px;
      box-sizing: content-box;
    }

    .project-card:hover .project-card-badge img {
      transform: scale(1.04);
      opacity: 1;
    }

    .project-card-title {
      color: var(--nav-active);
      font-size: clamp(12px, 1.05vw, 15px);
      font-weight: 600;
      letter-spacing: 0.6px;
      text-transform: uppercase;
      line-height: 1.35;
      max-width: 100%;
    }

    .project-card-meta {
      display: block;
      margin-top: 4px;
      color: #8a746c;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.4px;
      text-transform: none;
    }

    /* ========== Kampanyalar banner ========== */
    .campaigns-section {
      background: #f7f4f1;
      padding: 0 0 72px;
    }

    .campaigns-banner {
      position: relative;
      display: block;
      width: min(1280px, calc(100% - 48px));
      margin: 0 auto;
      min-height: 200px;
      border-radius: 28px;
      overflow: hidden;
      background: linear-gradient(105deg, #b85f42 0%, #d67d5c 48%, #e09578 100%);
      text-decoration: none;
      box-shadow: 0 18px 40px rgba(214, 125, 92, 0.28);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .campaigns-banner:hover {
      transform: translateY(-3px);
      box-shadow: 0 22px 48px rgba(214, 125, 92, 0.36);
    }

    .campaigns-banner-watermark {
      position: absolute;
      right: -2%;
      top: 50%;
      transform: translateY(-50%);
      width: min(340px, 42%);
      height: auto;
      opacity: 0.14;
      pointer-events: none;
      user-select: none;
    }

    .campaigns-banner-decor {
      position: absolute;
      right: 8%;
      top: 50%;
      transform: translateY(-50%);
      width: min(280px, 36%);
      aspect-ratio: 1;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow:
        0 0 0 36px rgba(255, 255, 255, 0.04),
        0 0 0 72px rgba(255, 255, 255, 0.03);
      pointer-events: none;
    }

    .campaigns-banner-inner {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-start;
      min-height: 200px;
      padding: 28px 36px 32px;
    }

    .campaigns-banner-cta {
      align-self: flex-end;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #f4ebe4;
      color: #b85f42;
      font-size: 16px;
      font-weight: 500;
      padding: 12px 22px;
      border-radius: 999px;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .campaigns-banner:hover .campaigns-banner-cta {
      background: #fff;
      transform: translateX(2px);
    }

    .campaigns-banner-cta i {
      font-size: 13px;
    }

    .campaigns-banner-title {
      color: #fff;
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      max-width: 14ch;
    }

    .campaigns-copy {
      position: relative;
      width: min(820px, calc(100% - 48px));
      margin: 56px auto 0;
      text-align: center;
    }

    .campaigns-copy::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: min(420px, 90%);
      aspect-ratio: 1;
      border-radius: 50%;
      border: 1px solid rgba(214, 125, 92, 0.08);
      box-shadow:
        0 0 0 48px rgba(214, 125, 92, 0.03),
        0 0 0 96px rgba(214, 125, 92, 0.02);
      pointer-events: none;
      z-index: 0;
    }

    .campaigns-copy p {
      position: relative;
      z-index: 1;
      color: #5c534f;
      font-size: clamp(16px, 1.5vw, 20px);
      font-weight: 400;
      line-height: 1.65;
      margin: 0;
    }

    .campaigns-copy p + p {
      margin-top: 22px;
    }

    /* ========== Proje kategori kartları ========== */
    .project-cats {
      width: min(1280px, calc(100% - 48px));
      margin: 48px auto 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .project-cat-card {
      position: relative;
      display: block;
      min-height: 220px;
      border-radius: 28px;
      overflow: hidden;
      background: linear-gradient(120deg, #b85f42 0%, #d67d5c 55%, #e09578 100%);
      text-decoration: none;
      box-shadow: 0 16px 36px rgba(214, 125, 92, 0.24);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .project-cat-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 44px rgba(214, 125, 92, 0.32);
    }

    .project-cat-card-watermark {
      position: absolute;
      right: -4%;
      top: 50%;
      transform: translateY(-50%);
      width: min(260px, 55%);
      opacity: 0.14;
      pointer-events: none;
      user-select: none;
    }

    .project-cat-card-num {
      position: absolute;
      left: 28px;
      bottom: 10px;
      font-size: clamp(72px, 8vw, 110px);
      font-weight: 700;
      line-height: 0.85;
      color: rgba(255, 255, 255, 0.16);
      letter-spacing: -2px;
      pointer-events: none;
      user-select: none;
    }

    .project-cat-card-inner {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 220px;
      padding: 28px 28px 26px;
    }

    .project-cat-card-title {
      color: #fff;
      font-size: clamp(26px, 2.6vw, 36px);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: 0.2px;
    }

    .project-cat-card-title span {
      display: block;
      font-weight: 400;
    }

    .project-cat-card-cta {
      align-self: flex-end;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #f4ebe4;
      color: #b85f42;
      font-size: 15px;
      font-weight: 500;
      padding: 10px 18px;
      border-radius: 999px;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .project-cat-card:hover .project-cat-card-cta {
      background: #fff;
      transform: translateX(2px);
    }

    .project-cat-card-cta i {
      font-size: 12px;
    }

    /* ========== Bilgi formu ========== */
    .lead-section {
      background: #f7f4f1;
      padding: 72px 0 88px;
      border-top: none;
    }

    .lead-inner {
      width: min(1280px, calc(100% - 48px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 48px;
      align-items: center;
    }

    .lead-intro {
      text-align: center;
      padding: 20px 12px;
    }

    .lead-intro-kicker {
      color: #1f1a18;
      font-size: clamp(22px, 2.2vw, 30px);
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .lead-intro-title {
      color: #1f1a18;
      font-size: clamp(28px, 3vw, 40px);
      font-weight: 700;
      margin-bottom: 14px;
    }

    .lead-intro-text {
      color: #8a807a;
      font-size: 15px;
      line-height: 1.6;
      max-width: 280px;
      margin: 0 auto 36px;
    }

    .lead-intro-label {
      color: #1f1a18;
      font-size: clamp(26px, 2.8vw, 38px);
      font-weight: 700;
    }

    .lead-form-wrap {
      position: relative;
      padding: 28px 8px 8px;
    }

    .lead-form-wrap::before {
      content: "";
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: min(360px, 70%);
      aspect-ratio: 1;
      background: url("../../images/logo.png") center / contain no-repeat;
      opacity: 0.06;
      pointer-events: none;
    }

    .lead-form {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px 28px;
    }

    .lead-field {
      display: flex;
      flex-direction: column;
    }

    .lead-field-full {
      grid-column: 1 / -1;
    }

    .lead-field input,
    .lead-field select,
    .lead-field textarea {
      width: 100%;
      border: none;
      border-bottom: 1px solid #d9d2cd;
      background: transparent;
      color: #2a2220;
      font-family: var(--font);
      font-size: 15px;
      padding: 12px 2px;
      outline: none;
      appearance: none;
      border-radius: 0;
      transition: border-color 0.2s ease;
    }

    .lead-field select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d67d5c' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 4px center;
      padding-right: 24px;
      color: #8a807a;
    }

    .lead-field textarea {
      min-height: 84px;
      resize: vertical;
    }

    .lead-field input:focus,
    .lead-field select:focus,
    .lead-field textarea:focus {
      border-bottom-color: var(--nav-active);
    }

    .lead-field input::placeholder,
    .lead-field textarea::placeholder {
      color: #a59b95;
    }

    .lead-check {
      grid-column: 1 / -1;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: #6d6460;
      font-size: 13px;
      line-height: 1.45;
      margin-top: 4px;
    }

    .lead-check input {
      margin-top: 3px;
      accent-color: var(--nav-active);
      flex-shrink: 0;
    }

    .lead-check a {
      color: var(--nav-active);
      text-decoration: underline;
    }

    .lead-submit {
      grid-column: 1 / -1;
      justify-self: start;
      margin-top: 8px;
      border: none;
      background: var(--nav-active);
      color: #fff;
      font-family: var(--font);
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.4px;
      padding: 14px 42px;
      border-radius: 12px;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .lead-submit:hover {
      background: #c46848;
      transform: translateY(-1px);
    }

    /* ========== Footer ========== */
    .site-footer {
      position: relative;
      overflow: hidden;
      color: #fff;
      padding: 72px 0 0;
      background:
        radial-gradient(ellipse 70% 55% at 0% 0%, rgba(214, 125, 92, 0.45), transparent 58%),
        radial-gradient(ellipse 55% 45% at 100% 100%, rgba(214, 125, 92, 0.22), transparent 55%),
        linear-gradient(165deg, #1a100e 0%, #2a1612 42%, #3a221c 100%);
    }

    .site-footer::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent 0%, var(--nav-active) 35%, #f0b59a 50%, var(--nav-active) 65%, transparent 100%);
      opacity: 0.9;
    }

    .footer-glow {
      position: absolute;
      inset: auto -10% -30% auto;
      width: min(520px, 70vw);
      aspect-ratio: 1;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(214, 125, 92, 0.28), transparent 68%);
      pointer-events: none;
      filter: blur(8px);
    }

    .footer-inner {
      position: relative;
      z-index: 1;
      width: min(1280px, calc(100% - 48px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(180px, 240px) 1fr minmax(220px, 280px);
      gap: 48px 40px;
      padding-bottom: 56px;
      align-items: start;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .footer-brand img {
      width: 138px;
      height: auto;
      display: block;
      filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
    }

    .footer-tagline {
      margin: 0;
      max-width: 28ch;
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: clamp(15px, 1.35vw, 18px);
      font-style: italic;
      font-weight: 500;
      line-height: 1.4;
      color: rgba(255, 255, 255, 0.92);
    }

    .footer-nav {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 24px 20px;
    }

    .footer-col h4,
    .footer-contact-title {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      margin: 0 0 14px;
      color: #f0b59a;
    }

    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .footer-col a {
      position: relative;
      display: inline-block;
      color: rgba(255, 255, 255, 0.78);
      font-size: 14px;
      font-weight: 400;
      line-height: 1.4;
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .footer-col a:hover {
      color: #fff;
      transform: translateX(3px);
    }

    .footer-contact {
      padding: 22px 20px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(8px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    }

    .footer-contact-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 12px;
      color: inherit;
      text-decoration: none;
      transition: opacity 0.2s ease;
    }

    a.footer-contact-row:hover {
      opacity: 0.85;
    }

    a.footer-contact-row:hover em {
      color: #fff;
    }

    .footer-contact-icon {
      width: 34px;
      height: 34px;
      flex: 0 0 34px;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(214, 125, 92, 0.22);
      color: #f3c2ad;
      font-size: 13px;
    }

    .footer-contact-row strong {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 2px;
    }

    .footer-contact-row em {
      display: block;
      font-style: normal;
      font-size: 14px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.92);
      line-height: 1.45;
      word-break: break-word;
      transition: color 0.2s ease;
    }

    .footer-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin: 8px 0 14px;
      padding: 11px 16px;
      border-radius: 999px;
      background: var(--nav-active);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.4px;
      box-shadow: 0 10px 24px rgba(214, 125, 92, 0.35);
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .footer-cta:hover {
      background: #e08a68;
      transform: translateY(-1px);
    }

    .footer-cta i {
      font-size: 11px;
      transition: transform 0.2s ease;
    }

    .footer-cta:hover i {
      transform: translateX(3px);
    }

    .footer-social {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 2px;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 16px;
      background: rgba(255, 255, 255, 0.06);
      transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }

    .footer-social a:hover {
      background: var(--nav-active);
      border-color: var(--nav-active);
      transform: translateY(-2px);
    }

    .footer-handle {
      color: rgba(255, 255, 255, 0.55);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.3px;
      margin-left: 2px;
    }

    .footer-company {
      font-size: 13px;
      font-weight: 700;
      margin: 0;
      color: rgba(255, 255, 255, 0.7);
      letter-spacing: 0.4px;
    }

    .footer-bottom {
      position: relative;
      z-index: 1;
      background: rgba(12, 8, 7, 0.55);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-bottom-inner {
      width: min(1280px, calc(100% - 48px));
      margin: 0 auto;
      min-height: 56px;
      display: flex;
      align-items: center;
      padding: 14px 0;
      padding-right: 64px;
    }

    .footer-meta {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      gap: 8px;
      min-width: 0;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      color: rgba(255, 255, 255, 0.45);
      font-size: 12px;
      white-space: nowrap;
    }

    .footer-meta::-webkit-scrollbar {
      display: none;
    }

    .footer-meta a {
      color: rgba(255, 255, 255, 0.55);
      transition: color 0.2s ease;
      flex-shrink: 0;
    }

    .footer-meta a:hover {
      color: #f0b59a;
    }

    .footer-meta > span[aria-hidden="true"] {
      color: rgba(255, 255, 255, 0.2);
      flex-shrink: 0;
    }

    .footer-meta-sep {
      margin: 0 2px;
      color: rgba(255, 255, 255, 0.28) !important;
    }

    .footer-copy {
      color: rgba(255, 255, 255, 0.4);
      font-size: 12px;
      flex-shrink: 0;
    }

    .scroll-top {
      position: absolute;
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border: none;
      border-radius: 12px;
      background: var(--nav-active);
      color: #fff;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 24px rgba(214, 125, 92, 0.4);
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .scroll-top:hover {
      background: #e08a68;
      transform: translateY(calc(-50% - 2px));
    }

    /* Responsive */
    @media (max-width: 1100px) {
      :root {
        --logo-width: 170px;
      }

      .header-logo {
        padding: 0 12px 0 16px;
      }

      .header-logo img {
        height: 44px;
      }

      .nav-menu > li > a {
        padding: 0 10px;
        font-size: 14px;
      }

      .mega-menu-columns {
        gap: 20px 28px;
        width: min(100%, calc(100% - 200px));
      }

      .projects-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 900px) {
      .header-social,
      .header-nav,
      .header-tools,
      .header-main {
        display: none !important;
      }

      .header-logo {
        flex: 1 1 auto;
        background: var(--header-dark);
        padding: 0 12px 0 16px;
      }

      .header-logo img {
        height: 40px;
      }

      .header-bar {
        min-height: 64px;
        background: var(--header-dark);
      }

      .header-burger {
        flex: 0 0 56px;
      }

      .mega-menu {
        left: 0;
      }

      .mega-menu.is-open {
        max-height: min(85vh, 820px);
        overflow-y: auto;
        background: #fff;
        box-shadow: 0 18px 40px rgba(20, 12, 10, 0.18);
      }

      .mega-menu-panel {
        min-height: auto;
        padding: 24px 20px 36px;
        background: linear-gradient(180deg, #e8a58a 0%, #f7ebe6 22%, #ffffff 55%);
      }

      .mega-menu-panel::before,
      .mega-menu-panel::after {
        display: none;
      }

      .mega-menu-columns {
        display: flex;
        flex-direction: column;
        gap: 26px;
        width: 100%;
        max-width: none;
      }

      .mega-col h3 {
        font-size: 17px;
        margin-bottom: 10px;
      }

      .mega-col a {
        font-size: 14.5px;
      }

      .mega-social {
        display: flex;
        gap: 14px;
        margin-top: 12px;
      }

      .mega-social a {
        width: 40px;
        height: 40px;
        font-size: 18px;
      }

      .hero-slider {
        height: auto;
        min-height: min(78vh, 680px);
        max-height: none;
        aspect-ratio: auto;
      }

      .hero-content {
        align-items: flex-end;
        padding: 0 20px 56px;
        max-width: none;
      }

      .hero-copy {
        max-width: 100%;
      }

      .hero-title {
        max-width: none;
        margin-bottom: 12px;
        font-size: clamp(22px, 6vw, 30px);
        text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
      }

      .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
      }

      .hero-desc {
        order: 1;
      }

      .hero-btn {
        order: 2;
        min-height: 44px;
        padding: 12px 22px;
        font-size: 12px;
      }

      .hero-desc {
        min-width: 0;
        width: 100%;
        max-width: none;
        font-size: 13.5px;
        line-height: 1.55;
        text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
      }

      .hero-nav {
        right: 16px;
        bottom: 20px;
      }

      .projects-section {
        padding: 28px 0 56px;
      }

      .projects-filter {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 14px 14px;
      }

      .projects-filter select {
        flex: none;
        width: 100%;
        min-width: 0;
        border-bottom: 1px solid #ebe4df;
        padding: 14px 28px 14px 4px;
        font-size: 15px;
      }

      .projects-filter select:last-of-type {
        border-bottom: none;
      }

      .projects-filter-btn {
        width: 100%;
        margin-top: 6px;
        min-height: 46px;
      }

      .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
      }

      .campaigns-banner {
        min-height: 180px;
        border-radius: 22px;
      }

      .campaigns-banner-inner {
        min-height: 180px;
        padding: 22px 22px 26px;
      }

      .campaigns-banner-title {
        max-width: none;
        font-size: clamp(22px, 6vw, 30px);
      }

      .campaigns-section {
        padding-bottom: 48px;
      }

      .campaigns-copy {
        margin-top: 40px;
      }

      .campaigns-copy p {
        max-width: none;
      }

      .project-cats {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 36px;
      }

      .project-cat-card,
      .project-cat-card-inner {
        min-height: 190px;
      }

      .project-cat-card-inner {
        padding: 22px;
      }

      .project-cat-card-title {
        font-size: clamp(24px, 6vw, 32px);
      }

      .lead-section {
        padding: 48px 0 60px;
      }

      .lead-inner {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .lead-intro {
        padding: 8px 4px 0;
      }

      .lead-intro-kicker {
        font-size: clamp(18px, 5vw, 24px);
        margin-bottom: 10px;
      }

      .lead-intro-title {
        font-size: clamp(26px, 7vw, 34px);
        margin-bottom: 10px;
      }

      .lead-intro-text {
        max-width: none;
        margin: 0 auto 18px;
        font-size: 14.5px;
      }

      .lead-intro-label {
        font-size: clamp(22px, 6vw, 30px);
      }

      .lead-form-wrap {
        padding: 8px 0 0;
      }

      .lead-form-wrap::before {
        width: min(240px, 55%);
        opacity: 0.04;
      }

      .lead-form {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .lead-submit {
        width: 100%;
        justify-self: stretch;
        min-height: 48px;
      }

      .footer-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-bottom: 40px;
      }

      .footer-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 18px;
      }

      .footer-contact {
        order: -1;
      }

      .footer-brand {
        order: -2;
      }

      .footer-bottom-inner {
        padding-right: 64px;
      }

      .footer-meta {
        white-space: normal;
        flex-wrap: wrap;
        overflow: visible;
        row-gap: 8px;
      }

      .mega-col-contact a {
        word-break: break-word;
      }

      .burger-btn {
        min-width: 44px;
        min-height: 44px;
      }

      .scroll-top {
        right: 16px;
      }
    }

    @media (max-width: 700px) {
      .projects-inner,
      .campaigns-banner,
      .campaigns-copy,
      .project-cats,
      .lead-inner,
      .footer-inner,
      .footer-bottom-inner,
      .bais-extra-blocks {
        width: calc(100% - 32px);
      }

      .hero-content {
        padding: 0 16px 48px;
      }

      .projects-filter {
        margin-bottom: 22px;
      }

      .projects-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        margin-left: -16px;
        margin-right: -16px;
        padding: 4px 16px 8px;
      }

      .projects-grid::-webkit-scrollbar {
        display: none;
      }

      .projects-grid .project-card {
        flex: 0 0 min(78vw, 280px);
        width: min(78vw, 280px);
        scroll-snap-align: start;
      }

      .projects-grid .project-card:hover {
        transform: none;
      }

      .projects-grid .project-card-media {
        border-radius: 22px;
      }

      .footer-nav {
        grid-template-columns: 1fr 1fr;
      }

      .footer-tagline {
        max-width: none;
      }

      .footer-contact {
        padding: 18px 16px;
      }

      .footer-cta {
        width: 100%;
        justify-content: center;
      }

      .footer-bottom {
        padding-bottom: env(safe-area-inset-bottom, 0);
      }

      .footer-bottom-inner {
        padding: 14px 56px 14px 0;
        min-height: 56px;
        align-items: flex-start;
      }

      .footer-meta {
        font-size: 11px;
        gap: 6px 8px;
        line-height: 1.5;
      }

      .scroll-top {
        position: absolute;
        right: 12px;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        z-index: 2;
        width: 40px;
        height: 40px;
      }

      .bais-block-cards {
        grid-template-columns: 1fr;
      }

      .bais-block-quote {
        padding: 18px 16px;
      }

      .cms-hero-inner,
      .cms-inner {
        width: calc(100% - 32px);
      }
    }

    @media (max-width: 400px) {
      .projects-inner,
      .campaigns-banner,
      .campaigns-copy,
      .project-cats,
      .lead-inner,
      .footer-inner,
      .footer-bottom-inner,
      .bais-extra-blocks {
        width: calc(100% - 24px);
      }

      .header-logo img {
        height: 34px;
      }

      .header-burger {
        flex: 0 0 48px;
      }
    }

/* ========== Extra CMS blocks (not mapped into dedicated slots) ========== */
.bais-extra-blocks {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.bais-block {
  color: #5c4f4a;
}
.bais-block-title {
  color: #2a1612;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  margin: 0 0 10px;
}
.bais-block-subtitle {
  color: #2a1612;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  margin: 0 0 8px;
}
.bais-block-sub {
  color: #7a6e68;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 12px;
}
.bais-block-body {
  font-size: 16.5px;
  line-height: 1.85;
}
.bais-block-body p { margin: 0 0 14px; }
.bais-block-quote {
  margin: 0;
  padding: 24px 28px;
  border-left: 3px solid var(--nav-active);
  background: #f7f4f1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-style: italic;
  color: #2a1612;
}
.bais-block-quote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font);
  font-size: 13px;
  font-style: normal;
  color: #7a6e68;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.bais-block-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.bais-block-figure figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: #7a6e68;
}
.bais-block-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #111;
}
.bais-block-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.bais-block-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.bais-block-card {
  padding: 20px;
  background: #f7f4f1;
  border: 1px solid #ebe4df;
}
.bais-block-card h3 {
  margin: 0 0 8px;
  color: #2a1612;
  font-size: 18px;
}
.bais-block-card-sub {
  color: var(--nav-active);
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 8px;
}
.bais-block-list {
  list-style: none;
  display: grid;
  gap: 10px;
}
.bais-block-list li {
  position: relative;
  padding-left: 28px;
}
.bais-block-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--nav-active);
}
.bais-block-cta { text-align: center; }
.bais-block-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 12px 22px;
  background: var(--nav-active);
  color: #fff !important;
  font-weight: 700;
  letter-spacing: .02em;
}
.bais-block-divider {
  border: 0;
  border-top: 1px solid #ebe4df;
  margin: 8px 0;
}
.bais-block-spacer { width: 100%; }
