:root {
  --ink: #101715;
  --paper: #f5f1e8;
  --stone: #ddd5c7;
  --gold: #b58747;
  --green: #24584d;
  --white: #ffffff;
  --muted: rgba(16, 23, 21, .7);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 5vw;
  color: var(--white);
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}

.header.scrolled,
.menu-open .header,
.header.solid-detail {
  color: var(--ink);
  background: rgba(245, 241, 232, .9);
  box-shadow: 0 14px 40px rgba(16, 23, 21, .1);
  backdrop-filter: blur(12px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.logo-image {
  display: block;
  width: 154px;
  height: auto;
  object-fit: contain;
}

.header.scrolled .logo-image,
.header.solid-detail .logo-image,
.menu-open .logo-image {
  filter: none;
}

.logo-mark {
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(181, 135, 71, .95), rgba(255, 255, 255, .12));
  box-shadow: 0 12px 36px rgba(16, 23, 21, .22);
  overflow: hidden;
}

.header.scrolled .logo-mark,
.menu-open .logo-mark {
  border-color: rgba(16, 23, 21, .16);
  background: linear-gradient(145deg, var(--green), var(--gold));
}

.logo-mark span {
  position: absolute;
  bottom: 11px;
  width: 7px;
  border-radius: 6px 6px 0 0;
  background: var(--white);
}

.logo-mark span:nth-child(1) {
  left: 14px;
  height: 19px;
}

.logo-mark span:nth-child(2) {
  left: 23px;
  height: 30px;
  background: rgba(255, 255, 255, .86);
}

.logo-mark span:nth-child(3) {
  left: 32px;
  height: 24px;
}

.logo-text {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.logo-text strong {
  font-size: 19px;
}

.logo-text small {
  color: currentColor;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .74;
}

.menu-button {
  display: grid;
  gap: 5px;
  width: 48px;
  height: 48px;
  place-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: .25s ease;
}

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

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 14;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(181, 135, 71, .24), transparent 34%),
    rgba(16, 23, 21, .48);
  opacity: 0;
  backdrop-filter: blur(0);
  transition: opacity .3s ease, backdrop-filter .3s ease;
}

.menu-open .menu-backdrop {
  pointer-events: auto;
  opacity: 1;
  backdrop-filter: blur(12px);
}

.menu {
  position: fixed;
  top: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 15;
  width: min(430px, calc(100vw - 36px));
  padding: 104px 34px 34px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(16, 23, 21, .94), rgba(24, 61, 53, .9)),
    url("../assets/images/assets-img-covers-dikencik-tepe-2.jpg") center/cover;
  color: var(--white);
  box-shadow: -24px 28px 90px rgba(16, 23, 21, .36);
  transform: translateX(calc(100% + 28px)) scale(.97);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  overflow: auto;
}

.menu::before {
  content: "METEOR";
  position: absolute;
  right: 24px;
  bottom: 18px;
  color: rgba(255, 255, 255, .06);
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.menu.open {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.menu a,
.menu summary {
  position: relative;
  display: block;
  margin: 2px 0;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  transform-origin: left center;
  transition: transform .22s ease, background .22s ease, color .22s ease, padding-left .22s ease;
}

.menu a::before,
.menu summary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
  transition: width .22s ease;
}

.menu a:hover,
.menu a:focus-visible,
.menu summary:hover,
.menu summary:focus-visible {
  padding-left: 34px;
  color: var(--white);
  background: rgba(255, 255, 255, .11);
  transform: scale(1.08);
  outline: none;
}

.menu a:hover::before,
.menu a:focus-visible::before,
.menu summary:hover::before,
.menu summary:focus-visible::before {
  width: 22px;
}

.menu details a {
  margin-left: 18px;
  font-size: 16px;
  opacity: .75;
}

.menu details a:hover,
.menu details a:focus-visible {
  opacity: 1;
  transform: scale(1.05);
}

.detail-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(16, 23, 21, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  font-weight: 900;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.menu .socials a {
  margin: 0;
  padding: 0;
  border-radius: 50%;
  transform-origin: center;
}

.menu .socials a::before {
  display: none;
}

.menu .socials a:hover,
.menu .socials a:focus-visible {
  padding: 0;
  transform: translateY(-2px);
}

.socials a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: var(--white);
  font-size: 0;
  line-height: 0;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.socials a:hover,
.footer-socials a:hover {
  transform: translateY(-2px);
  background: rgba(193, 145, 78, .22);
  border-color: rgba(193, 145, 78, .75);
}

.social-icon {
  width: 20px;
  height: 20px;
  display: block;
  flex: 0 0 auto;
  overflow: visible;
}

.instagram-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.facebook-icon {
  width: 18px;
  height: 18px;
}

.facebook-icon path {
  fill: currentColor;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 120px 5vw 70px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 23, 21, .86), rgba(16, 23, 21, .35)),
    url("../assets/images/assets-img-covers-dikencik-tepe-2.jpg") center/cover;
  background-position: center calc(50% + var(--scroll-shift, 0px));
}

.hero-content {
  max-width: 850px;
  animation: heroRise .9s ease both;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid rgba(181, 135, 71, .48);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(181, 135, 71, .08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  font-size: clamp(13px, .95vw, 17px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

h1 {
  margin: 14px 0 20px;
  font-size: clamp(56px, 10vw, 132px);
  line-height: .9;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1;
}

h3 { margin: 0 0 10px; }

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

.hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, .86);
}

.buttons,
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(16, 23, 21, .16);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.button.primary,
.filter.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.hero .button:not(.primary) {
  border-color: rgba(255, 255, 255, .55);
  background: transparent;
  color: var(--white);
}

.section {
  padding: 88px 5vw;
}

.intro {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
  min-height: 92vh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(245, 241, 232, .94), rgba(245, 241, 232, .78)),
    url("../assets/images/assets-img-covers-vitalium.jpg") center/cover;
}

.intro::before {
  content: "";
  position: absolute;
  right: -11vw;
  top: -10vh;
  width: 44vw;
  height: 44vw;
  border: 2px solid rgba(181, 135, 71, .24);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 34px rgba(255, 255, 255, .18),
    0 0 80px rgba(181, 135, 71, .22);
  animation: slowSpin 16s linear infinite;
}

.intro::after {
  content: "METEOR";
  position: absolute;
  left: 4vw;
  bottom: -34px;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: none;
  color: rgba(16, 23, 21, .045);
  font-size: clamp(88px, 18vw, 230px);
  font-weight: 900;
  line-height: 1;
  box-shadow: none;
  pointer-events: none;
  animation: none;
}

.intro > * {
  position: relative;
}

@keyframes slowSpin {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(360deg) scale(1.04); }
}

@keyframes showcaseFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.experience-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.experience-highlights span {
  position: relative;
  overflow: hidden;
  padding: 12px 15px;
  border: 1px solid rgba(24, 61, 53, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--green);
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(16, 23, 21, .08);
}

.experience-highlights span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(181, 135, 71, .26), transparent);
  transform: translateX(-120%);
  animation: badgeSweep 3.4s ease-in-out infinite;
}

.experience-highlights span:nth-child(2)::before { animation-delay: .45s; }
.experience-highlights span:nth-child(3)::before { animation-delay: .9s; }

@keyframes badgeSweep {
  0%, 40% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}

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

.stat,
.card,
.policy-grid article {
  padding: 28px;
  border: 1px solid rgba(16, 23, 21, .14);
  background: rgba(255, 255, 255, .6);
  border-radius: 8px;
}

.stat strong {
  display: block;
  color: var(--green);
  font-size: 48px;
  line-height: 1;
}

.stat {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, .72);
  background:
    linear-gradient(145deg, rgba(255,255,255,.9), rgba(245,241,232,.72));
  box-shadow: 0 22px 62px rgba(16, 23, 21, .14);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  backdrop-filter: blur(10px);
}

.stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(181, 135, 71, .16), transparent);
  transform: translateX(-120%);
  transition: transform .7s ease;
}

.stat:hover {
  border-color: rgba(181, 135, 71, .48);
  box-shadow: 0 26px 70px rgba(16, 23, 21, .15);
  transform: translateY(-8px) scale(1.02);
}

.stat:hover::before {
  transform: translateX(120%);
}

.stat-icon {
  position: absolute;
  right: 18px;
  top: 10px;
  color: rgba(24, 61, 53, .1);
  font-size: 52px;
  font-weight: 900;
  text-transform: uppercase;
}

.stat strong {
  position: relative;
  z-index: 1;
  font-size: clamp(56px, 5vw, 82px);
  text-shadow: 0 8px 28px rgba(24, 61, 53, .12);
}

.stat p {
  position: relative;
  z-index: 1;
  font-weight: 800;
}

.stat-1,
.stat-4 {
  transform: translateY(-14px);
}

.stat-2,
.stat-3 {
  transform: translateY(14px);
}

.reveal.visible .stat-1,
.reveal.visible .stat-2,
.reveal.visible .stat-3,
.reveal.visible .stat-4 {
  animation: statFloat 4.8s ease-in-out infinite;
}

.reveal.visible .stat-2 { animation-delay: .3s; }
.reveal.visible .stat-3 { animation-delay: .6s; }
.reveal.visible .stat-4 { animation-delay: .9s; }

@keyframes statFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

.motion-story {
  display: grid;
  gap: 0;
  background: var(--ink);
  color: var(--white);
}

.story-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  min-height: 92vh;
  align-items: center;
  overflow: hidden;
}

.story-panel.reverse {
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
}

.story-panel.reverse img {
  order: 2;
}

.story-panel img {
  width: 100%;
  height: 100%;
  min-height: 92vh;
  object-fit: cover;
  transform: translateY(var(--panel-shift, 0));
  transition: transform .08s linear;
}

.story-panel div {
  padding: clamp(34px, 6vw, 90px);
}

.story-panel p {
  color: rgba(255, 255, 255, .76);
}

.projects { background: var(--stone); }

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

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

.card {
  overflow: hidden;
  padding: 0;
  background: var(--white);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(16, 23, 21, .14);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card div { padding: 22px; }

.card small {
  color: var(--gold);
  font-weight: 800;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.card-features li {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(181, 135, 71, .13);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.quality {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--green);
  color: var(--white);
}

.quality p { color: rgba(255, 255, 255, .74); }

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.contact-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 44px;
  align-items: center;
  border-top: 1px solid rgba(193, 145, 78, .22);
  border-bottom: 1px solid rgba(20, 79, 66, .12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(246, 241, 231, .88)),
    radial-gradient(circle at 8% 15%, rgba(193, 145, 78, .18), transparent 34%),
    radial-gradient(circle at 90% 88%, rgba(36, 111, 93, .14), transparent 30%);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(193, 145, 78, .2);
  border-radius: 18px;
  pointer-events: none;
}

.contact-section > * {
  position: relative;
  z-index: 1;
}

.contact-copy {
  max-width: 760px;
}

.contact-copy p {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.65;
  font-weight: 700;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(20, 79, 66, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  color: var(--green);
  box-shadow: 0 12px 28px rgba(16, 23, 21, .08);
  font-size: 14px;
  font-weight: 900;
}

.footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .55fr);
  gap: 48px;
  padding: 88px 5vw 32px;
  background:
    linear-gradient(135deg, rgba(16, 23, 21, .96), rgba(24, 61, 53, .94)),
    url("../assets/images/assets-img-covers-dikencik-tepe-2.jpg") center/cover;
  color: var(--white);
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 24px 5vw auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), transparent);
}

.footer > * {
  position: relative;
}

.footer p { color: rgba(255, 255, 255, .75); }

.footer-main {
  display: grid;
  gap: 26px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 12px;
}

.footer-brand-logo {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand strong {
  display: block;
  font-size: 21px;
}

.footer-brand small {
  color: rgba(255,255,255,.68);
  font-weight: 800;
}

.footer-logo {
  flex: 0 0 auto;
  border-color: rgba(255,255,255,.22);
}

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

.footer-contact-cards a {
  min-height: 110px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
}

.footer-contact-cards small {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.footer-contact-cards strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 18px;
  line-height: 1.35;
}

.footer-side {
  display: grid;
  gap: 28px;
  align-content: start;
  justify-items: end;
}

.footer-nav {
  display: grid;
  gap: 12px;
  align-content: start;
  justify-items: end;
}

.footer-nav a {
  color: rgba(255, 255, 255, .76);
  font-weight: 800;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: 0;
  line-height: 0;
  font-weight: 900;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.62);
  font-size: 14px;
  font-weight: 800;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(20, 79, 66, .14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .86));
  box-shadow: 0 24px 70px rgba(16, 23, 21, .14);
}

.advisor-form::before {
  content: "";
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 5px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--gold), var(--green));
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(16, 23, 21, .14);
  border-radius: 10px;
  background: rgba(246, 241, 231, .72);
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(193, 145, 78, .78);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(193, 145, 78, .15);
}

textarea { min-height: 110px; resize: vertical; }

.contact-form .button {
  margin-top: 4px;
  justify-content: center;
}

.button:disabled,
.button[aria-busy="true"] {
  cursor: wait;
  opacity: .72;
  transform: none;
  box-shadow: none;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal h2,
.reveal h1,
.reveal p,
.reveal .tag,
.reveal .button,
.reveal .stat,
.reveal .card,
.reveal .plan-card {
  transition: opacity .65s ease, transform .65s ease;
}

.reveal:not(.visible) h2,
.reveal:not(.visible) h1,
.reveal:not(.visible) p,
.reveal:not(.visible) .tag,
.reveal:not(.visible) .button,
.reveal:not(.visible) .stat,
.reveal:not(.visible) .card,
.reveal:not(.visible) .plan-card {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.visible h2,
.reveal.visible h1,
.reveal.visible p,
.reveal.visible .tag,
.reveal.visible .button,
.reveal.visible .stat,
.reveal.visible .card,
.reveal.visible .plan-card {
  opacity: 1;
  transform: translateY(0);
}

.reveal.visible h2,
.reveal.visible h1 { transition-delay: .06s; }
.reveal.visible p { transition-delay: .13s; }
.reveal.visible .button,
.reveal.visible .stat,
.reveal.visible .card,
.reveal.visible .plan-card { transition-delay: .18s; }

.project-hero-detail {
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 140px 5vw 72px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 23, 21, .86), rgba(16, 23, 21, .28)),
    var(--detail-hero) center/cover;
}

.project-hero-copy {
  max-width: 980px;
}

.project-hero-copy p {
  max-width: 780px;
  color: rgba(255,255,255,.82);
}

.project-quick-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 900px;
  margin-top: 28px;
}

.project-quick-stats div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
}

.project-quick-stats small,
.plan-card small,
.other-grid small {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.project-quick-stats strong {
  display: block;
  font-size: 20px;
}

.detail-section {
  padding: 92px 5vw;
}

.detail-about {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr);
  gap: 48px;
  align-items: start;
}

.detail-gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-auto-rows: 280px;
  gap: 14px;
  padding: 0 5vw 92px;
}

.detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.detail-gallery img:first-child {
  grid-row: span 2;
}

.project-media {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: 18px;
  padding: 0 5vw 92px;
}

.media-main,
.media-more {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: var(--ink);
  box-shadow: 0 22px 70px rgba(16, 23, 21, .12);
}

.media-main {
  min-height: 640px;
}

.media-main img,
.media-more img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-main span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(16, 23, 21, .68);
  color: var(--white);
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.media-more {
  display: grid;
  grid-template-rows: 1fr 1fr;
  min-height: 640px;
  cursor: pointer;
}

.media-more::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(16, 23, 21, .38);
  backdrop-filter: blur(4px);
}

.media-more img {
  min-height: 0;
  filter: blur(2px) saturate(.92);
  transform: scale(1.03);
}

.media-more span {
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: var(--white);
  font-weight: 900;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(10px);
}

.media-categories {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
}

.media-categories button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(16, 23, 21, .14);
  border-radius: 999px;
  background: var(--white);
  color: var(--green);
  cursor: pointer;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.media-categories button:hover,
.media-categories button:focus-visible {
  background: var(--green);
  color: var(--white);
  transform: translateY(-3px);
  outline: none;
}

.split-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  background:
    radial-gradient(circle at 18% 18%, rgba(181, 135, 71, .18), transparent 30%),
    linear-gradient(135deg, #d8cebd, var(--stone));
}

.split-detail > div,
.spec-band > div,
.comments blockquote {
  padding: 28px;
  border: 1px solid rgba(16, 23, 21, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .64);
}

.split-detail > div {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  padding-top: 250px;
  box-shadow: 0 24px 70px rgba(16, 23, 21, .1);
  transition: transform .28s ease, box-shadow .28s ease;
}

.split-detail > div:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(16, 23, 21, .18);
}

.split-detail > div > img {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(1.08);
  transition: transform .5s ease;
}

.split-detail > div:hover > img {
  transform: scale(1.06);
}

.split-detail > div::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 220px;
  background: linear-gradient(180deg, rgba(16, 23, 21, .08), rgba(16, 23, 21, .5));
  z-index: 1;
}

.split-detail > div > .tag,
.split-detail > div > h2,
.split-detail > div > p,
.split-detail > div > ul,
.location-pills {
  position: relative;
  z-index: 2;
}

.detail-list,
.spec-band ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.detail-list li,
.spec-band li {
  padding: 12px;
  border-radius: 6px;
  background: rgba(24, 61, 53, .08);
  color: var(--green);
  font-weight: 800;
}

.detail-list li {
  transition: transform .2s ease, background .2s ease;
}

.detail-list li:hover {
  background: rgba(181, 135, 71, .18);
  transform: translateX(8px);
}

.location-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.location-pills span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(24, 61, 53, .1);
  color: var(--green);
  font-weight: 900;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.plan-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  align-content: end;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 18px;
  background: var(--ink);
  box-shadow: 0 26px 78px rgba(16, 23, 21, .16);
  cursor: pointer;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.plan-card:hover,
.plan-card:focus-visible {
  border-color: rgba(181, 135, 71, .8);
  box-shadow: 0 38px 100px rgba(16, 23, 21, .26);
  transform: translateY(-9px);
  outline: none;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(16,23,21,.05), rgba(16,23,21,.86)),
    radial-gradient(circle at 18% 14%, rgba(181,135,71,.24), transparent 30%);
  pointer-events: none;
}

.plan-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}

.plan-card:hover img,
.plan-card:focus-visible img {
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.06);
}

.plan-card div {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 3vw, 34px);
}

.plan-card small {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(181,135,71,.92);
  color: var(--white);
}

.plan-card h3 {
  margin-top: 14px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 46px);
  line-height: .98;
}

.plan-card p {
  color: rgba(255,255,255,.78);
  font-size: 16px;
}

.view-photos {
  display: inline-flex;
  margin-top: 16px;
  padding-bottom: 5px;
  color: var(--white);
  font-weight: 900;
  border-bottom: 2px solid rgba(181,135,71,.9);
}

.spec-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  background: var(--green);
  color: var(--white);
}

.spec-band p,
.spec-band h2,
.spec-band li {
  color: inherit;
}

.spec-band > div {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}

.spec-band li {
  background: rgba(255,255,255,.1);
}

.spec-band .clickable-spec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.spec-band .clickable-spec:hover,
.spec-band .clickable-spec:focus-visible {
  background: rgba(255,255,255,.18);
  transform: translateX(8px);
  outline: none;
}

.clickable-spec span {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(181, 135, 71, .28);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.comments {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(181,135,71,.28), transparent 30%),
    linear-gradient(135deg, rgba(16,23,21,.98), rgba(24,61,53,.94));
  color: var(--white);
}

.comments::before {
  content: "“";
  position: absolute;
  right: 6vw;
  top: 8px;
  color: rgba(255,255,255,.08);
  font-size: clamp(140px, 18vw, 260px);
  font-weight: 900;
  line-height: .8;
}

.comments > * {
  position: relative;
  z-index: 1;
}

.comments h2 {
  max-width: 900px;
  color: var(--white);
}

.comment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.comments blockquote {
  margin: 0;
  position: relative;
  min-height: 250px;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  background: rgba(255,255,255,.09);
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.comments blockquote:hover {
  border-color: rgba(181,135,71,.68);
  background: rgba(255,255,255,.13);
  transform: translateY(-6px);
}

.comments blockquote::before {
  content: "“";
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 72px;
  line-height: .7;
}

.other-projects {
  position: relative;
  overflow: hidden;
  padding-top: 64px;
  padding-bottom: 72px;
  background:
    radial-gradient(circle at 10% 18%, rgba(181,135,71,.22), transparent 28%),
    linear-gradient(135deg, #ded5c5, #cfc4b1);
}

.other-projects::before {
  content: "METEOR";
  position: absolute;
  right: 5vw;
  top: 8px;
  color: rgba(16, 23, 21, .045);
  font-size: clamp(72px, 13vw, 190px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.other-projects > * {
  position: relative;
  z-index: 1;
}

.other-projects h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(42px, 5.4vw, 86px);
  line-height: .96;
}

.other-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.other-grid a {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 16px;
  background: rgba(255,255,255,.62);
  box-shadow: 0 22px 68px rgba(16, 23, 21, .13);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.other-grid a:hover {
  border-color: rgba(181,135,71,.8);
  box-shadow: 0 34px 86px rgba(16, 23, 21, .22);
  transform: translateY(-8px);
}

.other-grid img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.other-grid a:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.06);
}

.other-grid strong,
.other-grid small {
  margin-left: 18px;
  margin-right: 18px;
}

.other-grid strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(18px, 1.45vw, 25px);
  line-height: 1.05;
}

.other-grid small {
  margin-bottom: 16px;
  color: var(--gold);
}

.other-grid a::after {
  content: "Detaylı incele";
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(24,61,53,.1);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease;
}

.other-grid a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 22px;
  pointer-events: none;
  background: rgba(16, 23, 21, .62);
  opacity: 0;
  backdrop-filter: blur(0);
  transition: opacity .24s ease, backdrop-filter .24s ease;
}

.image-lightbox.open {
  pointer-events: auto;
  opacity: 1;
  backdrop-filter: blur(12px);
}

.lightbox-open {
  overflow: hidden;
}

.lightbox-panel {
  position: relative;
  width: min(1120px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(245, 241, 232, .97), rgba(255,255,255,.92));
  box-shadow: 0 30px 90px rgba(16, 23, 21, .38);
  transform: scale(.96) translateY(18px);
  transition: transform .24s ease;
}

.image-lightbox.open .lightbox-panel {
  transform: scale(1) translateY(0);
}

.lightbox-panel p {
  max-width: 760px;
}

.lightbox-close {
  position: sticky;
  top: 0;
  float: right;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: 28px;
  z-index: 2;
}

.lightbox-stage {
  position: relative;
  display: grid;
  margin-top: 20px;
}

.lightbox-stage > img {
  width: 100%;
  height: min(58vh, 600px);
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(16, 23, 21, .16);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 23, 21, .74);
  color: var(--white);
  cursor: pointer;
  font-size: 38px;
  transform: translateY(-50%);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-counter {
  margin-top: 12px;
  color: var(--green);
  font-weight: 900;
}

.lightbox-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.lightbox-thumbs button {
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.lightbox-thumbs button.active {
  border-color: var(--gold);
}

.lightbox-thumbs img {
  width: 100%;
  height: 86px;
  object-fit: cover;
}

.project-dialog {
  width: min(1080px, calc(100vw - 32px));
  max-height: min(900px, calc(100vh - 32px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(16, 23, 21, .35);
}

.project-dialog::backdrop {
  background: rgba(16, 23, 21, .58);
}

.project-dialog img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.dialog-body {
  max-height: calc(100vh - 330px);
  padding: 28px;
  overflow: auto;
}

.dialog-body span {
  color: var(--gold);
  font-weight: 800;
}

.dialog-body dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.dialog-body dt {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.dialog-body dd {
  margin: 4px 0 0;
  font-weight: 800;
  line-height: 1.45;
}

.dialog-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.dialog-gallery img {
  height: 190px;
  border-radius: 8px;
}

.dialog-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0;
}

.dialog-detail-grid section,
.dialog-luxury,
.dialog-body dl div {
  padding: 18px;
  border: 1px solid rgba(16, 23, 21, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .58);
}

.dialog-detail-grid p {
  margin-bottom: 0;
}

.dialog-luxury ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.dialog-luxury li {
  padding: 12px;
  border-radius: 6px;
  background: rgba(24, 61, 53, .08);
  color: var(--green);
  font-weight: 800;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-size: 28px;
}

@media (max-width: 900px) {
  .intro,
  .footer,
  .contact-section,
  .section-title { grid-template-columns: 1fr; display: grid; }

  .project-grid,
  .quality,
  .policy-grid,
  .footer-contact-cards,
  .story-panel,
  .story-panel.reverse,
  .dialog-gallery,
  .dialog-detail-grid,
  .dialog-luxury ul,
  .project-quick-stats,
  .detail-about,
  .detail-gallery,
  .split-detail,
  .plan-grid,
  .spec-band,
  .comment-grid,
  .other-grid,
  .lightbox-thumbs,
  .project-media { grid-template-columns: 1fr; }

  .story-panel.reverse img {
    order: initial;
  }

  .story-panel,
  .story-panel img {
    min-height: auto;
  }

  .story-panel img {
    height: 48vh;
  }

  .intro {
    min-height: auto;
  }

  .intro::after {
    left: 22px;
    bottom: -18px;
    font-size: 74px;
  }

  .stat-1,
  .stat-2,
  .stat-3,
  .stat-4 {
    transform: none;
  }

  .split-detail > div {
    min-height: auto;
    padding-top: 220px;
  }

  .footer-side,
  .footer-nav {
    justify-items: start;
  }

  .dialog-body dl { grid-template-columns: 1fr; }

  .detail-gallery {
    grid-auto-rows: auto;
  }

  .detail-gallery img,
  .detail-gallery img:first-child,
  .media-main,
  .media-more {
    min-height: 420px;
  }

  .lightbox-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .header { padding: 16px; }

  .logo {
    gap: 10px;
  }

  .logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .logo-mark span {
    bottom: 9px;
    width: 6px;
  }

  .logo-mark span:nth-child(1) { left: 12px; height: 16px; }
  .logo-mark span:nth-child(2) { left: 20px; height: 25px; }
  .logo-mark span:nth-child(3) { left: 28px; height: 20px; }

  .logo-text strong {
    font-size: 17px;
  }

  .logo-text small {
    font-size: 10px;
    letter-spacing: 1.6px;
  }

  .hero,
  .section,
  .contact-section,
  .detail-section,
  .project-hero-detail,
  .footer {
    padding-left: 22px;
    padding-right: 22px;
  }
}

/* Final Meteor polish: original-data layout, calmer type, cleaner project pages. */
.logo {
  min-width: 150px;
  min-height: 52px;
}

.logo-image {
  width: 150px;
  max-height: 54px;
  object-fit: contain;
}

.hero {
  min-height: 92vh;
  align-items: center;
  padding: 118px 5vw 72px;
  background:
    linear-gradient(90deg, rgba(16, 23, 21, .82), rgba(16, 23, 21, .38)),
    url("../assets/images/assets-img-covers-dikencik-tepe-2.jpg") center/cover;
}

.hero-content {
  max-width: 760px;
}

.hero-brand-logo {
  width: min(280px, 64vw);
  margin-bottom: 28px;
  filter: drop-shadow(0 14px 32px rgba(0,0,0,.28));
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 6.6vw, 92px);
  line-height: 1.02;
}

.hero p {
  max-width: 760px;
  font-size: clamp(19px, 2vw, 26px);
}

.intro {
  min-height: auto;
  grid-template-columns: minmax(360px, .82fr) minmax(520px, 1fr);
  padding-top: 110px;
  padding-bottom: 110px;
  gap: 42px;
  background:
    linear-gradient(90deg, rgba(245, 241, 232, .96), rgba(245, 241, 232, .88)),
    url("../assets/images/assets-img-covers-vitalium.jpg") center/cover;
}

.intro::after {
  display: none;
}

.intro > div:first-child {
  max-width: 680px;
}

.intro h2,
.projects .section-title h2,
.detail-about h2,
.other-projects h2,
.contact-section h2,
.policy h2 {
  font-size: clamp(36px, 5vw, 76px);
  line-height: .98;
}

.stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.stat {
  min-height: 210px;
  padding: clamp(22px, 2.4vw, 34px);
}

.stat-icon {
  display: none;
}

.stat strong {
  font-size: clamp(42px, 4.1vw, 64px);
  white-space: nowrap;
}

.stat p {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.35;
}

.projects {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(181,135,71,.2), transparent 30%),
    linear-gradient(145deg, rgba(16,23,21,.96), rgba(24,61,53,.92)),
    url("../assets/images/assets-img-covers-dikencik-tepe-2.jpg") center/cover;
  color: var(--white);
}

.projects::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16,23,21,.84), rgba(16,23,21,.46)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 96px);
  pointer-events: none;
}

.projects > * {
  position: relative;
  z-index: 1;
}

.projects h2,
.projects p {
  color: inherit;
}

.projects .section-title {
  align-items: end;
  gap: 26px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: 300px 1fr;
  padding: 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .22);
  backdrop-filter: blur(12px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card:hover {
  border-color: rgba(181,135,71,.68);
  transform: translateY(-9px);
  box-shadow: 0 36px 96px rgba(0, 0, 0, .34);
}

.card-image-wrap {
  position: relative;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  filter: saturate(1.04);
  transition: transform .5s ease, filter .5s ease;
}

.card:hover img {
  filter: saturate(1.1) contrast(1.04);
  transform: scale(1.06);
}

.card-status {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(16,23,21,.68);
  color: var(--white);
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.card > div {
  padding: clamp(24px, 3vw, 38px);
}

.card h3 {
  color: var(--white);
  font-size: clamp(27px, 2.8vw, 48px);
  line-height: 1.02;
}

.card p {
  color: rgba(255,255,255,.78);
  font-size: 17px;
}

.card-features {
  gap: 8px;
}

.card-features li {
  background: rgba(255,255,255,.1);
  color: var(--white);
}

.card-link {
  display: inline-flex;
  width: max-content;
  margin-top: auto;
  padding-top: 18px;
  color: var(--gold);
  font-weight: 900;
}

.filter {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.1);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.filter.active {
  border-color: var(--gold);
}

@media (max-width: 1180px) {
  .intro,
  .stats {
    grid-template-columns: 1fr;
  }

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

}

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

  .hero h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .stats {
    gap: 14px;
  }
}

.project-hero-detail {
  min-height: 92vh;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(16, 23, 21, .86), rgba(16, 23, 21, .32)),
    var(--detail-hero) center/cover;
}

.project-hero-copy {
  max-width: 1060px;
}

.project-hero-copy h1 {
  max-width: 980px;
  font-size: clamp(48px, 8.4vw, 120px);
  line-height: .94;
}

.project-quick-stats {
  max-width: 980px;
}

.project-quick-stats div {
  padding: 22px;
  background: rgba(20, 49, 44, .44);
}

.project-quick-stats strong {
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.08;
}

.detail-about {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(245,241,232,.96), rgba(255,255,255,.96));
}

.project-media {
  background: var(--paper);
}

.media-main,
.media-more {
  min-height: 560px;
}

.media-main {
  cursor: pointer;
}

.media-main:focus-visible,
.media-more:focus-visible {
  outline: 3px solid rgba(181,135,71,.72);
  outline-offset: 4px;
}

.split-detail {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background:
    radial-gradient(circle at 18% 18%, rgba(181,135,71,.14), transparent 32%),
    linear-gradient(135deg, #eee8dc, #d8cebd);
}

.split-detail .info-card {
  min-height: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 23, 21, .12);
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 24px 72px rgba(16,23,21,.11);
}

.split-detail .info-card::before {
  display: none;
}

.split-detail .info-card > img {
  position: static;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.split-detail .info-card:hover > img {
  transform: none;
}

.info-card-body {
  padding: clamp(24px, 3.4vw, 42px);
}

.info-card-body h2 {
  margin-top: 12px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}

.info-card-body p {
  font-size: 18px;
}

.info-card-body strong {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(24,61,53,.1);
  color: var(--green);
}

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

.detail-list li {
  padding: 12px 14px;
}

.spec-band {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(13,57,48,.98), rgba(20,76,66,.95)),
    url("../assets/images/assets-images-features-features1-3.jpg") center/cover;
}

.spec-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 18%, rgba(181,135,71,.24), transparent 34%);
  pointer-events: none;
}

.spec-band > div {
  position: relative;
  padding: clamp(24px, 3.4vw, 44px);
  border-radius: 16px;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(14px);
}

.spec-band h2 {
  font-size: clamp(30px, 4.6vw, 66px);
  line-height: .98;
}

.spec-band ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.spec-band li {
  padding: 13px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,.11);
}

.map-section {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: stretch;
  background: var(--paper);
}

.map-section > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-section iframe,
.map-fallback {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(16,23,21,.13);
}

.map-fallback {
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(24,61,53,.08);
  color: var(--green);
  font-weight: 900;
  text-align: center;
}

.comments blockquote {
  border-radius: 16px;
}

.comments blockquote p {
  margin: 0;
}

.comments cite {
  display: block;
  margin-top: 18px;
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}

.footer h2 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 92px);
  line-height: .98;
}

.footer-main {
  gap: clamp(24px, 4vw, 60px);
}

.footer-brand-logo {
  width: min(220px, 58vw);
  height: auto;
  max-height: none;
}

@media (max-width: 980px) {
  .intro,
  .stats,
  .split-detail,
  .spec-band,
  .map-section {
    grid-template-columns: 1fr;
  }

  .project-media {
    grid-template-columns: 1fr;
  }

  .media-main,
  .media-more {
    min-height: 360px;
  }

  .detail-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero h1,
  .project-hero-copy h1 {
    font-size: clamp(44px, 15vw, 70px);
  }

  .project-quick-stats {
    grid-template-columns: 1fr;
  }

  .card {
    grid-template-rows: 220px 1fr;
  }

  .card img {
    height: 220px;
  }

  .footer h2 {
    font-size: 40px;
  }
}

/* Final overrides for the requested homepage/project polish. */
.hero h1 {
  font-size: clamp(46px, 6.6vw, 92px);
  line-height: 1.02;
}

.stat-icon {
  display: none !important;
}

.projects .card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

@media (min-width: 1181px) {
  .intro {
    grid-template-columns: minmax(360px, .82fr) minmax(520px, 1fr);
  }

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

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

  .other-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

}

@media (max-width: 1180px) {
  .intro,
  .stats {
    grid-template-columns: 1fr;
  }

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

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

}

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

  .other-projects {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .other-projects h2 {
    font-size: clamp(34px, 11vw, 52px);
  }

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

  .other-grid a {
    min-height: 0;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 64px);
    line-height: 1.03;
  }

  .projects {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .projects .section-title {
    display: grid;
    gap: 18px;
  }

  .projects .section-title h2 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .filters {
    margin-top: 0;
  }

  .project-grid {
    margin-top: 22px;
    gap: 18px;
  }

  .card {
    grid-template-rows: auto 1fr;
    min-height: auto;
  }

  .projects .card img {
    min-height: 220px;
    height: 220px;
  }

  .card > div {
    padding: 22px;
  }

  .card h3 {
    font-size: clamp(27px, 9vw, 36px);
  }
}

/* Final detail-page upgrades: stronger testimonials and apartment cards. */
.comments blockquote {
  border-radius: 20px;
  color: var(--white);
}

.comments blockquote p {
  color: rgba(255,255,255,.9);
}

.comments cite {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: 22px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(181,135,71,.2);
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
}

.plan-card {
  border-radius: 18px;
}

@media (max-width: 980px) {
  .plan-grid,
  .comment-grid {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: 460px;
  }
}

/* Final upgrade: team and environment presentation cards. */
.split-detail {
  position: relative;
  overflow: hidden;
  padding-top: 86px;
  padding-bottom: 92px;
  gap: 26px;
  background:
    radial-gradient(circle at 12% 18%, rgba(181,135,71,.25), transparent 30%),
    linear-gradient(135deg, rgba(16,23,21,.98), rgba(24,61,53,.92)),
    url("../assets/images/assets-img-covers-dikencik-tepe-2.jpg") center/cover;
}

.split-detail::before {
  content: "PROJE";
  position: absolute;
  right: 4vw;
  top: 18px;
  color: rgba(255,255,255,.045);
  font-size: clamp(86px, 14vw, 220px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.split-detail .info-card {
  position: relative;
  display: grid;
  grid-template-rows: 320px 1fr;
  min-height: 700px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  box-shadow: 0 32px 92px rgba(0,0,0,.26);
  backdrop-filter: blur(14px);
}

.split-detail .info-card::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  height: auto;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(16,23,21,.05) 0%, rgba(16,23,21,.2) 42%, rgba(16,23,21,.82) 100%),
    radial-gradient(circle at 15% 12%, rgba(181,135,71,.22), transparent 28%);
  pointer-events: none;
}

.split-detail .info-card > img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transition: transform .55s ease, filter .55s ease;
}

.split-detail .info-card:hover {
  border-color: rgba(181,135,71,.68);
  box-shadow: 0 42px 110px rgba(0,0,0,.34);
  transform: translateY(-8px);
}

.split-detail .info-card:hover > img {
  filter: saturate(1.16) contrast(1.08);
  transform: scale(1.06);
}

.info-card-body {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(26px, 3.6vw, 46px);
}

.info-card-body .tag {
  width: max-content;
  max-width: 100%;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(181,135,71,.18);
  color: var(--gold);
}

.info-card-body h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 4vw, 64px);
  line-height: .98;
}

.info-card-body p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 18px;
}

.info-card-body strong {
  width: max-content;
  max-width: 100%;
  margin-top: 2px;
  padding: 12px 16px;
  border: 1px solid rgba(181,135,71,.32);
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

.detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 0;
}

.detail-list li {
  position: relative;
  padding: 11px 13px 11px 30px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.detail-list li:hover {
  border-color: rgba(181,135,71,.6);
  background: rgba(181,135,71,.18);
  transform: translateY(-3px);
}

.environment-card .info-card-body {
  align-content: center;
}

.split-detail .info-card:only-child {
  grid-column: 1 / -1;
  grid-template-columns: minmax(320px, .9fr) 1fr;
  grid-template-rows: 1fr;
  min-height: 430px;
}

.split-detail .info-card:only-child > img {
  height: 100%;
  min-height: 430px;
}

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

  .split-detail .info-card {
    min-height: 0;
    grid-template-rows: 260px 1fr;
  }

  .split-detail .info-card:only-child {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 1fr;
  }

  .split-detail .info-card > img {
    height: 260px;
  }

  .split-detail .info-card:only-child > img {
    min-height: 260px;
  }
}

/* Match detail-page "Other Projects" with homepage project cards. */
.other-projects {
  position: relative;
  overflow: hidden;
  padding-top: clamp(72px, 8vw, 118px);
  padding-bottom: clamp(78px, 8vw, 124px);
  background:
    radial-gradient(circle at 8% 12%, rgba(181,135,71,.2), transparent 30%),
    linear-gradient(145deg, rgba(16,23,21,.96), rgba(24,61,53,.92)),
    url("../assets/images/assets-img-covers-dikencik-tepe-2.jpg") center/cover;
  color: var(--white);
}

.other-projects::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16,23,21,.84), rgba(16,23,21,.46)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 96px);
  pointer-events: none;
}

.other-projects > * {
  position: relative;
  z-index: 1;
}

.other-projects h2 {
  max-width: 980px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(42px, 5.2vw, 86px);
  line-height: .96;
}

.other-projects .tag {
  color: var(--gold);
}

.other-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.other-grid .card {
  min-height: 100%;
  grid-template-rows: 300px 1fr;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .22);
  backdrop-filter: blur(12px);
}

.other-grid .card::after {
  content: none;
}

.other-grid .card > div {
  padding: clamp(24px, 3vw, 38px);
}

.other-grid .card-image-wrap {
  padding: 0;
}

.other-grid .card img {
  height: 100%;
  min-height: 300px;
}

.other-grid .card small,
.other-grid .card strong {
  margin-left: 0;
  margin-right: 0;
}

.other-grid .card small {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.other-grid .card h3 {
  display: -webkit-box;
  min-height: 2.04em;
  margin: 0;
  overflow: hidden;
  color: var(--white);
  font-size: clamp(27px, 2.8vw, 48px);
  line-height: 1.02;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.other-grid .card p {
  display: -webkit-box;
  min-height: 4.5em;
  overflow: hidden;
  color: rgba(255,255,255,.78);
  font-size: 17px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.other-grid .card-features {
  gap: 8px;
}

.other-grid .card-features li {
  background: rgba(255,255,255,.1);
  color: var(--white);
}

.other-grid .card-link {
  display: inline-flex;
  width: max-content;
  margin-top: auto;
  padding-top: 18px;
  color: var(--gold);
  font-weight: 900;
}

@media (max-width: 900px) {
  .other-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .other-grid .card {
    grid-template-rows: 230px 1fr;
  }

  .other-grid .card img {
    min-height: 230px;
  }
}

/* Final fixes: dark header, stable stats, policy pages and footer policy links. */
.header,
.header.scrolled,
.menu-open .header,
.header.solid-detail {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16,23,21,.96), rgba(24,61,53,.92));
  box-shadow: 0 14px 42px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
}

.header::after {
  content: "";
  position: absolute;
  left: 5vw;
  right: 5vw;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181,135,71,.45), transparent);
}

.header .logo-image,
.header.scrolled .logo-image,
.header.solid-detail .logo-image,
.menu-open .logo-image {
  width: 168px;
  filter: brightness(0) invert(1);
}

.menu-button {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
}

.menu-button span {
  background: var(--white);
}

.stats {
  align-items: stretch;
}

.stat,
.stat-1,
.stat-2,
.stat-3,
.stat-4 {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: center;
  transform: none;
}

.reveal.visible .stat-1,
.reveal.visible .stat-2,
.reveal.visible .stat-3,
.reveal.visible .stat-4 {
  animation: none;
}

.stat strong {
  max-width: 100%;
  font-size: clamp(42px, 4.6vw, 72px);
  line-height: .96;
  overflow-wrap: anywhere;
}

.stat p {
  max-width: 100%;
  margin: 24px 0 0;
  color: rgba(16,23,21,.72);
  font-size: clamp(18px, 1.5vw, 28px);
  line-height: 1.2;
}

.policy {
  background:
    radial-gradient(circle at 12% 18%, rgba(181,135,71,.15), transparent 28%),
    linear-gradient(135deg, #f5f1e8, #ddd5c7);
}

.policy-grid {
  align-items: stretch;
}

.policy-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 16px;
  border-color: rgba(181,135,71,.28);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 24px 70px rgba(16,23,21,.12);
}

.policy-card h3 {
  margin: 0;
  color: var(--green);
  font-size: clamp(26px, 2.6vw, 42px);
  line-height: 1;
}

.policy-card p {
  margin: 0;
  color: rgba(16,23,21,.7);
  line-height: 1.72;
}

.policy-card span,
.policy-home-link {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: auto;
  padding: 12px 16px;
  border: 1px solid rgba(181,135,71,.36);
  border-radius: 999px;
  background: rgba(181,135,71,.12);
  color: var(--green);
  font-weight: 900;
}

.policy-home-link {
  margin: 0;
  color: var(--white);
  background: rgba(255,255,255,.09);
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.policy-links a {
  color: rgba(255,255,255,.78);
  font-weight: 800;
}

.policy-links a + a::before {
  content: "";
}

.policy-page {
  padding-top: 92px;
}

.policy-hero {
  display: grid;
  min-height: 46vh;
  align-items: end;
  padding: clamp(110px, 12vw, 170px) 5vw clamp(56px, 7vw, 96px);
  background:
    linear-gradient(135deg, rgba(16,23,21,.92), rgba(24,61,53,.82)),
    url("../assets/images/assets-img-covers-dikencik-tepe-2.jpg") center/cover;
  color: var(--white);
}

.policy-hero h1 {
  max-width: 980px;
  margin: 10px 0 0;
  color: var(--white);
  font-size: clamp(54px, 8vw, 132px);
  line-height: .9;
}

.policy-document {
  display: grid;
  grid-template-columns: minmax(220px, .36fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(54px, 7vw, 110px) 5vw;
  background: var(--paper);
}

.policy-document-side {
  position: sticky;
  top: 112px;
  align-self: start;
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(181,135,71,.24);
  border-radius: 18px;
  background: rgba(255,255,255,.62);
  box-shadow: 0 22px 70px rgba(16,23,21,.1);
}

.policy-document-side span {
  color: rgba(181,135,71,.85);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.policy-document-side strong {
  color: var(--green);
  font-size: clamp(26px, 3vw, 46px);
  line-height: 1;
}

.policy-document article {
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid rgba(16,23,21,.1);
  border-radius: 22px;
  background: rgba(255,255,255,.75);
  box-shadow: 0 28px 86px rgba(16,23,21,.12);
}

.policy-document p {
  margin: 0;
  color: rgba(16,23,21,.76);
  font-size: clamp(19px, 1.7vw, 27px);
  line-height: 1.72;
}

.policy-document p + p {
  margin-top: 24px;
}

.policy-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 5vw clamp(70px, 8vw, 112px);
  background: var(--paper);
}

.policy-page-links a {
  padding: 13px 17px;
  border: 1px solid rgba(24,61,53,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--green);
  font-weight: 900;
}

.policy-page-links a.active {
  border-color: rgba(181,135,71,.55);
  background: var(--gold);
  color: var(--white);
}

@media (max-width: 780px) {
  .policy-document {
    grid-template-columns: 1fr;
  }

  .policy-document-side {
    position: static;
  }

  .policy-home-link {
    display: none;
  }
}

/* 3D virtual tour showcase for project pages. */
.virtual-tour-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, .48fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  padding-top: clamp(70px, 8vw, 118px);
  padding-bottom: clamp(76px, 8vw, 126px);
  background:
    radial-gradient(circle at 14% 18%, rgba(181,135,71,.32), transparent 30%),
    radial-gradient(circle at 88% 84%, rgba(255,255,255,.14), transparent 28%),
    linear-gradient(135deg, rgba(16,23,21,.98), rgba(24,61,53,.92)),
    url("../assets/images/assets-images-background-hero-background-2.jpg") center/cover;
  color: var(--white);
}

.virtual-tour-section::before {
  content: "3D";
  position: absolute;
  right: 5vw;
  top: 18px;
  color: rgba(255,255,255,.055);
  font-size: clamp(110px, 20vw, 280px);
  font-weight: 900;
  line-height: .8;
  pointer-events: none;
}

.virtual-tour-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16,23,21,.88), rgba(16,23,21,.34)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 92px);
  pointer-events: none;
}

.virtual-tour-section > * {
  position: relative;
  z-index: 1;
}

.virtual-tour-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.virtual-tour-copy h2 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 5.8vw, 92px);
  line-height: .92;
}

.virtual-tour-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.55;
}

.virtual-tour-frame {
  position: relative;
  min-height: clamp(420px, 52vw, 690px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
  box-shadow:
    0 0 0 8px rgba(255,255,255,.05),
    0 40px 120px rgba(0,0,0,.36),
    0 0 80px rgba(181,135,71,.14);
  backdrop-filter: blur(14px);
}

.virtual-tour-frame::before {
  content: "Sanal tur alanı";
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(16,23,21,.68);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.virtual-tour-frame iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  background: var(--paper);
}

@media (max-width: 980px) {
  .virtual-tour-section {
    grid-template-columns: 1fr;
  }

  .virtual-tour-frame {
    min-height: 480px;
  }
}

@media (max-width: 620px) {
  .virtual-tour-frame {
    min-height: 380px;
    border-radius: 18px;
  }
}

/* Stat number readability fix. */
.stat strong {
  display: block;
  max-width: 100%;
  font-size: clamp(38px, 3.7vw, 58px);
  line-height: 1;
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
  font-variant-numeric: tabular-nums;
}

.stat {
  padding-left: clamp(24px, 3vw, 42px);
  padding-right: clamp(24px, 3vw, 42px);
}

/* Stronger fix for the first homepage stat so 155.000 never clips. */
.stat {
  overflow: visible;
}

.stat strong {
  width: 100%;
  padding-right: 8px;
  font-size: clamp(32px, 3.1vw, 50px);
  letter-spacing: 0;
  text-align: left;
}

.stat-1 strong {
  font-size: clamp(30px, 2.9vw, 46px);
}

/* Premium homepage policy presentation. */
.policy {
  position: relative;
  overflow: hidden;
  padding-top: clamp(82px, 9vw, 132px);
  padding-bottom: clamp(86px, 9vw, 138px);
  background:
    radial-gradient(circle at 12% 10%, rgba(181,135,71,.28), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(255,255,255,.12), transparent 32%),
    linear-gradient(135deg, rgba(16,23,21,.98), rgba(24,61,53,.94)),
    url("../assets/images/assets-img-covers-dikencik-tepe-2.jpg") center/cover;
  color: var(--white);
}

.policy::before {
  content: "POLİTİKA";
  position: absolute;
  right: 4vw;
  top: 18px;
  color: rgba(255,255,255,.045);
  font-size: clamp(72px, 13vw, 190px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.policy::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16,23,21,.82), rgba(16,23,21,.42)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 92px);
  pointer-events: none;
}

.policy > * {
  position: relative;
  z-index: 1;
}

.policy > .tag {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid rgba(181,135,71,.36);
  border-radius: 999px;
  background: rgba(181,135,71,.16);
  color: var(--gold);
}

.policy h2 {
  max-width: 1040px;
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(44px, 6vw, 102px);
  line-height: .9;
}

.policy-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: clamp(32px, 5vw, 64px);
}

.policy-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  gap: 18px;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
  color: var(--white);
  box-shadow: 0 34px 98px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.policy-card::before {
  content: "0" counter(policy-card);
  position: absolute;
  right: 24px;
  top: 22px;
  color: rgba(255,255,255,.08);
  font-size: clamp(58px, 7vw, 108px);
  font-weight: 900;
  line-height: 1;
}

.policy-grid {
  counter-reset: policy-card;
}

.policy-card {
  counter-increment: policy-card;
}

.policy-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), rgba(255,255,255,.24));
  transform: scaleX(.2);
  transform-origin: left;
  transition: transform .35s ease;
}

.policy-card:hover {
  border-color: rgba(181,135,71,.68);
  background:
    linear-gradient(145deg, rgba(255,255,255,.17), rgba(181,135,71,.08));
  box-shadow: 0 42px 120px rgba(0,0,0,.38);
  transform: translateY(-10px);
}

.policy-card:hover::after {
  transform: scaleX(1);
}

.policy-card h3 {
  max-width: 78%;
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 3.3vw, 56px);
  line-height: .95;
}

.policy-card p {
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: 16px;
  line-height: 1.72;
}

.policy-card span {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: auto;
  padding: 13px 17px;
  border: 1px solid rgba(181,135,71,.42);
  border-radius: 999px;
  background: rgba(181,135,71,.18);
  color: var(--white);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  transition: transform .24s ease, background .24s ease;
}

.policy-card:hover span {
  background: var(--gold);
  transform: translateX(4px);
}

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

  .policy-card {
    min-height: 0;
  }
}

/* Absolute final override: keep the first metric fully visible. */
.stats .stat {
  overflow: visible !important;
}

.stats .stat strong {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  font-size: clamp(30px, 2.8vw, 44px) !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

.stats .stat-1 strong {
  font-size: clamp(28px, 2.6vw, 40px) !important;
}

/* Stabilize homepage story images: no scroll drifting. */
.motion-story {
  background: var(--ink);
}

.story-panel,
.story-panel.reverse {
  min-height: auto;
  background: var(--ink);
}

.story-panel {
  align-items: stretch;
}

.story-panel img,
.story-panel.reverse img {
  order: initial;
  width: 100%;
  height: 100%;
  min-height: clamp(460px, 48vw, 720px);
  object-fit: cover;
  transform: none !important;
  transition: filter .35s ease, scale .35s ease;
}

.story-panel:hover img {
  filter: saturate(1.06) contrast(1.04);
  scale: 1.015;
}

.story-panel > div {
  display: grid;
  align-content: center;
  min-height: clamp(460px, 48vw, 720px);
}

@media (max-width: 980px) {
  .story-panel img,
  .story-panel.reverse img,
  .story-panel > div {
    min-height: auto;
  }

.story-panel img,
.story-panel.reverse img {
    height: 52vh;
  }
}

/* Clean up the 20-year experience section shadows. */
.intro {
  overflow: hidden;
}

.intro::before {
  opacity: .45;
  box-shadow:
    inset 0 0 0 20px rgba(255,255,255,.14),
    0 22px 70px rgba(181,135,71,.14);
  animation: none !important;
}

.experience-highlights span {
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(16,23,21,.1);
}

.experience-highlights span::before {
  display: none;
  animation: none;
}

.intro .stat,
.intro .stat-1,
.intro .stat-2,
.intro .stat-3,
.intro .stat-4 {
  overflow: visible !important;
  transform: none !important;
  animation: none !important;
  box-shadow: 0 18px 44px rgba(16,23,21,.11);
}

.intro .stat:hover {
  box-shadow: 0 22px 54px rgba(16,23,21,.14);
  transform: translateY(-4px) !important;
}

.intro .stat::before {
  opacity: .7;
}

/* About page: original corporate content with the demo's visual language. */
.about-cta {
  margin-top: 24px;
  width: fit-content;
}

.about-page {
  background:
    linear-gradient(180deg, rgba(12, 37, 32, .08), rgba(241, 237, 228, 1) 30%),
    var(--paper);
  color: var(--ink);
}

.about-hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  padding: 170px 5vw 80px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 24, 22, .88), rgba(8, 24, 22, .48)),
    url("../assets/images/assets-img-covers-balart-3.jpg") center / cover;
}

.about-hero > div {
  max-width: 980px;
}

.about-hero h1 {
  margin: 18px 0 24px;
  font-size: clamp(54px, 8vw, 132px);
  line-height: .9;
  color: #fff;
}

.about-hero p {
  max-width: 680px;
  color: rgba(255,255,255,.78);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.45;
}

.about-document {
  width: min(1420px, 90vw);
  margin: -54px auto 80px;
  display: grid;
  grid-template-columns: minmax(240px, .35fr) minmax(0, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.about-document aside {
  min-height: 360px;
  border-radius: 8px;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(155deg, rgba(20, 64, 55, .96), rgba(8, 24, 22, .98)),
    url("../assets/images/assets-img-covers-vitalium.jpg") center / cover;
  box-shadow: 0 30px 70px rgba(10, 25, 22, .2);
  display: grid;
  align-content: space-between;
}

.about-document aside span {
  font-size: clamp(92px, 10vw, 158px);
  line-height: .78;
  font-weight: 900;
  color: var(--gold);
}

.about-document aside strong {
  max-width: 180px;
  font-size: 24px;
  line-height: 1.08;
  text-transform: uppercase;
}

.about-document article {
  border-radius: 8px;
  padding: clamp(34px, 5vw, 72px);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(16,23,21,.12);
  box-shadow: 0 28px 80px rgba(16,23,21,.12);
}

.about-document h2 {
  margin: 8px 0 28px;
  font-size: clamp(44px, 6vw, 92px);
  line-height: .92;
}

.about-document p {
  margin: 0 0 22px;
  max-width: 980px;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.72;
  color: var(--muted);
}

.about-document p:last-child {
  margin-bottom: 0;
}

.about-mission {
  width: min(1420px, 90vw);
  margin: 0 auto 110px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-mission article {
  overflow: hidden;
  min-height: 380px;
  position: relative;
  border-radius: 8px;
  padding: clamp(34px, 4vw, 58px);
  background:
    radial-gradient(circle at 86% 12%, rgba(181,135,71,.2), transparent 34%),
    linear-gradient(145deg, rgba(20,64,55,.96), rgba(9,30,27,.98));
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 28px 70px rgba(10, 25, 22, .22);
}

.about-mission article > span {
  position: absolute;
  right: -10px;
  top: -18px;
  font-size: clamp(86px, 10vw, 150px);
  line-height: 1;
  font-weight: 900;
  color: rgba(255,255,255,.05);
}

.about-mission h2 {
  margin: 0 0 28px;
  font-size: clamp(42px, 5vw, 78px);
  color: #fff;
}

.about-mission p {
  margin: 0;
  max-width: 720px;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.65;
  color: rgba(255,255,255,.78);
}

@media (max-width: 900px) {
  .about-document,
  .about-mission {
    grid-template-columns: 1fr;
  }

  .about-document {
    margin-top: -28px;
  }

  .about-document aside {
    min-height: 220px;
  }
}

/* Final lock for homepage 20-year experience cards: no drifting shadows. */
#hakkimizda.intro {
  overflow: hidden !important;
  isolation: isolate;
}

#hakkimizda .stats {
  align-items: stretch;
  gap: 18px;
}

#hakkimizda .stat,
#hakkimizda .stat-1,
#hakkimizda .stat-2,
#hakkimizda .stat-3,
#hakkimizda .stat-4 {
  transform: translate3d(0, 0, 0) !important;
  animation: none !important;
  overflow: hidden !important;
  border: 1px solid rgba(255,255,255,.78);
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(246,243,235,.9));
  box-shadow: 0 18px 42px rgba(16,23,21,.12) !important;
  transition: border-color .25s ease, box-shadow .25s ease !important;
  will-change: auto;
}

#hakkimizda .stat:hover,
#hakkimizda .stat-1:hover,
#hakkimizda .stat-2:hover,
#hakkimizda .stat-3:hover,
#hakkimizda .stat-4:hover {
  transform: translate3d(0, 0, 0) !important;
  box-shadow: 0 18px 42px rgba(16,23,21,.12) !important;
  border-color: rgba(181,135,71,.38);
}

#hakkimizda .stat::before,
#hakkimizda .stat:hover::before {
  display: none !important;
  transform: none !important;
  animation: none !important;
}

#hakkimizda .stat-icon {
  opacity: 0 !important;
  display: none !important;
}

#hakkimizda .experience-highlights span {
  transform: none !important;
  animation: none !important;
  box-shadow: 0 8px 18px rgba(16,23,21,.08) !important;
}

/* Polished corporate about page override. */
.about-template .header.solid-detail {
  background:
    radial-gradient(circle at 24% 0, rgba(181,135,71,.16), transparent 34%),
    linear-gradient(135deg, rgba(9, 32, 28, .98), rgba(22, 66, 57, .96));
  color: #fff;
  border-bottom: 1px solid rgba(181,135,71,.24);
  box-shadow: 0 18px 50px rgba(5, 18, 16, .26);
}

.about-template .header.solid-detail .logo-image {
  filter: none;
}

.about-template .header.solid-detail .menu-button {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.38);
}

.about-template .about-page {
  padding-top: 0;
  background:
    radial-gradient(circle at 12% 24%, rgba(181,135,71,.14), transparent 30%),
    linear-gradient(180deg, #f4efe5 0, #f7f3ec 42%, #e7dfd0 100%);
}

.about-template .about-hero {
  position: relative;
  min-height: auto;
  padding: 190px 5vw 84px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 82px);
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 24, 22, .9), rgba(8, 24, 22, .62)),
    url("../assets/images/assets-img-covers-balart-3.jpg") center / cover;
}

.about-template .about-hero::after {
  content: "METEOR";
  position: absolute;
  right: 2vw;
  bottom: -28px;
  font-size: clamp(76px, 15vw, 230px);
  line-height: 1;
  font-weight: 900;
  color: rgba(255,255,255,.055);
  pointer-events: none;
}

.about-template .about-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 960px;
}

.about-template .about-hero h1 {
  margin: 18px 0 22px;
  max-width: 980px;
  font-size: clamp(48px, 7.2vw, 112px);
  line-height: .92;
  letter-spacing: 0;
  color: #fff;
}

.about-template .about-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(18px, 1.7vw, 27px);
  line-height: 1.45;
}

.about-template .about-hero-card {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  padding: clamp(28px, 4vw, 48px);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 30px 80px rgba(0,0,0,.24);
  backdrop-filter: blur(16px);
}

.about-template .about-hero-card strong {
  display: block;
  color: var(--gold);
  font-size: clamp(76px, 8vw, 132px);
  line-height: .82;
}

.about-template .about-hero-card span {
  display: block;
  margin-top: 16px;
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 900;
  line-height: 1.05;
}

.about-template .about-hero-card small {
  display: block;
  margin-top: 18px;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.5;
}

.about-template .about-document {
  margin-top: -38px;
  grid-template-columns: minmax(250px, 360px) minmax(0, 1fr);
  gap: 24px;
}

.about-template .about-document aside {
  position: sticky;
  top: 130px;
  min-height: 420px;
  background:
    linear-gradient(155deg, rgba(18, 61, 52, .94), rgba(7, 25, 22, .98)),
    url("../assets/images/assets-img-covers-vitalium.jpg") center / cover;
}

.about-template .about-document article {
  display: grid;
  gap: 22px;
  padding: clamp(34px, 4.7vw, 68px);
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(250,247,241,.82));
}

.about-template .about-document h2 {
  margin: 0;
  font-size: clamp(40px, 4.6vw, 76px);
  line-height: .96;
}

.about-template .about-document p {
  margin: 0;
  padding: 22px 24px;
  border-left: 4px solid rgba(181,135,71,.62);
  border-radius: 0 8px 8px 0;
  background: rgba(255,255,255,.56);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.7;
  color: rgba(16,23,21,.72);
}

.about-template .about-mission {
  gap: 28px;
}

.about-template .about-mission article {
  min-height: 340px;
}

@media (max-width: 980px) {
  .about-template .about-hero {
    grid-template-columns: 1fr;
    padding-top: 160px;
  }

  .about-template .about-document {
    grid-template-columns: 1fr;
  }

  .about-template .about-document aside {
    position: relative;
    top: auto;
    min-height: 240px;
  }
}

@media (max-width: 620px) {
  .about-template .about-hero {
    padding: 140px 6vw 56px;
  }

  .about-template .about-hero h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .about-template .about-document,
  .about-template .about-mission {
    width: min(100% - 28px, 1420px);
  }

  .about-template .about-document article,
  .about-template .about-document p {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Brighten the homepage quality section. */
.quality {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 104px;
  padding-bottom: 104px;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(181,135,71,.18), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(24,61,53,.1), transparent 26%),
    linear-gradient(135deg, #fffaf0 0%, #f4efe4 48%, #e8dfcf 100%) !important;
}

.quality::before {
  content: "TEKNİK";
  position: absolute;
  right: 3vw;
  top: 8px;
  z-index: -1;
  color: rgba(24,61,53,.045);
  font-size: clamp(82px, 15vw, 210px);
  line-height: 1;
  font-weight: 900;
}

.quality::after {
  content: none;
  display: none;
}

.quality .quality-card,
.quality > div {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 26px;
  border-radius: 8px;
  border: 1px solid rgba(16,23,21,.1);
  background:
    linear-gradient(160deg, rgba(255,255,255,.94), rgba(255,255,255,.66));
  box-shadow: 0 22px 58px rgba(16,23,21,.1);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  backdrop-filter: blur(10px);
}

.quality .quality-card::before,
.quality > div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 8px 0 0 8px;
  background: linear-gradient(180deg, var(--gold), rgba(181,135,71,.25));
}

.quality .quality-card:hover,
.quality > div:hover {
  transform: translateY(-8px);
  border-color: rgba(181,135,71,.34);
  box-shadow: 0 32px 78px rgba(16,23,21,.14);
}

.quality span {
  display: inline-grid;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--green), #317164);
  box-shadow: 0 12px 30px rgba(24,61,53,.22);
  font-size: 15px;
  font-weight: 900;
}

.quality h3 {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: clamp(22px, 1.7vw, 30px);
  line-height: 1.12;
}

.quality p {
  margin: 0;
  color: rgba(16,23,21,.66) !important;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.62;
}

@media (max-width: 1120px) {
  .quality {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .quality {
    grid-template-columns: 1fr;
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .quality .quality-card,
  .quality > div {
    min-height: 250px;
  }
}

/* Premium section labels, matching the policy page language. */
.hero .tag,
.story-panel .tag,
.project-hero-detail .tag,
.policy-hero .tag,
.about-hero .tag,
.footer .tag {
  color: var(--gold);
  background: rgba(181,135,71,.14);
  border-color: rgba(181,135,71,.5);
}

.section-title .tag,
.policy > .tag,
.intro .tag,
.detail-section .tag,
.project-media .tag,
.floor-plans .tag,
.other-projects .tag,
.about-document .tag {
  margin-bottom: 18px;
  color: var(--gold);
  background: rgba(181,135,71,.1);
  border-color: rgba(181,135,71,.5);
}

.section-title h2,
.policy > h2,
.other-projects > h2,
.floor-plans > h2 {
  max-width: 980px;
  font-size: clamp(48px, 7.8vw, 118px);
  line-height: .9;
  letter-spacing: 0;
}

.detail-section h2,
.about-document h2 {
  font-size: clamp(42px, 5.6vw, 88px);
  line-height: .94;
  letter-spacing: 0;
}

.project-hero-detail h1,
.policy-hero h1,
.about-hero h1 {
  letter-spacing: 0;
}

.policy-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 6.2vw, 96px) !important;
  line-height: .94;
}

.policy > h2 {
  max-width: 900px;
  font-size: clamp(42px, 6.2vw, 92px) !important;
  line-height: .94;
}

@media (max-width: 720px) {
  .tag {
    min-height: 42px;
    padding: 11px 18px;
    font-size: 12px;
  }

  .section-title h2,
  .policy > h2,
  .other-projects > h2,
  .floor-plans > h2 {
    font-size: clamp(40px, 12vw, 70px);
  }
}

/* Final projects look: clean, light and decorated without the previous heavy frame. */
.projects {
  color: var(--ink) !important;
  background:
    linear-gradient(135deg, rgba(247,242,232,.96), rgba(226,216,198,.9)),
    url("../assets/images/assets-img-covers-dikencik-tepe-2.jpg") center/cover !important;
}

.projects::before {
  background:
    linear-gradient(90deg, rgba(247,242,232,.96), rgba(247,242,232,.84) 48%, rgba(255,255,255,.62)),
    radial-gradient(circle at 12% 18%, rgba(181,135,71,.16), transparent 30%) !important;
}

.projects .section-title {
  padding: 0 0 clamp(20px, 2.5vw, 34px) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(16,23,21,.12) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.projects .section-title h2,
.projects .section-title p,
.projects h2,
.projects p {
  color: var(--ink) !important;
  text-shadow: none !important;
}

.projects .section-title p {
  color: rgba(16,23,21,.68) !important;
}

.projects .filter {
  min-width: 126px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(16,23,21,.12) !important;
  background: rgba(255,255,255,.78) !important;
  color: var(--ink) !important;
  box-shadow: 0 14px 34px rgba(16,23,21,.08), inset 0 1px 0 rgba(255,255,255,.72) !important;
}

.projects .filter.active {
  border-color: rgba(181,135,71,.72) !important;
  color: #fff !important;
  background: linear-gradient(135deg, #b58747, #d2aa6b) !important;
}

.projects .project-grid {
  gap: clamp(18px, 2vw, 28px) !important;
}

.projects .card {
  grid-template-rows: 286px 1fr !important;
  min-height: 610px !important;
  border: 1px solid rgba(16,23,21,.1) !important;
  border-radius: 8px !important;
  background: rgba(255,255,255,.9) !important;
  color: var(--ink) !important;
  box-shadow: 0 24px 70px rgba(16,23,21,.12) !important;
  backdrop-filter: none !important;
}

.projects .card::before,
.projects .card::after {
  content: none !important;
  display: none !important;
}

.projects .card:hover {
  border-color: rgba(181,135,71,.42) !important;
  transform: translateY(-8px);
  box-shadow: 0 34px 86px rgba(16,23,21,.18) !important;
}

.projects .card-image-wrap {
  min-height: 286px !important;
}

.projects .card-image-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(16,23,21,.58));
  pointer-events: none;
}

.projects .card img {
  min-height: 286px !important;
  height: 286px !important;
  filter: saturate(1.04) contrast(1.02) !important;
}

.projects .card-status {
  z-index: 2;
  border: 1px solid rgba(255,255,255,.36) !important;
  background: rgba(36,88,77,.78) !important;
  color: #fff !important;
}

.projects .card > div:not(.card-image-wrap) {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 324px !important;
  padding: clamp(22px, 2.2vw, 32px) !important;
}

.projects .card > div:not(.card-image-wrap)::before {
  content: "";
  position: absolute;
  left: clamp(22px, 2.2vw, 32px);
  right: clamp(22px, 2.2vw, 32px);
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(181,135,71,.18));
}

.projects .card small {
  padding: 0;
  border: 0;
  background: transparent !important;
  color: var(--gold) !important;
  font-size: 13px;
}

.projects .card h3 {
  color: var(--ink) !important;
  font-size: clamp(28px, 2.2vw, 40px) !important;
}

.projects .card p {
  color: rgba(16,23,21,.66) !important;
  font-size: 16px;
}

.projects .card-features li {
  border: 1px solid rgba(181,135,71,.16) !important;
  background: rgba(181,135,71,.1) !important;
  color: var(--green) !important;
}

.projects .card-link {
  justify-content: center;
  min-height: 42px;
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid rgba(181,135,71,.38);
  border-radius: 999px;
  background: rgba(181,135,71,.1);
  color: var(--green) !important;
}

.projects .card:hover .card-link {
  background: linear-gradient(135deg, #b58747, #d2aa6b);
  color: #fff !important;
}

@media (max-width: 760px) {
  .projects .card {
    min-height: 0 !important;
    grid-template-rows: 230px 1fr !important;
  }

  .projects .card-image-wrap,
  .projects .card img {
    min-height: 230px !important;
    height: 230px !important;
  }

  .projects .card > div:not(.card-image-wrap) {
    min-height: 0 !important;
  }
}

/* Match policy areas to the lighter Meteor green. */
.policy {
  background:
    radial-gradient(circle at 12% 10%, rgba(181,135,71,.22), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(255,255,255,.16), transparent 32%),
    linear-gradient(135deg, rgba(36,88,77,.96), rgba(49,113,100,.9)),
    url("../assets/images/assets-img-covers-dikencik-tepe-2.jpg") center/cover !important;
}

.policy::after {
  background:
    linear-gradient(90deg, rgba(36,88,77,.74), rgba(36,88,77,.36)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 92px) !important;
}

.policy-card {
  border-color: rgba(255,255,255,.2) !important;
  background:
    linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.07)) !important;
}

.policy-card:hover {
  background:
    linear-gradient(145deg, rgba(255,255,255,.2), rgba(181,135,71,.1)) !important;
}

.policy-hero {
  background:
    linear-gradient(135deg, rgba(36,88,77,.94), rgba(49,113,100,.82)),
    url("../assets/images/assets-img-covers-dikencik-tepe-2.jpg") center/cover !important;
}

.policy-page-links a {
  border-color: rgba(36,88,77,.22) !important;
  color: var(--green) !important;
}

.policy-document-side strong {
  color: var(--green) !important;
}

/* Compact homepage projects section. */
.projects {
  padding-top: clamp(58px, 7vw, 96px) !important;
  padding-bottom: clamp(62px, 7vw, 102px) !important;
}

.projects .section-title {
  padding-bottom: clamp(16px, 2vw, 26px) !important;
}

.projects .section-title h2 {
  font-size: clamp(34px, 4.8vw, 72px) !important;
}

.projects .project-grid {
  margin-top: 26px !important;
  gap: clamp(16px, 1.6vw, 22px) !important;
}

.projects .card {
  grid-template-rows: 220px 1fr !important;
  min-height: 500px !important;
}

.projects .card-image-wrap,
.projects .card img {
  min-height: 220px !important;
  height: 220px !important;
}

.projects .card > div:not(.card-image-wrap) {
  min-height: 280px !important;
  padding: clamp(18px, 1.8vw, 26px) !important;
}

.projects .card > div:not(.card-image-wrap)::before {
  left: clamp(18px, 1.8vw, 26px);
  right: clamp(18px, 1.8vw, 26px);
}

.projects .card h3 {
  font-size: clamp(24px, 1.9vw, 34px) !important;
}

.projects .card p {
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.projects .card-features {
  margin-top: 14px !important;
}

.projects .card-features li {
  padding: 6px 9px !important;
  font-size: 12px !important;
}

.projects .card-link {
  min-height: 38px !important;
  padding: 0 15px !important;
  font-size: 14px;
}

@media (max-width: 760px) {
  .projects .card {
    grid-template-rows: 200px 1fr !important;
  }

  .projects .card-image-wrap,
  .projects .card img {
    min-height: 200px !important;
    height: 200px !important;
  }
}

/* Alternative homepage project showcase: image-led cards with glass captions. */
.projects {
  background:
    radial-gradient(circle at 8% 8%, rgba(181,135,71,.18), transparent 28%),
    linear-gradient(135deg, #f8f3e9 0%, #e6dcc9 58%, #d9ceb8 100%) !important;
}

.projects::before {
  background:
    repeating-linear-gradient(90deg, rgba(36,88,77,.055) 0 1px, transparent 1px 112px),
    linear-gradient(90deg, rgba(255,255,255,.62), rgba(255,255,255,.18)) !important;
}

.projects .section-title {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  padding: 0 0 22px 22px !important;
  border-bottom: 0 !important;
}

.projects .section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 22px;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--green));
}

.projects .section-title h2 {
  max-width: 820px;
  font-size: clamp(38px, 5vw, 78px) !important;
}

.projects .filters {
  padding: 8px;
  border: 1px solid rgba(16,23,21,.09);
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  box-shadow: 0 16px 42px rgba(16,23,21,.08);
}

.projects .filter {
  min-width: 112px;
  min-height: 42px;
  box-shadow: none !important;
}

.projects .project-grid {
  margin-top: 30px !important;
}

.projects .card {
  position: relative;
  display: block !important;
  min-height: 390px !important;
  border: 1px solid rgba(255,255,255,.62) !important;
  border-radius: 8px !important;
  background: var(--green) !important;
  box-shadow: 0 24px 70px rgba(16,23,21,.16) !important;
}

.projects .card-image-wrap {
  position: absolute !important;
  inset: 0;
  min-height: 100% !important;
}

.projects .card-image-wrap::after {
  inset: 0;
  height: auto;
  background:
    linear-gradient(180deg, rgba(16,23,21,.05) 0%, rgba(16,23,21,.26) 42%, rgba(16,23,21,.82) 100%),
    linear-gradient(90deg, rgba(36,88,77,.18), rgba(181,135,71,.18)) !important;
}

.projects .card img {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
}

.projects .card:hover img {
  transform: scale(1.06);
  filter: saturate(1.12) contrast(1.04) !important;
}

.projects .card-status {
  left: 18px;
  top: 18px;
  background: rgba(255,255,255,.86) !important;
  color: var(--green) !important;
}

.projects .card > div:not(.card-image-wrap) {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  min-height: 0 !important;
  padding: 18px !important;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  background: rgba(16,23,21,.58);
  box-shadow: 0 18px 46px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
}

.projects .card > div:not(.card-image-wrap)::before {
  content: none;
}

.projects .card small {
  margin-bottom: 8px;
  color: #f0c98e !important;
}

.projects .card h3 {
  margin-bottom: 8px;
  color: #fff !important;
  font-size: clamp(25px, 2vw, 34px) !important;
}

.projects .card p {
  color: rgba(255,255,255,.78) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.projects .card-features {
  margin-top: 12px !important;
}

.projects .card-features li {
  border-color: rgba(255,255,255,.16) !important;
  background: rgba(255,255,255,.14) !important;
  color: #fff !important;
}

.projects .card-link {
  min-height: 34px !important;
  margin-top: 12px;
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.12);
  color: #fff !important;
}

.projects .card:hover .card-link {
  border-color: rgba(181,135,71,.7);
  background: var(--gold);
}

@media (max-width: 920px) {
  .projects .section-title {
    grid-template-columns: 1fr;
  }

  .projects .filters {
    width: max-content;
    max-width: 100%;
    border-radius: 8px;
  }
}

@media (max-width: 760px) {
  .projects .card {
    min-height: 430px !important;
  }
}

/* Slightly smaller homepage project showcase. */
.projects .project-grid {
  margin-top: 24px !important;
  gap: clamp(14px, 1.4vw, 20px) !important;
}

.projects .card {
  min-height: 340px !important;
}

.projects .card > div:not(.card-image-wrap) {
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 14px !important;
}

.projects .card-status {
  left: 14px;
  top: 14px;
  padding: 7px 10px;
  font-size: 12px;
}

.projects .card h3 {
  font-size: clamp(22px, 1.7vw, 30px) !important;
}

.projects .card p {
  font-size: 13px !important;
  line-height: 1.45 !important;
}

.projects .card-features {
  gap: 6px !important;
  margin-top: 9px !important;
}

.projects .card-features li {
  padding: 5px 8px !important;
  font-size: 11px !important;
}

.projects .card-link {
  min-height: 31px !important;
  margin-top: 9px;
  padding: 0 12px !important;
  font-size: 13px;
}

@media (max-width: 760px) {
  .projects .card {
    min-height: 380px !important;
  }
}

/* Refined projects section: restored cleaner cards, then polished lightly. */
.projects {
  color: var(--ink) !important;
  background:
    linear-gradient(135deg, rgba(247,242,232,.96), rgba(226,216,198,.9)),
    url("../assets/images/assets-img-covers-dikencik-tepe-2.jpg") center/cover !important;
}

.projects::before {
  background:
    linear-gradient(90deg, rgba(247,242,232,.96), rgba(247,242,232,.84) 48%, rgba(255,255,255,.62)),
    radial-gradient(circle at 12% 18%, rgba(181,135,71,.16), transparent 30%) !important;
}

.projects .section-title {
  padding: 0 0 clamp(20px, 2.5vw, 34px) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(16,23,21,.12) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.projects .section-title h2,
.projects .section-title p,
.projects h2,
.projects p {
  color: var(--ink) !important;
  text-shadow: none !important;
}

.projects .section-title p {
  max-width: 520px;
  color: rgba(16,23,21,.68) !important;
}

.projects .filter {
  min-width: 126px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(16,23,21,.12) !important;
  background: rgba(255,255,255,.74) !important;
  color: var(--ink) !important;
  box-shadow: 0 14px 34px rgba(16,23,21,.08), inset 0 1px 0 rgba(255,255,255,.72) !important;
  backdrop-filter: blur(10px);
}

.projects .filter:hover,
.projects .filter:focus-visible {
  border-color: rgba(181,135,71,.48) !important;
  background: rgba(255,255,255,.92) !important;
  transform: translateY(-2px);
}

.projects .filter.active {
  border-color: rgba(181,135,71,.72) !important;
  color: #fff !important;
  background: linear-gradient(135deg, #b58747, #d2aa6b) !important;
  box-shadow: 0 18px 42px rgba(181,135,71,.24) !important;
}

.projects .project-grid {
  gap: clamp(18px, 2vw, 28px) !important;
  align-items: stretch;
}

.projects .card {
  display: grid !important;
  grid-template-rows: 286px 1fr !important;
  min-height: 610px !important;
  overflow: hidden;
  border: 1px solid rgba(16,23,21,.1) !important;
  border-radius: 8px !important;
  background: rgba(255,255,255,.9) !important;
  color: var(--ink) !important;
  box-shadow: 0 24px 70px rgba(16,23,21,.12) !important;
  backdrop-filter: none !important;
}

.projects .card::before,
.projects .card::after {
  content: none !important;
  display: none !important;
}

.projects .card:hover {
  border-color: rgba(181,135,71,.42) !important;
  transform: translateY(-8px);
  box-shadow: 0 34px 86px rgba(16,23,21,.18) !important;
}

.projects .card-image-wrap {
  min-height: 286px !important;
}

.projects .card-image-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(16,23,21,.58));
  pointer-events: none;
}

.projects .card img {
  min-height: 286px !important;
  height: 286px !important;
  filter: saturate(1.04) contrast(1.02) !important;
}

.projects .card:hover img {
  transform: scale(1.045);
}

.projects .card-status {
  z-index: 2;
  left: 18px;
  top: 18px;
  border: 1px solid rgba(255,255,255,.36) !important;
  background: rgba(36,88,77,.78) !important;
  color: #fff !important;
  box-shadow: 0 12px 30px rgba(16,23,21,.18);
}

.projects .card > div:not(.card-image-wrap) {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 324px !important;
  padding: clamp(22px, 2.2vw, 32px) !important;
}

.projects .card > div:not(.card-image-wrap)::before {
  content: "";
  position: absolute;
  left: clamp(22px, 2.2vw, 32px);
  right: clamp(22px, 2.2vw, 32px);
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(181,135,71,.18));
}

.projects .card small {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-bottom: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  color: var(--gold) !important;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
}

.projects .card h3 {
  margin-bottom: 12px;
  color: var(--ink) !important;
  font-size: clamp(28px, 2.2vw, 40px) !important;
  line-height: 1.05;
}

.projects .card p {
  color: rgba(16,23,21,.66) !important;
  font-size: 16px;
}

.projects .card-features {
  margin-top: 18px;
}

.projects .card-features li {
  border: 1px solid rgba(181,135,71,.16) !important;
  background: rgba(181,135,71,.1) !important;
  color: var(--green) !important;
}

.projects .card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 42px;
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid rgba(181,135,71,.38);
  border-radius: 999px;
  background: rgba(181,135,71,.1);
  color: var(--green) !important;
  font-weight: 900;
}

.projects .card:hover .card-link {
  border-color: rgba(181,135,71,.78);
  background: linear-gradient(135deg, #b58747, #d2aa6b);
  color: #fff !important;
}

@media (max-width: 760px) {
  .projects .section-title {
    display: grid;
    gap: 18px;
  }

  .projects .card {
    min-height: 0 !important;
    grid-template-rows: 230px 1fr !important;
  }

  .projects .card-image-wrap,
  .projects .card img {
    min-height: 230px !important;
    height: 230px !important;
  }

  .projects .card > div:not(.card-image-wrap) {
    min-height: 0 !important;
  }
}

/* Homepage paired promise panels: compact side-by-side with soft photo backgrounds. */
.motion-story {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2.4vw, 34px) !important;
  padding: clamp(34px, 5vw, 72px) clamp(18px, 4.6vw, 78px) !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(181,135,71,.14), transparent 31%),
    linear-gradient(135deg, #f7f2e8, #e4dbc8) !important;
  color: var(--ink) !important;
}

.story-panel,
.story-panel.reverse {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  min-height: clamp(340px, 34vw, 470px) !important;
  border: 1px solid rgba(181,135,71,.28) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  isolation: isolate;
  background: rgba(255,255,255,.72) !important;
  box-shadow: 0 24px 70px rgba(16,23,21,.14), inset 0 1px 0 rgba(255,255,255,.72) !important;
}

.story-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(115deg, rgba(247,242,232,.74) 0%, rgba(247,242,232,.48) 52%, rgba(255,255,255,.22) 100%),
    radial-gradient(circle at 78% 20%, rgba(181,135,71,.18), transparent 34%);
}

.story-panel img,
.story-panel.reverse img {
  position: absolute !important;
  inset: 0 !important;
  order: initial !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
  opacity: .58 !important;
  filter: blur(3.5px) saturate(1.04) brightness(.98) !important;
  transform: scale(1.035) !important;
  transition: opacity .25s ease, transform .35s ease !important;
  pointer-events: none;
}

.story-panel:hover img {
  opacity: .66 !important;
  transform: scale(1.07) !important;
}

.story-panel > div {
  position: relative !important;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(28px, 4vw, 58px) !important;
  background: transparent !important;
}

.story-panel .tag {
  margin-bottom: clamp(18px, 2vw, 26px) !important;
}

.story-panel h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 4.4vw, 62px) !important;
  line-height: .96;
  color: var(--ink) !important;
}

.story-panel p {
  max-width: 640px;
  margin-top: clamp(16px, 1.9vw, 24px);
  font-size: clamp(16px, 1.35vw, 21px) !important;
  line-height: 1.65 !important;
  color: rgba(16,23,21,.7) !important;
}

@media (max-width: 980px) {
  .motion-story {
    grid-template-columns: 1fr !important;
  }
}

/* Richer homepage projects showcase. */
.projects {
  background:
    linear-gradient(135deg, rgba(10,22,20,.94), rgba(24,61,53,.9)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 1px, transparent 1px 74px),
    url("../assets/images/assets-img-covers-dikencik-tepe-2.jpg") center/cover fixed !important;
}

.projects::before {
  background:
    linear-gradient(90deg, rgba(10,22,20,.9), rgba(10,22,20,.58) 48%, rgba(181,135,71,.16)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.055) 0 1px, transparent 1px 118px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 118px) !important;
}

.projects .section-title {
  padding: clamp(18px, 2vw, 28px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.035));
  box-shadow: 0 26px 78px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
}

.projects .section-title h2 {
  max-width: 900px;
  text-shadow: 0 12px 34px rgba(0,0,0,.28);
}

.projects .section-title p {
  max-width: 520px;
  color: rgba(255,255,255,.78);
}

.projects .filter {
  min-width: 132px;
  border-radius: 999px;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 14px 34px rgba(0,0,0,.14);
}

.projects .filter:hover,
.projects .filter:focus-visible {
  border-color: rgba(181,135,71,.72);
  background: rgba(181,135,71,.22);
  transform: translateY(-2px);
}

.projects .filter.active {
  color: #fff;
  background: linear-gradient(135deg, #b98747, #d6af72);
  box-shadow: 0 18px 42px rgba(181,135,71,.24);
}

.projects .project-grid {
  gap: clamp(20px, 2vw, 30px);
  align-items: stretch;
}

.projects .card {
  grid-template-rows: 290px 1fr !important;
  min-height: 650px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.07));
  box-shadow:
    0 28px 88px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.16);
}

.projects .card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(181,135,71,.72), transparent 18%, transparent 82%, rgba(255,255,255,.2)),
    linear-gradient(180deg, rgba(255,255,255,.16), transparent 28%);
  opacity: .78;
  mix-blend-mode: screen;
}

.projects .card::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 20px;
  height: 1px;
  z-index: 3;
  background: linear-gradient(90deg, rgba(181,135,71,.9), transparent);
  pointer-events: none;
}

.projects .card:hover {
  border-color: rgba(214,175,114,.86);
  transform: translateY(-12px);
  box-shadow:
    0 42px 120px rgba(0,0,0,.36),
    0 0 0 1px rgba(181,135,71,.2);
}

.projects .card-image-wrap {
  min-height: 290px;
}

.projects .card-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,22,20,.05), rgba(10,22,20,.74)),
    linear-gradient(90deg, rgba(181,135,71,.18), transparent 48%);
  pointer-events: none;
}

.projects .card-status {
  z-index: 2;
  left: 20px;
  top: 20px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(10,22,20,.62);
  box-shadow: 0 12px 34px rgba(0,0,0,.18);
}

.projects .card > div:not(.card-image-wrap) {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: clamp(24px, 2.4vw, 34px);
}

.projects .card small {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(181,135,71,.34);
  border-radius: 999px;
  background: rgba(181,135,71,.13);
  color: #e4bd80;
  font-size: 12px;
  letter-spacing: .02em;
}

.projects .card h3 {
  margin-bottom: 14px;
  font-size: clamp(29px, 2.25vw, 42px) !important;
}

.projects .card p {
  color: rgba(255,255,255,.76);
}

.projects .card-features {
  margin-top: 22px;
}

.projects .card-features li {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}

.projects .card-link {
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid rgba(181,135,71,.5);
  border-radius: 999px;
  background: rgba(181,135,71,.16);
  color: #f5d9a8;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

.projects .card:hover .card-link {
  background: linear-gradient(135deg, #b98747, #d6af72);
  color: #fff;
}

@media (max-width: 760px) {
  .projects {
    background-attachment: scroll !important;
  }

  .projects .section-title {
    padding: 18px;
  }

  .projects .card {
    min-height: 0;
    grid-template-rows: 230px 1fr !important;
  }

  .projects .card-image-wrap {
    min-height: 230px;
  }

  .projects .card > div:not(.card-image-wrap) {
    min-height: 0;
  }
}

/* Softer Meteor green tone across the darker visual bands. */
.projects {
  background:
    linear-gradient(135deg, rgba(18,42,38,.92), rgba(36,88,77,.86)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.065) 0 1px, transparent 1px 74px),
    url("../assets/images/assets-img-covers-dikencik-tepe-2.jpg") center/cover fixed !important;
}

.projects::before {
  background:
    linear-gradient(90deg, rgba(18,42,38,.82), rgba(36,88,77,.5) 48%, rgba(181,135,71,.16)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.055) 0 1px, transparent 1px 118px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 118px) !important;
}

.project-hero-detail,
.policy,
.virtual-tour-section {
  background-color: #24584d;
}

.footer {
  background:
    linear-gradient(135deg, rgba(36,88,77,.9), rgba(18,42,38,.82)),
    url("../assets/images/assets-img-covers-dikencik-tepe-2.jpg") center/cover !important;
}

.menu,
.header.solid-detail {
  color: var(--white);
  background-color: rgba(36,88,77,.94);
}

/* Project site plan showcase. */
.site-plan-showcase {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  background:
    radial-gradient(circle at 8% 14%, rgba(181,135,71,.18), transparent 28%),
    radial-gradient(circle at 92% 86%, rgba(24,61,53,.1), transparent 26%),
    linear-gradient(135deg, #fffaf0 0%, #f4efe4 52%, #e8dfcf 100%);
}

.site-plan-showcase::before {
  content: "VAZİYET";
  position: absolute;
  right: 2vw;
  top: 10px;
  color: rgba(24,61,53,.045);
  font-size: clamp(72px, 14vw, 210px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.site-plan-copy,
.site-plan-image {
  position: relative;
  z-index: 1;
}

.site-plan-copy h2 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(42px, 5.8vw, 92px);
  line-height: .94;
}

.site-plan-copy p {
  max-width: 620px;
  color: rgba(16,23,21,.68);
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.62;
}

.site-plan-open {
  margin-top: 26px;
}

.site-plan-image {
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  min-height: clamp(380px, 46vw, 680px);
  padding: clamp(14px, 2vw, 24px);
  border: 1px solid rgba(181,135,71,.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(255,255,255,.62));
  box-shadow:
    0 28px 80px rgba(16,23,21,.14),
    inset 0 0 0 1px rgba(255,255,255,.74);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.site-plan-image:hover {
  transform: translateY(-8px);
  border-color: rgba(181,135,71,.55);
  box-shadow:
    0 38px 100px rgba(16,23,21,.18),
    0 0 70px rgba(181,135,71,.14),
    inset 0 0 0 1px rgba(255,255,255,.82);
}

.site-plan-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255,255,255,.72);
}

.site-plan-image span {
  position: absolute;
  left: 30px;
  bottom: 30px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: rgba(16,23,21,.78);
  font-weight: 900;
  backdrop-filter: blur(10px);
}

@media (max-width: 980px) {
  .site-plan-showcase {
    grid-template-columns: 1fr;
  }

  .site-plan-image {
    min-height: 360px;
  }
}

/* Final visual tuning: smaller labels, softer typography, brighter dark sections. */
.tag,
.policy > .tag,
.intro .tag,
.hero .tag,
.story-panel .tag,
.project-hero-detail .tag,
.policy-hero .tag,
.about-hero .tag,
.detail-section .tag,
.project-media .tag,
.floor-plans .tag,
.other-projects .tag,
.about-document .tag,
.footer .tag {
  width: min(280px, 100%) !important;
  min-height: 38px !important;
  justify-content: center;
  padding: 9px 16px !important;
  margin-bottom: 14px;
  border-radius: 999px;
  font-size: 12px !important;
  line-height: 1.15 !important;
  text-align: center;
  letter-spacing: 0 !important;
  white-space: normal;
}

h1 {
  font-size: clamp(46px, 8vw, 104px);
}

h2,
.section-title h2,
.policy > h2,
.other-projects > h2,
.floor-plans > h2 {
  font-size: clamp(36px, 5.8vw, 84px) !important;
  line-height: .96;
}

.detail-section h2,
.about-document h2,
.site-plan-copy h2,
.virtual-tour-copy h2 {
  font-size: clamp(34px, 4.6vw, 68px) !important;
  line-height: .98;
}

.project-hero-detail h1,
.about-template .about-hero h1,
.about-hero h1 {
  font-size: clamp(44px, 6.4vw, 92px) !important;
  line-height: .94;
}

.policy-hero h1 {
  max-width: 820px;
  font-size: clamp(36px, 5vw, 76px) !important;
  line-height: .98;
}

.policy > h2 {
  max-width: 820px;
  font-size: clamp(36px, 5vw, 74px) !important;
}

.policy-document p {
  font-size: clamp(16px, 1.15vw, 20px) !important;
  line-height: 1.68;
}

.policy-document article {
  padding: clamp(24px, 3.4vw, 44px);
}

.policy-document-side strong {
  font-size: clamp(22px, 2.3vw, 34px);
}

.story-panel,
.story-panel.reverse {
  background:
    linear-gradient(135deg, rgba(246,242,233,.96), rgba(232,224,210,.92)) !important;
  color: var(--ink);
}

.story-panel > div {
  background:
    radial-gradient(circle at 16% 18%, rgba(181,135,71,.13), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.72), rgba(255,255,255,.34));
}

.story-panel h2,
.story-panel p {
  color: var(--ink) !important;
}

.story-panel p {
  color: rgba(16,23,21,.68) !important;
}

.project-hero-detail,
.virtual-tour-section,
.footer {
  background-blend-mode: screen, normal;
}

.virtual-tour-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(181,135,71,.16), transparent 30%),
    linear-gradient(135deg, rgba(246,242,233,.96), rgba(222,213,196,.9)),
    url("../assets/images/assets-images-background-hero-background-2.jpg") center/cover !important;
  color: var(--ink);
}

.virtual-tour-section::after {
  background:
    linear-gradient(90deg, rgba(246,242,233,.9), rgba(246,242,233,.5)),
    repeating-linear-gradient(90deg, rgba(24,61,53,.05) 0 1px, transparent 1px 92px);
}

.virtual-tour-copy h2,
.virtual-tour-copy p {
  color: var(--ink) !important;
}

.virtual-tour-copy p {
  color: rgba(16,23,21,.68) !important;
}

.virtual-tour-frame {
  border-color: rgba(181,135,71,.28);
  background: rgba(255,255,255,.58);
  box-shadow: 0 28px 90px rgba(16,23,21,.14), 0 0 70px rgba(181,135,71,.12);
}

.footer {
  background:
    linear-gradient(135deg, rgba(24,61,53,.92), rgba(16,23,21,.86)),
    url("../assets/images/assets-img-covers-dikencik-tepe-2.jpg") center/cover !important;
}

@media (max-width: 720px) {
  .tag,
  .policy > .tag,
  .intro .tag,
  .hero .tag,
  .story-panel .tag,
  .project-hero-detail .tag,
  .policy-hero .tag,
  .about-hero .tag,
  .detail-section .tag,
  .project-media .tag,
  .floor-plans .tag,
  .other-projects .tag,
  .about-document .tag,
  .footer .tag {
    width: min(240px, 100%) !important;
    min-height: 34px !important;
    padding: 8px 13px !important;
    font-size: 11px !important;
  }

  h1,
  .project-hero-detail h1,
  .about-template .about-hero h1,
  .about-hero h1 {
    font-size: clamp(38px, 11vw, 62px) !important;
  }

  h2,
  .section-title h2,
  .policy > h2,
  .other-projects > h2,
  .floor-plans > h2 {
    font-size: clamp(32px, 9vw, 52px) !important;
  }
}
/* Final project cards: compact old layout with each project photo softly blurred behind text. */
.projects {
  padding-top: clamp(58px, 7vw, 92px) !important;
  padding-bottom: clamp(62px, 7vw, 96px) !important;
  color: var(--ink) !important;
  background: linear-gradient(135deg, rgba(247,242,232,.97), rgba(229,219,200,.92)) !important;
}

.projects::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(181,135,71,.12), transparent 30%),
    repeating-linear-gradient(90deg, rgba(36,88,77,.045) 0 1px, transparent 1px 118px) !important;
}

.projects .section-title {
  display: flex !important;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 22px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(16,23,21,.12) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.projects .section-title::before { content: none !important; }

.projects .section-title h2,
.projects .section-title p,
.projects h2,
.projects p {
  color: var(--ink) !important;
  text-shadow: none !important;
}

.projects .section-title p { color: rgba(16,23,21,.68) !important; }
.projects .filters { margin-top: 0; }

.projects .filter {
  min-width: 126px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(16,23,21,.12) !important;
  background: rgba(255,255,255,.78) !important;
  color: var(--ink) !important;
  box-shadow: 0 14px 34px rgba(16,23,21,.08), inset 0 1px 0 rgba(255,255,255,.72) !important;
}

.projects .filter.active {
  border-color: rgba(181,135,71,.72) !important;
  color: #fff !important;
  background: linear-gradient(135deg, #b58747, #d2aa6b) !important;
}

.projects .project-grid {
  margin-top: 28px !important;
  gap: clamp(16px, 1.7vw, 24px) !important;
}

.projects .card {
  position: relative !important;
  display: flex !important;
  min-height: 330px !important;
  overflow: hidden !important;
  border: 1px solid rgba(16,23,21,.1) !important;
  border-radius: 8px !important;
  background: var(--green) !important;
  box-shadow: 0 24px 70px rgba(16,23,21,.14) !important;
  backdrop-filter: none !important;
}

.projects .card::before,
.projects .card::after {
  content: none !important;
  display: none !important;
}

.projects .card:hover {
  transform: translateY(-7px);
  box-shadow: 0 34px 86px rgba(16,23,21,.2) !important;
}

.projects .card-image-wrap {
  position: absolute !important;
  inset: 0 !important;
  min-height: 100% !important;
  overflow: hidden !important;
}

.projects .card-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  height: auto !important;
  background:
    linear-gradient(180deg, rgba(16,23,21,.2), rgba(16,23,21,.64)),
    linear-gradient(90deg, rgba(36,88,77,.35), rgba(181,135,71,.12)) !important;
}

.projects .card img {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  filter: blur(2px) saturate(1.04) brightness(.9) !important;
  transform: scale(1.035) !important;
}

.projects .card:hover img {
  filter: blur(1.2px) saturate(1.1) brightness(.96) !important;
  transform: scale(1.07) !important;
}

.projects .card-status {
  left: 16px !important;
  top: 16px !important;
  z-index: 3 !important;
  padding: 7px 10px !important;
  border: 1px solid rgba(255,255,255,.34) !important;
  background: rgba(255,255,255,.86) !important;
  color: var(--green) !important;
  font-size: 12px !important;
}

.projects .card > div:not(.card-image-wrap) {
  position: relative !important;
  inset: auto !important;
  z-index: 2;
  display: flex !important;
  width: 100%;
  min-height: 330px !important;
  flex-direction: column;
  justify-content: flex-end;
  padding: 78px 20px 20px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.projects .card > div:not(.card-image-wrap)::before { content: none !important; }

.projects .card small {
  margin-bottom: 8px;
  color: #e9bd78 !important;
  font-size: 12px !important;
  text-shadow: 0 2px 12px rgba(0,0,0,.32);
}

.projects .card h3 {
  margin-bottom: 10px;
  color: #fff !important;
  font-size: clamp(23px, 1.9vw, 32px) !important;
  line-height: 1.05;
  text-shadow: 0 3px 18px rgba(0,0,0,.35);
}

.projects .card p {
  max-width: 94%;
  color: rgba(255,255,255,.86) !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

.projects .card-features {
  margin-top: 14px !important;
  gap: 7px !important;
}

.projects .card-features li {
  border: 1px solid rgba(255,255,255,.18) !important;
  background: rgba(255,255,255,.13) !important;
  color: #fff !important;
  backdrop-filter: blur(8px);
}

.projects .card-link {
  width: max-content;
  min-height: 36px !important;
  margin-top: 14px;
  padding: 0 14px !important;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  color: #fff !important;
  backdrop-filter: blur(8px);
}

.projects .card:hover .card-link {
  border-color: rgba(181,135,71,.7);
  background: var(--gold);
}

@media (max-width: 920px) {
  .projects .section-title { display: grid !important; }
}

@media (max-width: 760px) {
  .projects .card,
  .projects .card > div:not(.card-image-wrap) {
    min-height: 320px !important;
  }
}

/* Compact project detail pages: smaller media, architect/location cards and spec areas. */
.project-hero-detail {
  min-height: 72vh !important;
  padding-top: clamp(96px, 10vw, 138px) !important;
  padding-bottom: clamp(42px, 6vw, 72px) !important;
}

.project-hero-detail h1,
.project-hero-copy h1 {
  max-width: 860px !important;
  font-size: clamp(40px, 6vw, 82px) !important;
  line-height: .98 !important;
}

.project-quick-stats {
  max-width: 860px !important;
  gap: 12px !important;
}

.project-quick-stats div {
  min-height: 92px !important;
  padding: 16px 18px !important;
}

.project-quick-stats strong {
  font-size: clamp(20px, 2.1vw, 30px) !important;
}

.detail-section,
.project-media,
.split-detail,
.spec-band,
.map-section,
.floor-plans,
.other-projects {
  padding-top: clamp(48px, 6vw, 78px) !important;
  padding-bottom: clamp(52px, 6vw, 82px) !important;
}

.detail-section h2,
.info-card-body h2,
.spec-band h2,
.floor-plans > h2,
.map-section h2 {
  font-size: clamp(28px, 3.6vw, 52px) !important;
  line-height: 1.02 !important;
}

.detail-section p,
.info-card-body p,
.spec-band p,
.map-section p {
  font-size: clamp(15px, 1.15vw, 18px) !important;
  line-height: 1.62 !important;
}

.project-media {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .8fr) !important;
  gap: clamp(14px, 2vw, 24px) !important;
}

.media-main,
.media-more {
  min-height: clamp(300px, 38vw, 460px) !important;
  border-radius: 8px !important;
}

.media-more {
  gap: 14px !important;
}

.media-more img {
  min-height: clamp(136px, 17vw, 216px) !important;
}

.media-categories {
  gap: 8px !important;
}

.media-categories button {
  min-height: 36px !important;
  padding: 0 12px !important;
  font-size: 13px !important;
}

.split-detail {
  gap: clamp(16px, 2vw, 24px) !important;
}

.split-detail .info-card {
  border-radius: 8px !important;
  box-shadow: 0 18px 48px rgba(16,23,21,.1) !important;
}

.split-detail .info-card > img,
.split-detail .info-card:only-child > img {
  height: clamp(170px, 20vw, 230px) !important;
}

.info-card-body,
.environment-card .info-card-body {
  padding: clamp(18px, 2.4vw, 30px) !important;
}

.info-card-body strong {
  margin-top: 12px !important;
  padding: 8px 12px !important;
  font-size: 14px !important;
}

.detail-list,
.location-pills,
.spec-band ul {
  gap: 8px !important;
  margin-top: 14px !important;
}

.detail-list li,
.spec-band li,
.location-pills span {
  padding: 9px 11px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

.spec-band {
  gap: clamp(16px, 2vw, 24px) !important;
}

.spec-band > div {
  padding: clamp(18px, 2.4vw, 30px) !important;
  border-radius: 8px !important;
}

.spec-band .clickable-spec {
  gap: 10px !important;
}

.map-section {
  grid-template-columns: minmax(0, .72fr) minmax(300px, .95fr) !important;
  gap: clamp(16px, 2vw, 24px) !important;
}

.map-section iframe,
.map-fallback {
  min-height: clamp(280px, 34vw, 380px) !important;
  border-radius: 8px !important;
}

.plan-grid {
  gap: clamp(14px, 1.8vw, 22px) !important;
}

.plan-card {
  min-height: clamp(340px, 36vw, 440px) !important;
  border-radius: 8px !important;
}

.plan-card div {
  padding: clamp(18px, 2.4vw, 28px) !important;
}

.plan-card h3 {
  font-size: clamp(24px, 2.4vw, 36px) !important;
}

.site-plan-showcase {
  min-height: auto !important;
  grid-template-columns: minmax(0, .7fr) minmax(300px, .9fr) !important;
  gap: clamp(18px, 3vw, 38px) !important;
}

.site-plan-image {
  min-height: clamp(300px, 38vw, 460px) !important;
}

@media (max-width: 980px) {
  .project-media,
  .split-detail,
  .spec-band,
  .map-section,
  .site-plan-showcase {
    grid-template-columns: 1fr !important;
  }

  .project-hero-detail {
    min-height: 66vh !important;
  }
}

/* Match project detail "Other Projects" cards to the homepage projects design. */
.other-projects {
  color: var(--ink) !important;
  background: linear-gradient(135deg, rgba(247,242,232,.97), rgba(229,219,200,.92)) !important;
}

.other-projects::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(181,135,71,.12), transparent 30%),
    repeating-linear-gradient(90deg, rgba(36,88,77,.045) 0 1px, transparent 1px 118px) !important;
}

.other-projects > h2 {
  color: var(--ink) !important;
  text-shadow: none !important;
}

.other-projects .tag {
  border-color: rgba(181,135,71,.42) !important;
  background: rgba(255,255,255,.58) !important;
  color: var(--gold) !important;
  box-shadow: none !important;
}

.other-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(16px, 1.7vw, 24px) !important;
  margin-top: 28px !important;
}

.other-grid .card {
  position: relative !important;
  display: flex !important;
  min-height: 330px !important;
  overflow: hidden !important;
  border: 1px solid rgba(16,23,21,.1) !important;
  border-radius: 8px !important;
  background: var(--green) !important;
  box-shadow: 0 24px 70px rgba(16,23,21,.14) !important;
  backdrop-filter: none !important;
}

.other-grid .card::before,
.other-grid .card::after {
  content: none !important;
  display: none !important;
}

.other-grid .card:hover {
  transform: translateY(-7px) !important;
  box-shadow: 0 34px 86px rgba(16,23,21,.2) !important;
}

.other-grid .card-image-wrap {
  position: absolute !important;
  inset: 0 !important;
  min-height: 100% !important;
  overflow: hidden !important;
}

.other-grid .card-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  height: auto !important;
  background:
    linear-gradient(180deg, rgba(16,23,21,.2), rgba(16,23,21,.64)),
    linear-gradient(90deg, rgba(36,88,77,.35), rgba(181,135,71,.12)) !important;
}

.other-grid .card img {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  filter: blur(2px) saturate(1.04) brightness(.9) !important;
  transform: scale(1.035) !important;
}

.other-grid .card:hover img {
  filter: blur(1.2px) saturate(1.1) brightness(.96) !important;
  transform: scale(1.07) !important;
}

.other-grid .card-status {
  position: absolute !important;
  left: 16px !important;
  top: 16px !important;
  z-index: 3 !important;
  padding: 7px 10px !important;
  border: 1px solid rgba(255,255,255,.34) !important;
  background: rgba(255,255,255,.86) !important;
  color: var(--green) !important;
  font-size: 12px !important;
}

.other-grid .card > div:not(.card-image-wrap) {
  position: relative !important;
  inset: auto !important;
  z-index: 2;
  display: flex !important;
  width: 100%;
  min-height: 330px !important;
  flex-direction: column;
  justify-content: flex-end;
  padding: 78px 20px 20px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.other-grid .card > div:not(.card-image-wrap)::before { content: none !important; }

.other-grid .card small {
  margin-bottom: 8px;
  color: #e9bd78 !important;
  font-size: 12px !important;
  text-shadow: 0 2px 12px rgba(0,0,0,.32);
}

.other-grid .card h3 {
  margin-bottom: 10px;
  color: #fff !important;
  font-size: clamp(23px, 1.9vw, 32px) !important;
  line-height: 1.05;
  text-shadow: 0 3px 18px rgba(0,0,0,.35);
}

.other-grid .card p {
  max-width: 94%;
  color: rgba(255,255,255,.86) !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

.other-grid .card-features {
  margin-top: 14px !important;
  gap: 7px !important;
}

.other-grid .card-features li {
  border: 1px solid rgba(255,255,255,.18) !important;
  background: rgba(255,255,255,.13) !important;
  color: #fff !important;
  backdrop-filter: blur(8px);
}

.other-grid .card-link {
  width: max-content;
  min-height: 36px !important;
  margin-top: 14px;
  padding: 0 14px !important;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  color: #fff !important;
  backdrop-filter: blur(8px);
}

.other-grid .card:hover .card-link {
  border-color: rgba(181,135,71,.7);
  background: var(--gold);
}

@media (max-width: 980px) {
  .other-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .other-grid {
    grid-template-columns: 1fr !important;
  }

  .other-grid .card,
  .other-grid .card > div:not(.card-image-wrap) {
    min-height: 320px !important;
  }
}

/* Keep detail-page "Other Projects" cards filled like homepage project cards. */
.other-grid .card {
  border: 0 !important;
  background: transparent !important;
  height: 330px !important;
}

.other-grid .card-image-wrap {
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
}

.other-grid .card-image-wrap img,
.other-grid .card img {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
}

.other-grid .card > div:not(.card-image-wrap) {
  height: 330px !important;
  min-height: 330px !important;
}

/* Remove the green edge visible around blurred homepage project photos. */
.projects .card {
  border: 0 !important;
  background: transparent !important;
  height: 330px !important;
}

.projects .card-image-wrap {
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
}

.projects .card-image-wrap img,
.projects .card img {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
}

.projects .card > div:not(.card-image-wrap) {
  height: 330px !important;
  min-height: 330px !important;
}

/* Keep homepage and detail-page project cards visually identical and prevent text drift. */
.projects .card,
.other-grid .card {
  height: 330px !important;
  min-height: 330px !important;
  border: 0 !important;
  background: transparent !important;
}

.projects .card > div:not(.card-image-wrap),
.other-grid .card > div:not(.card-image-wrap) {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  height: 330px !important;
  min-height: 330px !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  overflow: hidden !important;
  padding: 78px 20px 20px !important;
}

.projects .card small,
.other-grid .card small {
  display: block !important;
  min-height: 15px !important;
  margin: 0 0 8px !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
}

.projects .card h3,
.other-grid .card h3 {
  display: -webkit-box !important;
  min-height: 50px !important;
  max-height: 68px !important;
  margin: 0 0 10px !important;
  overflow: hidden !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: clamp(23px, 1.9vw, 32px) !important;
  line-height: 1.05 !important;
}

.projects .card p,
.other-grid .card p {
  display: -webkit-box !important;
  max-width: 94% !important;
  min-height: 44px !important;
  max-height: 44px !important;
  margin: 0 !important;
  overflow: hidden !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

.projects .card-features,
.other-grid .card-features {
  display: flex !important;
  min-height: 29px !important;
  max-height: 64px !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  overflow: hidden !important;
  margin: 14px 0 0 !important;
}

.projects .card-link,
.other-grid .card-link {
  flex: 0 0 auto !important;
  width: max-content !important;
  min-height: 36px !important;
  margin-top: 14px !important;
}

/* Mobile polish: keep location chips aligned and project filters inside the screen. */
.environment-card .detail-list {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr)) !important;
  align-items: stretch !important;
  gap: 8px !important;
}

.environment-card .detail-list li {
  display: flex !important;
  min-height: 42px !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  hyphens: auto !important;
}

.environment-card .detail-list li:hover {
  transform: none !important;
}

@media (max-width: 720px) {
  .projects .section-title {
    gap: 16px !important;
    align-items: stretch !important;
  }

  .projects .filters {
    display: grid !important;
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    padding: 6px !important;
    overflow: visible !important;
  }

  .projects .filter {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 40px !important;
    padding: 0 6px !important;
    white-space: nowrap !important;
    font-size: clamp(11px, 3.1vw, 13px) !important;
    line-height: 1.1 !important;
  }
}

@media (max-width: 520px) {
  .environment-card .detail-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .environment-card .detail-list li {
    min-height: 38px !important;
    padding: 8px 7px !important;
    font-size: 12px !important;
    line-height: 1.22 !important;
  }

  .projects .filters {
    gap: 6px !important;
    padding: 5px !important;
  }

  .projects .filter {
    min-height: 38px !important;
    padding: 0 4px !important;
    letter-spacing: 0 !important;
  }
}

/* Mobile alignment for detail-page "Other Projects" feature chips and CTA. */
@media (max-width: 640px) {
  .other-grid .card-features {
    align-items: center !important;
    min-height: 28px !important;
    max-height: 62px !important;
    gap: 6px !important;
  }

  .other-grid .card-features li {
    display: inline-flex !important;
    min-height: 27px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 10px !important;
    text-align: center !important;
    font-size: 12px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .other-grid .card-link {
    display: inline-flex !important;
    min-height: 34px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 14px !important;
    font-size: 13px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 390px) {
  .other-grid .card-features li {
    min-height: 26px !important;
    padding: 0 8px !important;
    font-size: 11.5px !important;
  }

  .other-grid .card-link {
    min-height: 32px !important;
    padding: 0 12px !important;
    font-size: 12.5px !important;
  }
}

/* Responsive project filters: roomy on desktop, compact but complete on phones. */
@media (min-width: 721px) {
  .projects .section-title {
    display: flex !important;
    align-items: end !important;
    justify-content: space-between !important;
  }

  .projects .filters {
    display: inline-flex !important;
    width: max-content !important;
    max-width: none !important;
    flex: 0 0 auto !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    padding: 8px !important;
    overflow: visible !important;
  }

  .projects .filter {
    width: auto !important;
    min-width: 126px !important;
    min-height: 44px !important;
    padding: 0 20px !important;
    font-size: 14px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 720px) {
  .projects .section-title {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .projects .filters {
    box-sizing: border-box !important;
    display: grid !important;
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 7px !important;
    padding: 6px !important;
  }

  .projects .filter {
    box-sizing: border-box !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 40px !important;
    padding: 0 5px !important;
    overflow: hidden !important;
    font-size: clamp(10.5px, 2.95vw, 13px) !important;
    line-height: 1.05 !important;
    text-align: center !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 360px) {
  .projects .filters {
    gap: 5px !important;
    padding: 5px !important;
  }

  .projects .filter {
    min-height: 36px !important;
    padding: 0 3px !important;
    font-size: 10px !important;
  }
}

/* About page without the 20 years experience card. */
.about-template .about-hero {
  grid-template-columns: minmax(0, 1fr) !important;
}

.about-template .about-hero-copy {
  max-width: 1060px !important;
}

.about-template .about-document.about-document-full {
  grid-template-columns: minmax(0, 1fr) !important;
  max-width: min(1180px, 90vw) !important;
}

.about-template .about-document.about-document-full article {
  grid-column: 1 / -1 !important;
}
