/* Raziye Kaya Studio — özgün site
   Palet, gönderdiğiniz fotoğraflardan (taş duvar, ahşap kapılar, toprak tonları)
   ImageMagick ile çıkarılan gerçek renklerden türetildi. */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --cream: #f6efe4;
  --cream-2: #efe4d2;
  --sand: #d9c6a0;
  --stone: #a5916c;
  --terracotta: #a85c34;
  --terracotta-dark: #7c4526;
  --brick: #5c1e1b;
  --charcoal: #241f1b;
  --charcoal-soft: #3a332c;
  --white: #fffaf3;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', -apple-system, sans-serif;

  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  margin: 0 0 0.4em;
  color: var(--charcoal);
}

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  font-weight: 500;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 40px;
  mix-blend-mode: normal;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(246, 239, 228, 0.92);
  backdrop-filter: blur(8px);
  padding: 14px 40px;
  box-shadow: 0 2px 18px rgba(36, 31, 27, 0.06);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  color: var(--white);
  transition: color 0.4s ease;
}
.nav.scrolled .nav-logo { color: var(--charcoal); }
.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0; padding: 0;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.nav-links a {
  color: var(--white);
  transition: color 0.4s ease, opacity 0.2s ease;
  opacity: 0.85;
}
.nav-links a:hover { opacity: 1; border-bottom: 1px solid currentColor; }
.nav.scrolled .nav-links a { color: var(--charcoal-soft); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/photos/hero-poster.jpg');
  background-size: cover;
  background-position: center 25%;
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(36,31,27,0.35) 0%, rgba(36,31,27,0.15) 40%, rgba(36,31,27,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 90px;
  max-width: 760px;
  color: var(--white);
}
.hero-content .eyebrow { color: var(--sand); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.05;
  margin: 14px 0 20px;
}
.hero p {
  font-size: 1.15rem;
  max-width: 540px;
  color: var(--cream-2);
  font-weight: 300;
}
.hero-scroll {
  position: absolute;
  bottom: 34px; left: 40px;
  z-index: 2;
  color: var(--cream-2);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.hero-scroll::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--sand);
  display: inline-block;
  animation: scrollpulse 2.2s ease-in-out infinite;
}
@keyframes scrollpulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ---------- About / Intro ---------- */
.about {
  padding: 130px 0 110px;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.about-photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.about-photo:hover img { transform: scale(1.06); }
.about h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin-top: 8px;
}
.about p { font-size: 1.05rem; color: var(--charcoal-soft); max-width: 46ch; }
.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(165,145,108,0.35);
}
.about-facts h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  margin: 0 0 8px;
}
.about-facts ul { margin: 0; padding: 0; list-style: none; font-size: 0.94rem; color: var(--charcoal-soft); }
.about-facts li { margin-bottom: 6px; }
.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 13px 30px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 2px;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn:hover { background: var(--brick); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 1px solid currentColor;
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--charcoal); }
.btn-secondary {
  background: transparent;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
}
.btn-secondary:hover { background: var(--charcoal); color: var(--white); }

.about-cta { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-top: 30px; }
.about-cta .btn { margin-top: 0; }
.link-arrow {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--terracotta-dark);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.link-arrow:hover { border-color: currentColor; color: var(--brick); }

.cta-buttons { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-top: 30px; }
.cta-buttons .btn { margin-top: 0; }

/* ---------- Results / Sahada denenmiş ---------- */
.results {
  padding: 110px 0;
  background: var(--charcoal);
  color: var(--cream);
}
.results .eyebrow { color: var(--sand); }
.results h2 { color: var(--white); max-width: 14ch; }
.results-intro { max-width: 56ch; color: var(--cream-2); font-size: 1.02rem; margin-bottom: 56px; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(246,239,228,0.12);
  border-top: 1px solid rgba(246,239,228,0.12);
}
.result-card {
  background: var(--charcoal);
  padding: 34px 30px;
}
.result-card .num {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  color: var(--terracotta);
  display: block;
  margin-bottom: 10px;
}
.result-card h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 10px; }
.result-card p { color: var(--cream-2); font-size: 0.93rem; margin: 0; }

/* ---------- Gallery ---------- */
.gallery { padding: 110px 0; background: var(--cream-2); }
.gallery-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 46px; flex-wrap: wrap; gap: 20px; }
.gallery h2 { max-width: 16ch; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 175px;
  gap: 14px;
}
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  position: relative;
}
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1), filter 0.6s ease;
  filter: grayscale(15%);
}
.gallery-grid figure:hover img { transform: scale(1.08); filter: grayscale(0%); }
.g1 { grid-column: span 2; grid-row: span 2; }
.g2, .g3, .g4, .g5, .g6, .g7, .g8, .g9 { grid-column: span 1; grid-row: span 1; }

@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .g1 { grid-column: span 2; grid-row: span 1; }
  .g2, .g3, .g4, .g5, .g6, .g7, .g8, .g9 { grid-column: span 1; grid-row: span 1; }
}

/* ---------- Referanslar / Testimonials ---------- */
.testimonials { padding: 110px 0; background: var(--cream); }
.testimonials-intro { max-width: 60ch; color: var(--charcoal-soft); font-size: 1.02rem; margin-bottom: 56px; }

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 64px;
}
.quote-card {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 22px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(165,145,108,0.28);
  border-radius: 4px;
  padding: 28px;
}
.quote-photo {
  width: 108px; height: 108px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.quote-photo img { width: 100%; height: 100%; object-fit: cover; }
.quote-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  font-weight: 500;
  margin-bottom: 10px;
}
.quote-card blockquote {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: 1.14rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--charcoal);
}
.quote-cite {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  color: var(--charcoal-soft);
}
.quote-cite strong { color: var(--charcoal); font-weight: 500; }

.case-subhead {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0 0 26px;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.case-card {
  background: var(--cream-2);
  border-radius: 4px;
  overflow: hidden;
}
.case-card .case-photo { aspect-ratio: 4/3; overflow: hidden; }
.case-card .case-photo img { width: 100%; height: 100%; object-fit: cover; }
.case-card .case-body { padding: 22px 24px 26px; }
.case-card h4 { font-size: 1.05rem; margin: 0 0 10px; }
.case-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--charcoal-soft);
  margin: 0;
  line-height: 1.5;
}
.case-card.no-photo .case-body { padding: 30px 26px; }

@media (max-width: 880px) {
  .quote-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .quote-card { grid-template-columns: 72px 1fr; }
  .quote-photo { width: 72px; height: 72px; }
}

/* ---------- Neden (Anchor / Contrast) ---------- */
.anchor { padding: 110px 0; background: var(--cream-2); }
.anchor-head { text-align: center; max-width: 620px; margin: 0 auto 60px; }
.anchor-head h2 { margin-top: 8px; }
.anchor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(36,31,27,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.anchor-col { background: var(--cream-2); padding: 44px 40px; }
.anchor-loss { background: #ece1cf; }
.anchor-gain { background: var(--white); }
.anchor-col h3 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 2px solid currentColor;
}
.anchor-loss h3 { color: var(--brick); }
.anchor-gain h3 { color: var(--terracotta-dark); }
.anchor-col ul { list-style: none; margin: 0; padding: 0; }
.anchor-col li {
  position: relative;
  padding: 0 0 18px 26px;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--charcoal-soft);
}
.anchor-col li:last-child { padding-bottom: 0; }
.anchor-col li strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.14rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.anchor-total {
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px dashed rgba(36,31,27,0.2);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.08rem;
}
.anchor-loss .anchor-total { color: var(--brick); }
.anchor-gain .anchor-total { color: var(--terracotta-dark); }
.anchor-loss li::before {
  content: "−";
  position: absolute; left: 0; top: -2px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--brick);
}
.anchor-gain li::before {
  content: "+";
  position: absolute; left: 0; top: -2px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--terracotta);
}
.anchor-foot { text-align: center; margin-top: 44px; }

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

/* ---------- Paketler (Pricing) ---------- */
.pricing { padding: 110px 0; background: var(--charcoal); color: var(--cream); }
.pricing .eyebrow { color: var(--sand); }
.pricing h2 { color: var(--white); max-width: 18ch; }
.pricing-intro { max-width: 60ch; color: var(--cream-2); font-size: 1.02rem; margin-bottom: 56px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
.price-card {
  background: var(--charcoal-soft);
  border: 1px solid rgba(246,239,228,0.14);
  border-radius: 4px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: var(--charcoal);
  border: 1px solid var(--terracotta);
  box-shadow: 0 18px 46px rgba(0,0,0,0.35);
  transform: translateY(-10px);
}
.price-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--terracotta);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  font-weight: 500;
}
.price-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 6px; }
.price-amount {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--terracotta);
  margin: 6px 0 4px;
}
.price-amount span { font-size: 1rem; color: var(--cream-2); font-family: var(--font-sans); }
.price-meta { font-size: 0.82rem; color: var(--stone); margin-bottom: 22px; }
.price-card ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex-grow: 1;
}
.price-card li {
  position: relative;
  padding: 0 0 13px 20px;
  font-size: 0.93rem;
  color: var(--cream-2);
  line-height: 1.45;
}
.price-card li::before {
  content: "·";
  position: absolute; left: 2px; top: 0;
  color: var(--terracotta);
  font-size: 1.4rem;
  line-height: 1;
}
.price-card .btn { align-self: flex-start; margin-top: 0; }
.pricing-process {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(246,239,228,0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  justify-content: space-between;
  color: var(--cream-2);
  font-size: 0.86rem;
}
.pricing-process span { display: flex; align-items: center; gap: 10px; }
.pricing-process .step-num {
  font-family: var(--font-serif);
  color: var(--terracotta);
  font-size: 1.1rem;
}

@media (max-width: 880px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .pricing-process { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ---------- Yaklaşımım (Approach) page ---------- */
.approach-hero {
  padding: 170px 0 90px;
  background: var(--cream);
}
.approach-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
}
.approach-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.12;
  margin-top: 10px;
}
.approach-hero .lede {
  font-size: 1.1rem;
  color: var(--charcoal-soft);
  max-width: 50ch;
  margin-top: 20px;
}
.approach-hero-photo {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.approach-hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.approach-principles {
  padding: 40px 0 100px;
  background: var(--cream);
}
.approach-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  padding: 40px 0;
  border-top: 1px solid rgba(165,145,108,0.35);
}
.approach-item:last-child { border-bottom: 1px solid rgba(165,145,108,0.35); }
.approach-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--terracotta);
  line-height: 1;
}
.approach-item h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.approach-item p {
  color: var(--charcoal-soft);
  max-width: 62ch;
  font-size: 1.02rem;
  margin: 0;
}

.approach-close {
  padding: 110px 0;
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
}
.approach-close .eyebrow { color: var(--sand); }
.approach-close .btn-secondary { border-color: var(--cream-2); color: var(--cream-2); }
.approach-close .btn-secondary:hover { background: var(--cream-2); color: var(--charcoal); }
.approach-close blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  max-width: 32ch;
  margin: 18px auto 0;
  color: var(--white);
  line-height: 1.35;
}

@media (max-width: 880px) {
  .approach-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .approach-item { grid-template-columns: 56px 1fr; gap: 18px; }
  .approach-num { font-size: 1.7rem; }
}

/* ---------- CTA / Footer ---------- */
.cta {
  padding: 130px 0;
  text-align: center;
  background: var(--sand);
}
.cta h2 { font-size: clamp(2rem, 4vw, 3rem); max-width: 18ch; margin: 0 auto 20px; }
.cta p { max-width: 48ch; margin: 0 auto 30px; color: var(--charcoal-soft); }

footer {
  background: var(--charcoal);
  color: var(--cream-2);
  padding: 50px 0 28px;
  font-size: 0.86rem;
}
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; align-items: center; }
.footer-logo { font-family: var(--font-serif); font-size: 1.2rem; color: var(--white); }
.footer-links { display: flex; gap: 26px; list-style: none; padding: 0; margin: 0; }
.footer-note { margin-top: 30px; opacity: 0.55; font-size: 0.78rem; }

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  .results-grid { grid-template-columns: 1fr 1fr; }
}
