:root {
  --ink: #070706;
  --ink-2: #0e0d0b;
  --ink-3: #161410;
  --paper: #f6f1e8;
  --paper-dim: #cfc6b6;
  --gold: #f5a735;
  --gold-2: #ffc56a;
  --line: rgba(246, 241, 232, 0.12);
  --line-strong: rgba(245, 167, 53, 0.42);
  --fog: rgba(246, 241, 232, 0.72);
  --fog-soft: rgba(246, 241, 232, 0.48);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Kanit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --nav-h: 5.25rem;
  --max: 76rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--paper);
  background: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: 0;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.wrap {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3,
.display {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.display {
  font-size: clamp(3rem, 9vw, 7.4rem);
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
}

h2 {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
}

h3 {
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
}

.lede {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--fog);
  max-width: 38rem;
}

.muted {
  color: var(--fog-soft);
}

.gold {
  color: var(--gold);
}

.rule {
  width: 3rem;
  height: 1px;
  border: 0;
  background: var(--gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3rem;
  padding: 0.75rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 1px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: #16120b;
}

.btn-gold:hover {
  background: var(--gold-2);
}

.btn-ghost {
  border-color: rgba(246, 241, 232, 0.28);
  color: var(--paper);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--gold);
  color: #16120b;
  padding: 0.6rem 0.9rem;
}

.skip:focus {
  top: 1rem;
}

/* Nav */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(7, 7, 6, 0.42);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}

.nav.is-scrolled {
  background: rgba(7, 7, 6, 0.88);
  border-bottom-color: var(--line);
}

.nav-inner {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo img {
  width: clamp(8.4rem, 22vw, 10.25rem);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.65rem;
  list-style: none;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--fog);
  position: relative;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--paper);
}

.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  background: var(--gold);
}

.nav-links .btn-gold,
.nav-links .btn-gold:hover {
  color: #16120b;
}

.nav-links .btn-gold::after {
  display: none;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-mobile-cta {
  display: none;
}

.menu-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 1.25rem;
  height: 1px;
  background: var(--paper);
  position: absolute;
  left: 0.62rem;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.menu-toggle span {
  top: 50%;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

body.nav-open .menu-toggle span {
  background: transparent;
}

body.nav-open .menu-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .menu-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  padding: calc(var(--nav-h) + 3rem) 0 3.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0.35) 0%, rgba(7, 7, 6, 0.28) 40%, rgba(7, 7, 6, 0.88) 100%),
    url("../img/kapak.webp") center / cover no-repeat;
  transform: scale(1.06);
  animation: drift 32s ease-in-out infinite alternate;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 3rem;
  align-items: end;
}

.hero .display em,
.serif-italic {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-2);
}

.hero-aside {
  border-left: 1px solid var(--line);
  padding-left: 1.6rem;
  color: var(--fog);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.stat b {
  display: block;
  font-family: var(--sans);
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  font-variant-numeric: lining-nums tabular-nums;
  color: var(--paper);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat span {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fog-soft);
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ink-2);
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 2.4rem;
  padding: 0.95rem 0;
  animation: marquee 32s linear infinite;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fog-soft);
}

.marquee-track span {
  color: var(--gold);
}

/* Sections */
.section {
  padding: clamp(4.5rem, 10vw, 8.5rem) 0;
  position: relative;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 18rem) 1fr;
  gap: 2rem 4rem;
  margin-bottom: clamp(2.4rem, 5vw, 4rem);
}

.section-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

.media {
  position: relative;
  overflow: hidden;
  min-height: 22rem;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 28rem;
  filter: saturate(0.86) contrast(1.05);
  transition: transform 1.4s var(--ease);
}

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

.media-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
}

.prose p + p {
  margin-top: 1.1rem;
}

.prose {
  color: var(--fog);
  max-width: 40rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.card {
  background: var(--ink);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.4s var(--ease);
}

.card:hover {
  background: var(--ink-3);
}

.card-num {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.4rem;
}

.card p {
  color: var(--fog);
  margin-top: 0.8rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.step {
  padding: 1.8rem 1.2rem 0 0;
  border-right: 1px solid var(--line);
  min-height: 16rem;
}

.step:last-child {
  border-right: 0;
  padding-right: 0;
}

.step strong {
  display: block;
  margin: 1.1rem 0 0.5rem;
  font-weight: 500;
}

.step p {
  color: var(--fog);
  font-size: 0.95rem;
}

.checklist {
  display: grid;
  gap: 0;
}

.check {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.check b {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 500;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.metric {
  background: var(--ink-2);
  padding: 1.6rem 1.2rem;
}

.metric b {
  display: block;
  font-family: var(--sans);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  font-variant-numeric: lining-nums tabular-nums;
  margin-bottom: 0.3rem;
}

.metric span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fog-soft);
}

.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 16rem 16rem;
  gap: 0.7rem;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
}

.gallery .wide {
  grid-row: 1 / span 2;
}

.page-hero {
  padding: calc(var(--nav-h) + 4.5rem) 0 3rem;
}

.page-hero h1 {
  max-width: 16ch;
}

.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
  text-align: center;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: 0;
  background: url("../img/kapak.webp") center / cover no-repeat;
  filter: saturate(0.75) brightness(0.62);
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 58% 72% at 50% 48%, rgba(7, 7, 6, 0.58), rgba(7, 7, 6, 0.28));
  pointer-events: none;
}

.cta-band .wrap {
  position: relative;
  z-index: 1;
}

.cta-band .eyebrow,
.cta-band h2,
.cta-band .lede {
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.7);
}

.cta-band .lede {
  margin: 1.1rem auto 1.8rem;
}

.lux-links {
  display: grid;
  gap: 0;
  margin-top: 2rem;
  max-width: 28rem;
}

.lux-link {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.05rem 0;
  border-top: 1px solid var(--line);
}

.lux-link:last-child {
  border-bottom: 1px solid var(--line);
}

.lux-icon {
  flex: 0 0 1.6rem;
  width: 1.6rem;
  height: 1.6rem;
  display: grid;
  place-items: center;
  color: var(--gold);
}

.lux-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}

.lux-copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.lux-copy small {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.lux-copy strong {
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--paper);
  overflow-wrap: anywhere;
}

.lux-link:hover .lux-copy strong {
  color: var(--gold-2);
}

.form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fog-soft);
}

.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
  border-radius: 0;
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--gold);
  outline: none;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.notice {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line-strong);
  color: var(--gold-2);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.notice.error {
  border-color: rgba(220, 90, 70, 0.5);
  color: #f0b8ae;
}

.legal {
  max-width: 46rem;
  color: var(--fog);
}

.legal h2 {
  font-size: 1.8rem;
  margin: 2.2rem 0 0.7rem;
}

.legal p + p,
.legal ul {
  margin-top: 0.9rem;
}

.legal ul {
  padding-left: 1.1rem;
}

.fineprint {
  font-size: 0.8rem;
  color: var(--fog-soft);
  margin-top: 1.4rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 1.6rem;
  background: #050504;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-logo {
  width: 10.5rem;
  height: auto;
  margin-bottom: 1.1rem;
}

.footer h3 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer a {
  display: block;
  color: var(--fog);
  margin-bottom: 0.45rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-top: 2.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--fog-soft);
  text-align: center;
}

.footer-copy strong {
  font-weight: 500;
  color: var(--paper-dim);
}

.footer-sep {
  width: 1px;
  height: 0.85rem;
  background: rgba(246, 241, 232, 0.28);
}

.footer-crafted {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer a.footer-agency {
  display: inline-flex;
  align-items: center;
  margin: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--paper);
}

.footer-agency:hover {
  color: var(--gold);
}

.footer-reg {
  flex-basis: 100%;
  font-size: 0.7rem;
}

.heart {
  display: inline-flex;
  color: #e23b3b;
  transform-origin: center;
  animation: heartbeat 1.15s ease-in-out infinite;
}

.heart svg {
  display: block;
  width: 14px;
  height: 14px;
  stroke: #e23b3b;
  fill: #e23b3b;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.28);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.18);
  }
  70% {
    transform: scale(1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s var(--ease) forwards;
}

.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.22s; }
.d3 { animation-delay: 0.36s; }
.d4 { animation-delay: 0.5s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes drift {
  to {
    transform: scale(1.12) translate3d(-1.4%, -1%, 0);
  }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .split.reverse,
  .section-head,
  .cards,
  .steps,
  .metrics,
  .footer-grid,
  .gallery {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .gallery {
    grid-template-rows: none;
  }

  .gallery .wide {
    grid-row: auto;
    min-height: 16rem;
  }

  .gallery img {
    min-height: 14rem;
  }

  .steps {
    border-top: 0;
  }

  .step {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 1.3rem 0;
  }

  .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #070706;
  }

  .nav-inner {
    position: relative;
    z-index: 3;
  }

  .nav-links,
  .nav-cta .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
    z-index: 5;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .nav {
    height: var(--nav-h);
    background: #070706;
    border-bottom-color: var(--line);
  }

  body.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: fixed;
    top: var(--nav-h);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 58;
    background: #070706;
    padding: 2.2rem var(--pad) 3rem;
    gap: 1.35rem;
    font-size: 1.15rem;
  }

  .nav-mobile-cta {
    display: none;
  }

  body.nav-open .nav-mobile-cta {
    display: block;
    margin-top: 1.2rem;
  }

  body.nav-open .nav-cta .btn {
    display: none;
  }

  .hero-aside {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 1.2rem;
  }

  .media img {
    min-height: 20rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .hero-bg {
    opacity: 1;
    transform: none;
  }
}
