/* =========================================================
   ÝYLDYZLY ASMAN — landing styles
   ========================================================= */

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(24px, 5vw, 96px);
  color: var(--paper);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.3s ease, color 0.3s ease;
  mix-blend-mode: normal;
}
.nav-scrolled {
  background: rgba(7, 9, 26, 0.78);
  backdrop-filter: blur(12px) saturate(140%);
  padding-top: 14px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(231, 212, 155, 0.12);
}
.nav-mark { display: flex; align-items: center; gap: 10px; color: var(--gold-200); }
.nav-logo {
  height: 44px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}
.nav-scrolled .nav-logo { height: 36px; }
.nav-star { color: var(--gold-300); font-size: 13px; transform: translateY(-1px); }
.nav-name { font-family: var(--display); font-size: 18px; letter-spacing: 0.04em; }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(247, 243, 234, 0.78);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-200); }
.nav-lang { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; }
.nav-lang button { background: none; border: none; color: rgba(247, 243, 234, 0.45); padding: 4px 0; }
.nav-lang button.on { color: var(--gold-200); }
.nav-lang span { color: rgba(247, 243, 234, 0.3); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0 var(--pad-x);
  background: radial-gradient(ellipse at 50% 30%, #131838 0%, #0a0d22 55%, #07091a 100%);
  color: var(--paper);
  overflow: hidden;
  display: flex; align-items: center;
}
.starfield { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(7, 9, 26, 0.95) 0%, transparent 55%),
    linear-gradient(to bottom, transparent 60%, rgba(7, 9, 26, 0.95) 100%);
}
.hero-photo { position: absolute; inset: 0; }

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; width: 100%; margin: 0 auto;
  padding-top: 120px;
  text-align: center;
}
.hero-eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 36px;
}
.hero-title {
  font-size: clamp(48px, 9vw, 132px);
  margin: 0;
  color: var(--paper);
  font-weight: 300;
}
.hero-title .line { display: block; }
.hero-title .line.script {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-200);
  background: linear-gradient(180deg, #f4e8c8 0%, #d4b46a 60%, #936b2a 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
body[data-type="modern"] .hero-title .line.script { font-family: var(--sans); font-style: normal; font-weight: 600; }
body[data-type="serif"] .hero-title .line.script { font-family: "Cormorant Garamond", serif; font-style: italic; }

.hero-lede {
  max-width: 640px; margin: 36px auto 44px;
  font-size: 17px; line-height: 1.65;
  color: rgba(247, 243, 234, 0.78);
  font-weight: 300;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; }

.hero-status {
  position: absolute; left: 0; right: 0; bottom: 32px;
  display: flex; justify-content: center; gap: 56px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(247, 243, 234, 0.55);
  z-index: 2;
}
.hero-status b { color: var(--gold-200); font-weight: 500; margin-right: 6px; }
.hero-status i { font-style: normal; }
.hero-status .dot-live { display: flex; align-items: center; gap: 8px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-300); box-shadow: 0 0 0 4px rgba(212, 180, 106, 0.18); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }
@keyframes twinkle { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-200) 0%, var(--gold-400) 100%);
  color: var(--ink-900);
  border-color: var(--gold-400);
}
.btn-gold:hover {
  background: linear-gradient(180deg, var(--gold-100) 0%, var(--gold-300) 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184, 137, 58, 0.3);
}
.btn-ghost {
  background: transparent; color: var(--paper);
  border-color: rgba(247, 243, 234, 0.3);
}
.btn-ghost:hover { border-color: var(--gold-300); color: var(--gold-200); }

/* ---------- MARQUEE ---------- */
.marquee {
  background: var(--ink-900); color: var(--gold-200);
  border-top: 1px solid rgba(231, 212, 155, 0.18);
  border-bottom: 1px solid rgba(231, 212, 155, 0.18);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex; gap: 48px;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  font-family: var(--display);
  font-size: 22px; letter-spacing: 0.04em;
}
.marquee-item { display: inline-flex; align-items: center; gap: 24px; }
.marquee-star { color: var(--gold-300); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- SECTION HEADS ---------- */
.sec-head {
  max-width: 880px; margin: 0 auto 80px; text-align: center;
}
.sec-title {
  font-size: clamp(40px, 5.5vw, 76px);
  margin: 18px 0 24px;
  color: var(--text);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.sec-lede {
  font-size: 17px; line-height: 1.7; color: var(--text-soft);
  max-width: 640px; margin: 0 auto;
}

/* ---------- SERVICES ---------- */
.services { background: var(--paper); }
.svc-list { max-width: 1280px; margin: 0 auto; border-top: 1px solid var(--rule); }
.svc {
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  transition: background 0.3s ease;
}
.svc:hover { background: var(--paper-2); }
.svc-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr 1.2fr 40px;
  align-items: baseline;
  gap: 32px;
  padding: 36px 32px;
}
.svc-n { font-family: var(--mono); font-size: 12px; color: var(--gold-500); letter-spacing: 0.18em; }
.svc-name { font-size: clamp(32px, 4vw, 56px); color: var(--text); font-weight: 400; }
.svc-alt { font-family: var(--mono); font-size: 11px; color: var(--text-soft); letter-spacing: 0.18em; text-transform: uppercase; }
.svc-tag { font-size: 14px; color: var(--text-soft); }
.svc-arrow {
  font-family: var(--mono); color: var(--gold-500); font-size: 18px;
  transition: transform 0.3s ease;
}
.svc-open .svc-arrow { transform: rotate(45deg); }

.svc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.4s ease;
  opacity: 0;
  padding: 0 32px;
}
.svc-open .svc-body {
  max-height: 600px;
  opacity: 1;
  padding: 0 32px 56px;
}
.svc-illus { aspect-ratio: 4/3; }
.svc-text p { font-size: 17px; line-height: 1.65; color: var(--text); margin: 0 0 28px; }
.svc-text ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.svc-text li { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--text-soft); display: flex; gap: 10px; }
.bullet-dot { color: var(--gold-400); }

/* ---------- PROJECTS ---------- */
.projects { background: var(--paper-2); }
.proj-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.proj { position: relative; overflow: hidden; }
.proj-std { grid-column: span 2; aspect-ratio: 4/5; }
.proj-tall { grid-column: span 2; aspect-ratio: 3/5; grid-row: span 1; }
.proj-wide { grid-column: span 4; aspect-ratio: 16/10; }
.proj-img { position: relative; width: 100%; height: 100%; overflow: hidden; }
.proj-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(to bottom, transparent 30%, rgba(7, 9, 26, 0.85) 100%);
  color: var(--paper);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.proj:hover .proj-overlay { opacity: 1; }
.proj-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-200); margin-bottom: 8px; }
.proj-name { font-size: 22px; line-height: 1.2; margin-bottom: 8px; }
.proj-meta { font-size: 13px; color: rgba(247, 243, 234, 0.75); display: flex; gap: 8px; flex-wrap: wrap; }
.dot-sep { color: var(--gold-300); }

/* ---------- GALLERY ---------- */
.gallery { background: var(--paper-2); }
.gallery-tabs {
  max-width: 1280px; margin: 0 auto 56px;
  display: flex; justify-content: center;
  gap: 8px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 8px 0;
}
.gtab {
  display: inline-flex; align-items: baseline; gap: 12px;
  padding: 18px 32px;
  background: transparent; border: none;
  color: var(--text-soft);
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.gtab:hover { color: var(--text); }
.gtab.on { color: var(--text); }
.gtab.on::after {
  content: ""; position: absolute; left: 32px; right: 32px; bottom: 0;
  height: 2px; background: var(--gold-400);
}
.gtab-n {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--gold-500);
}
.gtab-name {
  font-family: var(--display); font-size: 22px; font-weight: 400;
  letter-spacing: 0.01em;
}
.gallery-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  animation: gfade 0.5s ease;
}
@keyframes gfade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.gcard { margin: 0; position: relative; overflow: hidden; }
.gcard-0 { grid-column: span 4; aspect-ratio: 16/10; }
.gcard-1 { grid-column: span 2; aspect-ratio: 4/5; }
.gcard-2 { grid-column: span 2; aspect-ratio: 1/1; }
.gcard-3 { grid-column: span 2; aspect-ratio: 1/1; }
.gcard-4 { grid-column: span 2; aspect-ratio: 1/1; }
.gcard-5 { grid-column: span 4; aspect-ratio: 16/8; }
.gcard-img { position: absolute; inset: 0; }
.gcard figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(7, 9, 26, 0.92) 0%, transparent 100%);
  color: var(--paper);
  transform: translateY(20%); opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.gcard:hover figcaption { transform: none; opacity: 1; }
.gcap-name { font-size: 22px; line-height: 1.15; margin-bottom: 6px; color: var(--paper); }
.gcap-meta {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-200);
}

@media (max-width: 980px) {
  .gallery-tabs { flex-wrap: wrap; }
  .gtab { padding: 14px 18px; }
  .gtab-name { font-size: 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gcard-0, .gcard-1, .gcard-2, .gcard-3, .gcard-4, .gcard-5 { grid-column: span 2; aspect-ratio: 4/3; }
  .gcard figcaption { transform: none; opacity: 1; }
}

/* ---------- APPROACH ---------- */
.approach { background: var(--paper); }
.steps {
  max-width: 1100px; margin: 0 auto;
  list-style: none; padding: 0;
  border-top: 1px solid var(--rule);
}
.step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 56px;
  padding: 44px 0;
  border-bottom: 1px solid var(--rule);
}
.step-n {
  font-size: 56px;
  color: var(--gold-400);
  font-weight: 400;
  font-family: var(--display);
  letter-spacing: 0.04em;
}
.step-title { font-family: var(--display); font-size: 28px; font-weight: 400; margin: 0 0 12px; color: var(--text); }
.step-body p { font-size: 16px; line-height: 1.65; color: var(--text-soft); margin: 0; max-width: 620px; }

/* ---------- CONTACT ---------- */
.contact {
  background: var(--ink-900); color: var(--paper);
  position: relative; overflow: hidden;
}
.contact .starfield { opacity: 0.55; }
.contact-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(7, 9, 26, 0.65) 70%);
  pointer-events: none;
}
.contact-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
}
@media (max-width: 1180px) {
  .contact-inner { gap: 56px; }
}
.eyebrow.on-dark { color: var(--gold-300); }
.contact-title {
  font-size: clamp(40px, 5vw, 64px);
  margin: 18px 0 56px;
  color: var(--paper);
  font-weight: 400;
  line-height: 1.05;
}
.contact-title .line { display: block; }
.contact-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  font-size: 14px; line-height: 1.7;
  color: rgba(247, 243, 234, 0.78);
}
.contact-meta > div:last-child { grid-column: span 2; }
.cm-label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 10px; }
.link-gold { color: var(--gold-200); }

.contact-form { display: flex; flex-direction: column; gap: 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field span { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-400); }
.field input, .field textarea {
  background: rgba(247, 243, 234, 0.04);
  border: none; border-bottom: 1px solid rgba(231, 212, 155, 0.25);
  color: var(--paper);
  padding: 12px 0;
  font-family: var(--sans); font-size: 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field textarea:focus { border-bottom-color: var(--gold-300); }
.field textarea { resize: vertical; }

.field-group { border: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.field-group legend { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 6px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: transparent; color: rgba(247, 243, 234, 0.7);
  border: 1px solid rgba(231, 212, 155, 0.25);
  padding: 10px 16px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  transition: all 0.2s;
}
.chip:hover { border-color: var(--gold-300); color: var(--gold-200); }
.chip.on { background: var(--gold-300); color: var(--ink-900); border-color: var(--gold-300); }

.form-foot { display: flex; align-items: center; gap: 24px; margin-top: 8px; flex-wrap: wrap; }
.form-foot .btn { white-space: nowrap; flex-shrink: 0; }
.form-note { font-size: 12px; color: rgba(247, 243, 234, 0.5); margin: 0; max-width: 320px; line-height: 1.5; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink-900); color: rgba(247, 243, 234, 0.6);
  padding: 80px var(--pad-x) 32px;
  border-top: 1px solid rgba(231, 212, 155, 0.12);
}
.footer-top {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 2fr; gap: 72px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(231, 212, 155, 0.12);
}
.footer-brand img { width: 220px; height: auto; opacity: 0.92; }
.footer-tag { font-family: var(--display); font-size: 18px; color: var(--gold-200); margin-top: 24px; max-width: 280px; line-height: 1.4; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.col-h { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(247, 243, 234, 0.7); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-200); }
.footer-bottom {
  max-width: 1280px; margin: 32px auto 0;
  display: flex; justify-content: space-between;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(247, 243, 234, 0.4);
}

/* ---------- PLACEHOLDER ---------- */
.ph {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.ph-warm { background: linear-gradient(135deg, #2a2418 0%, #1a1610 100%); }
.ph-dark { background: linear-gradient(135deg, #0c1029 0%, #07091a 100%); }
.ph-img { background: var(--ink-800); }
.ph-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gcard-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo { position: absolute; inset: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.55; filter: brightness(0.7) saturate(1.05); }
.ph-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(231, 212, 155, 0.03) 0px,
    rgba(231, 212, 155, 0.03) 1px,
    transparent 1px,
    transparent 14px
  );
}
.ph-label {
  position: relative; z-index: 1;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(231, 212, 155, 0.6);
  text-align: center;
  padding: 12px 24px;
  border: 1px solid rgba(231, 212, 155, 0.18);
  background: rgba(7, 9, 26, 0.5);
  max-width: 80%;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .svc-row { grid-template-columns: 50px 1fr 40px; }
  .svc-alt, .svc-tag { display: none; }
  .svc-body { grid-template-columns: 1fr; }
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-std, .proj-tall, .proj-wide { grid-column: span 2; aspect-ratio: 4/3; }
  .proj-overlay { opacity: 1; background: linear-gradient(to bottom, transparent 40%, rgba(7, 9, 26, 0.9) 100%); }
  .step { grid-template-columns: 60px 1fr; gap: 24px; }
  .step-n { font-size: 36px; }
  .contact-inner { grid-template-columns: 1fr; gap: 56px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .hero-status { gap: 24px; flex-wrap: wrap; padding: 0 24px; justify-content: center; }
}
