/* =========================================================
   MAKS İNŞAAT — Tasarım Sistemi
   ========================================================= */

:root {
  --bg: #0F0F0F;
  --bg-2: #161616;
  --bg-3: #1C1C1C;
  --line: rgba(245, 241, 234, 0.10);
  --line-strong: rgba(245, 241, 234, 0.22);
  --fg: #F5F1EA;
  --muted: #B8B2A8;
  --muted-2: #8A857C;
  --accent: #C6A15B;
  --accent-2: #B88A44;
  --light: #F3EFE7;
  --light-2: #E8E2D4;

  --serif: 'Cormorant Garamond', 'Cormorant', 'Times New Roman', serif;
  --sans: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;

  --container: 1440px;
  --pad-x: clamp(20px, 5vw, 80px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.55, 0, 0.6, 0.2);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { overflow-x: hidden; }

img { display: block; max-width: 100%; }

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

::selection { background: var(--accent); color: #111; }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.section-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
}

.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 7vw, 120px);
  line-height: 0.98;
  letter-spacing: -0.01em;
}
.h-display em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}

.h-section {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.005em;
  margin: 0;
}
.h-section em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}

.lede {
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.65;
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

/* ---------- Buttons ---------- */
.btn {
  --bg-c: transparent;
  --fg-c: var(--fg);
  --bd-c: var(--line-strong);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  background: var(--bg-c);
  color: var(--fg-c);
  border: 1px solid var(--bd-c);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: color 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease);
}
.btn .arrow {
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.4s var(--ease);
}
.btn .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btn:hover .arrow { width: 28px; }

.btn--primary {
  --bg-c: var(--accent);
  --fg-c: #111;
  --bd-c: var(--accent);
}
.btn--primary:hover {
  --bg-c: transparent;
  --fg-c: var(--accent);
}
.btn--ghost:hover {
  --bd-c: var(--accent);
  --fg-c: var(--accent);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  padding: 22px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  padding: 14px 0;
  border-bottom-color: var(--line);
}
.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--fg);
}
.brand__mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--fg);
  border-radius: 2px;
  flex-shrink: 0;
  overflow: hidden;
}
.brand__mark img { width: 86%; height: auto; filter: contrast(1.1); }
.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}
.brand__name strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.brand__name span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--muted-2);
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  position: relative;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--fg);
  font-weight: 400;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav a:hover::after,
.nav a.is-active::after { transform: scaleX(1); }
.nav a.is-active { color: var(--accent); }

.social {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.social a:hover { color: var(--accent); border-color: var(--line); }
.social svg { width: 16px; height: 16px; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--fg);
  position: relative;
}
.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1px;
  background: var(--fg);
  transition: transform 0.3s var(--ease);
}
.hamburger span::before { top: -6px; }
.hamburger span::after  { top: 6px; }
.hamburger.is-open span { background: transparent; }
.hamburger.is-open span::before { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span::after  { transform: translateY(-6px) rotate(-45deg); }

/* mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 70;
  display: none;
  padding: 100px var(--pad-x) 40px;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.mobile-nav.is-open { display: flex; opacity: 1; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 32px;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.mobile-nav a.is-active { color: var(--accent); }
.mobile-nav__social {
  margin-top: auto;
  display: flex;
  gap: 4px;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding-top: 100px;
  padding-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.site-footer .watermark {
  position: absolute;
  left: 50%;
  bottom: -38px;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(120px, 22vw, 320px);
  color: rgba(245, 241, 234, 0.025);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.02em;
  line-height: 1;
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a, .footer-col p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--fg); }
.footer-brand p {
  margin-top: 18px;
  max-width: 32ch;
  font-size: 14px;
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 12px;
  color: var(--muted-2);
  font-family: var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 14px;
}

/* =========================================================
   Logo Reveal Intro
   ========================================================= */
.intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: grid;
  place-items: center;
  pointer-events: all;
}
.intro__inner {
  display: grid;
  place-items: center;
  gap: 28px;
  text-align: center;
}
.intro__mark {
  width: 92px;
  height: 92px;
  background: var(--fg);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(8px) scale(0.95);
  animation: intro-mark 1.2s var(--ease) 0.1s forwards;
  border-radius: 2px;
  overflow: hidden;
}
.intro__mark img { width: 80%; }
.intro__name {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.04em;
  font-weight: 400;
  opacity: 0;
  transform: translateY(8px);
  animation: intro-text 0.9s var(--ease) 0.7s forwards;
}
.intro__name em { font-style: italic; color: var(--accent); font-weight: 300; }
.intro__line {
  width: 0;
  height: 1px;
  background: var(--accent);
  animation: intro-line 1.2s var(--ease) 1.0s forwards;
}
.intro__sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--muted-2);
  text-transform: uppercase;
  opacity: 0;
  animation: intro-text 0.8s var(--ease) 1.2s forwards;
}
.intro.is-leaving {
  animation: intro-leave 0.9s var(--ease) forwards;
}

@keyframes intro-mark {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes intro-text {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes intro-line {
  to { width: 220px; }
}
@keyframes intro-leave {
  to { opacity: 0; transform: translateY(-20px); pointer-events: none; visibility: hidden; }
}

.intro--off { display: none; }

/* =========================================================
   Reveal animations on scroll
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="fade"] { transform: none; }
[data-reveal="fade"].is-in { transform: none; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
  animation: hero-zoom 14s var(--ease) forwards;
}
@keyframes hero-zoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,15,15,0.55) 0%, rgba(15,15,15,0.20) 30%, rgba(15,15,15,0.45) 70%, rgba(15,15,15,0.92) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(15,15,15,0.0) 0%, rgba(15,15,15,0.5) 100%);
}
.hero__top {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding-top: 110px;
  padding-inline: var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  pointer-events: none;
}
.hero__top .eyebrow { pointer-events: all; }
.hero__top .meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  text-align: right;
  line-height: 1.7;
}
.hero__top .meta b { color: var(--fg); font-weight: 500; }

.hero__content {
  padding: 0 var(--pad-x) clamp(60px, 10vh, 130px);
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero__title {
  margin: 0 0 28px;
  max-width: 14ch;
}
.hero__lede {
  max-width: 50ch;
  margin: 0 0 40px;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.7;
  color: rgba(245, 241, 234, 0.85);
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  left: var(--pad-x);
  bottom: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}
.hero__scroll::before {
  content: "";
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  animation: scroll-line 2.4s var(--ease) infinite;
}
@keyframes scroll-line {
  0%   { transform: translateY(-12px); opacity: 0; }
  35%  { opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

.hero__counter {
  position: absolute;
  right: var(--pad-x);
  bottom: 30px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
  z-index: 3;
}
.hero__counter b { color: var(--fg); font-weight: 500; font-size: 24px; font-family: var(--serif); }

/* =========================================================
   Generic section
   ========================================================= */
section { position: relative; }

.section-pad   { padding: clamp(80px, 12vw, 160px) 0; }
.section-pad-s { padding: clamp(60px, 8vw, 110px) 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}
.section-head__left { display: grid; gap: 18px; }
.section-head__right { color: var(--muted); max-width: 50ch; justify-self: end; }

/* =========================================================
   Yaşam Alanları (3 kategori)
   ========================================================= */
.living {
  background: var(--bg);
  position: relative;
}
.living__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cat-card {
  position: relative;
  display: block;
  padding: 30px 30px 36px;
  border-right: 1px solid var(--line);
  cursor: pointer;
  overflow: hidden;
  background: var(--bg);
  transition: background 0.6s var(--ease);
  text-align: left;
  width: 100%;
  color: inherit;
}
.cat-card:last-child { border-right: 0; }
.cat-card__num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.18em;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.cat-card__num span:last-child { color: var(--muted-2); }
.cat-card__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  margin-bottom: 26px;
}
.cat-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,15,15,0.6) 100%);
  pointer-events: none;
}
.cat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.cat-card:hover .cat-card__media img { transform: scale(1.06); }
.cat-card__title {
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 40px);
  font-weight: 400;
  margin: 0 0 12px;
  line-height: 1.05;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.cat-card__title em { font-style: italic; color: var(--accent); font-weight: 300; }
.cat-card__title .plus {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  border: 1px solid var(--line-strong);
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 999px;
  flex-shrink: 0;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.cat-card:hover .cat-card__title .plus {
  background: var(--accent);
  color: #111;
  border-color: var(--accent);
}
.cat-card__desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 32ch;
}
.cat-card__count {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted-2);
  text-transform: uppercase;
}
.cat-card__count::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--accent);
}

/* =========================================================
   Hakkımızda (özet)
   ========================================================= */
.about {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.about__watermark {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(160px, 26vw, 380px);
  color: rgba(245, 241, 234, 0.025);
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}
.about__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(245,241,234,0.15);
  pointer-events: none;
  transform: translate(20px, 20px);
}
.about__copy { display: grid; gap: 28px; max-width: 50ch; }
.about__copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}
.about__sign {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.about__sign strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  color: var(--accent);
}
.about__sign span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted-2);
  text-transform: uppercase;
}

/* =========================================================
   Vizyon & Misyon
   ========================================================= */
.vm__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
}
.vm__card {
  padding: clamp(40px, 5vw, 70px);
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: background 0.6s var(--ease);
}
.vm__card:last-child { border-right: 0; }
.vm__card:hover { background: var(--bg-2); }
.vm__card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.7s var(--ease);
}
.vm__card:hover::before { transform: scaleX(1); }
.vm__card__num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.18em;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.vm__card__num::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.vm__card h3 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  margin: 0 0 24px;
  line-height: 1.05;
}
.vm__card h3 em { font-style: italic; color: var(--accent); font-weight: 300; }
.vm__card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  max-width: 42ch;
}

/* =========================================================
   Slogan band
   ========================================================= */
.band {
  position: relative;
  padding: clamp(120px, 18vw, 200px) 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.band__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.band__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.4) contrast(1.1) saturate(0.9);
}
.band__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,15,15,0.75) 0%, rgba(15,15,15,0.55) 50%, rgba(15,15,15,0.85) 100%);
}
.band__inner { text-align: center; max-width: none; margin: 0 auto; padding: 0 20px; }
.band h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 3.4vw, 48px);
  line-height: 1.2;
  margin: 28px 0 0;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.band h2 em { color: var(--accent); }

/* =========================================================
   Değerler
   ========================================================= */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.value {
  padding: 50px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  align-content: start;
  transition: background 0.5s var(--ease);
  position: relative;
}
.value:hover { background: var(--bg-2); }
.value:nth-child(3n) { border-right: 0; }
.value__num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.18em;
}
.value h4 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
}
.value p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  max-width: 36ch;
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 14vw, 160px) 0;
}
.cta__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.cta__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.32) saturate(0.85);
}
.cta__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,15,15,0.85), rgba(15,15,15,0.55));
}
.cta__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
}
.cta__copy h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  margin: 24px 0 28px;
  font-weight: 400;
  max-width: 18ch;
}
.cta__copy h2 em { font-style: italic; color: var(--accent); font-weight: 300; }
.cta__copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 50ch;
  margin: 0 0 32px;
}
.cta__copy .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta__contact {
  display: grid;
  gap: 18px;
  border-left: 1px solid var(--line-strong);
  padding-left: 40px;
}
.cta__contact .row {
  display: grid;
  gap: 4px;
}
.cta__contact .row .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.cta__contact .row .val {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

/* =========================================================
   Lightbox
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 150;
  display: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.lightbox.is-open { display: block; }
.lightbox.is-visible { opacity: 1; }
.lightbox__top {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px var(--pad-x);
  z-index: 2;
}
.lightbox__title {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lightbox__title .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.lightbox__title .name {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
}
.lightbox__counter {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.lightbox__counter b { color: var(--fg); font-weight: 500; }
.lightbox__close {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--fg);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.lightbox__close:hover {
  background: var(--accent);
  color: #111;
  border-color: var(--accent);
}
.lightbox__close svg { width: 18px; height: 18px; }
.lightbox__stage {
  position: absolute;
  inset: 100px var(--pad-x) 110px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.35s var(--ease), transform 0.45s var(--ease);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox__img.is-out {
  opacity: 0;
  transform: scale(0.98);
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--fg);
  background: rgba(15,15,15,0.4);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  z-index: 2;
}
.lightbox__nav:hover { background: var(--accent); color: #111; border-color: var(--accent); }
.lightbox__nav--prev { left: 28px; }
.lightbox__nav--next { right: 28px; }
.lightbox__nav svg { width: 18px; height: 18px; }

.lightbox__thumbs {
  position: absolute;
  bottom: 28px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 var(--pad-x);
  overflow-x: auto;
  scrollbar-width: none;
}
.lightbox__thumbs::-webkit-scrollbar { display: none; }
.lightbox__thumbs button {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  overflow: hidden;
  opacity: 0.45;
  transition: opacity 0.3s var(--ease), outline-color 0.3s var(--ease);
  outline: 1px solid transparent;
  outline-offset: 2px;
}
.lightbox__thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.lightbox__thumbs button.is-active {
  opacity: 1;
  outline-color: var(--accent);
}

/* =========================================================
   Page hero (inner)
   ========================================================= */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 180px var(--pad-x) 80px;
  border-bottom: 1px solid var(--line);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.9);
}
.page-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,15,15,0.65), rgba(15,15,15,0.85));
}
.page-hero__inner { display: grid; gap: 22px; max-width: 1100px; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(46px, 7vw, 110px);
  line-height: 1.04;
  margin: 0;
  padding-bottom: 0.12em;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.page-hero h1 em { font-style: italic; color: var(--accent); font-weight: 300; }
.page-hero p { color: var(--muted); max-width: 60ch; font-size: 17px; }

.crumbs {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  display: flex;
  gap: 12px;
  align-items: center;
}
.crumbs a { color: var(--muted-2); }
.crumbs a:hover { color: var(--accent); }
.crumbs .sep { color: var(--accent); }
.crumbs span:last-child { color: var(--fg); }

/* =========================================================
   Contact form
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
}
.contact-info { display: grid; gap: 32px; align-content: start; }
.contact-info h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  margin: 0 0 14px;
  line-height: 1.05;
}
.contact-info h2 em { font-style: italic; color: var(--accent); font-weight: 300; }
.info-row {
  display: grid;
  gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.info-row:first-of-type { border-top: 1px solid var(--line); }
.info-row .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
}
.info-row .val {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 400;
}

.form {
  background: var(--bg-2);
  padding: clamp(36px, 4vw, 60px);
  border: 1px solid var(--line);
  display: grid;
  gap: 20px;
}
.form h3 {
  font-family: var(--serif);
  font-size: 28px;
  margin: 0 0 8px;
  font-weight: 400;
}
.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: grid;
  gap: 6px;
  position: relative;
}
.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.field input,
.field textarea {
  font: inherit;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--fg);
  padding: 12px 0;
  outline: none;
  transition: border-color 0.3s var(--ease);
  font-size: 15px;
  font-family: var(--sans);
  resize: none;
}
.field input:focus,
.field textarea:focus { border-bottom-color: var(--accent); }
.field textarea { min-height: 120px; }

.map-wrap {
  border: 1px solid var(--line);
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: invert(0.92) hue-rotate(180deg) saturate(0.6); }

/* =========================================================
   Galeri sayfası
   ========================================================= */
.gallery-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.gallery-tab {
  padding: 18px 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
  cursor: pointer;
  background: none;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  position: relative;
}
.gallery-tab .num { color: var(--accent); margin-right: 12px; }
.gallery-tab:hover { color: var(--fg); }
.gallery-tab.is-active { color: var(--fg); border-bottom-color: var(--accent); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  grid-auto-rows: 120px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-2);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15,15,15,0.6) 100%);
  pointer-events: none;
}
.gallery-item .label {
  position: absolute;
  left: 22px; bottom: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
}
.gallery-item .label::before {
  content: ""; width: 20px; height: 1px; background: var(--accent);
}

/* mosaic spans */
.gallery-item.s-1 { grid-column: span 4; grid-row: span 3; }
.gallery-item.s-2 { grid-column: span 4; grid-row: span 2; }
.gallery-item.s-3 { grid-column: span 4; grid-row: span 4; }
.gallery-item.s-4 { grid-column: span 8; grid-row: span 3; }
.gallery-item.s-5 { grid-column: span 4; grid-row: span 2; }
.gallery-item.s-6 { grid-column: span 4; grid-row: span 3; }

/* =========================================================
   About page sections
   ========================================================= */
.story {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.story h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  margin: 0;
  line-height: 1.05;
  position: sticky;
  top: 120px;
}
.story h2 em { font-style: italic; color: var(--accent); font-weight: 300; }
.story__copy { display: grid; gap: 22px; max-width: 60ch; }
.story__copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
  margin: 0;
}
.story__copy p:first-of-type::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-size: 64px;
  line-height: 0.8;
  float: left;
  padding: 8px 14px 0 0;
  color: var(--accent);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 50px 30px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat .num {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}
.stat .num em { font-style: italic; color: var(--accent); font-weight: 300; }
.stat .num sup { font-size: 0.4em; color: var(--accent); font-style: italic; font-weight: 300; }
.stat .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =========================================================
   Tweaks panel
   ========================================================= */
.tweaks-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 320px;
  max-height: 80vh;
  background: rgba(15,15,15,0.95);
  border: 1px solid var(--line-strong);
  z-index: 250;
  font-family: var(--sans);
  display: none;
  flex-direction: column;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.tweaks-panel.is-open { display: flex; }
.tweaks-panel__head {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  cursor: move;
}
.tweaks-panel__head h4 {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.tweaks-panel__close {
  font-size: 18px;
  color: var(--muted);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
}
.tweaks-panel__close:hover { background: var(--bg-2); color: var(--fg); }
.tweaks-panel__body {
  padding: 16px 20px;
  display: grid;
  gap: 18px;
  overflow-y: auto;
}
.tweak-section {
  display: grid;
  gap: 8px;
}
.tweak-section h5 {
  margin: 0;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
}
.tweak-segments {
  display: flex;
  border: 1px solid var(--line);
}
.tweak-segments button {
  flex: 1;
  padding: 10px 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-right: 1px solid var(--line);
  transition: background 0.3s, color 0.3s;
}
.tweak-segments button:last-child { border-right: 0; }
.tweak-segments button.is-active { background: var(--accent); color: #111; }
.tweak-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.tweak-toggle span { font-size: 13px; color: var(--fg); }
.switch {
  width: 38px;
  height: 22px;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  position: relative;
  transition: background 0.3s;
}
.switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: var(--muted);
  border-radius: 999px;
  transition: transform 0.3s, background 0.3s;
}
.switch.is-on { background: var(--accent); border-color: var(--accent); }
.switch.is-on::after { transform: translateX(16px); background: #111; }
.tweak-input {
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--fg);
  padding: 10px 12px;
  font-family: var(--sans);
  font-size: 13px;
  outline: none;
  resize: vertical;
  width: 100%;
}
.tweak-input:focus { border-color: var(--accent); }
.color-row { display: flex; gap: 8px; }
.color-swatch {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  cursor: pointer;
  position: relative;
  border-radius: 999px;
}
.color-swatch.is-active::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid var(--accent);
  border-radius: 999px;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .nav, .social { display: none; }
  .hamburger { display: inline-flex; }

  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head__right { justify-self: start; }

  .living__grid { grid-template-columns: 1fr; }
  .cat-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .cat-card:last-child { border-bottom: 0; }

  .about__grid { grid-template-columns: 1fr; gap: 50px; }
  .about__media { aspect-ratio: 4/3; }

  .vm__grid { grid-template-columns: 1fr; }
  .vm__card { border-right: 0; border-bottom: 1px solid var(--line); }
  .vm__card:last-child { border-bottom: 0; }

  .values__grid { grid-template-columns: 1fr 1fr; }
  .value:nth-child(3n) { border-right: 1px solid var(--line); }
  .value:nth-child(2n) { border-right: 0; }

  .cta__grid { grid-template-columns: 1fr; gap: 40px; }
  .cta__contact { padding-left: 0; border-left: 0; border-top: 1px solid var(--line-strong); padding-top: 28px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .form .row { grid-template-columns: 1fr; }

  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }

  .story { grid-template-columns: 1fr; gap: 32px; }
  .story h2 { position: static; }

  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 100px; }
  .gallery-item.s-1 { grid-column: span 6; grid-row: span 3; }
  .gallery-item.s-2 { grid-column: span 3; grid-row: span 2; }
  .gallery-item.s-3 { grid-column: span 3; grid-row: span 3; }
  .gallery-item.s-4 { grid-column: span 6; grid-row: span 3; }
  .gallery-item.s-5 { grid-column: span 3; grid-row: span 2; }
  .gallery-item.s-6 { grid-column: span 3; grid-row: span 2; }

  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__stage { inset: 90px 12px 100px; }
}

@media (max-width: 640px) {
  .hero__top { padding-top: 90px; }
  .hero__top .meta { display: none; }
  .hero__counter { font-size: 10px; }
  .hero__counter b { font-size: 18px; }

  .values__grid { grid-template-columns: 1fr; }
  .value { border-right: 0 !important; }

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

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gallery-item.s-1, .gallery-item.s-2, .gallery-item.s-3,
  .gallery-item.s-4, .gallery-item.s-5, .gallery-item.s-6 {
    grid-column: span 2; grid-row: span 2;
  }

  .btn { padding: 14px 20px; font-size: 12px; }
  .hero__cta .btn { flex: 1; justify-content: center; }

  .tweaks-panel { right: 12px; left: 12px; bottom: 12px; width: auto; }
}


/* =========================================================
   V2 — Holographic gradients + stronger animations
   ========================================================= */

/* Gradient text helper */
.grad-1 {
  background: linear-gradient(110deg, #E8B8E0 0%, #C8A8E8 35%, #A8B8F0 70%, #B8E0D8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.grad-2 {
  background: linear-gradient(110deg, #B8E8D8 0%, #C8E0E8 50%, #D8C8E8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.grad-3 {
  background: linear-gradient(110deg, #C8D8F0 0%, #B8C8F0 50%, #D8C8F0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.grad-warm {
  background: linear-gradient(110deg, #F0D8B8 0%, #E8C8A8 50%, #D8B8C8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.grad-mint {
  background: linear-gradient(110deg, #B8E8D8 0%, #C8E8E0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.grad-rose {
  background: linear-gradient(110deg, #E8C8D8 0%, #D8B8E0 50%, #C8B8E8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Animated holographic shimmer on hover */
.grad-shimmer {
  background: linear-gradient(110deg, #E8B8E0 0%, #C8A8E8 25%, #A8B8F0 50%, #B8E0D8 75%, #E8B8E0 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: grad-flow 8s ease-in-out infinite;
}
@keyframes grad-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Override em accent in v2 to use gradients */
.v2 {
  --accent: #C8A8E8;
  --accent-2: #A8B8F0;
}
.v2 .h-display em,
.v2 .h-section em,
.v2 .hero__title em,
.v2 .page-hero h1 em,
.v2 .band h2 em,
.v2 .vm__card h3 em,
.v2 .cta__copy h2 em,
.v2 .about__copy h2 em,
.v2 .story h2 em,
.v2 .contact-info h2 em,
.v2 .form h3 em,
.v2 .stat .num em,
.v2 .stat .num sup {
  background: linear-gradient(110deg, #E8B8E0 0%, #C8A8E8 35%, #A8B8F0 70%, #B8E0D8 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 300;
  animation: grad-flow 12s ease-in-out infinite;
}

/* Cat card titles - each gets a different gradient */
.v2 .living__grid .cat-card:nth-child(1) .cat-card__title em {
  background: linear-gradient(110deg, #E8B8E0, #C8A8E8 50%, #A8B8F0);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.v2 .living__grid .cat-card:nth-child(2) .cat-card__title em {
  background: linear-gradient(110deg, #B8E8D8, #C8E0E8 50%, #D8C8E8);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.v2 .living__grid .cat-card:nth-child(3) .cat-card__title em {
  background: linear-gradient(110deg, #C8D8F0, #B8C8F0 50%, #D8C8F0);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}

/* Brand name italic gradient */
.v2 .brand__name strong em,
.v2 .intro__name em {
  background: linear-gradient(110deg, #E8B8E0, #A8B8F0 60%, #B8E0D8);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  font-style: italic; font-weight: 300;
}

/* Section nums get a soft gradient too */
.v2 .section-num,
.v2 .crumbs .sep,
.v2 .footer-col h4,
.v2 .info-row .label,
.v2 .cta__contact .row .label {
  background: linear-gradient(110deg, #E8B8E0, #A8B8F0);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}

/* Eyebrow line gets gradient */
.v2 .eyebrow::before,
.v2 .cat-card__count::before,
.v2 .gallery-item .label::before,
.v2 .vm__card::before {
  background: linear-gradient(90deg, #E8B8E0, #A8B8F0, #B8E0D8) !important;
}

/* ============ STRONGER ANIMATIONS ============ */

/* Reveal — bigger movement, parallax-like */
.v2 [data-reveal] {
  opacity: 0;
  transform: translateY(48px) scale(0.985);
  filter: blur(6px);
  transition:
    opacity 1.1s var(--ease),
    transform 1.1s var(--ease),
    filter 1.1s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.v2 [data-reveal].is-in {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.v2 [data-reveal="fade"] {
  transform: translateY(0);
  filter: blur(4px);
}

/* Hero title — letter by letter reveal feel via clip */
.v2 .hero__title {
  position: relative;
}
.v2 .hero__title.is-in {
  animation: hero-glow 2.5s var(--ease) 0.4s both;
}
@keyframes hero-glow {
  0% { text-shadow: 0 0 0 transparent; }
  40% { text-shadow: 0 0 60px rgba(232, 184, 224, 0.25), 0 0 100px rgba(168, 184, 240, 0.15); }
  100% { text-shadow: 0 0 0 transparent; }
}

/* Hero zoom — slower, stronger */
.v2 .hero__media img {
  animation: hero-zoom-v2 18s var(--ease) forwards;
}
@keyframes hero-zoom-v2 {
  from { transform: scale(1.15) translateY(-2%); }
  to   { transform: scale(1) translateY(0); }
}

/* Cat card — float up with gradient shimmer on hover */
.v2 .cat-card {
  transition: transform 0.7s var(--ease), background 0.6s var(--ease);
}
.v2 .cat-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(232,184,224,0.04) 0%, rgba(15,15,15,1) 60%);
}
.v2 .cat-card__media img {
  transition: transform 1.4s var(--ease), filter 1.4s var(--ease);
}
.v2 .cat-card:hover .cat-card__media img {
  transform: scale(1.08);
  filter: brightness(1.1) saturate(1.05);
}

/* Buttons — gradient border + glow */
.v2 .btn {
  transition: color 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease), transform 0.3s var(--ease);
}
.v2 .btn--primary {
  background: linear-gradient(110deg, #E8B8E0 0%, #C8A8E8 35%, #A8B8F0 70%, #B8E0D8 100%);
  background-size: 200% 100%;
  border-color: transparent;
  color: #1a1a1a;
  animation: grad-flow 8s ease-in-out infinite;
}
.v2 .btn--primary:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(200, 168, 232, 0.25);
  color: #1a1a1a;
}
.v2 .btn--ghost:hover {
  border-color: rgba(200, 168, 232, 0.6);
  color: #E8B8E0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 168, 232, 0.15);
}

/* Plus icon hover - gradient */
.v2 .cat-card:hover .cat-card__title .plus {
  background: linear-gradient(135deg, #E8B8E0, #A8B8F0);
  border-color: transparent;
  color: #1a1a1a;
  transform: rotate(90deg) scale(1.1);
  transition: background 0.4s, color 0.4s, transform 0.5s var(--ease), border-color 0.4s;
}
.v2 .cat-card__title .plus {
  transition: background 0.4s, color 0.4s, transform 0.5s var(--ease), border-color 0.4s;
}

/* Logo intro — more dramatic */
.v2 .intro__mark {
  animation: intro-mark-v2 1.4s var(--ease) 0.1s forwards;
}
@keyframes intro-mark-v2 {
  0%   { opacity: 0; transform: translateY(20px) scale(0.7) rotate(-8deg); filter: blur(8px); }
  60%  { opacity: 1; transform: translateY(-4px) scale(1.05) rotate(2deg); filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0); filter: blur(0); }
}
.v2 .intro__name {
  animation: intro-text-v2 1.2s var(--ease) 0.7s forwards;
}
@keyframes intro-text-v2 {
  0%   { opacity: 0; transform: translateY(20px); letter-spacing: 0.2em; filter: blur(6px); }
  100% { opacity: 1; transform: translateY(0); letter-spacing: 0.04em; filter: blur(0); }
}
.v2 .intro__line {
  background: linear-gradient(90deg, transparent, #E8B8E0 30%, #A8B8F0 70%, transparent);
  animation: intro-line-v2 1.4s var(--ease) 1.0s forwards;
}
@keyframes intro-line-v2 {
  0%   { width: 0; }
  100% { width: 280px; }
}

/* Background ambient gradient blobs */
.v2 body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -10;
  pointer-events: none;
  background:
    radial-gradient(40% 35% at 15% 20%, rgba(232, 184, 224, 0.06), transparent 70%),
    radial-gradient(45% 40% at 85% 80%, rgba(168, 184, 240, 0.05), transparent 70%),
    radial-gradient(35% 30% at 70% 30%, rgba(184, 224, 216, 0.04), transparent 70%);
  animation: blob-drift 22s ease-in-out infinite alternate;
}
@keyframes blob-drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(2%, -2%) scale(1.05); }
  100% { transform: translate(-2%, 2%) scale(1); }
}

/* Band — gradient overlay tint */
.v2 .band__bg::after {
  background:
    linear-gradient(180deg, rgba(15,15,15,0.85) 0%, rgba(40,15,55,0.55) 50%, rgba(15,15,15,0.95) 100%) !important;
}

/* Scroll line gradient */
.v2 .hero__scroll::before {
  background: linear-gradient(180deg, transparent, #E8B8E0, #A8B8F0, transparent);
}

/* Lightbox accent */
.v2 .lightbox__nav:hover,
.v2 .lightbox__close:hover {
  background: linear-gradient(135deg, #E8B8E0, #A8B8F0);
  border-color: transparent;
  color: #1a1a1a;
}
.v2 .lightbox__thumbs button.is-active {
  outline-color: #C8A8E8;
}

/* Stat numbers */
.v2 .stat .num {
  letter-spacing: -0.02em;
}

/* Brand mark — soft glow on v2 */
.v2 .brand__mark {
  background: linear-gradient(135deg, #FFFFFF, #F0E0F0);
  box-shadow: 0 0 30px rgba(232, 184, 224, 0.15);
}
.v2 .intro__mark {
  background: linear-gradient(135deg, #FFFFFF, #E8D8F0);
  box-shadow: 0 0 60px rgba(232, 184, 224, 0.25), 0 0 120px rgba(168, 184, 240, 0.15);
}

/* Nav active gradient underline */
.v2 .nav a::after {
  background: linear-gradient(90deg, #E8B8E0, #A8B8F0);
}
.v2 .nav a.is-active {
  background: linear-gradient(110deg, #E8B8E0, #A8B8F0);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}

/* About sign accent */
.v2 .about__sign strong {
  background: linear-gradient(110deg, #E8B8E0, #A8B8F0 60%, #B8E0D8);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.v2 .about__media::after {
  border-color: rgba(200, 168, 232, 0.25);
}

/* Selection */
.v2 ::selection { background: #C8A8E8; color: #111; }

/* Footer watermark gradient */
.v2 .site-footer .watermark,
.v2 .about__watermark {
  background: linear-gradient(110deg, rgba(232,184,224,0.04), rgba(168,184,240,0.04) 50%, rgba(184,224,216,0.04));
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}

/* Stat num gradient on first emphasis */
.v2 .stat:nth-child(1) .num em { background: linear-gradient(110deg, #E8B8E0, #C8A8E8); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.v2 .stat:nth-child(2) .num em { background: linear-gradient(110deg, #B8E8D8, #C8E0E8); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.v2 .stat:nth-child(3) .num em { background: linear-gradient(110deg, #C8D8F0, #B8C8F0); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.v2 .stat:nth-child(4) .num em { background: linear-gradient(110deg, #F0D8B8, #D8B8C8); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }

/* Form focus accent */
.v2 .field input:focus,
.v2 .field textarea:focus { border-bottom-color: #C8A8E8; }

/* Gallery hover */
.v2 .gallery-item img { transition: transform 1.4s var(--ease), filter 1.4s var(--ease); }
.v2 .gallery-item:hover img { transform: scale(1.08); filter: saturate(1.1); }

/* Value hover */
.v2 .value:hover { background: linear-gradient(180deg, rgba(200,168,232,0.04), transparent 80%); }

/* Section num color when sectionNumbers tweak is on */
.v2 .cat-card__num span:first-child,
.v2 .vm__card__num span,
.v2 .value__num {
  background: linear-gradient(110deg, #E8B8E0, #A8B8F0);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .v2 .grad-shimmer,
  .v2 .h-display em,
  .v2 .h-section em,
  .v2 body::before,
  .v2 .btn--primary { animation: none !important; }
}

/* Hero video */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
  animation: hero-zoom-v2 20s var(--ease) forwards;
}

.hero__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
  opacity: 0;
  transition: opacity 1.4s var(--ease);
  z-index: 1;
}
.hero__fallback.is-visible { opacity: 1; }
.hero__video.is-faded { opacity: 0; transition: opacity 1.4s var(--ease); }


/* =========================================================
   Modernization — refined borders, frame outlines
   ========================================================= */
.v2 .hero {
  border-bottom: 1px solid rgba(232, 184, 224, 0.12);
}
.v2 .hero__content::before {
  content: "";
  position: absolute;
  left: var(--pad-x);
  top: -20px;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, #E8B8E0, transparent);
}

/* Section frame — subtle outlined containers */
.v2 .living, .v2 .vm, .v2 .values {
  position: relative;
}
.v2 .living__grid {
  border: 1px solid rgba(232, 184, 224, 0.10);
  border-left: 0;
  border-right: 0;
}
.v2 .cat-card {
  border-right: 1px solid rgba(232, 184, 224, 0.10);
}
.v2 .vm__grid {
  border: 1px solid rgba(232, 184, 224, 0.12);
}
.v2 .vm__card {
  border-right: 1px solid rgba(232, 184, 224, 0.10);
}
.v2 .values__grid {
  border-top: 1px solid rgba(232, 184, 224, 0.10);
}
.v2 .value {
  border-right: 1px solid rgba(232, 184, 224, 0.08);
  border-bottom: 1px solid rgba(232, 184, 224, 0.08);
}

/* About media — modern double frame */
.v2 .about__media {
  position: relative;
  outline: 1px solid rgba(232, 184, 224, 0.18);
  outline-offset: -10px;
}
.v2 .about__media::after {
  border: 1px solid rgba(168, 184, 240, 0.30);
  transform: translate(24px, 24px);
}

/* Page hero - bordered card feel */
.v2 .page-hero {
  border-bottom: 1px solid rgba(232, 184, 224, 0.15);
}
.v2 .page-hero__inner {
  border-left: 1px solid rgba(232, 184, 224, 0.18);
  padding-left: 32px;
}
@media (max-width: 640px){
  .v2 .page-hero__inner { padding-left: 18px; }
}

/* Button refinement — pill on primary, sharp on ghost */
.v2 .btn {
  letter-spacing: 0.10em;
}
.v2 .btn--primary {
  border-radius: 999px;
  padding: 18px 32px;
}
.v2 .btn--ghost {
  border-radius: 999px;
  border-color: rgba(232, 184, 224, 0.20);
}

/* Form refinement — bordered card */
.v2 .form {
  border: 1px solid rgba(232, 184, 224, 0.15);
  border-radius: 6px;
  position: relative;
}
.v2 .form::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 6px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(232,184,224,0.28), rgba(168,184,240,0.18) 50%, rgba(184,224,216,0.20));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Map frame */
.v2 .map-wrap {
  border: 1px solid rgba(232, 184, 224, 0.18);
  border-radius: 6px;
}

/* Stat row refinement */
.v2 .stat-row {
  border-color: rgba(232, 184, 224, 0.12);
}
.v2 .stat {
  border-right-color: rgba(232, 184, 224, 0.08);
}

/* Section heads — accent line */
.v2 .section-head__left h2,
.v2 .section-head__left .h-section {
  position: relative;
}

/* Footer refinement */
.v2 .site-footer { border-top-color: rgba(232, 184, 224, 0.12); }
.v2 .footer-grid { border-bottom-color: rgba(232, 184, 224, 0.10); }

/* Header subtle border on scroll */
.v2 .site-header.is-scrolled {
  border-bottom-color: rgba(232, 184, 224, 0.10);
}

/* Hero content frame */
.v2 .hero__content {
  position: relative;
}

/* Powered by NEO Bilişim */
.footer-neo-logo {
  display: block;
  opacity: 1;
}
.footer-neo-logo img {
  height: 22px;
  width: auto;
}
