/* Cihan Çaprak — Ana stiller */
:root {
  --color-bg: #faf7f2;
  --color-surface: #ffffff;
  --color-ink: #1a1614;
  --color-muted: #5c534c;
  --color-accent: #8b2942;
  --color-accent-soft: rgba(139, 41, 66, 0.08);
  --color-gold: #b8860b;
  --color-forest: #2d4a3e;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow-soft: 0 24px 48px rgba(26, 22, 20, 0.08);
  --shadow-card: 0 8px 32px rgba(26, 22, 20, 0.06);
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #6a1f33;
}

/* Üst şerit */
.top-bar {
  background: var(--color-forest);
  color: #e8ebe9;
  font-size: 0.875rem;
  text-align: center;
  padding: 0.5rem 1rem;
}

.top-bar a {
  color: #f0d78c;
  font-weight: 500;
}

.top-bar a:hover {
  color: #fff;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 22, 20, 0.06);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-ink);
}

.logo span {
  color: var(--color-accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-ink);
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
}

.nav-list a {
  color: var(--color-muted);
  font-weight: 500;
  font-size: 0.9375rem;
}

.nav-list a:hover {
  color: var(--color-accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, #6a1f33 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139, 41, 66, 0.35);
}

.btn.btn-primary,
a.btn.btn-primary,
.nav-list a.btn.btn-primary {
  color: #fff;
}

.btn.btn-primary:visited,
a.btn.btn-primary:visited,
.nav-list a.btn.btn-primary:visited {
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139, 41, 66, 0.4);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--color-ink);
  border: 2px solid rgba(26, 22, 20, 0.15);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 1.5rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(139, 41, 66, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(45, 74, 62, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, var(--color-bg) 0%, #f2ebe3 100%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--color-ink);
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--color-muted);
  margin: 0 0 2rem;
  max-width: 32ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 22, 20, 0.08);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-forest);
}

.hero-stat span {
  font-size: 0.875rem;
  color: var(--color-muted);
}

.hero-visual {
  position: relative;
  min-height: 380px;
}

.hero-figure {
  position: relative;
  z-index: 0;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(26, 22, 20, 0.08);
  aspect-ratio: 4 / 5;
  max-height: min(520px, 70vh);
}

.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-card__title {
  margin: 0 0 0.5rem;
  font-weight: 600;
  color: var(--color-ink);
}

.hero-card {
  position: absolute;
  z-index: 2;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.hero-card--1 {
  top: 0;
  right: 0;
  width: min(100%, 280px);
  border: 1px solid rgba(26, 22, 20, 0.06);
}

.hero-card--2 {
  bottom: 10%;
  left: 0;
  width: min(100%, 260px);
  background: var(--color-forest);
  color: #e8ebe9;
}

.hero-card--2 p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.hero-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.hero-icon-cell {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--color-accent-soft), transparent);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bölümler */
section {
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--color-ink);
}

.section-head p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.0625rem;
}

/* Hizmetler */
.services {
  background: var(--color-surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(26, 22, 20, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.service-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8e4de;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.04);
}

.service-card__body {
  padding: 1.75rem 2rem 2rem;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  margin: 0 0 0.75rem;
}

.service-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9375rem;
}

/* Değerler */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.value-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-forest);
  color: #f0d78c;
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
}

.value-item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9375rem;
}

.about-photo {
  margin: 0 0 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(26, 22, 20, 0.06);
}

.about-photo img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-photo__cap {
  margin: 0;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--color-muted);
  background: var(--color-surface);
  border-top: 1px solid rgba(26, 22, 20, 0.06);
  text-align: center;
}

/* İletişim */
.contact {
  background: linear-gradient(160deg, var(--color-forest) 0%, #1a2e28 100%);
  color: #e8ebe9;
}

.contact .section-head h2 {
  color: #faf7f2;
}

.contact .section-head p {
  color: rgba(232, 235, 233, 0.85);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 1.5rem;
  color: #f0d78c;
}

.contact-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.contact-row:last-child {
  margin-bottom: 0;
}

.contact-row svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 3px;
  opacity: 0.9;
}

.contact-row a {
  color: #fff;
  font-weight: 500;
}

.contact-row a:hover {
  color: #f0d78c;
}

.contact-row address {
  font-style: normal;
  line-height: 1.6;
  color: rgba(232, 235, 233, 0.95);
}

.contact-visual {
  margin-top: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.15);
}

.contact-visual img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contact-visual__hint {
  margin: 0;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  text-align: center;
  color: rgba(232, 235, 233, 0.75);
  background: rgba(0, 0, 0, 0.25);
}

/* Footer */
.site-footer {
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(26, 22, 20, 0.08);
  font-size: 0.875rem;
  color: var(--color-muted);
}

.site-footer strong {
  color: var(--color-ink);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 0;
    order: -1;
  }

  .hero-figure {
    max-height: none;
    aspect-ratio: 16 / 11;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(280px, 85vw);
    height: 100vh;
    background: var(--color-surface);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
    padding: 5rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 200;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .nav .btn {
    width: 100%;
    margin-top: 0.5rem;
  }

  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 150;
  }

  .hero-card--1,
  .hero-card--2 {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-bottom: 1rem;
  }

  .hero-visual {
    min-height: auto;
  }
}
