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

:root {
  --bg: #f6efe7;
  --surface: #fffaf3;
  --surface-strong: #f2dfd0;
  --text: #18110f;
  --muted: #75645d;
  --line: rgba(24, 17, 15, 0.16);

  --accent: #c24b5a;
  --accent-dark: #7d2636;
  --accent-soft: #ffd8cf;
  --gold: #c9973f;
  --olive: #596c4f;

  --shadow: 0 24px 70px rgba(67, 37, 27, 0.16);
  --radius-lg: 34px;
  --radius-md: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(194, 75, 90, 0.24), transparent 34%),
    radial-gradient(circle at 90% 18%, rgba(201, 151, 63, 0.2), transparent 28%),
    linear-gradient(135deg, #f6efe7 0%, #fffaf3 45%, #efe1d2 100%);
  line-height: 1.6;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 250, 243, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: bold;
  letter-spacing: -2px;
  color: var(--accent-dark);
}

.nav {
  display: flex;
  gap: 32px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.nav a {
  position: relative;
  padding: 8px 0;
  color: var(--muted);
}

.nav a:hover {
  color: var(--text);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

.menu {
  display: none;
  font-size: 30px;
  line-height: 1;
  background: none;
  border: none;
  color: var(--accent-dark);
  cursor: pointer;
}

.section {
  padding: 96px 6vw;
  border-bottom: 1px solid var(--line);
}

.section-label {
  width: fit-content;
  margin-bottom: 34px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.58);
  color: var(--accent-dark);
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 56px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1,
h2 {
  font-family: Georgia, serif;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(58px, 9vw, 148px);
  line-height: 0.86;
  letter-spacing: -5px;
  color: var(--text);
}

h2 {
  font-size: clamp(46px, 6vw, 96px);
  line-height: 0.92;
  margin-bottom: 32px;
  letter-spacing: -3px;
  color: var(--accent-dark);
}

.subtitle {
  margin: 26px 0;
  font-size: 17px;
  color: var(--olive);
  text-transform: uppercase;
  letter-spacing: 2.4px;
}

.text {
  max-width: 540px;
  margin-bottom: 34px;
  color: var(--muted);
}

.placeholder {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(125, 38, 54, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(to top right, transparent 49.85%, rgba(125, 38, 54, 0.18) 50%, transparent 50.15%),
    linear-gradient(to bottom right, transparent 49.85%, rgba(125, 38, 54, 0.18) 50%, transparent 50.15%),
    linear-gradient(135deg, var(--accent-soft), var(--surface) 42%, #ead5bd);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(125, 38, 54, 0.58);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.8px;
}

.placeholder::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 250, 243, 0.8);
  border-radius: calc(var(--radius-lg) - 12px);
}

.placeholder::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -48px;
  bottom: -48px;
  border-radius: 50%;
  background: rgba(194, 75, 90, 0.2);
}

.placeholder.small {
  min-height: 110px;
  border-radius: var(--radius-md);
  box-shadow: none;
}

.button {
  display: inline-block;
  padding: 15px 30px;
  border: 1px solid var(--accent-dark);
  border-radius: 999px;
  background: transparent;
  color: var(--accent-dark);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.4px;
  cursor: pointer;
  transition: 0.25s ease;
}

.button:hover {
  background: var(--accent-dark);
  color: var(--surface);
  transform: translateY(-2px);
}

.button.dark {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: var(--surface);
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(194, 75, 90, 0.26);
}

.button.dark:hover {
  background: var(--surface);
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: start;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.portfolio-card {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 243, 0.62);
}

.portfolio-card .placeholder {
  min-height: 260px;
  margin-bottom: 14px;
  border-radius: 18px;
  box-shadow: none;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0 4px 4px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.story-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.story-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 243, 0.78);
  box-shadow: 0 18px 48px rgba(67, 37, 27, 0.08);
}

.story-card .placeholder {
  min-height: 180px;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.story-content {
  padding: 20px;
}

.story-content h3 {
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 18px;
}

.story-content p {
  color: var(--muted);
}

.video-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
}

.video-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
  background: rgba(255, 250, 243, 0.76);
  box-shadow: 0 16px 44px rgba(67, 37, 27, 0.08);
}

.video-item h3 {
  margin-bottom: 4px;
  color: var(--accent-dark);
}

.video-item p {
  color: var(--muted);
}

form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 243, 0.76);
}

input,
textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(125, 38, 54, 0.22);
  border-radius: 16px;
  background: rgba(255, 250, 243, 0.9);
  color: var(--text);
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(194, 75, 90, 0.12);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.footer {
  padding: 34px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  background: rgba(255, 250, 243, 0.68);
}

/* Tablet */
@media (max-width: 1100px) {
  .portfolio-grid,
  .story-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobil */
@media (max-width: 900px) {
  .header {
    height: 68px;
    padding: 0 24px;
  }

  .logo {
    font-size: 30px;
  }

  .menu {
    display: block;
  }

  .nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 14px;
    right: 14px;
    padding: 26px 24px;
    flex-direction: column;
    gap: 20px;
    border: 1px solid var(--line);
    border-radius: 0 0 26px 26px;
    background: rgba(255, 250, 243, 0.96);
    box-shadow: var(--shadow);
    font-size: 14px;
  }

  .nav.open {
    display: flex;
  }

  .section {
    padding: 58px 24px;
  }

  .hero,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 34px;
  }

  .hero-image {
    order: -1;
  }

  .placeholder {
    min-height: 360px;
  }

  .portfolio-grid,
  .story-list {
    grid-template-columns: 1fr;
  }

  .video-item {
    grid-template-columns: 120px 1fr;
    gap: 16px;
  }

  .placeholder.small {
    min-height: 90px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Kis mobil */
@media (max-width: 480px) {
  .section {
    padding: 50px 18px;
  }

  .hero h1 {
    font-size: 52px;
    letter-spacing: -2px;
  }

  h2 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .subtitle {
    font-size: 14px;
  }

  .placeholder {
    min-height: 300px;
    border-radius: 24px;
  }

  .video-item {
    grid-template-columns: 1fr;
  }
}