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

html {
  font-size: 112.5%; /* 18px taban – yazılar bir tık daha büyük */
}

:root {
  --earth: #2c2419;
  --terracotta: #b85c38;
  --terracotta-soft: #c67b5c;
  --mustard: #c9a227;
  --forest: #4a5d3e;
  --sand: #e8dfd4;
  --paper: #f5f0e8;
  --warm-white: #faf7f2;
  --ink: #2c2419;
  --ink-soft: #5c5346;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 245, 240, 0.85);
  border-bottom: 1px solid rgba(44, 36, 25, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.25s ease;
  font-family: 'Cormorant Garamond', serif;
}

.navbar.is-scrolled {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  position: relative;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--earth);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.nav-logo:hover {
  color: var(--terracotta);
}

.nav-logo:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--paper), 0 0 0 4px var(--terracotta);
  border-radius: 4px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--earth);
  border-radius: 1px;
}

.nav-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--paper), 0 0 0 4px var(--terracotta);
  border-radius: 6px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  border-radius: 1px;
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: var(--terracotta);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--paper), 0 0 0 4px var(--terracotta);
  border-radius: 4px;
}

.page-home a.nav-link[href="index.php"],
.page-hakkimizda a.nav-link[href="hakkimizda.php"],
.page-magaza a.nav-link[href="magaza.php"],
.page-iletisim a.nav-link[href="iletisim.php"] {
  color: var(--earth);
  font-weight: 600;
}

.page-home a.nav-link[href="index.php"]::after,
.page-hakkimizda a.nav-link[href="hakkimizda.php"]::after,
.page-magaza a.nav-link[href="magaza.php"]::after,
.page-iletisim a.nav-link[href="iletisim.php"]::after {
  width: 100%;
}

.nav-lang {
  display: flex;
  gap: 0.2rem;
  margin-left: 2rem;
}

.lang-btn {
  padding: 0.3rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--sand);
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.lang-btn:hover {
  color: var(--earth);
  border-color: var(--terracotta-soft);
}

.lang-btn:active {
  transform: scale(0.98);
}

.lang-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--paper), 0 0 0 4px var(--terracotta);
}

.lang-btn.active {
  color: var(--warm-white);
  background: var(--terracotta);
  border-color: var(--terracotta);
}

/* Hero editorial */
.hero-editorial {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-white);
  overflow: hidden;
}

.hero-editorial-bg {
  position: absolute;
  inset: 0;
  background-color: var(--forest);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-editorial-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-editorial-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.hero-editorial-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 2rem 4rem;
  max-width: 640px;
  margin: 0 auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.4), 0 4px 20px rgba(0, 0, 0, 0.35);
}

.hero-editorial-inner .hero-editorial-label,
.hero-editorial-inner .hero-editorial-title,
.hero-editorial-inner .hero-editorial-sub {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-editorial-inner .hero-editorial-label { animation-delay: 0.1s; }
.hero-editorial-inner .hero-editorial-title { animation-delay: 0.25s; }
.hero-editorial-inner .hero-editorial-sub { animation-delay: 0.45s; }

@keyframes heroFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-editorial-inner .hero-editorial-title,
.hero-editorial-inner .hero-editorial-sub,
.hero-editorial-inner .hero-editorial-label {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-editorial-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.95;
  margin-bottom: 0.75rem;
}

.hero-editorial-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-editorial-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  margin: 1rem auto 0;
}

.hero-editorial-sub {
  font-size: 0.95rem;
  font-weight: 300;
  opacity: 0.92;
  line-height: 1.6;
  margin: 0;
  max-width: 100%;
}

/* Blocks */
.block {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}

.block-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.block-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.block:nth-child(even) {
  background: var(--warm-white);
}

.block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--earth);
  text-align: center;
  margin-bottom: 0.75rem;
}

.block-intro {
  text-align: center;
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Story */
.story-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.story-content .lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--earth);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.story-content p {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.story-content p:last-child {
  margin-bottom: 1.25rem;
  font-weight: 500;
  color: var(--earth);
}

.story-cta {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--warm-white);
  background: var(--terracotta);
  text-decoration: none;
  border: 2px solid var(--terracotta);
  border-radius: 8px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.story-cta:hover {
  background: var(--earth);
  border-color: var(--earth);
  color: var(--warm-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 36, 25, 0.25);
}

.story-cta:active {
  transform: translateY(0) scale(0.98);
}

.story-cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--paper), 0 0 0 4px var(--terracotta);
}

/* Story asymmetric (home) */
.block-story--asymmetric {
  padding: 4rem 1.5rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.story-copy {
  min-width: 0;
  text-align: left;
}

.story-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--earth);
  margin-bottom: 1rem;
}

.story-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--earth);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.story-text {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.story-visual {
  position: sticky;
  top: 6rem;
}

.story-image-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 420px;
  background: linear-gradient(160deg, #e8e2da 0%, #ddd6ce 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(44, 36, 25, 0.08);
}

.story-placeholder-label {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--ink-soft);
  opacity: 0.6;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Product grid (Yeni Koleksiyon) */
.block-collection {
  background: var(--warm-white);
}

.block-title--left {
  text-align: left;
  margin-bottom: 1.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card-image {
  aspect-ratio: 3 / 4;
  background: linear-gradient(150deg, #ebe6df 0%, #e0dad2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44, 36, 25, 0.06), 0 0 0 1px rgba(44, 36, 25, 0.04);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.product-card:hover .product-card-image {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(44, 36, 25, 0.1), 0 0 0 1px rgba(44, 36, 25, 0.06);
}

.product-card-placeholder {
  font-size: 0.7rem;
  color: var(--ink-soft);
  opacity: 0.6;
  letter-spacing: 0.05em;
}

.product-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--earth);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.product-card-price {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin: 0;
}

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

  .story-visual {
    position: static;
    max-width: 340px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Mood tiles - hex revizyonu */
.mood-tile--terracotta {
  background: #E2725B;
}

.mood-tile--forest {
  background: #228B22;
}

.mood-tile--mustard {
  background: #FFDB58;
}

.mood-tile--chocolate {
  background: #3D1C00;
}

.mood-tile--chocolate .mood-name,
.mood-tile--forest .mood-name {
  color: #f5f0e8;
}

/* Mood tiles */
.mood-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.mood-tile {
  aspect-ratio: 1;
  background: var(--tint, var(--sand));
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  box-shadow: 0 2px 12px rgba(44, 36, 25, 0.06), 0 0 0 1px rgba(44, 36, 25, 0.04);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.mood-tile:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(44, 36, 25, 0.12), 0 0 0 1px rgba(44, 36, 25, 0.06);
}

.mood-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--earth);
  letter-spacing: 0.03em;
  transition: transform 0.3s ease;
}

.mood-tile:hover .mood-name {
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .mood-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* CTA block */
.cta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* CTA split-screen */
.block-cta--split {
  padding: 0;
}

.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.cta-visual {
  min-height: 320px;
  background: #2c2419;
}

.cta-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #3d3529 0%, #2c2419 100%);
}

.cta-placeholder-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.5rem;
  background: var(--warm-white);
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--earth);
  margin-bottom: 0.75rem;
  text-align: left;
}

.cta-intro {
  font-size: 0.9875rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: left;
}

.cta-links--left {
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .cta-split {
    grid-template-columns: 1fr;
  }

  .cta-visual {
    min-height: 240px;
  }

  .cta-image-placeholder {
    min-height: 240px;
  }

  .cta-info {
    padding: 2rem 1.5rem;
  }
}

.cta-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.cta-btn {
  background: var(--terracotta);
  color: var(--warm-white);
  border: 2px solid var(--terracotta);
}

.cta-btn:hover {
  background: var(--earth);
  border-color: var(--earth);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 36, 25, 0.25);
}

.cta-btn:active {
  transform: translateY(0) scale(0.98);
}

.cta-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--paper), 0 0 0 4px var(--terracotta);
}

.cta-btn--outline {
  background: transparent;
  color: var(--terracotta);
  border: 2px solid var(--terracotta);
}

.cta-btn--outline:hover {
  background: var(--terracotta);
  color: var(--warm-white);
  box-shadow: 0 6px 20px rgba(184, 92, 56, 0.3);
}

/* Footer */
.footer-editorial {
  position: relative;
  z-index: 1;
  padding: 1.5rem 0;
  border-top: 1px solid var(--sand);
  text-align: center;
  background: var(--paper);
}

.footer-editorial p {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* Inner pages common */
.section-page {
  padding-top: 4.5rem;
  padding-bottom: 3rem;
  min-height: 60vh;
  position: relative;
  z-index: 1;
}

.section-page .block-title {
  margin-bottom: 1.25rem;
}

/* Address & map (Mağazamız + shared) */
.address-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--warm-white);
  border-radius: 12px;
  border: 1px solid rgba(44, 36, 25, 0.06);
  box-shadow: 0 4px 24px rgba(44, 36, 25, 0.06), 0 0 0 1px rgba(44, 36, 25, 0.04);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.address-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(44, 36, 25, 0.08), 0 0 0 1px rgba(44, 36, 25, 0.06);
}

.address-block .info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.address-block p {
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(44, 36, 25, 0.06);
  box-shadow: 0 8px 32px rgba(44, 36, 25, 0.08), 0 0 0 1px rgba(44, 36, 25, 0.04);
  transition: box-shadow 0.35s ease;
}

.map-wrapper:hover {
  box-shadow: 0 16px 40px rgba(44, 36, 25, 0.1), 0 0 0 1px rgba(44, 36, 25, 0.06);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-card {
  background: var(--warm-white);
  padding: 1.75rem;
  border-radius: 12px;
  border: 1px solid rgba(44, 36, 25, 0.06);
  text-align: center;
  box-shadow: 0 4px 24px rgba(44, 36, 25, 0.06), 0 0 0 1px rgba(44, 36, 25, 0.04);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(44, 36, 25, 0.1), 0 0 0 1px rgba(44, 36, 25, 0.06);
  border-color: rgba(184, 92, 56, 0.15);
}

.contact-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.75rem;
}

.contact-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--earth);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

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

.contact-card a {
  color: var(--terracotta);
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-cta-wrap {
  text-align: center;
  margin-top: 1.5rem;
}

.btn-whatsapp {
  display: inline-block;
  background: #25d366;
  color: var(--warm-white) !important;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:active {
  transform: translateY(0) scale(0.98);
}

.btn-whatsapp:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--paper), 0 0 0 4px #25d366;
}

/* About content */
.lang-content {
  display: none;
}

.lang-content.active {
  display: block;
}

.lang-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--earth);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.lang-content h3:first-child {
  margin-top: 0;
}

.lang-content p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

.about-lead {
  text-align: center;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto 1.75rem;
  line-height: 1.7;
}

.about-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--earth);
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Hakkımızda: daha geniş alan, kartlar iç içe görünmesin */
.page-hakkimizda .wrap {
  max-width: 960px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.about-value-card {
  min-width: 0;
  background: var(--warm-white);
  padding: 1.75rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--sand);
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  box-shadow: 0 2px 12px rgba(44, 36, 25, 0.04);
}

.about-value-card:hover {
  box-shadow: 0 8px 24px rgba(44, 36, 25, 0.1);
  transform: translateY(-2px);
  border-color: var(--terracotta-soft);
}

.about-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto 1rem;
  font-size: 1.35rem;
  color: var(--warm-white);
  background: var(--terracotta);
  border-radius: 50%;
  line-height: 1;
}

.about-value-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--earth);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.about-value-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  overflow-wrap: break-word;
}

.about-why {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--sand);
}

.about-why-list {
  list-style: none;
  max-width: 520px;
  margin: 0 auto;
  padding: 0;
  text-align: left;
}

.about-why-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.about-why-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 600;
}

@media (max-width: 900px) {
  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .about-values {
    grid-template-columns: 1fr;
  }
}

.about-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.about-content .lang-content p {
  text-align: center;
}

/* ========== Minimal About Page (Hakkımızda) ========== */
.page-about-minimal {
  background: var(--paper);
}

.page-about-minimal .footer-editorial {
  background: var(--paper);
}

/* Hero — sade, tek kolon */
.about-minimal .about-hero {
  padding: 3rem 1.5rem 3.5rem;
  max-width: 560px;
  margin: 0 auto;
  background: transparent;
  min-height: 0;
}

.about-minimal .about-hero.section-page {
  padding-bottom: 3.5rem;
  min-height: 0;
}

.about-minimal .about-hero-inner {
  padding: 0;
  text-align: center;
}

.about-minimal .about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 500;
  color: var(--earth);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
  text-align: center;
}

.about-minimal .about-title::after {
  display: none;
}

.about-minimal .about-lead {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 48ch;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

/* Vision / Mission + görsel — tek arka plan, sade grid */
.about-vision-mission {
  padding: 3rem 1.5rem 3rem;
  background: var(--warm-white);
}

.about-vm-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.about-vm-copy {
  min-width: 0;
}

.about-vm-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--earth);
  margin-top: 1.75rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
  padding-left: 0;
  border-left: none;
}

.about-vm-title:first-child {
  margin-top: 0;
}

.about-vm-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 0;
  padding-left: 0;
}

.about-vm-visual {
  position: static;
}

.about-vm-image-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 380px;
  background: var(--sand);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: none;
}

.about-vm-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Değerlerimiz — minimal kartlar */
.about-values-section {
  padding: 2.5rem 1.5rem 3rem;
  background: var(--paper);
}

.about-values-inner {
  max-width: 900px;
  margin: 0 auto;
}

.about-minimal .about-section-head {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--earth);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  text-align: center;
}

.about-minimal .about-section-head::after {
  display: none;
}

.about-minimal .about-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.about-minimal .about-value-card {
  min-width: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 1.5rem;
  box-shadow: none;
  transition: none;
}

.about-minimal .about-value-card:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--sand);
}

.about-value-icon--minimal {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink-soft);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.about-minimal .about-value-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--earth);
  margin-bottom: 0.35rem;
}

.about-minimal .about-value-card p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

@media (max-width: 960px) {
  .about-vm-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-vm-visual {
    max-width: 320px;
    margin: 0 auto;
  }

  .about-vm-image-placeholder {
    max-height: 360px;
  }
}

@media (max-width: 768px) {
  .about-minimal .about-values {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .about-minimal .about-values {
    grid-template-columns: 1fr;
  }
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    background: var(--paper);
    border-bottom: 1px solid var(--sand);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease;
  }

  .nav-menu.open {
    max-height: 320px;
    opacity: 1;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid var(--sand);
  }

  .nav-lang {
    padding: 1rem 1.5rem 0;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero-editorial {
    min-height: 60vh;
  }

  .hero-editorial-inner {
    padding: 2rem 1.25rem 3rem;
  }

  .hero-editorial-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
  }

  .hero-editorial-title {
    font-size: 1.75rem;
  }

  .hero-editorial-sub {
    font-size: 0.9rem;
    line-height: 1.65;
  }
}
