:root{
  --font-sans:"Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
  --bg:#f6f7f4;
  --surface:#ffffff;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --brand:#2f7d32;        /* yeşil */
  --brand2:#256a2a;       /* koyu yeşil */
  --brown:#7a5a2e;        /* kahve */
  --brown2:#5f4523;       /* koyu kahve */
  --border:rgba(15,23,42,.12);
  --shadow:0 8px 22px rgba(15,23,42,.08);
  --radius:0;
  --container:1120px;
  --focus:0 0 0 4px rgba(47,125,50,.25);
  --header-bar:124px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font-sans);
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
  font-size:16px;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

a{color:inherit;text-decoration:none}
a:hover{color:var(--brown2)}
a:focus-visible,button:focus-visible{outline:none;box-shadow:var(--focus);border-radius:0}
img,video{max-width:100%;height:auto;display:block}

.container{max-width:var(--container);margin:0 auto;padding:0 16px}
.skip-link{
  position:absolute;left:-999px;top:12px;background:#fff;color:#111;padding:10px 12px;border-radius:0;z-index:9999
}
.skip-link:focus{left:12px}
.visually-hidden{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

.site-header{
  position:sticky;top:0;z-index:50;
  backdrop-filter:saturate(1.2) blur(10px);
  background:rgba(246,247,244,.88);
  border-bottom:1px solid var(--border);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:16px;min-height:var(--header-bar)}

.brand{display:flex;align-items:center;gap:12px}
.brand-logo{
  height:102px;
  width:auto;
  max-width:min(560px, 58vw);
  border-radius:0;
  object-fit:contain;
  background:transparent;
  border:0;
  padding:0;
}
.brand-mark{
  width:42px;height:42px;border-radius:0;
  display:grid;place-items:center;
  background:linear-gradient(135deg, var(--brand), rgba(47,125,50,.15));
  box-shadow:none;
  font-weight:700;letter-spacing:.04em
}
.brand-text{display:flex;flex-direction:column;gap:2px}
.brand-name{font-weight:600}
.brand-tagline{font-size:12px;color:var(--muted)}

.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:rgba(255,255,255,.80);
  color:var(--text);
  padding:10px 12px;
  border-radius:0;
  font-weight:600;
}
.site-nav{}
.nav-list{list-style:none;margin:0;padding:0;display:flex;gap:8px;align-items:center}
.nav-link{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 12px;border-radius:0;
  border:1px solid transparent;
  color:var(--muted);
  font-weight:500;
  font-size:15px;
}
.nav-link:hover{background:rgba(15,23,42,.04);color:var(--text)}
.nav-link.is-active{color:var(--text);border-color:rgba(47,125,50,.30);background:rgba(47,125,50,.08)}

.site-main{
  padding:28px 0 110px;
  flex:1 0 auto;
}

.hero{
  border:1px solid var(--border);
  background:var(--surface);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.hero-grid{display:grid;grid-template-columns:1.15fr .85fr}
.hero-media{
  min-height:340px;
  background:
    linear-gradient(120deg, rgba(47,125,50,.14), rgba(122,90,46,.10)),
    url("/assets/img/anasayfa/hero.png");
  background-size:cover;
  background-position:center;
}
.hero-content{padding:28px}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-weight:600;
  color:var(--brand);
  text-transform:uppercase;
  letter-spacing:.06em;
  font-size:11px;
}
.hero .eyebrow{font-size:13px;letter-spacing:.08em}
.title{font-size:32px;line-height:1.2;margin:12px 0 10px;font-weight:600;letter-spacing:-0.02em}
.page-intro{padding:0 0 2px}
.page-heading{
  margin:0;
  padding:0 16px;
  font-size:clamp(1.35rem, 2.8vw, 1.65rem);
  font-weight:600;
  letter-spacing:-0.02em;
  color:var(--text);
  line-height:1.3;
}
.page-lead{
  margin:10px 0 0;
  padding:0 16px;
  max-width:52rem;
  color:var(--muted);
  line-height:1.7;
}
.page-intro-card{
  margin-top:12px;
  /* Slight inset so it visually aligns with content blocks below */
  width:calc(100% - 32px);
  margin-left:16px;
  margin-right:16px;
}
.page-intro-card .page-lead{padding:0;margin:0 0 10px;max-width:none}
.page-intro-card .page-lead:last-child{margin-bottom:0}
.page-cta{
  padding:16px;
  border-left:4px solid rgba(47,125,50,.35);
  background:linear-gradient(180deg, rgba(47,125,50,.06), rgba(255,255,255,0));
}
.page-cta__text{margin:0;color:var(--text);line-height:1.7}
.page-cta__actions{margin-top:12px}
.lead{color:var(--muted);margin:0 0 18px}
.cta-row{display:flex;gap:10px;flex-wrap:wrap}
.cta-row--stack{
  flex-direction:column;
  align-items:stretch;
  flex-wrap:nowrap;
  max-width:320px;
  gap:12px;
}
.cta-row--stack .btn{width:100%;justify-content:center}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 14px;border-radius:0;
  border:1px solid transparent;
  font-weight:600;
  font-size:15px;
  min-height:44px;
}
.btn-primary{background:linear-gradient(135deg, var(--brand), var(--brand2));color:#ffffff}
.btn-primary:hover{filter:brightness(1.02)}
.btn-outline{border-color:var(--border);background:#ffffff;color:var(--text)}
.btn-outline:hover{background:rgba(15,23,42,.03)}
.btn-whatsapp{background:rgba(47,125,50,.10);border-color:rgba(47,125,50,.28)}
.btn-whatsapp:hover{background:rgba(47,125,50,.14)}
.btn-sm{
  padding:8px 12px;
  min-height:40px;
  font-size:14px;
  border-radius:0;
}

.contact-person-actions{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px}
.contact-person-phone{margin:0;font-weight:600}
.contact-person-phone a{color:var(--brown2)}
.contact-address{margin:0;line-height:1.55}
.team-names strong{font-weight:600}
.team-sep{color:var(--muted);font-weight:500}

.about-prose{
  max-width:52rem;
  margin:0 auto;
}
.about-prose p{
  margin:0 0 1.05em;
  color:var(--muted);
  line-height:1.85;
  font-size:16px;
  font-weight:400;
}
.about-prose p:last-child{margin-bottom:0}
.about-prose p + p{margin-top:0.25em}
.about-prose__lead{
  margin-top:0.35em;
  margin-bottom:1.15em;
  color:var(--text);
  font-size:17px;
  font-weight:400;
}

.section{margin-top:22px}
.section-title{font-size:19px;margin:0 0 10px;font-weight:600;letter-spacing:-0.01em}
.section-title::after{
  content:"";
  display:block;
  width:56px;
  height:3px;
  border-radius:0;
  background:linear-gradient(90deg, var(--brown), rgba(122,90,46,.18));
  margin-top:8px;
}
.grid{display:grid;gap:12px}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-home-hizmetler{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.grid-home-hizmetler .card > h3:last-child{margin-bottom:0}

.card{
  border:1px solid var(--border);
  background:var(--card);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
}
.card h3{margin:0 0 6px;font-size:15px;font-weight:600;letter-spacing:-0.01em}
.card p{margin:0;color:var(--muted)}
.card-media{
  border-radius:0;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(15,23,42,.03);
  margin-bottom:12px;
}
.card-media img{width:100%;aspect-ratio:16/10;object-fit:cover}
.about-media img{
  object-fit:contain;
  background:#ffffff;
}

/* Home services cards: show full icons/photos (no crop) */
.home-services-cards .card-media img{
  aspect-ratio:1/1;
  object-fit:contain;
  background:#ffffff;
}

.feature-list{display:flex;flex-direction:column;gap:16px}
.feature{
  border:1px solid var(--border);
  background:var(--card);
  box-shadow:var(--shadow);
  overflow:hidden;
  display:grid;
  grid-template-columns:4fr 1fr;
  gap:0;
}
.feature-body{padding:14px 16px}
.feature-title{margin:0 0 8px;font-size:20px;line-height:1.25;font-weight:600;letter-spacing:-0.01em}
.feature-subtitle{
  margin:0 0 10px;
  color:var(--brown2);
  font-weight:500;
  line-height:1.35;
}
.feature-text{margin:0;color:var(--muted);line-height:1.7}
.feature-media{border-left:1px solid rgba(15,23,42,.10);background:rgba(15,23,42,.03)}
.feature-media img{width:100%;height:100%;min-height:190px;object-fit:cover}
/* Keep all feature images on the right */
.feature--reverse .feature-body{order:1}
.feature--reverse .feature-media{order:2;border-left:1px solid rgba(15,23,42,.10);border-right:0}
.feature--reverse{grid-template-columns:4fr 1fr}

.feature--home .feature-title{font-size:18px}
.feature--home .feature-media img{min-height:165px}

.home-services-cards{display:grid}

.video-frame{
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--surface);
  box-shadow:var(--shadow);
}
.video-frame video{width:100%}

.video-card{display:block;position:relative}
.video-card__poster{width:100%;aspect-ratio:16/10;object-fit:cover;display:block}
.video-card__poster--blank{
  width:100%;
  aspect-ratio:16/10;
  background:rgba(15,23,42,.06);
}
.video-card__play{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
}
.video-card__play::before{
  content:"";
  width:54px;height:54px;
  border:1px solid rgba(15,23,42,.18);
  background:rgba(255,255,255,.82);
  box-shadow:var(--shadow);
  display:block;
  clip-path:polygon(40% 30%, 40% 70%, 72% 50%);
}

/* Lightbox */
.lightbox{
  position:fixed;inset:0;
  background:rgba(2,6,23,.74);
  display:none;
  z-index:100;
}
.lightbox.is-open{display:block}
.lightbox__inner{
  position:absolute;inset:16px;
  display:grid;
  place-items:center;
}
.lightbox__content{
  width:min(980px, 94vw);
  max-height:84vh;
  background:#000;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 16px 46px rgba(0,0,0,.35);
}
.lightbox__content img,
.lightbox__content video{
  width:100%;
  height:100%;
  max-height:84vh;
  object-fit:contain;
  display:block;
  background:#000;
}
.lightbox__btn{
  position:absolute;top:18px;
  width:44px;height:44px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(15,23,42,.35);
  color:#fff;
  display:grid;place-items:center;
  cursor:pointer;
}
.lightbox__btn:hover{background:rgba(15,23,42,.55)}
.lightbox__close{right:18px}
.lightbox__prev,.lightbox__next{
  top:50%;
  transform:translateY(-50%);
}
.lightbox__prev{left:18px}
.lightbox__next{right:18px}
.lightbox__btn svg{width:20px;height:20px}

.chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}
.chip{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 10px;border-radius:0;
  border:1px solid var(--border);
  color:var(--muted);
  background:rgba(122,90,46,.06);
  font-weight:600;
  min-height:38px;
}

.gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
.gallery--home{
  grid-template-columns:repeat(4,1fr);
}
.gallery-item{
  border-radius:0;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(15,23,42,.03);
}
.gallery-item img{width:100%;aspect-ratio:1/1;object-fit:cover;transition:transform .18s ease}
.gallery--home .gallery-item img{aspect-ratio:1/1}
.gallery-item:hover img{transform:scale(1.03)}

/* Home gallery: make items look like cards (like products) */
.gallery--home .gallery-item{
  padding:12px;
  border:1px solid var(--border);
  background:var(--card);
  box-shadow:var(--shadow);
}
.gallery--home .gallery-item img{
  border:1px solid rgba(15,23,42,.10);
  background:rgba(15,23,42,.03);
}

.contact-cards{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.map{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  background:var(--surface);
  min-height:320px;
}
.map iframe{width:100%;height:100%;border:0}

.site-footer{
  border-top:1px solid var(--border);
  background:rgba(255,255,255,.70);
  padding:18px 0;
}
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap}
.footer-col--brand{display:flex;flex-direction:column;align-items:flex-start;gap:10px;max-width:28rem}
.footer-brand{font-weight:700;letter-spacing:.05em}
.footer-team{
  margin:0;
  font-weight:700;
  font-size:15px;
  line-height:1.45;
  color:var(--text);
  letter-spacing:.01em;
}
.footer-muted{color:var(--muted);font-size:13px}
.footer-address{line-height:1.5}
.footer-nav{display:flex;gap:8px;flex-wrap:wrap;align-items:center}
.footer-nav-link{
  color:var(--muted);
  font-weight:500;
  font-size:14px;
  padding:2px 0;
}
.footer-nav-link:hover{color:var(--brown2);text-decoration:underline}
.footer-sep{color:rgba(122,90,46,.55)}
.footer-bottom{padding-top:10px;color:var(--muted)}

.floating-actions{
  position:fixed;
  right:14px;
  bottom:14px;
  z-index:60;
  display:none;
  flex-direction:column;
  gap:10px;
}
body.page-iletisim .floating-actions{display:none !important}
.floating-actions.is-hidden{display:none !important}
.fab{
  width:52px;height:52px;border-radius:0;
  display:grid;place-items:center;
  border:1px solid var(--border);
  background:#ffffff;
  box-shadow:var(--shadow);
  opacity:.92;
}
.fab-icon{width:24px;height:24px;color:var(--brown2)}
.fab-icon--wa{color:#25d366}
.fab-call{background:rgba(122,90,46,.10);border-color:rgba(122,90,46,.28)}
.fab-wa{background:rgba(47,125,50,.10);border-color:rgba(47,125,50,.28)}

@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
  .hero-media{min-height:260px}
  .grid-3{grid-template-columns:1fr}
  .grid-home-hizmetler{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }
  .grid-home-hizmetler .card{padding:12px}
  .grid-home-hizmetler .card h3{font-size:14px;line-height:1.25}
  .grid-home-hizmetler .card p{font-size:13px;line-height:1.35}
  .grid.grid-3.grid-hizmetler{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }
  .grid-hizmetler .card{padding:12px}
  .grid-hizmetler .card h3{font-size:14px;line-height:1.25}
  .grid-hizmetler .card p{font-size:13px;line-height:1.35}
  .grid-2{grid-template-columns:1fr}
  .gallery{grid-template-columns:repeat(2,1fr)}
  .gallery--home{grid-template-columns:repeat(2,1fr)}
  .contact-cards{grid-template-columns:1fr}
  .floating-actions{display:flex}

  /* Home: show services as 2x2 like products (no images) */
  /* Home: on mobile, show services as 2x2 cards with images (like products) */
  .home-services-cards{display:grid}
  .home-services-cards{grid-template-columns:repeat(2,1fr)}
  .home-services-cards .card{padding:12px}
  .home-services-cards .card h3{font-size:14px;line-height:1.25;margin-bottom:0}

  /* Mobile typography normalization (body-ish text) */
  .page-lead,
  .about-prose p,
  .feature-text,
  .page-cta__text,
  .contact-address,
  .footer-muted,
  .footer-bottom{
    font-size:13px;
    line-height:1.7;
  }

  /* Keep subtitles readable but consistent */
  .feature-subtitle{font-size:13px;line-height:1.45}

  /* Mobile layout: title + image side-by-side, text below */
  .feature{
    grid-template-columns:1fr 140px;
    grid-template-areas:
      "title    media"
      "subtitle media"
      "text     text";
  }
  .feature-body{display:contents}
  .feature-title{
    grid-area:title;
    padding:14px 16px 4px;
  }
  .feature-subtitle{
    grid-area:subtitle;
    padding:0 16px 10px;
    margin:0;
  }
  .feature-text{
    grid-area:text;
    padding:0 16px 14px;
  }
  .feature-media{
    grid-area:media;
    border-left:1px solid rgba(15,23,42,.10);
    border-top:0;
  }
  .feature-media img{
    min-height:0;
    height:100%;
    aspect-ratio:4/3;
  }
  .feature--reverse .feature-body{order:1}
  .feature--reverse .feature-media{order:2;border-right:0}
.feature--emanet{grid-template-columns:3fr 2fr}
.feature--emanet .feature-media img{min-height:220px}

  /* Services page: show images on mobile (compact) */
  body.page-hizmetlerimiz .feature{
    grid-template-columns:1fr;
    grid-template-areas:
      "title"
      "subtitle"
      "media"
      "text";
  }
  body.page-hizmetlerimiz .feature-media{
    display:block;
    border-left:0;
    border-top:1px solid rgba(15,23,42,.10);
  }
  body.page-hizmetlerimiz .feature-media img{
    height:auto;
    aspect-ratio:16/10;
    max-height:220px;
    object-fit:contain;
    background:#ffffff;
  }

  body.page-hizmetlerimiz .feature-text{padding-top:10px}
}

@media (max-width: 720px){
  :root{--header-bar:100px}
  .cta-row--stack{max-width:100%}
  .brand-logo{height:82px;max-width:min(420px, 82vw)}
  .nav-toggle{display:inline-flex}
  .site-nav{position:absolute;left:0;right:0;top:var(--header-bar);display:none}
  .site-nav.is-open{display:block}
  /* Home hero: show only first team name on mobile */
  .hero .team-names .team-sep{display:none}
  .hero .team-names strong:not(:first-child){display:none}
  .nav-list{
    flex-direction:column;align-items:stretch;gap:0;
    border-bottom:1px solid var(--border);
    background:rgba(246,247,244,.96);
    padding:10px;
  }
  .nav-link{padding:12px 12px}
  .title{font-size:28px}
  .floating-actions{right:12px;bottom:12px}
}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important}
  .gallery-item img{transition:none}
}

