/* ================================================
   NEFES HER YERDE — Main Stylesheet v1.0
   Aesthetic: Organic Minimalism
   Fonts: Inter (all weights)
   Palette: Warm Cream · Sage Green · Terracotta
   ================================================ */

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


/* ================================================
   1. DESIGN TOKENS
   ================================================ */
:root {
  /* — Color Palette — */
  --cream:          #F9F7F2;
  --cream-alt:      #F2EFE8;
  --cream-deep:     #E8E4DC;
  --white:          #FDFCFA;

  --bark:           #2C2421;
  --bark-mid:       #5E4F42;
  --bark-light:     #8E7D6C;

  --sage:           #8A9A5B;
  --sage-hover:     #758548;
  --sage-light:     #A8B87E;
  --sage-pale:      #E8ECE0;

  --terra:          #A0522D;
  --terra-hover:    #8B4526;
  --terra-light:    #C0744F;

  --sand:           #CFC0A2;
  --sand-light:     #E8DECE;

  /* — Typography — */
  --serif:  'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --sans:   'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* — Spacing scale — */
  --sp-1:  0.5rem;    /*  8px */
  --sp-2:  1rem;      /* 16px */
  --sp-3:  1.5rem;    /* 24px */
  --sp-4:  2rem;      /* 32px */
  --sp-5:  2.5rem;    /* 40px */
  --sp-6:  3rem;      /* 48px */
  --sp-8:  4rem;      /* 64px */
  --sp-10: 5rem;      /* 80px */
  --sp-12: 6rem;      /* 96px */
  --sp-16: 8rem;      /* 128px */

  /* — Section rhythm — */
  --section-y: clamp(4.5rem, 8vw, 8rem);

  /* — Border radius — */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   28px;
  --r-xl:   48px;
  --r-pill: 100px;

  /* — Shadows — */
  --sh-xs:  0 1px 6px  rgba(42, 33, 24, 0.05);
  --sh-sm:  0 2px 14px rgba(42, 33, 24, 0.08);
  --sh-md:  0 5px 28px rgba(42, 33, 24, 0.11);
  --sh-lg:  0 10px 50px rgba(42, 33, 24, 0.14);
  --sh-xl:  0 20px 70px rgba(42, 33, 24, 0.18);

  /* — Motion — */
  --ease:        0.3s ease;
  --ease-slow:   0.6s ease;
  --ease-spring: 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* ================================================
   2. BASE & RESET
   ================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--bark);
  background-color: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

/* Subtle organic grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.022;
  z-index: 9000;
}

img    { max-width: 100%; height: auto; display: block; }
a      { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }


/* ================================================
   3. TYPOGRAPHY
   ================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  color: var(--bark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.75rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem,   4vw, 3.4rem);  }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem);  }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.2rem; }

p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--bark-mid);
  line-height: 1.8;
}

.lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.85;
}

/* Section label above titles */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--sp-2);
}

.eyebrow-line {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--sp-2);
}
.eyebrow-line::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--sage);
  flex-shrink: 0;
}

.section-label { margin-bottom: var(--sp-1); }
.section-title { margin-bottom: var(--sp-2); }
.section-desc  { max-width: 52ch; }

.tc  { text-align: center; }
.tc .section-desc { margin-left: auto; margin-right: auto; }


/* ================================================
   4. LAYOUT UTILITIES
   ================================================ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.container-sm  { max-width: 720px;  margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.container-lg  { max-width: 1380px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

section { padding: var(--section-y) 0; }

/* Two-column grid used in about / project sections */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }

/* Divider line accent */
.divider-accent {
  display: block;
  width: 44px;
  height: 2px;
  background: var(--terra);
  border: none;
  margin: var(--sp-3) 0 var(--sp-4);
}
.divider-accent.center,
.tc .divider-accent { margin-left: auto; margin-right: auto; }

/* BG variants */
.bg-alt  { background: var(--cream-alt); }
.bg-pale { background: var(--sage-pale); }
.bg-sage { background: var(--sage); }
.bg-bark { background: var(--bark); }


/* ================================================
   5. BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.85rem calc(2rem + 0.08em) 0.85rem 2rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  transition: background var(--ease), color var(--ease), box-shadow var(--ease), transform var(--ease), border-color var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--terra);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(184, 97, 62, 0.28);
}
.btn-primary:hover {
  background: var(--terra-hover);
  box-shadow: 0 6px 26px rgba(184, 97, 62, 0.38);
}

.btn-dark {
  background: var(--bark);
  color: var(--white);
}
.btn-dark:hover { background: var(--bark-mid); }

.btn-sage {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(138, 154, 91, 0.28);
}
.btn-sage:hover { background: var(--sage-hover); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--bark);
  color: var(--bark);
}
.btn-outline:hover {
  background: var(--bark);
  color: var(--cream);
  border-color: var(--bark);
}

.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(253, 252, 248, 0.45);
  color: var(--white);
}
.btn-outline-white:hover {
  background: rgba(253, 252, 248, 0.12);
  border-color: rgba(253, 252, 248, 0.8);
}

.btn-white {
  background: var(--white);
  color: var(--bark);
  box-shadow: 0 4px 18px rgba(42, 33, 24, 0.18);
}
.btn-white:hover {
  background: var(--cream);
  box-shadow: 0 6px 26px rgba(42, 33, 24, 0.24);
}

.btn-ghost {
  background: transparent;
  color: var(--terra);
  padding-left: 0;
  padding-right: 0;
  letter-spacing: 0.06em;
}
.btn-ghost::after { content: '→'; display: inline-block; transition: transform var(--ease); }
.btn-ghost:hover  { transform: none; }
.btn-ghost:hover::after { transform: translateX(5px); }

.btn-sm { padding: 0.65rem calc(1.5rem + 0.08em) 0.65rem 1.5rem; font-size: 0.74rem; }
.btn-lg { padding: 1rem   calc(2.5rem + 0.08em) 1rem   2.5rem;  font-size: 0.85rem; }

.btn-block { display: flex; width: 100%; }

.btn-arrow::after { content: '→'; display: inline-block; transition: transform var(--ease); }
.btn-arrow:hover::after { transform: translateX(5px); }


/* ================================================
   6. NAVIGATION / HEADER
   WordPress: get_header(); → header.php
   ================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  padding: 1.1rem 0;
  background: rgba(249, 247, 242, 0.52);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 4px 24px rgba(44, 36, 33, 0.07);
  transition: background var(--ease-slow), box-shadow var(--ease-slow), padding var(--ease);
}

.site-header.scrolled {
  background: rgba(249, 247, 242, 0.78);
  padding: 0.75rem 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 6px 32px rgba(44, 36, 33, 0.11);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

/* — Logo — */
.site-logo { text-decoration: none; flex-shrink: 0; }
.logo-name {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--bark);
  letter-spacing: 0.01em;
  transition: color var(--ease);
}
.logo-sub {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 2px;
  transition: color var(--ease);
}


/* — Desktop Nav —
   WordPress: wp_nav_menu(['theme_location' => 'primary', 'container_class' => 'main-navigation']) */
.main-navigation { display: flex; align-items: center; gap: var(--sp-3); }

.nav-list {
  display: flex;
  align-items: center;
  gap: 1px;
}
.nav-list a {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--bark);
  padding: 0.45rem 0.7rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: background var(--ease), color var(--ease);
}
.nav-list a:hover {
  background: rgba(138, 154, 91, 0.12);
  color: var(--sage);
}
.nav-list .current-menu-item a {
  color: var(--sage);
  background: rgba(138, 154, 91, 0.1);
}

/* — Hamburger toggle — */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 900;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--bark);
  transition: transform var(--ease), opacity var(--ease), width var(--ease);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* — Mobile Nav Drawer — */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 799;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-nav.open { transform: none; }

.mobile-nav .mobile-nav-item {
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 300;
  color: var(--bark);
  padding: 0.3rem 1rem;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.4s ease, transform 0.4s ease, color var(--ease);
}
.mobile-nav.open .mobile-nav-item {
  opacity: 1;
  transform: none;
}
.mobile-nav.open .mobile-nav-item:nth-child(1) { transition-delay: 0.08s; }
.mobile-nav.open .mobile-nav-item:nth-child(2) { transition-delay: 0.14s; }
.mobile-nav.open .mobile-nav-item:nth-child(3) { transition-delay: 0.20s; }
.mobile-nav.open .mobile-nav-item:nth-child(4) { transition-delay: 0.26s; }
.mobile-nav.open .mobile-nav-item:nth-child(5) { transition-delay: 0.32s; }
.mobile-nav.open .mobile-nav-item:nth-child(6) { transition-delay: 0.38s; }
.mobile-nav .mobile-nav-item:hover { color: var(--sage); }

.mobile-nav .mobile-nav-cta {
  margin-top: var(--sp-4);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.44s, transform 0.4s ease 0.44s;
}
.mobile-nav.open .mobile-nav-cta { opacity: 1; transform: none; }


/* ================================================
   7. HERO SECTION
   WordPress: home template, featured image
   ================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vw, 6rem);
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  will-change: transform;
  animation: heroBreathe 14s ease-in-out infinite;
}

@keyframes heroBreathe {
  0%, 100% { transform: scale(1);    }
  50%       { transform: scale(1.05); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(42, 33, 24, 0.50) 0%,
    rgba(42, 33, 24, 0.20) 45%,
    rgba(42, 33, 24, 0.55) 100%
  );
}

/* Bottom gradient fade */
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(42, 33, 24, 0.45), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 7rem;
  padding-bottom: 6rem;
  max-width: 780px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(253, 252, 248, 0.7);
  margin-bottom: var(--sp-3);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--sage-light);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: var(--sp-4);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--sage-light);
}
.hero-title em:empty {
  display: none;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(253, 252, 248, 0.8);
  max-width: 54ch;
  margin-bottom: var(--sp-6);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
}

/* Breathing circles */
.breathe-orb {
  position: absolute;
  bottom: 14%;
  right: 7%;
  width: 110px;
  height: 110px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
  pointer-events: none;
}
.breathe-orb .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(253, 252, 248, 0.25);
  animation: ringBreathe 7s ease-in-out infinite;
}
.breathe-orb .ring:nth-child(2) { inset: 14px; border-color: rgba(157, 196, 160, 0.35); animation-delay: -2.3s; }
.breathe-orb .ring:nth-child(3) { inset: 28px; border-color: rgba(253, 252, 248, 0.2);  animation-delay: -4.6s; }
.breathe-orb .center-dot {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253, 252, 248, 0.5);
}

@keyframes ringBreathe {
  0%, 100% { transform: scale(1);    opacity: 0.8; }
  50%       { transform: scale(1.18); opacity: 0.35; }
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
  color: rgba(253, 252, 248, 0.45);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: scrollPulse 2.4s ease-in-out infinite;
}
.hero-scroll-cue::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(253, 252, 248, 0.35), transparent);
}

@keyframes scrollPulse {
  0%, 100% { transform: translateX(-50%) translateY(0);  opacity: 0.7; }
  50%       { transform: translateX(-50%) translateY(7px); opacity: 0.35; }
}


/* ================================================
   8. SECTION DIVIDERS (SVG waves)
   ================================================ */
.wave-divider { display: block; width: 100%; line-height: 0; overflow: hidden; margin-top: -1px; margin-bottom: -1px; position: relative; z-index: 1; }
.wave-divider svg { display: block; width: 100%; height: 56px; }


/* ================================================
   9. SERVICES SECTION
   WordPress: CPT 'hizmet' or ACF field group
   ================================================ */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: end;
  margin-bottom: var(--sp-10);
}
.services-intro-actions { display: flex; align-items: flex-end; justify-content: flex-end; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-3);
}

.services-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* — Highlight / Vurgu blocks below services — */
.services-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.highlight-card {
  background: var(--sage);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-4);
  color: var(--white);
}

.highlight-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--white);
  margin-bottom: var(--sp-2);
}

.highlight-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--sp-3);
  line-height: 1.7;
}

.highlight-card .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.highlight-card .btn-outline:hover {
  background: var(--white);
  color: var(--sage);
}

.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-3) var(--sp-4);
  border: 1px solid var(--sand-light);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--terra));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease-slow);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--r-md);
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-3);
  transition: background var(--ease), transform var(--ease-spring);
}
.service-icon-wrap svg {
  width: 28px;
  height: 28px;
  color: var(--sage);
  transition: color var(--ease);
}
.service-card:hover .service-icon-wrap {
  background: var(--sage);
  transform: scale(1.1);
}
.service-card:hover .service-icon-wrap svg { color: var(--white); }

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: var(--sp-1);
}
.service-card p { font-size: 0.86rem; color: var(--bark-light); line-height: 1.6; margin: 0; }


/* ================================================
   10. ABOUT SECTION
   WordPress: page-hakkimda.php, ACF
   ================================================ */
.about-image-col { position: relative; }

.about-img-main {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 45% 55% 50% 50% / 40% 40% 60% 60%;
  box-shadow: var(--sh-xl);
}

.about-img-badge {
  position: absolute;
  bottom: calc(-1 * var(--sp-3));
  right: calc(-1 * var(--sp-4));
  width: 42%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--cream);
  box-shadow: var(--sh-md);
}

.about-shape-bg {
  position: absolute;
  top: calc(-1 * var(--sp-4));
  left: calc(-1 * var(--sp-4));
  width: 110px;
  height: 110px;
  background: var(--sage-pale);
  border-radius: 35% 65% 60% 40% / 55% 45% 55% 45%;
  z-index: -1;
}

.about-text-col { display: flex; flex-direction: column; justify-content: center; }

.about-quote {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--sage);
  line-height: 1.55;
  padding-left: var(--sp-4);
  border-left: 3px solid var(--terra);
  margin: var(--sp-4) 0;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin: var(--sp-4) 0 var(--sp-5);
}
.credential {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: 0.9rem;
  color: var(--bark-mid);
  line-height: 1.5;
}
.credential-dot {
  width: 7px;
  height: 7px;
  min-width: 7px;
  border-radius: 50%;
  background: var(--terra);
  margin-top: 7px;
}


/* ================================================
   11. PROJECT SECTION — Nefes Her Yerde
   WordPress: custom page template or CPT
   ================================================ */
.project-section {
  position: relative;
  background: var(--sage);
  overflow: hidden;
  color: var(--white);
}

/* Decorative organic shapes */
.project-section::before,
.project-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.project-section::before {
  width: 500px;
  height: 500px;
  top: -120px;
  right: -120px;
  background: rgba(253, 252, 248, 0.04);
}
.project-section::after {
  width: 350px;
  height: 350px;
  bottom: -80px;
  left: -80px;
  background: rgba(42, 33, 24, 0.08);
}

.project-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.project-image-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 64px rgba(42, 33, 24, 0.32);
}
.project-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

.project-content .eyebrow { color: rgba(253, 252, 248, 0.6); }
.project-content .eyebrow-line { color: rgba(253, 252, 248, 0.6); }
.project-content .eyebrow-line::before { background: rgba(253, 252, 248, 0.4); }
.project-content h2 { color: var(--white); }
.project-content p   { color: rgba(253, 252, 248, 0.82); }
.project-content hr.divider-accent { background: rgba(253, 252, 248, 0.35); }

.project-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin: var(--sp-5) 0 var(--sp-6);
}
.project-feature {
  background: rgba(253, 252, 248, 0.1);
  border: 1px solid rgba(253, 252, 248, 0.14);
  border-radius: var(--r-md);
  padding: var(--sp-3);
  transition: background var(--ease);
}
.project-feature:hover { background: rgba(253, 252, 248, 0.16); }
.project-feature h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 6px;
}
.project-feature p { font-size: 0.84rem; color: rgba(253, 252, 248, 0.7); margin: 0; line-height: 1.6; }


/* ================================================
   12. EVENTS SECTION
   WordPress: CPT 'etkinlik' or The Events Calendar
   ================================================ */
.events-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sp-8);
  gap: var(--sp-4);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.event-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--sand-light);
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}

.event-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}
.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.event-card:hover .event-card-image img { transform: scale(1.06); }

.event-date-badge {
  position: absolute;
  top: var(--sp-2);
  left: var(--sp-2);
  background: var(--white);
  border-radius: var(--r-sm);
  padding: 6px 10px;
  text-align: center;
  box-shadow: var(--sh-sm);
  min-width: 52px;
}
.event-date-badge .day {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--terra);
  line-height: 1;
}
.event-date-badge .mon {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bark-light);
  margin-top: 1px;
}

.event-body { padding: var(--sp-4); flex: 1; display: flex; flex-direction: column; }

.event-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  background: var(--sage-pale);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-2);
  width: fit-content;
}

.event-body h3 { font-size: 1.45rem; font-weight: 600; margin-bottom: var(--sp-1); line-height: 1.3; }

.event-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--bark-light);
  margin-bottom: var(--sp-2);
}
.event-meta svg { width: 13px; height: 13px; flex-shrink: 0; }

.event-body p { font-size: 0.88rem; color: var(--bark-mid); flex: 1; margin-bottom: var(--sp-3); }
.event-card-footer { margin-top: auto; }


/* ================================================
   13. PRODUCTS SECTION
   WordPress: WooCommerce product archive
   ================================================ */
.products-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sp-8);
  gap: var(--sp-4);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

/* Homepage WC products: 3-column grid */
.products-section ul.products {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--sand-light);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-alt);
}
.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.product-card:hover .product-image-wrap img { transform: scale(1.07); }

.product-badge {
  position: absolute;
  top: var(--sp-2);
  left: var(--sp-2);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--terra);
  color: var(--white);
  padding: 3px 10px;
  border-radius: var(--r-pill);
}

.product-body { padding: var(--sp-3) var(--sp-3) var(--sp-3); display: flex; flex-direction: column; flex: 1; }

.product-cat {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.product-body h3 { font-size: 1.35rem; font-weight: 600; margin-bottom: 6px; }
.product-body p   { font-size: 0.84rem; color: var(--bark-light); line-height: 1.6; margin-bottom: var(--sp-3); }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  margin-top: auto;
  padding-top: var(--sp-2);
  border-top: 1px solid rgba(42, 33, 24, 0.07);
}
.product-price {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--bark);
  line-height: 1;
  letter-spacing: -0.02em;
}
.product-price .currency {
  font-size: 0.82rem;
  font-family: var(--sans);
  font-weight: 400;
  vertical-align: super;
  margin-right: 1px;
  color: var(--bark-mid);
}


/* ================================================
   14. BLOG SECTION
   WordPress: WP_Query, post loop
   ================================================ */
.blog-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sp-8);
  gap: var(--sp-4);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.post-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--sand-light);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}

.post-image-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.post-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.post-card:hover .post-image-wrap img { transform: scale(1.06); }

.post-body { padding: var(--sp-4); flex: 1; display: flex; flex-direction: column; }

.post-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-2);
}
.post-cat {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  background: var(--sage-pale);
  padding: 3px 10px;
  border-radius: var(--r-pill);
}
.post-date {
  font-size: 0.78rem;
  color: var(--bark-light);
}

.post-body h3 { font-size: 1.25rem; margin-bottom: var(--sp-2); line-height: 1.3; flex-shrink: 0; }
.post-body h3 a { transition: color var(--ease); }
.post-body h3 a:hover { color: var(--sage); }
.post-body p { font-size: 0.88rem; color: var(--bark-mid); margin-bottom: var(--sp-3); flex: 1; }

.post-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terra);
  transition: gap var(--ease);
  margin-top: auto;
}
.post-link::after { content: '→'; display: inline-block; transition: transform var(--ease); }
.post-link:hover::after { transform: translateX(5px); }


/* ================================================
   15. NEWSLETTER SECTION
   WordPress: CF7 shortcode or Mailchimp widget
   ================================================ */
.newsletter-section {
  background: var(--cream-alt);
  padding: var(--sp-12) 0;
  text-align: center;
}

.newsletter-section h2 { font-size: clamp(1.75rem, 3.5vw, 2.8rem); margin-bottom: var(--sp-2); }
.newsletter-section p  { max-width: 50ch; margin: 0 auto; }
.newsletter-section .btn { margin-top: var(--sp-6); }

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 500px;
  margin: var(--sp-6) auto 0;
}

.form-row { display: flex; gap: var(--sp-2); }
.form-field { flex: 1; min-width: 0; }

.field-input {
  width: 100%;
  padding: 0.85rem 1.3rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--bark);
  background: var(--white);
  border: 1.5px solid var(--sand);
  border-radius: var(--r-pill);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  -webkit-appearance: none;
}
.field-input::placeholder { color: var(--bark-light); }
.field-input:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(138, 154, 91, 0.14);
}


/* ================================================
   16. FOOTER
   WordPress: get_footer(); → footer.php
   ================================================ */
.site-footer {
  background: var(--bark);
  padding: var(--sp-8) 0 var(--sp-4);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid rgba(253, 252, 248, 0.07);
}

.footer-brand .logo-name { color: var(--white); font-size: 1.5rem; }
.footer-brand .logo-sub  { color: var(--sage-light); font-size: 0.7rem; }
.footer-brand p {
  font-size: 0.87rem;
  font-weight: 300;
  color: rgba(253, 252, 248, 0.5);
  line-height: 1.7;
  margin: var(--sp-3) 0 var(--sp-4);
  max-width: 34ch;
}

.social-links { display: flex; gap: var(--sp-1); flex-wrap: wrap; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(253, 252, 248, 0.06);
  border: 1px solid rgba(253, 252, 248, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.social-link svg { width: 16px; height: 16px; color: rgba(253, 252, 248, 0.55); transition: color var(--ease); }
.social-link:hover { background: var(--sage); border-color: var(--sage); transform: translateY(-2px); }
.social-link:hover svg { color: var(--white); }

.footer-col h4 {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: var(--sp-2);
}

.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-links a {
  font-size: 0.87rem;
  font-weight: 300;
  color: rgba(253, 252, 248, 0.5);
  padding: 3px 0;
  transition: color var(--ease), padding-left var(--ease);
}
.footer-links a:hover { color: var(--sage-light); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: 0.87rem;
  font-weight: 300;
  color: rgba(253, 252, 248, 0.5);
  margin-bottom: var(--sp-2);
  line-height: 1.55;
}
.footer-contact-item svg {
  width: 15px;
  height: 15px;
  color: var(--sage-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
  font-size: 0.78rem;
  color: rgba(253, 252, 248, 0.3);
}


/* ================================================
   17. INNER PAGE HERO
   WordPress: page.php, single.php breadcrumb
   ================================================ */
.page-hero {
  padding: calc(6rem + var(--sp-8)) 0 var(--sp-10);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(42,33,24,0.65) 0%, rgba(42,33,24,0.4) 100%);
  z-index: 1;
}

/* Variant without photo */
.page-hero.no-photo {
  background: var(--cream-alt);
}
.page-hero.no-photo::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: var(--sage-pale);
  border-radius: 55% 45% 60% 40% / 45% 55% 45% 55%;
  opacity: 0.7;
  pointer-events: none;
}
.page-hero.no-photo::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: var(--sand-light);
  border-radius: 40% 60% 55% 45% / 55% 45% 55% 45%;
  opacity: 0.5;
  pointer-events: none;
}

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

/* Breadcrumb — WordPress: get_the_breadcrumb or Yoast SEO breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--bark-light);
  margin-bottom: var(--sp-3);
}
.page-hero:not(.no-photo) .breadcrumb { color: rgba(253,252,248,0.6); }
.breadcrumb a { transition: color var(--ease); }
.breadcrumb a:hover { color: var(--sage); }
.breadcrumb-sep { opacity: 0.5; }

.page-hero:not(.no-photo) h1 { color: var(--white); }

/* Single post title — smaller than page heroes */
.post-hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.page-hero:not(.no-photo) .lead { color: rgba(253,252,248,0.82); }


/* ================================================
   18. SCROLL REVEAL ANIMATIONS
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-left  { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-left.visible, .reveal-right.visible { transform: none; }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.18s; }
.delay-3 { transition-delay: 0.26s; }
.delay-4 { transition-delay: 0.34s; }
.delay-5 { transition-delay: 0.42s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}


/* ================================================
   19. ABOUT PAGE EXTRAS
   ================================================ */
.timeline { position: relative; padding-left: var(--sp-6); }
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 6px;
  bottom: 6px;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--sage), transparent);
}
.timeline-item { position: relative; margin-bottom: var(--sp-6); }
.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--sp-6) + 6px);
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--terra);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 3px rgba(184,97,62,0.2);
}
.timeline-year {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 4px;
}
.timeline-item h3 { font-size: 1.2rem; margin-bottom: 6px; }
.timeline-item p  { font-size: 0.9rem; }


/* ================================================
   20. CONTACT PAGE
   ================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-10);
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--sand-light);
  margin-bottom: var(--sp-3);
  transition: box-shadow var(--ease), border-color var(--ease);
}
.contact-info-item:hover { box-shadow: var(--sh-sm); border-color: transparent; }
.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--sage-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 22px; height: 22px; color: var(--sage); }
.contact-info-text h4 { font-size: 1.4rem; font-weight: 600; margin-bottom: 4px; }
.contact-info-text p  { font-size: 0.88rem; margin: 0; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  border: 1px solid var(--sand-light);
  box-shadow: var(--sh-sm);
}
.contact-form-wrap h3 { font-size: 2.2rem; font-weight: 600; margin-bottom: var(--sp-1); }
.contact-form-wrap > p { margin-bottom: var(--sp-5); }

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bark-mid);
  margin-bottom: 8px;
}

.field-textarea {
  width: 100%;
  padding: 1rem 1.3rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--bark);
  background: var(--cream);
  border: 1.5px solid var(--sand);
  border-radius: var(--r-lg);
  resize: vertical;
  min-height: 140px;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field-textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(138, 154, 91, 0.14);
}

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
.form-field-full { margin-bottom: var(--sp-3); }


/* ================================================
   21. SHOP / PRODUCTS PAGE
   ================================================ */
.shop-filters {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1.5px solid var(--sand);
  color: var(--bark-mid);
  transition: var(--ease);
  cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--white);
}


/* ================================================
   WC. WOOCOMMERCE COMPATIBILITY
   Maps WooCommerce default markup to existing design tokens.
   Ensures the static design renders correctly once WooCommerce
   replaces this markup with its own templates in WordPress.
   ================================================ */

/* WC renders the products loop as <ul> — reset list styles */
ul.products {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* WC product link wraps the thumbnail — must be display:block to preserve aspect-ratio */
a.woocommerce-LoopProduct-link.product-image-wrap {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* WC product title (h2) — maps to existing .product-body h3 styles */
.woocommerce-loop-product__title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 8px;
  line-height: 1.3;
}

/* WC price structure — .product-price class preserved on same element for dual compatibility */
.product-card .price {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--bark);
  line-height: 1;
}
.woocommerce-Price-currencySymbol {
  font-size: 0.85rem;
  font-family: var(--sans);
  font-weight: 400;
  vertical-align: super;
  margin-right: 2px;
  color: var(--bark-mid);
}
.price-suffix {
  font-size: 0.75rem;
  color: var(--bark-light);
  font-family: var(--sans);
  font-weight: 400;
}

/* WC short description in loop — maps to .product-body p */
.woocommerce-product-details__short-description {
  font-size: 0.86rem;
  color: var(--bark-light);
  line-height: 1.55;
  margin-bottom: var(--sp-3);
}

/* WC posted_in category links — maps to .product-cat */
.posted_in { margin-bottom: 6px; }
.posted_in a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  text-decoration: none;
}
.posted_in a:hover { color: var(--sage-hover); }

/* WC notices wrapper — collapse when empty */
.woocommerce-notices-wrapper:empty { display: none; }

/* WC shop toolbar: result count + ordering dropdown */
.woocommerce-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
  padding-bottom: var(--sp-5);
}
.woocommerce-result-count {
  font-size: 0.8rem;
  color: var(--bark-light);
  margin: 0;
}
.woocommerce-ordering .orderby {
  font-family: var(--sans);
  font-size: 0.85rem;
  padding: 0.75rem 2.5rem 0.75rem 1.2rem;
  border: 1.5px solid var(--sand);
  border-radius: var(--r-pill);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238E7D6C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  color: var(--bark-mid);
  cursor: pointer;
}


/* ================================================
   22. RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .services-highlights { grid-template-columns: repeat(2, 1fr); }
  .products-section ul.products { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top    { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .footer-brand  { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .project-inner { grid-template-columns: 1fr; gap: var(--sp-8); }
  .contact-grid  { grid-template-columns: 1fr; }
  .events-grid   { grid-template-columns: repeat(2, 1fr); }
  .blog-grid     { grid-template-columns: repeat(2, 1fr); }
  .services-intro { grid-template-columns: 1fr; gap: var(--sp-4); }
  .services-intro-actions { justify-content: flex-start; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-list, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }

  /* Grids */
  .split-grid    { grid-template-columns: 1fr; gap: var(--sp-6); }
  .events-grid   { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .products-section ul.products { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .services-highlights { grid-template-columns: 1fr; }
  .project-features { grid-template-columns: 1fr; }
  .form-grid-2   { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: var(--sp-5); }

  /* Hero */
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .breathe-orb  { display: none; }

  .events-section-head,
  .products-section-head,
  .blog-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
    margin-bottom: var(--sp-6);
  }

  .footer-top { grid-template-columns: 1fr; gap: var(--sp-5); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .newsletter-form .form-row { flex-direction: column; }
}

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


/* ================================================
   23. NEFES & SES — SERVICE DETAIL CARDS
   ================================================ */
.service-detail-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--sand-light);
  margin-bottom: var(--sp-6);
  transition: box-shadow var(--ease);
}
.service-detail-card:hover { box-shadow: var(--sh-md); }

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.service-detail-card.reverse .service-detail-inner { direction: rtl; }
.service-detail-card.reverse .service-detail-inner > * { direction: ltr; }

.service-detail-image {
  overflow: hidden;
  position: relative;
  min-height: 300px;
}
.service-detail-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.service-detail-card:hover .service-detail-image img { transform: scale(1.04); }

.service-detail-body { padding: var(--sp-8); }
.service-detail-body .eyebrow { margin-bottom: var(--sp-2); }
.service-detail-body h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: var(--sp-2); }
.service-detail-body p { margin-bottom: var(--sp-3); }

.service-detail-includes { margin: var(--sp-3) 0 var(--sp-4); list-style: none; padding: 0; }
.service-detail-includes li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: 0.9rem;
  color: var(--bark-mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--sand-light);
}
.service-detail-includes li:last-child { border: none; }
.service-detail-includes li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--sage);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .service-detail-inner { grid-template-columns: 1fr; direction: ltr !important; }
  .service-detail-image { min-height: 260px; aspect-ratio: 16 / 9; }
  .service-detail-body { padding: var(--sp-5); }
}


/* ================================================
   25. SINGLE POST
   ================================================ */

/* Post header meta (category pill + date inside hero) */
.post-header-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-3);
}
.page-hero:not(.no-photo) .post-header-meta .post-date { color: rgba(253,252,248,0.7); }

/* Blog listing (home.php / archive.php) */
.blog-listing-section { padding: var(--sp-8) 0 var(--sp-12); }

/* Section wrapper */
.post-single-section { padding: var(--sp-8) 0 var(--sp-12); }

/* Featured image above content */
.post-featured-image {
  margin-bottom: var(--sp-8);
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16 / 7;
}
.post-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Prose content */
.post-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--bark);
}
.post-content > * + * { margin-top: 1.4em; }

.post-content h2 {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  line-height: 1.25;
  margin-top: 2.5em;
  color: var(--bark);
}
.post-content h3 {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  line-height: 1.3;
  margin-top: 2em;
  color: var(--bark);
}
.post-content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 1.8em;
  color: var(--bark);
}

.post-content a {
  color: var(--sage);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: text-decoration-color var(--ease);
}
.post-content a:hover { text-decoration-color: var(--sage); }

.post-content ul,
.post-content ol {
  padding-left: 1.6rem;
}
.post-content li + li { margin-top: 0.5em; }

.post-content blockquote {
  border-left: 3px solid var(--sage);
  padding: var(--sp-3) var(--sp-5);
  background: var(--sage-pale);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--bark-mid);
  font-style: italic;
  font-size: 1.1em;
  margin: 2em 0;
}
.post-content blockquote > * + * { margin-top: 0.6em; }

.post-content img {
  border-radius: var(--r-lg);
  width: 100%;
  height: auto;
  display: block;
}
.post-content figure { margin: 2em 0; }
.post-content figcaption {
  font-size: 0.8rem;
  color: var(--bark-light);
  text-align: center;
  margin-top: var(--sp-2);
}

.post-content hr {
  border: none;
  border-top: 1px solid var(--sand-light);
  margin: 2.5em 0;
}

.post-content code {
  font-size: 0.85em;
  background: var(--cream-alt);
  padding: 2px 7px;
  border-radius: var(--r-xs);
  font-family: 'Courier New', monospace;
}
.post-content pre {
  background: var(--bark);
  color: var(--cream);
  padding: var(--sp-4);
  border-radius: var(--r-lg);
  overflow-x: auto;
  font-size: 0.88rem;
}
.post-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}

/* WP alignment helpers inside post content */
.post-content .alignleft  { float: left;  margin: 0.5em var(--sp-4) var(--sp-2) 0; max-width: 45%; }
.post-content .alignright { float: right; margin: 0.5em 0 var(--sp-2) var(--sp-4); max-width: 45%; }
.post-content .aligncenter { display: block; margin-left: auto; margin-right: auto; }
.post-content .alignfull  { width: 100vw; max-width: none; margin-left: calc(50% - 50vw); }

/* Post navigation (prev / next post) */
.post-navigation {
  margin-top: var(--sp-10);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--sand-light);
}
.post-navigation .nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.post-navigation .nav-next { text-align: right; align-items: flex-end; }
.post-navigation a { display: flex; flex-direction: column; gap: 6px; }
.post-navigation .nav-next a { align-items: flex-end; }

.post-navigation .nav-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bark-light);
}
.post-navigation .nav-title {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--bark);
  transition: color var(--ease);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-navigation a:hover .nav-title { color: var(--sage); }

/* Pagination (archive / blog index listing) */
.pagination {
  margin-top: var(--sp-10);
  display: flex;
  justify-content: center;
}
.pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 var(--sp-2);
  border-radius: var(--r-md);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--bark);
  background: transparent;
  border: 1.5px solid var(--sand-light);
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.pagination .page-numbers:hover {
  border-color: var(--sage);
  color: var(--sage);
  background: var(--sage-pale);
}
.pagination .page-numbers.current {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--white);
}
.pagination .page-numbers.dots {
  border-color: transparent;
  pointer-events: none;
  color: var(--bark-light);
}

@media (max-width: 520px) {
  .post-navigation .nav-links { grid-template-columns: 1fr; }
  .post-navigation .nav-next  { text-align: left; align-items: flex-start; }
  .post-navigation .nav-next a { align-items: flex-start; }
}

/* Ürünler — Category-grouped sections */
.urunler-cat-block + .urunler-cat-block { margin-top: var(--sp-12); }
.urunler-cat-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.urunler-cat-thumb {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.urunler-cat-thumb img { width: 100%; height: 100%; object-fit: cover; }
.urunler-cat-title {
  font-family: var(--font-heading, 'Marcellus', serif);
  font-size: 2rem;
  margin: 0;
}
.urunler-cat-desc { color: var(--bark-mid); max-width: 60ch; margin: 0; }
.urunler-cat-empty {
  text-align: center;
  color: var(--bark-light);
  font-style: italic;
  padding: var(--sp-6) 0;
}

/* Footer — white text for readability */
.site-footer,
.site-footer a,
.site-footer .footer-col-title,
.site-footer .footer-description,
.site-footer .footer-contact-item span,
.site-footer .copyright,
.site-footer .copyright-tagline,
.site-footer .logo-name,
.site-footer .logo-sub { color: var(--white); }
.site-footer a:hover { color: rgba(253, 252, 248, 0.75); }
.site-footer .social-link,
.site-footer .social-link svg { color: var(--white); fill: currentColor; }
.site-footer .social-link:hover { color: rgba(253, 252, 248, 0.75); }
.site-footer .footer-contact-item svg { stroke: var(--white); }
