/* ============================================================
   PEYZAJ MİMARLIĞI — Yeşilin Mimarları
   ============================================================ */

:root {
  interpolate-size: allow-keywords;

  --bg: #F2F7F2;
  --surface: #FFFFFF;
  --surface-2: #E8F0E8;
  --ink: #1B2E1B;
  --ink-soft: #3D5C3D;
  --accent: #2D6A4F;
  --accent-2: #95D5B2;
  --line: rgba(27, 46, 27, 0.12);
  --line-strong: rgba(27, 46, 27, 0.25);

  --ff-heading: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
  --ff-body: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  --ff-mono: 'JetBrains Mono', 'Consolas', 'Courier New', monospace;

  --header-h: 72px;
  --container-max: 1320px;
  --container-pad: clamp(16px, 4vw, 32px);
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 2px 12px -4px rgba(27, 46, 27, 0.10);
  --shadow-card-hover: 0 12px 32px -8px rgba(45, 106, 79, 0.18);
}

@media (min-width: 1024px) {
  :root { --header-h: 80px; }
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }
body {
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }

/* ---- Skip link ---- */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--accent); color: #fff;
  padding: 8px 18px; border-radius: 0 0 6px 6px;
  font-weight: 600; z-index: 9999;
  transition: top 200ms;
}
.skip-link:focus { top: 0; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
}
h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.4em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1rem, 1.8vw, 1.2rem); }

.eyebrow {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 540px;
  line-height: 1.7;
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 240ms cubic-bezier(.2,.7,.2,1);
  min-height: 48px;
}
.btn-primary {
  background: var(--ink);
  color: var(--surface);
  border: 2px solid var(--ink);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(45, 106, 79, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Focus ring */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(242, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  height: var(--header-h);
}
.site-header.scrolled {
  background: rgba(242, 247, 242, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.logo {
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1100;
}
.logo svg { width: 32px; height: 32px; flex-shrink: 0; }

/* Nav desktop */
.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .nav-desktop a {
    padding: 8px 16px;
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--ink);
    border-radius: 6px;
    position: relative;
    transition: color 200ms, background 200ms;
  }
  .nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 16px; right: 16px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 240ms cubic-bezier(.2,.7,.2,1);
  }
  .nav-desktop a:hover { color: var(--accent); }
  .nav-desktop a:hover::after { transform: scaleX(1); }
  .nav-desktop a.is-active { color: var(--accent); }
  .nav-desktop a.is-active::after { transform: scaleX(1); }
  .nav-desktop .nav-cta {
    background: var(--ink);
    color: var(--surface);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    margin-left: 10px;
  }
  .nav-desktop .nav-cta::after { display: none; }
  .nav-desktop .nav-cta:hover {
    background: var(--accent);
    color: var(--surface);
  }
  .nav-desktop .nav-cta.is-active { color: var(--surface); }
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  z-index: 1100;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
}
.nav-toggle span:nth-child(1) { transform: translateY(-8px); }
.nav-toggle span:nth-child(3) { transform: translateY(8px); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Mobile drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 24px) 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer a {
  display: block;
  padding: 14px 0;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color 200ms, padding-left 200ms;
}
.mobile-drawer a:hover { color: var(--accent); padding-left: 8px; }
.mobile-drawer a.is-active { color: var(--accent); }
.mobile-drawer .drawer-cta {
  margin-top: 16px;
  text-align: center;
  background: var(--accent);
  color: var(--surface);
  padding: 14px 24px;
  border-radius: 50px;
  border-bottom: none;
  font-size: 1rem;
}
.mobile-drawer .drawer-cta:hover {
  background: var(--ink);
  color: var(--surface);
  padding-left: 0;
}
@media (min-width: 1024px) {
  .mobile-drawer, .drawer-backdrop { display: none; }
}

/* ============================================================
   MAIN
   ============================================================ */
main { padding-top: var(--header-h); }
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* Section spacing */
.section {
  padding: clamp(48px, 8vw, 96px) 0;
}
.section--alt { background: var(--surface); }
.section--dark {
  background: var(--ink);
  color: var(--surface);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--surface); }
.section--dark .eyebrow { color: var(--accent-2); }
.section--dark .subtitle { color: rgba(255,255,255,0.7); }

.section-header {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(48px, 10vw, 100px) 0 clamp(40px, 8vw, 80px);
  position: relative;
  overflow: hidden;
}
.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero h1 {
  margin-bottom: 20px;
  line-height: 1.05;
}
.hero h1 span {
  display: block;
  color: var(--accent);
}
.hero .subtitle {
  margin: 0 auto 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 32px;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.trust-badge svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* Hero images grid */
.hero-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
  margin-top: clamp(32px, 6vw, 56px);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hero-img-wrap {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
  position: relative;
}
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Leaf parallax decorations */
.leaf-parallax {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.07;
  color: var(--accent);
}
.leaf-parallax--1 { top: 10%; left: -40px; width: 180px; }
.leaf-parallax--2 { top: 40%; right: -30px; width: 140px; transform: rotate(45deg); }
.leaf-parallax--3 { bottom: 5%; left: 10%; width: 120px; transform: rotate(-20deg); }

/* ============================================================
   STATS COUNTER
   ============================================================ */
.stats-band {
  background: var(--accent);
  padding: clamp(28px, 4vw, 44px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { color: #fff; }
.stat-number {
  font-family: var(--ff-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.85rem;
  opacity: 0.85;
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
}

/* ============================================================
   VITRIN — Services grid
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}
.service-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 16px;
  color: var(--accent);
}
.service-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.service-price {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent);
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PROJELER — Photo grid
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 18px);
}
.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--surface-2);
}
.project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.project-card:hover img { transform: scale(1.04); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,46,27,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(16px, 2vw, 24px);
  opacity: 0;
  transition: opacity 360ms cubic-bezier(.2,.7,.2,1);
}
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay h4 { color: #fff; font-size: 1rem; margin-bottom: 4px; }
.project-overlay p { color: rgba(255,255,255,0.8); font-size: 0.8rem; margin: 0; }

@media (max-width: 768px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .projects-grid { grid-template-columns: 1fr; aspect-ratio: auto; }
  .project-card { aspect-ratio: 4/3; }
}
@media (hover: none) {
  .project-overlay {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(to top, rgba(27,46,27,0.8) 0%, transparent 55%);
  }
}

/* ============================================================
   MALZEME — Horizontal scroll
   ============================================================ */
.material-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  margin: 0 calc(var(--container-pad) * -1);
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
.material-scroll-wrap::-webkit-scrollbar { height: 4px; }
.material-scroll-wrap::-webkit-scrollbar-thumb { background: var(--accent-2); border-radius: 4px; }
.material-track {
  display: flex;
  gap: clamp(14px, 2vw, 20px);
  width: max-content;
}
.material-card {
  scroll-snap-align: start;
  min-width: 220px;
  max-width: 260px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms;
  flex-shrink: 0;
}
.material-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.material-card-img {
  aspect-ratio: 4/3;
  background: var(--surface-2);
  overflow: hidden;
}
.material-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.material-card-body {
  padding: 16px 20px;
}
.material-card-body h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.material-card-body p {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================================
   EKİP — Team
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 28px);
}
.team-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.team-photo {
  aspect-ratio: 3/4;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.team-info {
  padding: clamp(18px, 2.5vw, 28px);
}
.team-info h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-role {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.team-info p { font-size: 0.88rem; color: var(--ink-soft); }

@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ============================================================
   SÜREÇ — Process / Timeline
   ============================================================ */
.process-timeline {
  position: relative;
  padding-left: 40px;
  max-width: 740px;
  margin: 0 auto;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 15px; top: 0; bottom: 0;
  width: 2px;
  background: var(--accent-2);
}
.process-step {
  position: relative;
  padding-bottom: clamp(28px, 4vw, 44px);
}
.process-step:last-child { padding-bottom: 0; }
.process-step::before {
  content: '';
  position: absolute;
  left: -33px; top: 4px;
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--bg);
  z-index: 1;
}
.process-step .step-tag {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 4px;
  display: block;
}
.process-step h4 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ============================================================
   TEKLİF — CTA + Form
   ============================================================ */
.cta-form-section {
  background: var(--ink);
  color: var(--surface);
}
.cta-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.cta-form-text h2 { color: var(--surface); }
.cta-form-text .subtitle { color: rgba(255,255,255,0.7); }
.cta-phone {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cta-phone-icon {
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.cta-phone-icon svg { width: 20px; height: 20px; }
.cta-phone-label { font-size: 0.8rem; opacity: 0.7; }
.cta-phone-number {
  font-family: var(--ff-mono);
  font-size: 1.15rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .cta-form-grid { grid-template-columns: 1fr; }
}

/* Form */
.site-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.85);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  transition: border-color 200ms;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent-2);
  outline: none;
}
.field select option { background: var(--ink); color: #fff; }
.field textarea { min-height: 100px; resize: vertical; }

.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent-2);
}
.field-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.field-checkbox label {
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
}

.form-submit {
  width: 100%;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 240ms, transform 200ms;
}
.form-submit:hover {
  background: var(--accent-2);
  color: var(--ink);
  transform: translateY(-2px);
}
.form-submit:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

/* Light form variant (iletisim / standalone pages) */
.form-light .field label { color: var(--ink); }
.form-light .field input[type="text"],
.form-light .field input[type="email"],
.form-light .field input[type="tel"],
.form-light .field select,
.form-light .field textarea {
  background: var(--bg);
  border-color: var(--line);
  color: var(--ink);
}
.form-light .field input:focus,
.form-light .field select:focus,
.form-light .field textarea:focus {
  border-color: var(--accent);
}
.form-light .field select option { background: var(--surface); color: var(--ink); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}
.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 24px;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--accent-2);
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 16px;
  padding-top: 24px;
  font-style: italic;
}
.testimonial-author {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial-meta {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 2px;
}
@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}
.pricing-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px) clamp(24px, 2.5vw, 32px);
  border: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.pricing-card--featured {
  border-color: var(--accent);
  position: relative;
}
.pricing-card--featured::before {
  content: 'Popüler';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pricing-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.pricing-card .pricing-desc {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.pricing-price {
  font-family: var(--ff-mono);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 20px;
}
.pricing-price small {
  font-size: 0.6em;
  font-weight: 400;
  color: var(--ink-soft);
}
.pricing-list { margin-bottom: 20px; flex-grow: 1; }
.pricing-list li {
  font-size: 0.88rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pricing-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent-2);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-excluded {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
  padding: 10px 14px;
  background: var(--bg);
  border-radius: 8px;
}
.pricing-excluded strong { display: block; margin-bottom: 4px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; }
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1rem;
  list-style: none;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 20px; height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%231B2E1B' stroke-width='2'%3E%3Cpath d='M5 8l5 5 5-5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item > .faq-body {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 20px;
}
.faq-body p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-channels {
  display: grid;
  gap: 0;
}
.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
  border-radius: 6px;
  padding-left: 8px;
  padding-right: 8px;
}
.contact-row:hover {
  transform: translateX(4px);
  background: var(--surface-2);
}
.contact-row:last-child { border-bottom: none; }
.contact-icon {
  width: 22px; height: 22px;
  color: var(--ink-soft);
  transition: color 240ms, transform 240ms;
  margin-top: 2px;
}
.contact-row:hover .contact-icon {
  color: var(--accent);
  transform: scale(1.08);
}
.contact-label {
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 2px;
  display: block;
}
.contact-value {
  font-size: 0.92rem;
  color: var(--ink-soft);
  word-break: break-all;
}
.contact-value a { color: var(--accent); }
.contact-value a:hover { text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: clamp(40px, 6vw, 72px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  padding-bottom: clamp(32px, 5vw, 56px);
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 12px; }
.footer-brand .logo { color: #fff; margin-bottom: 12px; }
.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col a {
  display: block;
  padding: 4px 0;
  font-size: 0.85rem;
  transition: color 200ms, padding-left 200ms;
}
.footer-col a:hover { color: var(--accent-2); padding-left: 6px; }
.footer-contact-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 0.85rem;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--accent-2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.78rem;
}
.footer-bottom a { transition: color 200ms; }
.footer-bottom a:hover { color: var(--accent-2); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.18);
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.cookie-banner p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cookie-actions button {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 200ms, color 200ms;
}
.cookie-accept {
  background: var(--accent);
  color: #fff;
  border: none;
}
.cookie-accept:hover { background: var(--ink); color: var(--surface); }
.cookie-reject {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink-soft);
}
.cookie-reject:hover { background: var(--bg); color: var(--ink); }
.cookie-settings {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.cookie-settings:hover { background: var(--bg); color: var(--ink); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: clamp(40px, 8vw, 80px) 0 clamp(32px, 5vw, 48px);
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: 8px; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content {
  max-width: 740px;
  line-height: 1.7;
  margin: 0 auto;
  padding-bottom: clamp(48px, 8vw, 80px);
}
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2.5em;
  margin-bottom: 0.6em;
  padding-top: 1em;
  border-top: 1px solid var(--line);
}
.legal-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 1.5em;
  margin-bottom: 0.4em;
}
.legal-content p { font-size: 0.92rem; color: var(--ink-soft); }
.legal-content ul {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
.legal-content li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 6px;
  list-style: disc;
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(48px, 10vw, 100px) 0;
}
.thankyou-wrap h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 16px; }
.thankyou-wrap p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 auto 28px;
}

/* ============================================================
   404
   ============================================================ */
.error-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(48px, 10vw, 100px) 0;
}
.error-code {
  font-family: var(--ff-mono);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 800;
  color: var(--accent-2);
  line-height: 1;
}

/* ============================================================
   SITEMAP PAGE
   ============================================================ */
.sitemap-list { max-width: 600px; margin: 0 auto; }
.sitemap-list li { margin-bottom: 10px; }
.sitemap-list a {
  font-size: 1rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 200ms;
}
.sitemap-list a:hover { color: var(--ink); text-decoration: underline; }

/* ============================================================
   TABLE SCROLL
   ============================================================ */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

.table-scroll table { border-collapse: collapse; }
.table-scroll th, .table-scroll td {
  padding: 10px 16px;
  font-size: 0.88rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.table-scroll th {
  background: var(--bg);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============================================================
   REVEAL / ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1),
              transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[style*="--i"] {
  transition-delay: calc(var(--i, 0) * 80ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ---- Niche animations: leaf / garden themed ---- */
@keyframes leafFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-18px) rotate(8deg); }
  66% { transform: translateY(-10px) rotate(-5deg); }
}
@keyframes leafSway {
  0%, 100% { transform: rotate(-3deg) scale(1); }
  50% { transform: rotate(3deg) scale(1.03); }
}
@keyframes rootGrow {
  from { stroke-dashoffset: 200; }
  to { stroke-dashoffset: 0; }
}
@keyframes dewDrop {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.1); }
}
@keyframes soilReveal {
  from { clip-path: inset(100% 0 0 0); }
  to { clip-path: inset(0 0 0 0); }
}

.leaf-float { animation: leafFloat 10s ease-in-out infinite; }
.leaf-sway { animation: leafSway 8s ease-in-out infinite; }
.dew-pulse { animation: dewDrop 4s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .leaf-float, .leaf-sway, .dew-pulse { animation: none; }
}

/* Leaf watermark decoration */
.leaf-watermark {
  position: absolute;
  pointer-events: none;
  opacity: 0.035;
  z-index: 0;
}

/* Organic blob borders */
.blob-decor {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  background: var(--accent-2);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

/* Counter animation class */
.counter-up { font-variant-numeric: tabular-nums; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.about-intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface-2);
}
.about-intro-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 768px) {
  .about-intro { grid-template-columns: 1fr; }
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}
.value-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  text-align: center;
}
.value-card svg { width: 40px; height: 40px; color: var(--accent); margin-bottom: 14px; }
.value-card h3 { font-size: 1rem; margin-bottom: 6px; }
.value-card p { font-size: 0.85rem; color: var(--ink-soft); }
@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* Cancellation table */
.cancel-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.cancel-tier {
  background: var(--surface);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: center;
}
.cancel-tier strong {
  display: block;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 4px;
}
.cancel-tier span { font-size: 0.88rem; color: var(--ink-soft); }
@media (max-width: 640px) {
  .cancel-tiers { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT PAGE — responsive two-column layout
   ============================================================ */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 768px) {
  .contact-form-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRINT
   ============================================================ */
/* ============================================================
   ENHANCED HOVER & MICRO-INTERACTIONS
   ============================================================ */

/* Service icon: leaf sway on card hover */
.service-card:hover .service-icon {
  animation: leafSway 1.2s ease-in-out;
  color: var(--accent);
}
.service-icon {
  transition: color 300ms ease;
}

/* Testimonial cards: hover lift */
.testimonial-card {
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms cubic-bezier(.2,.7,.2,1), border-color 280ms;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--accent-2);
}

/* FAQ items: hover highlight */
.faq-item summary {
  transition: color 200ms, padding-left 200ms;
}
.faq-item summary:hover {
  color: var(--accent);
  padding-left: 6px;
}

/* Value cards: hover lift */
.value-card {
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms, border-color 280ms;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--accent-2);
}
.value-card:hover svg {
  animation: leafSway 1.2s ease-in-out;
}

/* Cancel tiers: hover */
.cancel-tier {
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms, border-color 240ms;
}
.cancel-tier:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--accent-2);
}

/* Primary button: organic glow on hover */
.btn-primary:hover, .btn-primary:focus-visible {
  box-shadow: 0 8px 28px -6px rgba(45, 106, 79, 0.40), 0 0 0 4px rgba(149, 213, 178, 0.12);
}

/* Ghost button: subtle green border glow */
.btn-ghost:hover, .btn-ghost:focus-visible {
  box-shadow: 0 4px 16px -4px rgba(45, 106, 79, 0.15);
}

/* Team photo: gentle zoom on hover */
.team-photo img {
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.team-card:hover .team-photo img {
  transform: scale(1.04);
}

/* Material card image: zoom on hover */
.material-card-img img {
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}
.material-card:hover .material-card-img img {
  transform: scale(1.06);
}

/* Pricing card featured: green glow */
.pricing-card--featured {
  box-shadow: 0 0 0 0 rgba(45, 106, 79, 0);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms cubic-bezier(.2,.7,.2,1), border-color 240ms;
}
.pricing-card--featured:hover {
  box-shadow: 0 12px 36px -8px rgba(45, 106, 79, 0.22), 0 0 0 3px rgba(149, 213, 178, 0.18);
}

/* Process timeline dots: pulse on reveal */
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(45, 106, 79, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(45, 106, 79, 0); }
}
.process-step.is-in::before {
  animation: dotPulse 2s ease-in-out 1;
}

/* Stats numbers: organic count finish */
.stats-band .stat-item {
  transition: transform 300ms cubic-bezier(.2,.7,.2,1);
}
.stats-band .stat-item:hover {
  transform: scale(1.06);
}

/* Hero leaf parallax: gentle floating animation */
.leaf-parallax--1 { animation: leafFloat 12s ease-in-out infinite; }
.leaf-parallax--2 { animation: leafFloat 15s ease-in-out infinite 2s; }
.leaf-parallax--3 { animation: leafFloat 10s ease-in-out infinite 4s; }

/* CTA section phone: hover lift */
.cta-phone {
  transition: transform 240ms cubic-bezier(.2,.7,.2,1);
  border-radius: 50px;
  padding: 8px 12px;
}
.cta-phone:hover {
  transform: translateY(-3px);
}

/* Footer links: underline grow effect */
.footer-col a {
  position: relative;
}
.footer-col a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-2);
  transition: width 240ms cubic-bezier(.2,.7,.2,1);
}
.footer-col a:hover::after {
  width: 100%;
}

/* Contact row icon: grow on hover */
.contact-row:hover .contact-icon {
  animation: dewDrop 1.5s ease-in-out 1;
}

/* Hero images: stagger reveal with scale */
.hero-img-wrap {
  transition: transform 600ms cubic-bezier(.2,.7,.2,1), box-shadow 400ms;
}
.hero-img-wrap:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px -8px rgba(27, 46, 27, 0.18);
}

/* Smooth entrance for eyebrow labels */
@keyframes eyebrowSlide {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Project overlay: smoother transition */
.project-overlay {
  transition: opacity 400ms cubic-bezier(.2,.7,.2,1), transform 400ms cubic-bezier(.2,.7,.2,1);
  transform: translateY(8px);
}
.project-card:hover .project-overlay {
  opacity: 1;
  transform: translateY(0);
}
@media (hover: none) {
  .project-overlay { transform: translateY(0); }
}

/* ============================================================
   COOKIE BANNER — Mobile full-width bottom sheet
   ============================================================ */
@media (max-width: 768px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    max-width: none;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 20px 20px calc(20px + env(safe-area-inset-bottom, 0px));
  }
  .cookie-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .cookie-actions .cookie-accept {
    flex: 1 1 100%;
    min-height: 48px;
  }
  .cookie-actions .cookie-reject,
  .cookie-actions .cookie-settings {
    flex: 1;
    min-height: 44px;
  }
}

/* ============================================================
   HAMBURGER — Better visibility
   ============================================================ */
.nav-toggle {
  border-radius: 8px;
  border: 1.5px solid var(--line);
  transition: background 200ms, border-color 200ms;
}
.nav-toggle:hover {
  background: var(--surface-2);
  border-color: var(--line-strong);
}
.nav-toggle:active {
  background: var(--line);
}

/* ============================================================
   REDUCED MOTION — Disable new animations
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .service-card:hover .service-icon,
  .value-card:hover svg,
  .contact-row:hover .contact-icon { animation: none; }
  .process-step.is-in::before { animation: none; }
  .leaf-parallax--1, .leaf-parallax--2, .leaf-parallax--3 { animation: none; }
  .testimonial-card, .value-card, .cancel-tier, .team-photo img,
  .material-card-img img, .hero-img-wrap, .cta-phone,
  .project-overlay, .stats-band .stat-item { transition: none; }
  .testimonial-card:hover, .value-card:hover, .cancel-tier:hover,
  .hero-img-wrap:hover, .stats-band .stat-item:hover { transform: none; }
}

/* ============================================================
   PRINT
   ============================================================ */
/* Scroll progress bar */
.scroll-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--accent);
  width: 0;
  z-index: 1;
  pointer-events: none;
}

@media print {
  .site-header, .cookie-banner, .nav-toggle, .mobile-drawer, .drawer-backdrop { display: none !important; }
  main { padding-top: 0 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  body { color: #000; background: #fff; }
}

