/* ═══════════════════════════════════════════════════════
   GULAY TOKER — Psikolojik Dansman
   WordPress Theme Main Stylesheet
   ═══════════════════════════════════════════════════════ */

/* ── TOKENS ────────────────────────────────────────────── */
:root {
  --bg:              #F7F5F0;
  --bg-alt:          #EEE9E1;
  --primary:         #6B8F71;
  --primary-dark:    #4D6B52;
  --primary-light:   #9BB8A0;
  --primary-pale:    #E8F0E9;
  --accent:          #B5956A;
  --accent-pale:     #F5EDE0;
  --dark:            #2A3528;
  --dark-mid:        #3C4E3A;
  --text:            #2C2C2C;
  --text-muted:      #7A7470;
  --text-light:      #A8A4A0;
  --surface:         #FFFFFF;
  --border:          #E0DAD2;

  --font-heading:    'Cormorant Garamond', Georgia, serif;
  --font-body:       'Nunito', system-ui, sans-serif;

  --space-xs:        0.5rem;
  --space-sm:        1rem;
  --space-md:        2rem;
  --space-lg:        4rem;
  --space-xl:        6rem;
  --space-2xl:       8rem;

  --radius-sm:       8px;
  --radius-md:       16px;
  --radius-lg:       32px;

  --shadow-sm:       0 2px 12px rgba(44, 44, 44, 0.06);
  --shadow-md:       0 8px 32px rgba(44, 44, 44, 0.10);
  --shadow-lg:       0 20px 60px rgba(44, 44, 44, 0.14);

  --section-padding: 5rem 0;
  --container-max:   1200px;
  --nav-height:      76px;

  --transition:      0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--text);
}

/* ── ASYMMETRY HELPERS ─────────────────────────────────── */
.section--angled-top {
  clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%);
  margin-top: -48px;
  padding-top: calc(5rem + 48px) !important;
}
.section--angled-bottom {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), 0 100%);
  padding-bottom: calc(5rem + 48px) !important;
  margin-bottom: -48px;
  position: relative;
  z-index: 1;
}

/* ── SKIP LINK ─────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── CONTAINER ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(107, 143, 113, 0.35);
}
.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107, 143, 113, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--bg);
  color: var(--dark);
  font-weight: 700;
}
.btn--light:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── SECTION TYPOGRAPHY ────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.section-subtext {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
}

.section-intro {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.section-intro .section-subtext { margin: 0 auto; }

/* ═══════════════════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════════════════ */
#header {
  position: sticky;
  top: 0;
  z-index: 1010;
  transition: background var(--transition), box-shadow var(--transition);
}

#header.scrolled {
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav__brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav__brand-leaf {
  color: var(--primary);
  font-size: 1rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: all var(--transition);
}
.nav__link:hover,
.nav__link.active {
  color: var(--primary);
  background: var(--primary-pale);
}

.nav__link--cta {
  background: var(--primary);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  box-shadow: 0 3px 14px rgba(107, 143, 113, 0.3);
}
.nav__link--cta:hover {
  background: var(--primary-dark) !important;
  color: #fff !important;
  transform: translateY(-1px);
}
.nav__link--cta.active {
  background: var(--primary);
  color: #fff;
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 1001;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.25s ease;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 4rem 2rem 3rem;
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  border: 1.5px solid rgba(107, 143, 113, 0.12);
  pointer-events: none;
  z-index: 0;
}
.hero__content,
.hero__images { position: relative; z-index: 1; }
.hero__content { padding-right: 2rem; animation: heroFadeIn 0.9s ease both; }
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__overline {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.25rem;
  position: relative;
}
.hero__overline::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--primary);
  vertical-align: middle;
  margin-right: 0.6rem;
}
.hero__heading {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero__heading em { font-style: italic; color: var(--primary); }
.hero__text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 2.25rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.25rem; font-size: 0.8rem; color: var(--text-muted); }
.hero__trust span { display: flex; align-items: center; gap: 0.4rem; }
.hero__trust i { color: var(--primary); font-size: 0.85rem; }
.hero__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  position: relative;
  animation: heroImagesIn 1.1s ease 0.15s both;
}
@keyframes heroImagesIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero__img { overflow: hidden; position: relative; }
.hero__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.hero__img:hover img { transform: scale(1.04); }
.hero__img--1 { grid-column: 1; grid-row: 1; border-radius: 60% 40% 55% 45% / 55% 50% 50% 45%; height: 240px; transform: translateY(0) rotate(-2deg); box-shadow: var(--shadow-md); }
.hero__img--2 { grid-column: 2; grid-row: 1 / 3; border-radius: 45% 55% 40% 60% / 50% 45% 55% 50%; height: 320px; transform: translateY(-20px) rotate(2deg); box-shadow: var(--shadow-lg); }
.hero__img--3 { grid-column: 1; grid-row: 2; border-radius: 50% 50% 65% 35% / 60% 40% 60% 40%; height: 220px; transform: translateY(0) rotate(1deg); box-shadow: var(--shadow-md); }
.hero__img--4 { display: none; }

/* ═══════════════════════════════════════════════════════
   ABOUT TEASER
   ═══════════════════════════════════════════════════════ */
.about-teaser {
  background: var(--bg-alt); padding: var(--section-padding); position: relative; z-index: 2;
  clip-path: polygon(0 0, 100% 48px, 100% 100%, 0 100%); margin-top: -48px; padding-top: calc(5rem + 48px);
}
.about-teaser__image { margin-left: -2rem; }
.about-teaser__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center; }
.about-teaser__image { position: relative; }
.about-teaser__img-wrap {
  border-radius: 55% 45% 60% 40% / 50% 55% 45% 50%;
  overflow: hidden; height: 520px; box-shadow: var(--shadow-lg);
}
.about-teaser__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.about-teaser__img-wrap:hover img { transform: scale(1.03); }
.about-teaser__badge {
  position: absolute; bottom: 2rem; right: -1.5rem;
  background: var(--primary); color: #fff; border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem; text-align: center; box-shadow: var(--shadow-md);
}
.badge__number { display: block; font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.badge__label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.85; }
.about-teaser__body { padding-left: 1rem; }
.about-teaser__text { color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; font-size: 0.975rem; }
.about-teaser__quals { margin: 1.75rem 0 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.about-teaser__quals li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--text); }
.about-teaser__quals i { color: var(--primary); font-size: 0.8rem; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════ */
.services {
  padding: var(--section-padding); background: var(--bg); position: relative; z-index: 4;
  clip-path: polygon(0 0, 100% 48px, 100% 100%, 0 100%); margin-top: -48px; padding-top: calc(5rem + 48px);
}
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; align-items: start; }
.services__grid .service-card:nth-child(2) { transform: translateY(-28px); }
.services__grid .service-card:nth-child(3) { transform: translateY(14px); }
.service-card {
  position: relative;
  background: var(--surface); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card__img { position: relative; height: 220px; overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card__img img { transform: scale(1.06); }
.service-card__icon {
  position: absolute; top: 196px; left: 1.5rem; width: 48px; height: 48px;
  background: var(--primary); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: 0 4px 16px rgba(107, 143, 113, 0.4); z-index: 2;
}
.service-card__body { padding: 2.25rem 1.5rem 1.75rem; }
.service-card__title { font-size: 1.35rem; font-weight: 600; margin-bottom: 0.75rem; }
.service-card__text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.25rem; }
.service-card__link {
  font-size: 0.85rem; font-weight: 600; color: var(--primary);
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap var(--transition), color var(--transition);
}
.service-card__link:hover { color: var(--primary-dark); gap: 0.65rem; }

/* ═══════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════ */
.stats {
  background: var(--dark);
  padding: 4rem 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.stat {
  text-align: center;
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: flex-start;
}
.stat__plus {
  font-size: 1.5rem;
  margin-top: 0.25rem;
  color: var(--primary-light);
}
.stat__label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.stat__divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.12);
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonials {
  background: var(--bg-alt);
  padding: var(--section-padding);
  position: relative;
  z-index: 6;
  clip-path: polygon(0 0, 100% 48px, 100% 100%, 0 100%);
  margin-top: -48px;
  padding-top: calc(5rem + 48px);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card--accent {
  background: var(--primary);
  border-color: var(--primary);
}
.testimonial-card--accent .testimonial-card__text,
.testimonial-card--accent .testimonial-card__name,
.testimonial-card--accent .testimonial-card__role,
.testimonial-card--accent .testimonial-card__quote { color: #fff; }
.testimonial-card--accent .testimonial-card__role { opacity: 0.75; }

.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  line-height: 0.7;
  color: var(--primary-pale);
  margin-bottom: 1rem;
  display: block;
}
.testimonial-card--accent .testimonial-card__quote {
  color: rgba(255,255,255,0.25);
}

.testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-pale);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-card--accent .testimonial-card__avatar {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.testimonial-card__name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}
.testimonial-card__role {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════
   BLOG PREVIEW
   ═══════════════════════════════════════════════════════ */
.blog-preview {
  background: var(--bg);
  padding: var(--section-padding);
  position: relative;
  z-index: 7;
  clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%);
  margin-top: -48px;
  padding-top: calc(5rem + 48px);
}

.blog-preview__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.blog-preview__side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Featured big card */
.blog-card--featured {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card--featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-card--featured .blog-card__img {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.blog-card--featured .blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card--featured:hover .blog-card__img img { transform: scale(1.04); }
.blog-card--featured .blog-card__body { padding: 1.75rem; }
.blog-card--featured .blog-card__title { font-size: 1.5rem; }
.blog-card--featured .blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* Small sidebar cards */
.blog-card--small {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card--small:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.blog-card--small .blog-card__img {
  height: 100%;
  min-height: 110px;
  overflow: hidden;
  position: relative;
}
.blog-card--small .blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card--small:hover .blog-card__img img { transform: scale(1.06); }
.blog-card--small .blog-card__body { padding: 1.25rem; }
.blog-card--small .blog-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Shared card styles */
.blog-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

.blog-card__date {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.blog-card__title a {
  color: var(--text);
  transition: color var(--transition);
}
.blog-card__title a:hover { color: var(--primary); }

.blog-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}
.blog-card__link:hover { gap: 0.65rem; }

.blog-preview__cta { text-align: center; }

/* ═══════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════ */
.cta-banner {
  position: relative; background: var(--dark); padding: 6rem 0; overflow: hidden; text-align: center; z-index: 8;
  clip-path: polygon(0 0, 100% 48px, 100% 100%, 0 100%); margin-top: -48px; padding-top: calc(6rem + 48px);
}
.cta-banner__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 10% 50%, rgba(107, 143, 113, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 90% 20%, rgba(181, 149, 106, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner__content { position: relative; z-index: 1; }
.cta-banner__overline { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary-light); display: block; margin-bottom: 1.25rem; }
.cta-banner__heading { font-family: var(--font-heading); font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 600; color: #fff; line-height: 1.15; margin-bottom: 1.25rem; }
.cta-banner__text { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.8; }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: var(--dark-mid); color: rgba(255,255,255,0.75); position: relative; z-index: 9;
  clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%); margin-top: -48px;
}
.footer__grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 3rem; padding: 6rem 2rem 3rem; }
.footer__logo { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 600; color: #fff; display: inline-block; margin-bottom: 0.875rem; }
.footer__tagline { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 240px; margin-bottom: 1.5rem; }
.footer__social { display: flex; gap: 0.75rem; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: all var(--transition); }
.footer__social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); }
.footer__nav-title { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; }
.footer__nav ul, .footer__services ul, .footer__contact ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav a, .footer__services a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer__nav a:hover, .footer__services a:hover { color: var(--primary-light); }
.footer__contact li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; }
.footer__contact i { color: var(--primary-light); font-size: 0.8rem; margin-top: 0.2rem; flex-shrink: 0; }
.footer__contact a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer__contact a:hover { color: var(--primary-light); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; }
.footer__bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.attribution a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.attribution a:hover { color: var(--primary-light); }

/* ═══════════════════════════════════════════════════════
   QUICK RANDEVU
   ═══════════════════════════════════════════════════════ */
.quick-randevu {
  background: var(--primary); padding: 5rem 0 7rem; position: relative; z-index: 3; overflow: hidden;
  clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%); margin-top: -48px; padding-top: calc(5rem + 48px);
}
.quick-randevu::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 120% at 90% 50%, rgba(255,255,255,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 5% 80%, rgba(0,0,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.quick-randevu__header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; padding-left: 1.5rem; border-left: 3px solid rgba(255,255,255,0.25); }
.quick-randevu__title-wrap { display: flex; align-items: center; gap: 1.25rem; }
.quick-randevu__icon { font-size: 2rem; color: rgba(255,255,255,0.7); flex-shrink: 0; }
.quick-randevu__eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 0.2rem; }
.quick-randevu__title { font-family: var(--font-heading); font-size: 1.85rem; font-weight: 600; color: #fff; line-height: 1.1; }
.quick-randevu__sub { font-size: 0.875rem; color: rgba(255,255,255,0.7); max-width: 260px; line-height: 1.6; text-align: right; }
.quick-randevu__fields { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 1rem; align-items: end; }
.qr-field { display: flex; flex-direction: column; gap: 0.4rem; }
.qr-field label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.qr-field input, .qr-field select {
  width: 100%; padding: 0.875rem 1.125rem; background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.25); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.9rem; color: #fff; outline: none;
  transition: all var(--transition); backdrop-filter: blur(4px);
}
.qr-field input::placeholder { color: rgba(255,255,255,0.55); }
.qr-field select { color: rgba(255,255,255,0.85); cursor: pointer; }
.qr-field select option { background: var(--primary-dark); color: #fff; }
.qr-field input:focus, .qr-field select:focus { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.6); }
.quick-randevu__btn {
  display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.9rem 1.75rem;
  background: #fff; color: var(--primary-dark); font-family: var(--font-body); font-weight: 700;
  font-size: 0.875rem; border-radius: var(--radius-sm); border: none; cursor: pointer;
  white-space: nowrap; transition: all var(--transition); box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.quick-randevu__btn:hover { background: var(--bg); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.quick-randevu__note { margin-top: 1rem; font-size: 0.78rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 0.4rem; }

/* ═══════════════════════════════════════════════════════
   FEATURE CARDS
   ═══════════════════════════════════════════════════════ */
.feature-cards {
  background: var(--dark);
  padding: 4.5rem 0;
}

.feature-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

/* Dividers between cards */
.feature-cards__grid::before,
.feature-cards__grid::after {
  content: '';
  position: absolute;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.feature-cards__grid::before { left: 33.333%; }
.feature-cards__grid::after  { left: 66.666%; }

.feature-card {
  padding: 2.5rem 3rem;
  text-align: left;
  transition: background var(--transition);
}
.feature-card:hover {
  background: rgba(255,255,255,0.04);
}

.feature-card__icon-wrap {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-light);
  font-size: 1rem;
  transition: all var(--transition);
}
.feature-card:hover .feature-card__icon-wrap {
  border-color: var(--primary-light);
  background: rgba(155, 184, 160, 0.15);
}

.feature-card__title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}

.feature-card__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
}

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */
.faq {
  background: var(--bg-alt); padding: var(--section-padding); position: relative; z-index: 5; overflow: hidden;
  clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%); margin-top: -48px; padding-top: calc(5rem + 48px);
}
.faq::before {
  content: '?'; position: absolute; right: -1rem; bottom: -2rem;
  font-family: var(--font-heading); font-size: 22rem; font-weight: 700; line-height: 1;
  color: rgba(107, 143, 113, 0.06); pointer-events: none; user-select: none;
}
.faq__inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.faq__intro-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }
.faq__list { display: flex; flex-direction: column; gap: 0; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.35rem 0; text-align: left; font-family: var(--font-heading); font-size: 1.15rem;
  font-weight: 500; color: var(--text); background: none; border: none; cursor: pointer;
  transition: color var(--transition);
}
.faq__question:hover { color: var(--primary); }
.faq__question[aria-expanded="true"] { color: var(--primary); }
.faq__chevron { font-size: 0.85rem; color: var(--primary); transition: transform 0.35s ease; flex-shrink: 0; }
.faq__question[aria-expanded="true"] .faq__chevron { transform: rotate(45deg); }
.faq__answer { overflow: hidden; max-height: 0; transition: max-height 0.4s ease, padding 0.3s ease; padding-bottom: 0; }
.faq__answer.open { max-height: 300px; padding-bottom: 1.25rem; }
.faq__answer p { font-size: 0.925rem; color: var(--text-muted); line-height: 1.85; }


/* ═══════════════════════════════════════════════════════
   PAGE HERO (shared across inner pages)
   ═══════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center top;
  color: #fff;
  overflow: hidden;
}
.page-hero--tall { min-height: 55vh; align-items: center; text-align: center; padding-bottom: 5rem; }
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(42, 53, 40, 0.65);
  z-index: 0;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0.35;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(42, 53, 40, 0.6) 0%, rgba(42, 53, 40, 0.85) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
}
.page-hero__breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary-light); margin-bottom: 1.25rem;
}
.page-hero__breadcrumb a { color: var(--primary-light); text-decoration: none; transition: color 0.2s; }
.page-hero__breadcrumb a:hover { color: #fff; }
.page-hero__breadcrumb span { color: var(--primary-light); opacity: 0.5; }
.page-hero__overline {
  display: inline-block; font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); margin-bottom: 1rem;
}
.page-hero h1,
.page-hero__heading,
.page-hero__title {
  font-family: var(--font-heading); font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700; color: #fff; line-height: 1.05; margin-bottom: 1.25rem;
}
.page-hero__subtitle {
  font-size: 1.05rem; color: rgba(255, 255, 255, 0.82);
  max-width: 520px; margin: 0 auto; line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════ */
.about-story { background-color: var(--bg); padding: 6rem 0 5rem; clip-path: polygon(0 0, 100% 48px, 100% 100%, 0 100%); margin-top: -48px; padding-top: calc(5rem + 48px); }
.about-story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-story__image-wrap { position: relative; }
.about-story__image-wrap img { width: 100%; height: 520px; object-fit: cover; object-position: top center; border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; display: block; }
.about-story__image-accent { position: absolute; bottom: -1.5rem; right: -1.5rem; width: 120px; height: 120px; background: var(--primary-pale); border-radius: 50%; z-index: -1; }
.about-story__text .section-label { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); margin-bottom: 1rem; display: block; }
.about-story__text h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; color: var(--dark); line-height: 1.2; margin-bottom: 1.5rem; }
.about-story__text p { font-family: var(--font-body); font-size: 1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 1.25rem; }
.about-story__pull-quote { border-left: 3px solid var(--primary); padding-left: 1.5rem; font-style: italic; color: var(--text-muted); font-family: var(--font-heading); font-size: 1.15rem; line-height: 1.6; margin-top: 1.75rem; }

.about-approach { background-color: var(--bg-alt); padding: 6rem 0 5rem; clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%); margin-top: -48px; padding-top: calc(5rem + 48px); text-align: center; }
.about-approach .section-label { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); margin-bottom: 1rem; display: block; }
.about-approach h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; color: var(--dark); margin-bottom: 3.5rem; }
.approach-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.approach-card { background: var(--surface); padding: 2.5rem 2rem; border-radius: 16px; box-shadow: 0 4px 24px rgba(107, 143, 113, 0.1); text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.approach-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(107, 143, 113, 0.18); }
.approach-card__icon { width: 64px; height: 64px; background: var(--primary-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.approach-card__icon i { font-size: 1.5rem; color: var(--primary); }
.approach-card h3 { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 600; color: var(--dark); margin-bottom: 0.75rem; }
.approach-card p { font-family: var(--font-body); font-size: 0.95rem; line-height: 1.75; color: var(--text-muted); }

.about-edu { background-color: var(--bg); padding: 6rem 0 5rem; clip-path: polygon(0 0, 100% 48px, 100% 100%, 0 100%); margin-top: -48px; padding-top: calc(5rem + 48px); }
.about-edu__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-edu__header .section-label { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); margin-bottom: 1rem; display: block; }
.about-edu__header h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; color: var(--dark); margin-bottom: 2.5rem; line-height: 1.2; }
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: flex; gap: 1.5rem; padding-bottom: 1.75rem; position: relative; }
.timeline-item:not(:last-child)::before { content: ''; position: absolute; left: 2.5rem; top: 2rem; bottom: 0; width: 1px; background: var(--primary-pale); }
.timeline-item__year { flex-shrink: 0; width: 5rem; font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--primary); padding-top: 0.1rem; }
.timeline-item__body { flex: 1; }
.timeline-item__title { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; color: var(--dark); line-height: 1.4; margin-bottom: 0.25rem; }
.timeline-item__sub { font-family: var(--font-body); font-size: 0.85rem; color: var(--text-muted); }
.about-edu__image-wrap img { width: 100%; height: 480px; object-fit: cover; object-position: center; border-radius: 40% 60% 50% 50% / 55% 45% 55% 45%; display: block; }

.about-values { background-color: var(--dark); padding: 6rem 0 5rem; clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%); margin-top: -48px; padding-top: calc(5rem + 48px); text-align: center; }
.about-values .section-label { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary-light); margin-bottom: 1rem; display: block; }
.about-values h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; color: #fff; margin-bottom: 3.5rem; }
.values-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(155, 184, 160, 0.15); border-radius: 16px; padding: 2.5rem 2rem; text-align: center; transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease; }
.value-card:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(155, 184, 160, 0.35); transform: translateY(-4px); }
.value-card__icon { width: 64px; height: 64px; border: 1.5px solid rgba(155, 184, 160, 0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.value-card__icon i { font-size: 1.5rem; color: var(--primary-light); }
.value-card h3 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 600; color: #fff; margin-bottom: 0.75rem; }
.value-card p { font-family: var(--font-body); font-size: 0.95rem; line-height: 1.75; color: rgba(255, 255, 255, 0.55); }

.about-cta { background-color: var(--primary); padding: 6rem 0 5rem; clip-path: polygon(0 0, 100% 48px, 100% 100%, 0 100%); margin-top: -48px; padding-top: calc(5rem + 48px); text-align: center; }
.about-cta h2 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; color: #fff; margin-bottom: 1rem; }
.about-cta p { font-family: var(--font-body); font-size: 1.1rem; color: rgba(255, 255, 255, 0.85); margin-bottom: 2.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.about-cta .btn--white, .workshops-cta .btn--white {
  display: inline-block; padding: 0.875rem 2.25rem; background: #fff; color: var(--dark);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; text-decoration: none; border-radius: 50px; border: 2px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.about-cta .btn--white:hover, .workshops-cta .btn--white:hover {
  background: transparent; color: #fff; border-color: #fff;
  transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

/* ═══════════════════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════════════════ */
.service-section { position: relative; padding: 5rem 0; background: var(--bg); }
.service-section--alt { background: var(--bg-alt); }
.service-section__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.service-section--reverse .service-section__inner { direction: rtl; }
.service-section--reverse .service-section__inner > * { direction: ltr; }
.service-section--diag-a { clip-path: polygon(0 0, 100% 48px, 100% 100%, 0 100%); margin-top: -48px; padding-top: calc(5rem + 48px); }
.service-section--diag-b { clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%); margin-top: -48px; padding-top: calc(5rem + 48px); }
.service-img { position: relative; overflow: hidden; height: 480px; }
.service-img--organic-1 { border-radius: 55% 45% 60% 40% / 50% 60% 40% 50%; box-shadow: 0 24px 64px rgba(42, 53, 40, 0.18); }
.service-img--organic-2 { border-radius: 45% 55% 40% 60% / 60% 40% 60% 40%; box-shadow: 0 24px 64px rgba(42, 53, 40, 0.18); }
.service-img--organic-3 { border-radius: 50% 50% 55% 45% / 45% 55% 45% 55%; box-shadow: 0 24px 64px rgba(42, 53, 40, 0.18); }
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.service-text { position: relative; }
.service-number { display: block; font-family: var(--font-heading); font-size: 7rem; font-weight: 700; color: rgba(107, 143, 113, 0.12); line-height: 1; margin-bottom: -1.5rem; pointer-events: none; user-select: none; }
.service-label { display: inline-block; font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.75rem; }
.service-heading { font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; color: var(--text); line-height: 1.2; margin-bottom: 1.25rem; }
.service-text p { font-size: 0.97rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; }
.service-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.5rem; margin: 1.25rem 0 1.5rem; }
.service-bullets li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: var(--text); font-weight: 500; }
.service-bullets li i { color: var(--primary); font-size: 0.75rem; flex-shrink: 0; }
.service-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 1.25rem; margin-bottom: 1.5rem; }
.service-meta i { color: var(--primary-light); font-size: 0.8rem; }
.service-meta span + span::before { content: '\00B7'; margin-right: 0.5rem; opacity: 0.4; }

.session-strip { position: relative; background: var(--dark); clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%); margin-top: -48px; padding: calc(4rem + 48px) 0 4rem; z-index: 2; }
.session-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.session-stat { text-align: center; padding: 1rem; }
.session-stat__icon { font-size: 1.4rem; color: var(--primary-light); margin-bottom: 0.75rem; }
.session-stat__value { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 600; color: #fff; line-height: 1.1; margin-bottom: 0.35rem; }
.session-stat__label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255, 255, 255, 0.45); }

.services-cta { position: relative; background: var(--primary); clip-path: polygon(0 0, 100% 48px, 100% 100%, 0 100%); margin-top: -48px; padding: calc(5rem + 48px) 0 5rem; text-align: center; z-index: 1; }
.services-cta__heading { font-family: var(--font-heading); font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 600; color: #fff; margin-bottom: 1rem; }
.services-cta p { font-size: 1.05rem; color: rgba(255, 255, 255, 0.82); margin-bottom: 2rem; }

/* ═══════════════════════════════════════════════════════
   WORKSHOPS PAGE
   ═══════════════════════════════════════════════════════ */
.workshop-intro { background-color: var(--bg); padding: 6rem 0 5rem; clip-path: polygon(0 0, 100% 48px, 100% 100%, 0 100%); margin-top: -48px; padding-top: calc(5rem + 48px); }
.workshop-intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.workshop-intro__image-wrap { position: relative; }
.workshop-intro__image-wrap img { width: 100%; height: 520px; object-fit: cover; object-position: top center; border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; display: block; }
.workshop-intro__image-accent { position: absolute; bottom: -1.5rem; right: -1.5rem; width: 120px; height: 120px; background: var(--primary-pale); border-radius: 50%; z-index: -1; }
.workshop-intro__text .section-label { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); margin-bottom: 1rem; display: block; }
.workshop-intro__text h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; color: var(--dark); line-height: 1.2; margin-bottom: 1.5rem; }
.workshop-intro__text p { font-family: var(--font-body); font-size: 1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 1.25rem; }
.workshop-intro__note { border-left: 3px solid var(--primary); padding-left: 1.5rem; font-style: italic; color: var(--text-muted); font-family: var(--font-heading); font-size: 1.15rem; line-height: 1.6; margin-top: 1.75rem; }

.workshop-programs { background-color: var(--bg-alt); padding: 6rem 0 5rem; clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%); margin-top: -48px; padding-top: calc(5rem + 48px); text-align: center; }
.workshop-programs .section-label { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); margin-bottom: 1rem; display: block; }
.workshop-programs h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; color: var(--dark); margin-bottom: 3.5rem; }
.workshop-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.workshop-card { background: var(--surface); padding: 2.5rem 2rem; border-radius: 16px; box-shadow: 0 4px 24px rgba(107, 143, 113, 0.1); text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.workshop-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(107, 143, 113, 0.18); }
.workshop-card__icon { width: 64px; height: 64px; background: var(--primary-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.workshop-card__icon i { font-size: 1.5rem; color: var(--primary); }
.workshop-card h3 { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 600; color: var(--dark); margin-bottom: 0.75rem; }
.workshop-card p { font-family: var(--font-body); font-size: 0.95rem; line-height: 1.75; color: var(--text-muted); text-align: left; }

.seasonal-strip { position: relative; background: var(--dark); clip-path: polygon(0 0, 100% 48px, 100% 100%, 0 100%); margin-top: -48px; padding: calc(4rem + 48px) 0 4rem; text-align: center; z-index: 2; }
.seasonal-strip p { font-family: var(--font-body); font-size: 1.1rem; color: rgba(255, 255, 255, 0.75); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }

.workshops-cta { position: relative; background: var(--primary); clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%); margin-top: -48px; padding: calc(5rem + 48px) 0 5rem; text-align: center; z-index: 1; }
.workshops-cta h2 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; color: #fff; margin-bottom: 1rem; }
.workshops-cta p { font-family: var(--font-body); font-size: 1.1rem; color: rgba(255, 255, 255, 0.85); margin-bottom: 2.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════ */
.contact-section { background: var(--bg); padding: 5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 2.5rem; align-items: start; }
.contact-info { background: var(--primary); color: #fff; border-radius: 20px; padding: 3rem; position: sticky; top: calc(var(--nav-height) + 1.5rem); }
.contact-info h2 { font-family: var(--font-heading); font-size: 2rem; font-weight: 600; color: #fff; line-height: 1.15; margin-bottom: 2rem; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-info-item i { color: rgba(255, 255, 255, 0.65); font-size: 1rem; margin-top: 0.2rem; flex-shrink: 0; width: 18px; text-align: center; }
.contact-info-item-text strong { display: block; color: #fff; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.2rem; }
.contact-info-item-text span { color: rgba(255, 255, 255, 0.65); font-size: 0.875rem; line-height: 1.65; }
.contact-info-item-text a { color: rgba(255, 255, 255, 0.85); text-decoration: none; transition: color var(--transition); }
.contact-info-item-text a:hover { color: #fff; text-decoration: underline; }
.contact-info-note { font-style: italic; color: rgba(255, 255, 255, 0.55); font-size: 0.825rem; border-top: 1px solid rgba(255, 255, 255, 0.15); padding-top: 1rem; margin-top: 1.5rem; line-height: 1.6; }
.contact-form h2 { font-family: var(--font-heading); font-size: 2rem; font-weight: 600; color: var(--text); margin-bottom: 2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.875rem 1rem; border: 1.5px solid var(--border); border-radius: 8px;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--text); background: var(--surface);
  outline: none; transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none; -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7470' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.65; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(107, 143, 113, 0.12); }
.form-group input.error, .form-group select.error, .form-group textarea.error { border-color: #e74c3c; box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1); }
.field-error { font-size: 0.78rem; color: #e74c3c; min-height: 1em; }
.form-check { display: flex; gap: 0.625rem; align-items: flex-start; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.6; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; min-width: 16px; border: 1.5px solid var(--border); border-radius: 4px; cursor: pointer; margin-top: 0.15rem; accent-color: var(--primary); }
.form-check a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.btn--submit { width: 100%; justify-content: center; }

.process-steps { background: var(--bg-alt); padding: var(--section-padding); position: relative; z-index: 2; clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%); margin-top: -48px; padding-top: calc(5rem + 48px); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.step { padding: 1.5rem; position: relative; }
.step__number { font-family: var(--font-heading); font-size: 4rem; font-weight: 700; color: rgba(107, 143, 113, 0.15); line-height: 1; display: block; margin-bottom: 0.5rem; }
.step__title { font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 0.5rem; }
.step__text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
.step::after { content: ''; position: absolute; right: -1rem; top: 3rem; width: 24px; height: 1px; background: rgba(107, 143, 113, 0.25); }
.step:last-child::after { display: none; }

.faq-mini { background: var(--bg); padding: var(--section-padding); position: relative; z-index: 3; clip-path: polygon(0 0, 100% 48px, 100% 100%, 0 100%); margin-top: -48px; padding-top: calc(5rem + 48px); }
.faq-mini__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.faq-mini__card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 1.75rem; transition: transform var(--transition), box-shadow var(--transition); }
.faq-mini__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.faq-mini__q { font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 0.75rem; display: flex; align-items: flex-start; gap: 0.6rem; }
.faq-mini__q::before { content: 'S'; display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; min-width: 22px; border-radius: 50%; background: var(--primary-pale); color: var(--primary); font-size: 0.7rem; font-weight: 700; margin-top: 0.05rem; font-family: var(--font-body); }
.faq-mini__a { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; padding-left: 1.65rem; }

/* ═══════════════════════════════════════════════════════
   BLOG ARCHIVE
   ═══════════════════════════════════════════════════════ */
.blog-archive { background: var(--bg); padding: var(--section-padding); clip-path: polygon(0 0, 100% 48px, 100% 100%, 0 100%); margin-top: -48px; padding-top: calc(5rem + 48px); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { background: var(--surface); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card__img { height: 220px; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card__meta { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.blog-card__tag { display: inline-block; background: var(--primary); color: #fff; border-radius: 50px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.7rem; font-family: var(--font-body); position: static; }
.blog-card__tag--accent { background: var(--accent); }
.blog-card__tag--dark { background: var(--dark-mid); }
.blog-card__title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: 0.75rem; }
.blog-card__title a { color: inherit; text-decoration: none; }
.blog-card__title a:hover { color: var(--primary); }
.blog-card__excerpt { font-family: var(--font-body); font-size: 0.875rem; line-height: 1.75; color: var(--text-muted); flex: 1; margin-bottom: 1.25rem; }
.blog-card__link { font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; color: var(--primary); text-decoration: none; display: inline-flex; align-items: center; gap: 0.35rem; margin-top: auto; transition: gap 0.2s ease; }
.blog-card__link:hover { gap: 0.6rem; }

/* ═══════════════════════════════════════════════════════
   SINGLE POST
   ═══════════════════════════════════════════════════════ */
.article-section { background: var(--bg); padding: var(--section-padding); clip-path: polygon(0 0, 100% 48px, 100% 100%, 0 100%); margin-top: -48px; padding-top: calc(5rem + 48px); }
.article-section .container { max-width: 780px; margin: 0 auto; padding: 0 1.5rem; }
.post-meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.post-tag { display: inline-block; background: var(--primary); color: #fff; border-radius: 50px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.85rem; font-family: var(--font-body); }
.post-tag--accent { background: var(--accent); }
.post-date, .post-author { font-family: var(--font-body); font-size: 0.8rem; color: var(--text-light); display: flex; align-items: center; gap: 0.3rem; }
.post-date i, .post-author i { font-size: 0.7rem; opacity: 0.7; }
.article-featured-img { width: 100%; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 2.5rem; box-shadow: var(--shadow-md); }
.article-featured-img img { width: 100%; height: auto; display: block; object-fit: cover; max-height: 460px; }
.post-content { font-family: var(--font-body); font-size: 1.05rem; line-height: 1.9; color: var(--text-muted); }
.post-content p + p { margin-top: 1.25rem; }
.post-content h2 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--text); margin: 2.5rem 0 1rem; line-height: 1.25; }
.post-content h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; color: var(--text); margin: 2rem 0 0.75rem; line-height: 1.3; }
.post-content ul, .post-content ol { margin: 1.25rem 0; padding-left: 1.5rem; }
.post-content li { margin-bottom: 0.5rem; }
.post-content strong { color: var(--text); font-weight: 600; }
.pull-quote { border-left: 3px solid var(--primary); padding-left: 1.5rem; font-style: italic; font-size: 1.2rem; color: var(--text); margin: 2.5rem 0; font-family: var(--font-heading); font-weight: 500; line-height: 1.5; }
.author-bio { display: flex; align-items: flex-start; gap: 1.5rem; margin-top: 3.5rem; padding: 2rem; background: var(--bg-alt); border-radius: var(--radius-md); border: 1px solid var(--border); }
.author-bio__avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; flex-shrink: 0; background: var(--primary-pale); display: flex; align-items: center; justify-content: center; }
.author-bio__avatar i { font-size: 2rem; color: var(--primary); }
.author-bio__info { flex: 1; }
.author-bio__name { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 0.25rem; }
.author-bio__role { font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.author-bio__text { font-family: var(--font-body); font-size: 0.9rem; line-height: 1.7; color: var(--text-muted); }

.related-posts { background: var(--bg-alt); padding: var(--section-padding); clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%); margin-top: -48px; padding-top: calc(5rem + 48px); }
.related-posts .container { max-width: var(--container-max); margin: 0 auto; padding: 0 1.5rem; }
.section-title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--text); margin-bottom: 3rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-post-card { background: var(--surface); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; }
.blog-post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-post-card__img { height: 220px; overflow: hidden; }
.blog-post-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.blog-post-card:hover .blog-post-card__img img { transform: scale(1.05); }
.blog-post-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-post-card__meta { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.9rem; flex-wrap: wrap; }
.blog-post-card__title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: 0.85rem; }
.blog-post-card__title a { color: inherit; text-decoration: none; transition: color var(--transition); }
.blog-post-card__title a:hover { color: var(--primary); }
.blog-post-card__excerpt { font-family: var(--font-body); font-size: 0.875rem; line-height: 1.75; color: var(--text-muted); flex: 1; }
.post-nav { display: flex; justify-content: space-between; align-items: stretch; gap: 1.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.post-nav__link { flex: 1; display: flex; flex-direction: column; gap: 0.4rem; text-decoration: none; padding: 1.25rem 1.5rem; border-radius: var(--radius-sm); border: 1px solid var(--border); transition: background 0.25s ease, border-color 0.25s ease; }
.post-nav__link:hover { background: var(--bg-alt); border-color: var(--primary); }
.post-nav__link--next { text-align: right; }
.post-nav__direction { font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--primary); }
.post-nav__title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; color: var(--text); line-height: 1.3; }


/* ═══════════════════════════════════════════════════════
   RESPONSIVE — BASE TABLET (< 1024px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { gap: 2rem; padding: 3rem 2rem 2.5rem; }
  .about-teaser__grid { gap: 2.5rem; }
  .services__grid { gap: 1.25rem; }
  .testimonials__grid { gap: 1.25rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .quick-randevu__fields { grid-template-columns: 1fr 1fr; }
  .quick-randevu__btn { grid-column: 1 / -1; width: 100%; justify-content: center; }
  .quick-randevu__sub { text-align: left; }
  .feature-card { padding: 2rem 1.75rem; }
  .faq__inner { gap: 3rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — INNER PAGES (< 900px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about-story__grid, .about-edu__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-story__image-wrap img { height: 360px; }
  .about-edu__image-wrap { order: -1; }
  .about-edu__image-wrap img { height: 300px; }
  .approach-cards, .values-cards { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .service-section__inner { grid-template-columns: 1fr; gap: 3rem; }
  .service-section--reverse .service-section__inner { direction: ltr; }
  .service-img { height: 360px; border-radius: 24px !important; }
  .service-number { font-size: 5rem; }
  .service-bullets { grid-template-columns: 1fr; }
  .session-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .workshop-intro__grid { grid-template-columns: 1fr; gap: 3rem; }
  .workshop-intro__image-wrap img { height: 360px; }
  .workshop-cards { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (< 768px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav__links {
    display: flex; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    margin: 0; padding: 0; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
    background: rgba(42, 53, 40, 0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    z-index: 1000; opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
  }
  .nav__links.open { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav__link {
    padding: 1rem 2.5rem; width: auto; border-radius: 50px; font-size: 1.15rem; font-weight: 500;
    color: rgba(255, 255, 255, 0.7); text-align: center; transform: translateY(12px); opacity: 0;
    transition: color 0.2s ease, background 0.2s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  }
  .nav__links.open .nav__link { transform: translateY(0); opacity: 1; }
  .nav__links.open li:nth-child(1) .nav__link { transition-delay: 0.05s; }
  .nav__links.open li:nth-child(2) .nav__link { transition-delay: 0.1s; }
  .nav__links.open li:nth-child(3) .nav__link { transition-delay: 0.15s; }
  .nav__links.open li:nth-child(4) .nav__link { transition-delay: 0.2s; }
  .nav__links.open li:nth-child(5) .nav__link { transition-delay: 0.25s; }
  .nav__links.open li:nth-child(6) .nav__link { transition-delay: 0.3s; }
  .nav__links.open li:nth-child(7) .nav__link { transition-delay: 0.35s; }
  .nav__link:hover, .nav__link.active { color: #fff; background: rgba(107, 143, 113, 0.3); }
  .nav__link--cta { margin-top: 0.75rem; background: var(--primary) !important; color: #fff !important; font-weight: 600; padding: 0.85rem 2.5rem; }
  .nav__link--cta:hover { background: var(--primary-dark) !important; }
  .nav__toggle { display: flex; }
  .nav__toggle.open span { background: #fff; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 2.5rem 1.5rem 2rem; gap: 2.5rem; }
  .hero__content { padding-right: 0; }
  .hero__heading { font-size: 2.8rem; }
  .hero__images { grid-template-columns: 1fr 1fr; gap: 0.75rem; max-width: 400px; margin: 0 auto; }
  .hero__img--2 { height: 240px; }
  .hero__img--1 { height: 180px; }
  .hero__img--3 { height: 180px; }
  .about-teaser__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-teaser__img-wrap { height: 380px; }
  .about-teaser__badge { right: 0.5rem; bottom: 1rem; }
  .about-teaser__body { padding-left: 0; }
  .quick-randevu__header { flex-direction: column; align-items: flex-start; }
  .quick-randevu__sub { text-align: left; max-width: 100%; }
  .quick-randevu__fields { grid-template-columns: 1fr; }
  .quick-randevu__btn { width: 100%; justify-content: center; }
  .feature-cards__grid { grid-template-columns: 1fr; }
  .feature-cards__grid::before, .feature-cards__grid::after { display: none; }
  .feature-card { padding: 2rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .faq__inner { grid-template-columns: 1fr; gap: 2rem; }
  .services__grid { grid-template-columns: 1fr; }
  .services__grid .service-card:nth-child(2), .services__grid .service-card:nth-child(3) { transform: none; }
  .about-teaser__image { margin-left: 0; }
  .about-teaser, .quick-randevu, .services, .faq, .testimonials, .blog-preview, .cta-banner, .footer {
    clip-path: none; margin-top: 0; padding-top: 5rem;
  }
  .quick-randevu { padding-top: 5rem; }
  .cta-banner { padding-top: 6rem; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .blog-preview__grid { grid-template-columns: 1fr; }
  .blog-card--small { grid-template-columns: 120px 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
  .footer__bottom .container { flex-direction: column; text-align: center; }
  .page-hero { min-height: 38vh; padding: 4rem 1.5rem; }
  .page-hero h1, .page-hero__heading, .page-hero__title { font-size: 2.4rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .steps-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .faq-mini__grid { grid-template-columns: 1fr; }
  .blog-archive, .article-section, .related-posts { clip-path: none; margin-top: 0; padding-top: 4rem; padding-bottom: 4rem; }
  .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .related-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .post-nav { flex-direction: column; }
  .post-nav__link--next { text-align: left; }
  .author-bio { flex-direction: column; align-items: center; text-align: center; }
  .pull-quote { font-size: 1.05rem; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — SMALL SCREENS (< 600px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .about-story, .about-approach, .about-edu, .about-values, .about-cta {
    clip-path: polygon(0 24px, 100% 0, 100% 100%, 0 100%); margin-top: -24px; padding-top: calc(4rem + 24px);
  }
  .about-story { clip-path: polygon(0 0, 100% 24px, 100% 100%, 0 100%); margin-top: -24px; padding-top: calc(4rem + 24px); }
  .workshop-intro, .workshop-programs, .seasonal-strip, .workshops-cta {
    clip-path: polygon(0 24px, 100% 0, 100% 100%, 0 100%); margin-top: -24px; padding-top: calc(4rem + 24px);
  }
  .workshop-intro { clip-path: polygon(0 0, 100% 24px, 100% 100%, 0 100%); margin-top: -24px; padding-top: calc(4rem + 24px); }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — NARROW (< 560px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 560px) {
  .page-hero__heading, .page-hero__title { font-size: 2.8rem; }
  .service-section__inner { gap: 2rem; }
  .session-strip__grid { grid-template-columns: 1fr 1fr; }
  .session-stat__value { font-size: 1.8rem; }
  .about-cta, .workshops-cta { clip-path: polygon(0 0, 100% 24px, 100% 100%, 0 100%); margin-top: -24px; padding-top: calc(4rem + 24px); }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — EXTRA SMALL (< 480px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero__heading { font-size: 2.2rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .stats__grid { grid-template-columns: 1fr; }
  .blog-card--small { grid-template-columns: 1fr; }
  .blog-card--small .blog-card__img { height: 160px; }
  .contact-info { padding: 2rem 1.5rem; }
}

/* ═══════════════════════════════════════════════════════
   LEGAL CONTENT (KVKK PAGE)
   ═══════════════════════════════════════════════════════ */
.page-hero--compact .page-hero__content { padding: 3rem 0 2rem; }
.legal-content { padding: var(--section-padding); background: var(--bg); }
.legal-content__body { max-width: 800px; margin: 0 auto; font-size: 1rem; line-height: 1.85; color: var(--text); }
.legal-content__body h2 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--primary-dark); margin: 2.5rem 0 1rem; }
.legal-content__body h3 { font-family: var(--font-heading); font-size: 1.25rem; color: var(--primary-dark); margin: 2rem 0 0.75rem; }
.legal-content__body p { margin-bottom: 1rem; }
.legal-content__body ul, .legal-content__body ol { margin: 0.5rem 0 1.5rem 1.5rem; }
.legal-content__body li { margin-bottom: 0.5rem; }
.legal-content__body strong { color: var(--text-dark); }

/* ── Footer KVKK link ── */
.footer__kvkk-link { color: inherit; opacity: 0.8; text-decoration: underline; text-underline-offset: 2px; transition: opacity 0.2s; }
.footer__kvkk-link:hover { opacity: 1; }
.footer__bottom p { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; }

/* ── Quick Randevu KVKK checkbox ── */
.quick-randevu__kvkk { display: flex; align-items: flex-start; gap: 0.5rem; margin-top: 0.75rem; font-size: 0.82rem; color: rgba(255,255,255,0.85); }
.quick-randevu__kvkk input[type="checkbox"] { margin-top: 0.15rem; accent-color: var(--primary); }
.quick-randevu__kvkk label { cursor: pointer; }
.quick-randevu__kvkk a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.quick-randevu__kvkk input.error { outline: 2px solid #e74c3c; outline-offset: 2px; }
