/* ============ TEMEL ============ */
:root {
  --cream: #F7F2E9;
  --paper: #EFE7D8;
  --ink: #23252E;
  --ink-soft: #55534E;
  --navy: #060E21;
  --navy-soft: #0C1830;
  --gold: #B08D4F;
  --gold-soft: #C9B48A;
  --white-warm: #FBF8F2;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Lora", Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 720px; text-align: center; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
  color: var(--white-warm);
}

.nav--solid {
  background: rgba(247, 242, 233, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(35, 37, 46, .08);
  padding: 14px 32px;
  color: var(--ink);
}

.nav__brand {
  color: inherit;
  text-decoration: none;
  display: block;
}

.nav__logo {
  width: 64px;
  height: 54px;
  display: block;
}

.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  color: inherit;
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: var(--font-body);
  opacity: .85;
  transition: opacity .25s;
}

.nav__links a:hover { opacity: 1; }

.nav__toggle { display: none; }

/* ============ HERO ============ */
.hero {
  height: 420vh;
  position: relative;
  background: var(--navy);
}

.hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: var(--navy);
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Canvas devreye girince JS bu resmi gizler; JS yoksa / hareket azaltılmışsa görünür kalır */
.hero__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.js-hero .hero__fallback { display: none; }

.hero__content {
  position: absolute;
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white-warm);
  width: 100%;
  padding: 0 24px;
  will-change: opacity, translate;
}

@media (min-width: 861px) {
  .hero__content {
    left: auto;
    right: 7%;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    width: min(520px, 42vw);
    padding: 0;
  }
}

.hero__kicker {
  font-size: .8rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 14px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3rem, 9vw, 6.4rem);
  letter-spacing: .06em;
  line-height: 1.05;
}

.hero__tagline {
  margin-top: 16px;
  font-style: italic;
  font-weight: 400; /* h1 varsayılan kalınlığını sıfırla, görünüm değişmesin */
  font-size: clamp(.95rem, 2vw, 1.15rem);
  opacity: .82;
}

.hero__hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white-warm);
  opacity: .65;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  will-change: opacity;
}

.hero__hint-line {
  width: 1px;
  height: 44px;
  margin: 12px auto 0;
  background: linear-gradient(to bottom, var(--white-warm), transparent);
  animation: hintPulse 2.2s ease-in-out infinite;
}

@keyframes hintPulse {
  0%, 100% { transform: scaleY(.55); opacity: .4; }
  50%      { transform: scaleY(1);   opacity: .9; }
}

/* ============ BÖLÜMLER ============ */
.section { padding: 110px 0; }

.section--light { background: var(--cream); }
.section--paper { background: var(--paper); }

.section--dark {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white-warm);
}

.section__kicker {
  font-size: .78rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section--dark .section__kicker { color: var(--gold-soft); }

.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  line-height: 1.15;
  margin-bottom: 40px;
}

/* Hikayemiz */
.prose p + p { margin-top: 1.3em; }

.prose--two {
  columns: 2;
  column-gap: 56px;
}

.prose--two p {
  break-inside: avoid;
  margin-top: 0;
  margin-bottom: 1.3em;
}

.pullquote {
  margin: 56px auto 0;
  max-width: 780px;
  text-align: center;
  position: relative;
  padding-top: 36px;
}

.pullquote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 1px;
  background: var(--gold);
}

.pullquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  line-height: 1.5;
  color: var(--ink-soft);
}

.story__figure {
  margin-top: 56px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(35, 37, 46, .16);
}

.story__figure img { width: 100%; }

/* Karahindiba */
.container--split {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 64px;
  align-items: center;
}

.karahindiba__figure {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .45);
}

.karahindiba__figure img { width: 100%; height: 100%; object-fit: cover; }

.karahindiba__text p + p { margin-top: 1.2em; }

.karahindiba__text { font-size: .98rem; opacity: .96; }

.karahindiba__closing {
  margin-top: 1.6em !important;
  padding-top: 1.4em;
  border-top: 1px solid rgba(201, 180, 138, .35);
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--gold-soft);
}

/* Faaliyetler */
.stage__figure {
  margin-bottom: 48px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(35, 37, 46, .16);
}

.stage__figure img { width: 100%; }

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

.card {
  background: var(--white-warm);
  border: 1px solid rgba(176, 141, 79, .18);
  border-radius: 4px;
  padding: 40px 32px;
  transition: transform .35s ease, box-shadow .35s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(35, 37, 46, .1);
}

.card__icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 22px;
}

.card__icon svg { width: 100%; height: 100%; }

.card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.card p {
  font-size: .93rem;
  color: var(--ink-soft);
}

/* Galeri: doğal en-boy oranlı iki sütun */
.gallery {
  columns: 2;
  column-gap: 28px;
}

.gallery__item {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 40px rgba(35, 37, 46, .16);
  break-inside: avoid;
  margin-bottom: 28px;
}

.gallery__item { cursor: zoom-in; }

.gallery__item img {
  width: 100%;
  transition: transform .5s ease;
}

.gallery__item:hover img { transform: scale(1.05); }

.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 20px 14px;
  background: linear-gradient(to top, rgba(6, 14, 33, .75), transparent);
  color: var(--white-warm);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: .06em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(6, 14, 33, .92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__figure {
  max-width: min(88vw, 1200px);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.lightbox__img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .55);
  transform: scale(.96);
  transition: transform .3s ease;
}

.lightbox.is-open .lightbox__img { transform: scale(1); }

.lightbox__caption {
  color: var(--white-warm);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: .06em;
  opacity: .85;
}

.lightbox__btn {
  position: absolute;
  background: none;
  border: none;
  color: var(--white-warm);
  cursor: pointer;
  opacity: .7;
  transition: opacity .25s;
  font-family: var(--font-body);
}

.lightbox__btn:hover { opacity: 1; }

.lightbox__close {
  top: 22px;
  right: 28px;
  font-size: 1.6rem;
}

.lightbox__prev,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.4rem;
  line-height: 1;
  padding: 0 18px;
}

.lightbox__prev { left: 8px; }
.lightbox__next { right: 8px; }

/* Instagram şeridi */
.section--insta { padding-bottom: 90px; }

.insta {
  overflow: hidden;
  margin-top: 8px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.insta__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: instaScroll 45s linear infinite;
}

.insta:hover .insta__track { animation-play-state: paused; }

@keyframes instaScroll {
  to { transform: translateX(-50%); }
}

.insta__card {
  position: relative;
  display: block;
  width: 250px;
  height: 250px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 12px 28px rgba(35, 37, 46, .14);
}

.insta__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.insta__card:hover img { transform: scale(1.06); }

.insta__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 14, 33, .45), transparent 45%);
  opacity: 0;
  transition: opacity .3s;
}

.insta__card:hover::after { opacity: 1; }

.insta__card svg {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 22px;
  height: 22px;
  color: var(--white-warm);
  opacity: 0;
  transition: opacity .3s;
  z-index: 1;
}

.insta__card:hover svg { opacity: .95; }

.insta__cta-wrap {
  text-align: center;
  margin-top: 40px;
}

.insta__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  border: 1px solid rgba(176, 141, 79, .5);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-size: .95rem;
  letter-spacing: .04em;
  transition: background .3s, border-color .3s, transform .3s;
}

.insta__cta svg { width: 19px; height: 19px; color: var(--gold); }

.insta__cta:hover {
  background: rgba(176, 141, 79, .08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .insta__track { animation: none; }
  .insta { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
}

@media (max-width: 860px) {
  .insta__card { width: 190px; height: 190px; }
}

/* İletişim */
.section--contact { padding: 130px 0; }

.contact__text {
  max-width: 520px;
  margin: 0 auto 36px;
  opacity: .88;
}

.contact__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 34px;
  border: 1px solid rgba(201, 180, 138, .55);
  border-radius: 999px;
  color: var(--white-warm);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: .05em;
  transition: background .3s, border-color .3s, transform .3s;
}

.contact__button svg { width: 21px; height: 21px; }

.contact__button:hover {
  background: rgba(201, 180, 138, .12);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(251, 248, 242, .55);
  padding: 34px 0;
  font-size: .82rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__logo {
  width: 86px;
  height: 73px;
  color: rgba(251, 248, 242, .85);
  display: block;
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero { height: 100vh; }
  html { scroll-behavior: auto; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .section { padding: 80px 0; }

  .prose--two { columns: 1; }

  .container--split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .karahindiba__figure { max-width: 480px; margin: 0 auto; }

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

  .gallery { columns: 1; }

  .nav { padding: 16px 20px; }

  .nav__toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 60;
  }

  .nav__toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.6px;
    background: currentColor;
    transition: transform .3s, top .3s;
  }

  .nav__toggle span:first-child { top: 4px; }
  .nav__toggle span:last-child { top: 16px; }

  .nav--open .nav__toggle span:first-child { top: 10px; transform: rotate(45deg); }
  .nav--open .nav__toggle span:last-child { top: 10px; transform: rotate(-45deg); }

  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(6, 14, 33, .96);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
  }

  .nav--open .nav__links {
    opacity: 1;
    pointer-events: auto;
  }

  .nav--open { color: var(--white-warm) !important; }

  .nav__links a { font-size: 1rem; }
}
