@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@300;400;500&family=Josefin+Sans:wght@300;400;500&display=swap');

:root{
  --bg:#F3F3F3;
  --surface:#ffffff;
  --text:#1E1E1E;
  --muted:#848383;
  --line:#D9D9D9;
  --primary:#1E1E1E;  /* ana metin */
  --accent:#861F1F;   /* bordo */
  --accent2:#378832;  /* yeşil */
  --border:#949393;
  --radius:18px;
  --shadow:0 14px 30px rgba(30,30,30,.08);
  --shadow2:0 8px 18px rgba(30,30,30,.06);
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: "Josefin Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}
img{max-width:100%; display:block}

.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.section{padding:64px 0}
.section--tight{padding:40px 0}
.surface{background:var(--surface)}
.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow2);
}
.card-pad{padding:24px}

.header{
  position:sticky; top:0; z-index:50;
  background:rgba(243,243,243,.90);
  border-bottom:1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  height:76px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  line-height:1.1;
  min-width: 240px;
}
.brand-mark{
  width:44px; height:44px;
  border-radius:14px;
  background: #fff;
  border:1px solid var(--line);
  display:grid; place-items:center;
  overflow:hidden;
}
.brand-mark img{width:100%; height:100%; object-fit:contain; padding:6px}
.brand-text{
  display:flex; flex-direction:column;
}
.brand-text strong{
  font-family:"Cormorant SC", serif;
  font-weight:300;
  font-size:18px;
  letter-spacing:.6px;
  text-transform:uppercase;
}
.brand-text span{
  font-family:"Josefin Sans", sans-serif;
  font-weight:300;
  font-size:12px;
  color:var(--muted);
  letter-spacing:1.6px;
  text-transform:uppercase;
}

.menu{display:flex; gap:18px; align-items:center}
.menu a{
  font-size:14px;
  color:var(--text);
  padding:10px 10px;
  border-radius:12px;
}
.menu a.active{background:rgba(30,30,30,.04); border:1px solid var(--line)}
.menu a.cta{
  background:var(--accent); color:#fff; border:1px solid var(--accent);
  padding:10px 14px;
}
.menu a.cta.secondary{
  background:transparent; color:var(--accent); border:1px solid var(--accent);
}

.burger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
}
.burger svg{width:20px; height:20px; fill:var(--text)}
.mobile{
  display:none;
  padding:0 20px 14px 20px;
}
.mobile a{
  display:block;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  margin-top:10px;
  font-size:14px;
}
.mobile a.cta{background:var(--accent); border-color:var(--accent); color:#fff}
.mobile a.cta.secondary{background:transparent; color:var(--accent)}

.hero{
  position:relative;
  background:
    radial-gradient(1000px 500px at 15% 0%, rgba(134,31,31,.10), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(55,136,50,.10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.96));
  color:var(--text);
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
.hero .section{padding:72px 0}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}
.h1{
  font-family:"Cormorant SC", serif;
  font-weight:300;
  font-size:44px;
  line-height:1.10;
  margin:14px 0 10px 0;
  letter-spacing:.8px;
  text-transform:uppercase;
}
.lead{
  font-size:16px;
  color:var(--muted);
  max-width:72ch;
}
.hero-actions{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  border-radius:16px;
  padding:12px 16px;
  font-weight:500;
  font-size:14px;
  border:1px solid transparent;
  cursor:pointer;
}
.btn.primary{background:var(--accent); color:#fff}
.btn.secondary{background:var(--accent2); color:#fff}
.btn.outline{background:transparent; color:var(--text); border-color:var(--border)}
.btn.light{background:#fff; color:var(--text); border:1px solid var(--line)}

.badge{
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  padding:10px 14px;
  border-radius:999px;
  font-size:14px;
  box-shadow:var(--shadow2);
}

.hero-card{
  border:1px solid var(--line);
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow2);
  padding:22px;
}
.hero-card h3{margin:0 0 10px 0; font-size:16px; letter-spacing:.4px}
.hero-card p{margin:0; color:var(--muted); font-size:14px}
.hero-list{margin-top:14px; display:grid; gap:10px}
.hero-li{
  display:flex; gap:10px; align-items:flex-start;
  padding:10px 12px;
  border-radius:16px;
  background:rgba(243,243,243,.8);
  border:1px solid var(--line);
}
.icon{
  width:28px; height:28px; border-radius:10px;
  display:grid; place-items:center;
  background:rgba(134,31,31,.10);
  border:1px solid rgba(134,31,31,.18);
  flex:0 0 auto;
}
.icon svg{width:16px; height:16px; fill:var(--accent)}

.kpis{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top:16px;
}
.kpi{
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  padding:10px 12px;
  font-size:13px;
  color:var(--muted);
  box-shadow:var(--shadow2);
}

.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
.grid2{display:grid; grid-template-columns:repeat(2,1fr); gap:16px}
.h2{
  font-family:"Cormorant SC", serif;
  font-weight:300;
  font-size:28px;
  letter-spacing:.8px;
  margin:0 0 10px 0;
  text-transform:uppercase;
}
.sub{color:var(--muted); margin:0; max-width:80ch}
.card h3{margin:0 0 8px 0; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:14px}

.pill{
  display:inline-flex; gap:8px; align-items:center;
  font-size:12px; color:var(--text);
  border:1px solid var(--line);
  background:rgba(243,243,243,.9);
  padding:8px 10px;
  border-radius:999px;
}
.pill::before{
  content:"";
  width:10px; height:2px;
  background:var(--accent);
  border-radius:999px;
  box-shadow: 0 0 0 2px rgba(134,31,31,.06);
}

.sep{height:1px; background:var(--line); margin:18px 0}
.list{margin:0; padding-left:18px; color:var(--muted)}
.list li{margin:6px 0}

.banner{
  background:#fff;
  color:var(--text);
  border-radius:calc(var(--radius) + 6px);
  border:1px solid var(--line);
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  box-shadow:var(--shadow2);
  position:relative;
}
.banner::after{
  content:"";
  position:absolute;
  left:18px; right:18px; bottom:12px;
  height:3px;
  background:linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius:999px;
  opacity:.45;
}
.banner p{margin:0; color:var(--muted)}

.footer{
  border-top:1px solid var(--line);
  background:var(--bg);
  padding:28px 0;
}
.foot-grid{display:grid; grid-template-columns:1.2fr 1fr 1fr; gap:16px}
.small{font-size:12px; color:var(--muted)}
.foot a{display:block; padding:6px 0; font-size:14px; color:var(--text)}
.legal{margin-top:14px; font-size:12px; color:var(--muted); line-height:1.6}

.wbutton{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:60;
  width:54px; height:54px;
  border-radius:18px;
  background:var(--accent2);
  box-shadow:var(--shadow);
  display:grid; place-items:center;
  border:1px solid rgba(0,0,0,.08);
}
.wbutton svg{width:24px; height:24px; fill:#fff}

.form{display:grid; gap:12px}
.input, textarea{
  width:100%;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
  font-size:14px;
  outline:none;
}
textarea{min-height:140px; resize:vertical}
label{font-size:13px; color:var(--muted)}
.form .btn{width:fit-content}
.note{font-size:12px; color:var(--muted); margin:0}

@media (max-width: 960px){
  .hero-grid{grid-template-columns:1fr}
  .h1{font-size:36px}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .foot-grid{grid-template-columns:1fr}
  .menu{display:none}
  .burger{display:inline-grid; place-items:center}
  .mobile{display:none}
  .mobile.open{display:block}
}

/* Language switch */
.lang{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  font-size:13px;
  color:var(--text);
}
.lang b{font-weight:500}
.lang a{padding:6px 8px; border-radius:10px}
.lang a.active{background:rgba(30,30,30,.06); border:1px solid var(--line)}

/* Blog */
.post-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
.post-meta{font-size:12px; color:var(--muted); margin:8px 0 0 0}
.post-title{margin:10px 0 8px 0; font-size:16px}
.post-excerpt{margin:0; color:var(--muted); font-size:14px}
.tag-row{display:flex; gap:8px; flex-wrap:wrap; margin-top:12px}
.tag{font-size:12px; color:var(--text); border:1px solid var(--line); background:rgba(243,243,243,.9); padding:6px 10px; border-radius:999px}
@media (max-width: 960px){ .post-grid{grid-template-columns:1fr} }
