/* ============================================================
   GOLDINBERG — Static Theme v1
   Madencilik temalı palet: kömür siyahı, toprak kahvesi,
   altın, kum/bej, lacivert (marka footer rengi)
   ============================================================ */

:root{
  /* Palet */
  --coal:        #171310;   /* kömür siyahı */
  --earth:       #3d3425;   /* toprak kahvesi (gövde metni) */
  --heading:     #1c1710;   /* başlık rengi */
  --gold:        #ffd100;   /* marka altını (buton) */
  --gold-deep:   #c9971c;   /* koyu altın / bronz */
  --gold-pale:   #f0d98c;
  --sand:        #ede5d0;   /* bej bölüm zemini */
  --sand-light:  #f4f1eb;
  --sand-deep:   #e8e0cc;
  --stone:       #f2f4f6;   /* açık gri zemin */
  --navy:        #03132b;   /* footer laciverti */
  --white:       #ffffff;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Barlow', 'Segoe UI', Arial, sans-serif;
  --font-cond:   'Barlow Condensed', 'Arial Narrow', sans-serif;

  --container:   1200px;
  --radius:      10px;
  --shadow:      0 14px 40px rgba(23,19,16,.10);
  --transition:  .35s cubic-bezier(.22,.61,.36,1);
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-sans);
  font-weight:400;
  font-size:17px;
  line-height:1.75;
  color:var(--earth);
  /* jeolojik kesit: yüzeyden derine indikçe koyulaşan toprak katmanları
     (tüm tonlar açık aralıkta — koyu metin kontrastı korunur) */
  background-color:#f7f2e6;
  background-image:
    /* seyrek çakıl benekleri (iki farklı ızgara = düzensiz his) */
    radial-gradient(rgba(61,52,37,.05) 1.6px, transparent 2px),
    radial-gradient(rgba(140,111,60,.045) 1.3px, transparent 1.7px),
    /* ince tortul çizgileri */
    repeating-linear-gradient(180deg, rgba(61,52,37,.028) 0 1px, transparent 1px 96px),
    /* katman sınırları (daha belirgin, seyrek) */
    repeating-linear-gradient(180deg, transparent 0 317px, rgba(140,111,60,.07) 317px 319px, rgba(140,111,60,.03) 319px 323px, transparent 323px 340px),
    /* derinlik gradyanı: yüzey → derin toprak */
    linear-gradient(180deg,#fbf9f4 0%, #f7f1e3 20%, #f2e9d3 48%, #ebdfc2 78%, #e3d4b0 100%);
  background-size:
    260px 220px,
    380px 300px,
    auto,
    auto,
    auto;
  background-position:0 0, 130px 90px, 0 0, 0 0, 0 0;
  overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--gold-deep);text-decoration:none;transition:color var(--transition)}
a:hover{color:var(--heading)}
ul{list-style:none}

h1,h2,h3{font-family:var(--font-serif);color:var(--heading);font-weight:400;line-height:1.15}
h4,h5,h6{font-family:var(--font-sans);color:var(--heading);font-weight:600;line-height:1.3}
h1{font-size:clamp(2.4rem,5vw,4rem)}
h2{font-size:clamp(2rem,3.6vw,2.9rem)}
h3{font-size:1.45rem;font-family:var(--font-sans);font-weight:600}
h2 em,h1 em{font-style:italic;color:var(--gold-deep)}

.container{max-width:var(--container);margin:0 auto;padding:0 24px}

/* ---------- Bölüm etiketi (— OUR SERVICES) ---------- */
.section-label{
  display:inline-flex;align-items:center;gap:14px;
  font-family:var(--font-cond);font-weight:600;
  letter-spacing:.35em;text-transform:uppercase;
  font-size:.95rem;color:var(--gold-deep);
  margin-bottom:18px;
}
.section-label::before{
  content:"";width:46px;height:2px;
  background:linear-gradient(90deg,var(--gold-deep),var(--gold));
}
.section-head{margin-bottom:34px}
.section-head p.lead{max-width:820px;margin-top:16px;font-size:1.06rem}
.section-head.center{text-align:center}
.section-head.center p.lead{margin-left:auto;margin-right:auto}
.section-head.center .section-label::after{
  content:"";width:46px;height:2px;
  background:linear-gradient(90deg,var(--gold),var(--gold-deep));
}

/* ---------- Butonlar ---------- */
.btn{
  display:inline-block;position:relative;overflow:hidden;
  font-family:var(--font-cond);font-weight:600;font-size:1.02rem;
  letter-spacing:.14em;text-transform:uppercase;
  padding:15px 34px;border:none;cursor:pointer;
  transition:transform var(--transition),box-shadow var(--transition);
}
.btn-gold{background:var(--gold);color:#252525}
.btn-gold:hover{color:#252525;transform:translateY(-2px);box-shadow:0 10px 26px rgba(201,151,28,.45)}
.btn-outline{background:transparent;color:var(--white);border:2px solid var(--gold);}
.btn-outline:hover{background:var(--gold);color:#252525}
.btn-dark{background:var(--coal);color:var(--gold-pale)}
.btn-dark:hover{color:var(--gold);transform:translateY(-2px)}
/* altın parıltı süpürmesi */
.btn-gold::after,.btn-outline::after{
  content:"";position:absolute;top:0;left:-80%;width:50%;height:100%;
  background:linear-gradient(105deg,transparent,rgba(255,255,255,.55),transparent);
  transform:skewX(-20deg);
}
.btn-gold:hover::after,.btn-outline:hover::after{animation:shine .8s ease}
@keyframes shine{to{left:130%}}

/* ---------- Header ---------- */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(23,19,16,.06);
  transition:box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled{box-shadow:0 6px 24px rgba(23,19,16,.08);background:rgba(255,255,255,.98)}
.header-inner{
  max-width:var(--container);margin:0 auto;padding:0 24px;
  display:flex;align-items:center;justify-content:space-between;
  height:84px;
}
.logo img{height:52px;width:auto}
.main-nav{display:flex;align-items:center;gap:36px}
.main-nav a{
  font-family:var(--font-cond);font-weight:600;font-size:1.05rem;
  letter-spacing:.12em;text-transform:uppercase;color:var(--heading);
  position:relative;padding:6px 0;
}
.main-nav a::after{
  content:"";position:absolute;left:0;bottom:0;height:2px;width:0;
  background:linear-gradient(90deg,var(--gold-deep),var(--gold));
  transition:width var(--transition);
}
.main-nav a:hover::after,.main-nav a.active::after{width:100%}
.main-nav a.nav-cta{
  background:var(--gold);color:#252525;padding:11px 26px;
}
.main-nav a.nav-cta::after{display:none}
.main-nav a.nav-cta:hover{box-shadow:0 8px 20px rgba(201,151,28,.4)}

.nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:8px}
.nav-toggle span{display:block;width:26px;height:3px;background:var(--heading);margin:5px 0;transition:var(--transition)}

/* ---------- Hero (ana sayfa) ---------- */
.hero{
  position:relative;min-height:92vh;display:flex;align-items:center;
  background:
    radial-gradient(1200px 500px at 75% -10%, rgba(255,209,0,.14), transparent 60%),
    linear-gradient(180deg,#241d14 0%, #171310 55%, #100d0a 100%);
  color:var(--white);overflow:hidden;
  padding:140px 0 120px;
}
/* katmanlı yer kabuğu (strata) şeritleri */
.hero .strata{position:absolute;inset:auto 0 0 0;height:38%;pointer-events:none;opacity:.9}
.hero-canvas{position:absolute;inset:0;width:100%;height:100%;pointer-events:none}
.hero-inner{position:relative;z-index:3}
.hero .kicker{
  font-family:var(--font-cond);letter-spacing:.4em;text-transform:uppercase;
  color:var(--gold-pale);font-weight:600;margin-bottom:20px;display:inline-flex;align-items:center;gap:14px;
}
.hero .kicker::before{content:"";width:46px;height:2px;background:var(--gold)}
.hero h1{color:var(--white);max-width:820px;margin-bottom:22px}
.hero h1 .gold-shimmer{
  font-style:italic;
  background:linear-gradient(100deg,#c9971c 15%,#ffe680 40%,#fff3c4 50%,#ffe680 60%,#c9971c 85%);
  background-size:250% auto;
  -webkit-background-clip:text;background-clip:text;color:transparent;
  animation:shimmer 5.5s linear infinite;
}
@keyframes shimmer{to{background-position:250% center}}
.hero p.sub{max-width:640px;color:rgba(255,255,255,.82);font-size:1.12rem;margin-bottom:38px}
.hero .hero-actions{display:flex;gap:18px;flex-wrap:wrap}
/* aşağı in oku */
.scroll-hint{
  position:absolute;left:50%;bottom:26px;transform:translateX(-50%);
  z-index:3;color:var(--gold-pale);font-size:1.4rem;animation:bob 2.2s ease-in-out infinite;
}
@keyframes bob{0%,100%{transform:translate(-50%,0)}50%{transform:translate(-50%,10px)}}

/* ---------- İç sayfa banner ---------- */
.page-banner{
  position:relative;overflow:hidden;color:var(--white);
  background:
    radial-gradient(900px 380px at 80% -20%, rgba(255,209,0,.16), transparent 60%),
    linear-gradient(180deg,#241d14 0%, #171310 100%);
  padding:170px 0 90px;
}
.page-banner .container{position:relative;z-index:3}
.page-banner .kicker{
  font-family:var(--font-cond);letter-spacing:.4em;text-transform:uppercase;
  color:var(--gold-pale);font-weight:600;margin-bottom:16px;display:inline-flex;align-items:center;gap:14px;
}
.page-banner .kicker::before{content:"";width:46px;height:2px;background:var(--gold)}
.page-banner h1{color:var(--white);max-width:860px}
.page-banner p.sub{max-width:680px;color:rgba(255,255,255,.82);font-size:1.1rem;margin-top:18px}
.page-banner .banner-actions{margin-top:30px}
.page-banner .strata{position:absolute;inset:auto 0 0 0;height:46%;pointer-events:none;opacity:.85}

/* ---------- Bölümler ---------- */
.section{padding:96px 0;position:relative}
/* bölüm zeminleri yarı saydam: alttaki jeolojik doku hafifçe görünür,
   katman sınırı hissi için üst/alt ince çizgiler */
.bg-sand{background:rgba(233,222,196,.5);box-shadow:inset 0 1px 0 rgba(140,111,60,.14), inset 0 -1px 0 rgba(140,111,60,.14)}
.bg-sand-deep{background:rgba(224,209,175,.55);box-shadow:inset 0 1px 0 rgba(140,111,60,.16), inset 0 -1px 0 rgba(140,111,60,.16)}
.bg-stone{background:rgba(238,241,244,.55);box-shadow:inset 0 1px 0 rgba(61,52,37,.08), inset 0 -1px 0 rgba(61,52,37,.08)}
.bg-coal{background:linear-gradient(180deg,#1c1710,#171310);color:rgba(255,255,255,.85)}
.bg-coal h2,.bg-coal h3,.bg-coal h4{color:var(--white)}
.bg-coal .section-label{color:var(--gold)}

/* altın damarı ayracı (SVG çizim animasyonu) */
.vein-divider{display:block;width:100%;height:70px;overflow:visible}
.vein-divider path{
  fill:none;stroke:url(#veinGrad);stroke-width:2.2;
  stroke-dasharray:1600;stroke-dashoffset:1600;
}
.vein-divider.inview path{animation:drawVein 2.6s ease forwards}
@keyframes drawVein{to{stroke-dashoffset:0}}
.vein-divider .nugget{fill:var(--gold);opacity:0}
.vein-divider.inview .nugget{animation:nuggetPop .5s ease forwards}
.vein-divider.inview .nugget:nth-of-type(2){animation-delay:.9s}
.vein-divider.inview .nugget:nth-of-type(3){animation-delay:1.6s}
.vein-divider.inview .nugget:nth-of-type(4){animation-delay:2.2s}
@keyframes nuggetPop{0%{opacity:0;transform:scale(0)}70%{transform:scale(1.5)}100%{opacity:1;transform:scale(1)}}

/* ---------- Kart ızgaraları ---------- */
.grid{display:grid;gap:28px}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.card{
  background:var(--white);border:1px solid rgba(23,19,16,.07);
  border-top:3px solid transparent;
  padding:36px 30px;border-radius:var(--radius);
  transition:transform var(--transition),box-shadow var(--transition),border-color var(--transition);
}
.card:hover{transform:translateY(-8px);box-shadow:var(--shadow);border-top-color:var(--gold)}
.card h3,.card h4{margin-bottom:12px}
.card .card-icon{
  width:58px;height:58px;margin-bottom:22px;color:var(--gold-deep);
  transition:transform .6s ease;
}
.card:hover .card-icon{transform:rotate(-8deg) scale(1.08);color:var(--gold-deep)}
.card:hover .card-icon .spin{animation:spin 3s linear infinite;transform-origin:center}
@keyframes spin{to{transform:rotate(360deg)}}
.bg-coal .card{background:rgba(255,255,255,.04);border-color:rgba(255,209,0,.14);color:rgba(255,255,255,.8)}
.bg-coal .card:hover{border-top-color:var(--gold)}

/* değer listesi numaraları */
.card .num{
  font-family:var(--font-serif);font-size:2.6rem;color:var(--gold-deep);
  opacity:.35;line-height:1;margin-bottom:10px;display:block;
}

/* ---------- Hizmet vitrin kartları (services sayfası + ana sayfa) ---------- */
.service-tile{
  position:relative;border-radius:var(--radius);overflow:hidden;
  min-height:380px;display:flex;align-items:flex-end;
  background:linear-gradient(160deg,#2c2418,#171310);
  transition:transform var(--transition),box-shadow var(--transition);
}
.service-tile:hover{transform:translateY(-8px);box-shadow:var(--shadow)}
.service-tile img.tile-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.55;transition:transform 1.2s ease,opacity var(--transition)}
.service-tile:hover img.tile-img{transform:scale(1.06);opacity:.68}
.service-tile .tile-body{
  position:relative;z-index:2;padding:34px;width:100%;
  background:linear-gradient(180deg,transparent,rgba(13,10,7,.92) 55%);
  color:rgba(255,255,255,.85);
}
.service-tile h3{color:var(--white);font-family:var(--font-serif);font-size:2rem;margin-bottom:10px}
.service-tile .tile-link{
  font-family:var(--font-cond);letter-spacing:.16em;text-transform:uppercase;
  color:var(--gold);font-weight:600;display:inline-block;margin-top:14px;
}
.service-tile .tile-link::after{content:"  →";transition:var(--transition)}
.service-tile:hover .tile-link::after{padding-left:6px}

/* ---------- Süreç / zaman çizgisi (5 adım) ---------- */
.process{display:grid;grid-template-columns:repeat(5,1fr);gap:20px;position:relative;counter-reset:step}
.process::before{
  content:"";position:absolute;top:29px;left:6%;right:6%;height:2px;
  background:repeating-linear-gradient(90deg,var(--gold-deep) 0 14px,transparent 14px 24px); /* ray hattı */
  opacity:.5;
}
.process .step{position:relative;text-align:center;padding-top:74px}
.process .step::before{
  counter-increment:step;content:counter(step,decimal-leading-zero);
  position:absolute;top:0;left:50%;transform:translateX(-50%);
  width:58px;height:58px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:var(--coal);color:var(--gold);
  font-family:var(--font-cond);font-weight:700;font-size:1.2rem;letter-spacing:.05em;
  border:2px solid var(--gold-deep);
  transition:transform var(--transition),background var(--transition);
}
.process .step:hover::before{transform:translateX(-50%) scale(1.12);background:#241d14}
.process .step h4{margin-bottom:8px;font-size:1.05rem}
.process .step p{font-size:.95rem}

/* ---------- Öne çıkanlar / madde satırları ---------- */
.feature-list{display:grid;gap:18px}
.feature-list li{
  position:relative;padding-left:40px;
}
.feature-list li::before{
  content:"";position:absolute;left:0;top:6px;width:22px;height:22px;
  background:
    linear-gradient(135deg,var(--gold),var(--gold-deep));
  clip-path:polygon(50% 0, 100% 30%, 82% 100%, 18% 100%, 0 30%); /* altın külçe/nugget */
}
.bg-coal .feature-list li{color:rgba(255,255,255,.82)}

/* iki kolonlu içerik */
.split{display:grid;grid-template-columns:1.1fr .9fr;gap:60px;align-items:start}
.split .side-cards{display:grid;gap:20px}
.side-cards .mini{
  background:var(--white);border-left:3px solid var(--gold);
  padding:22px 24px;border-radius:0 var(--radius) var(--radius) 0;
  box-shadow:0 6px 18px rgba(23,19,16,.06);
  transition:transform var(--transition);
}
.side-cards .mini:hover{transform:translateX(6px)}
.side-cards .mini h4{font-family:var(--font-cond);letter-spacing:.14em;text-transform:uppercase;font-size:.95rem;color:var(--gold-deep);margin-bottom:6px}
.side-cards .mini p{font-size:.97rem}

/* ---------- CTA bandı ---------- */
.cta-band{
  position:relative;overflow:hidden;
  background:linear-gradient(120deg,#241d14,#171310 60%),var(--coal);
  color:var(--white);text-align:center;padding:90px 0;
}
.cta-band::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(700px 300px at 50% 120%, rgba(255,209,0,.18), transparent 70%);
}
.cta-band h2{color:var(--white);max-width:760px;margin:0 auto 18px}
.cta-band p{max-width:640px;margin:0 auto 34px;color:rgba(255,255,255,.8)}
.cta-band .container{position:relative;z-index:2}
.cta-band .actions{display:flex;gap:18px;justify-content:center;flex-wrap:wrap}

/* ---------- Haber kartları ---------- */
.news-card{
  background:var(--white);border-radius:var(--radius);overflow:hidden;
  border:1px solid rgba(23,19,16,.07);
  transition:transform var(--transition),box-shadow var(--transition);
  display:flex;flex-direction:column;
}
.news-card:hover{transform:translateY(-8px);box-shadow:var(--shadow)}
.news-thumb{
  aspect-ratio:9/5;overflow:hidden;
  background:linear-gradient(140deg,#2c2418,#171310);
  position:relative;
}
.news-thumb img{position:relative;z-index:1;width:100%;height:100%;object-fit:cover;transition:transform 1s ease}
.news-card:hover .news-thumb img{transform:scale(1.07)}
.news-thumb .thumb-fallback{
  position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  color:var(--gold-deep);font-size:3rem;font-family:var(--font-serif);
}
.news-body{padding:26px 26px 30px;display:flex;flex-direction:column;gap:12px;flex:1}
.news-body .date{
  font-family:var(--font-cond);letter-spacing:.16em;text-transform:uppercase;
  font-size:.85rem;color:var(--gold-deep);
}
.news-body h3{font-family:var(--font-sans);font-weight:600;font-size:1.12rem;line-height:1.45}
.news-body h3 a{color:var(--heading)}
.news-body h3 a:hover{color:var(--gold-deep)}
.news-body p{font-size:.96rem}
.news-body .more{
  margin-top:auto;font-family:var(--font-cond);letter-spacing:.14em;
  text-transform:uppercase;font-weight:600;color:var(--gold-deep);
}

/* ---------- Makale sayfası ---------- */
.article{max-width:820px;margin:0 auto}
.article .article-meta{
  font-family:var(--font-cond);letter-spacing:.18em;text-transform:uppercase;
  color:var(--gold-deep);margin-bottom:10px;font-weight:600;
}
.article h2{font-size:1.9rem;margin:44px 0 16px}
.article p{margin-bottom:18px}
.article ul{margin:0 0 18px;display:grid;gap:10px}
.article ul li{position:relative;padding-left:30px}
.article ul li::before{
  content:"";position:absolute;left:0;top:8px;width:14px;height:14px;
  background:linear-gradient(135deg,var(--gold),var(--gold-deep));
  clip-path:polygon(50% 0, 100% 30%, 82% 100%, 18% 100%, 0 30%);
}
.article .article-hero{border-radius:var(--radius);overflow:hidden;margin:0 0 38px;max-width:560px;box-shadow:var(--shadow)}

/* ---------- İletişim ---------- */
.contact-wrap{display:grid;grid-template-columns:.9fr 1.1fr;gap:60px;align-items:start}
.contact-info .info-row{
  display:flex;gap:18px;align-items:flex-start;margin-bottom:26px;
  background:var(--white);padding:22px;border-radius:var(--radius);
  border:1px solid rgba(23,19,16,.07);
  transition:transform var(--transition),box-shadow var(--transition);
}
.contact-info .info-row:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.contact-info .info-icon{
  width:48px;height:48px;flex:0 0 48px;border-radius:50%;
  background:linear-gradient(135deg,var(--gold),var(--gold-deep));
  display:flex;align-items:center;justify-content:center;color:#241d14;
}
.contact-info h4{margin-bottom:4px}
.contact-form{
  background:var(--white);padding:40px;border-radius:var(--radius);
  border:1px solid rgba(23,19,16,.07);box-shadow:var(--shadow);
}
.contact-form h3{margin-bottom:22px}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.form-grid .full{grid-column:1/-1}
.contact-form input,.contact-form textarea{
  width:100%;padding:14px 16px;font-family:var(--font-sans);font-size:1rem;
  border:1px solid rgba(23,19,16,.16);border-radius:6px;background:var(--sand-light);
  color:var(--earth);transition:border-color var(--transition),box-shadow var(--transition);
}
.contact-form input:focus,.contact-form textarea:focus{
  outline:none;border-color:var(--gold-deep);box-shadow:0 0 0 3px rgba(255,209,0,.25);background:var(--white);
}
.contact-form textarea{min-height:150px;resize:vertical}
.form-note{font-size:.85rem;margin-top:14px;opacity:.7}

/* ---------- Footer: en derin maden seviyesi ---------- */
.site-footer{
  position:relative;overflow:hidden;
  background:linear-gradient(180deg,#0d0a07 0%, #090605 55%, #050303 100%);
  color:rgba(255,255,255,.75);
}
.site-footer::before{ /* derinlerden gelen sıcak parıltı */
  content:"";position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(560px 210px at 18% 100%, rgba(255,138,0,.06), transparent 70%),
    radial-gradient(760px 280px at 82% 108%, rgba(255,209,0,.05), transparent 70%);
}
.site-footer .mine-scene{
  position:absolute;right:-20px;bottom:0;height:88%;width:auto;
  opacity:.16;pointer-events:none;
}
.site-footer .footer-top,.site-footer .footer-bottom{position:relative;z-index:2}
.site-footer .depth-note{
  position:absolute;left:24px;bottom:10px;z-index:2;
  font-family:var(--font-cond);letter-spacing:.2em;text-transform:uppercase;
  font-size:.72rem;color:rgba(255,209,0,.32);
}
.footer-top{
  max-width:var(--container);margin:0 auto;padding:70px 24px 50px;
  display:grid;grid-template-columns:1.3fr 1fr 1.2fr 1.3fr;gap:40px;
}
.footer-top h4{
  color:var(--white);font-family:var(--font-cond);letter-spacing:.18em;
  text-transform:uppercase;font-size:1rem;margin-bottom:18px;position:relative;padding-bottom:10px;
}
.footer-top h4::after{content:"";position:absolute;left:0;bottom:0;width:34px;height:2px;background:var(--gold)}
.footer-top ul{display:grid;gap:10px}
.footer-top a{color:rgba(255,255,255,.75)}
.footer-top a:hover{color:var(--gold)}
.footer-logo img{height:44px;width:auto;margin-bottom:18px}
.footer-contact li{display:flex;gap:10px;align-items:flex-start}
.footer-contact svg{flex:0 0 18px;margin-top:5px;color:var(--gold)}
.footer-bottom{
  border-top:1px solid rgba(255,209,0,.09);
  padding:22px 24px 30px;font-size:.92rem;
}
.footer-bottom .container{display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap}
.footer-bottom a{color:rgba(255,255,255,.6)}
.footer-bottom a:hover{color:var(--gold)}

/* ---------- Yukarı dön ---------- */
.to-top{
  position:fixed;right:26px;bottom:26px;z-index:90;
  width:48px;height:48px;border-radius:50%;border:none;cursor:pointer;
  background:var(--gold);color:#241d14;font-size:1.2rem;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 22px rgba(201,151,28,.45);
  opacity:0;visibility:hidden;transform:translateY(14px);
  transition:var(--transition);
}
.to-top.show{opacity:1;visibility:visible;transform:none}
.to-top:hover{transform:translateY(-4px)}

/* ---------- Scroll-reveal animasyonları ---------- */
.reveal{opacity:0;transform:translateY(34px);transition:opacity .8s ease,transform .8s ease}
.reveal.inview{opacity:1;transform:none}
.reveal-delay-1{transition-delay:.12s}
.reveal-delay-2{transition-delay:.24s}
.reveal-delay-3{transition-delay:.36s}
.reveal-delay-4{transition-delay:.48s}
.reveal-delay-5{transition-delay:.6s}

/* maden vagonu ayracı */
.cart-divider{position:relative;height:90px;overflow:hidden}
.cart-divider .rail{
  position:absolute;bottom:24px;left:0;right:0;height:3px;background:var(--gold-deep);opacity:.45;
}
.cart-divider .ties{
  position:absolute;bottom:16px;left:0;right:0;height:8px;
  background:repeating-linear-gradient(90deg,transparent 0 34px,rgba(201,151,28,.45) 34px 40px);
}
.cart-divider .cart{
  position:absolute;bottom:25px;left:-140px;width:110px;height:auto;
}
.cart-divider.inview .cart{animation:rollby 7s linear infinite}
@keyframes rollby{
  0%{transform:translateX(-140px)}
  100%{transform:translateX(calc(100vw + 140px))}
}
.cart-divider .wheel{transform-origin:center;transform-box:fill-box}
.cart-divider.inview .wheel{animation:spin 1s linear infinite}

/* hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{animation:none!important;transition:none!important}
  .reveal{opacity:1;transform:none}
}

/* ---------- Responsive ---------- */
@media (max-width:1020px){
  .grid-3{grid-template-columns:repeat(2,1fr)}
  .process{grid-template-columns:repeat(2,1fr);gap:34px}
  .process::before{display:none}
  .split,.contact-wrap{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr 1fr}
}
@media (max-width:720px){
  .grid-2,.grid-3{grid-template-columns:1fr}
  .process{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
  .section{padding:70px 0}
  .main-nav{
    position:fixed;inset:84px 0 auto 0;background:var(--white);
    flex-direction:column;gap:0;padding:10px 0 20px;
    box-shadow:0 20px 30px rgba(23,19,16,.12);
    transform:translateY(-130%);transition:transform var(--transition);
  }
  .main-nav.open{transform:none}
  .main-nav a{padding:14px 24px;width:100%;text-align:center}
  .main-nav a.nav-cta{width:auto;margin:10px auto 0}
  .nav-toggle{display:block}
  .nav-toggle.open span:nth-child(1){transform:translateY(8px) rotate(45deg)}
  .nav-toggle.open span:nth-child(2){opacity:0}
  .nav-toggle.open span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}
  .footer-top{grid-template-columns:1fr}
}

/* ============================================================
   DARK MODE
   ============================================================ */
.theme-toggle{
  background:none;border:none;cursor:pointer;padding:6px;
  color:var(--heading);display:flex;align-items:center;
  transition:transform var(--transition);
}
.theme-toggle:hover{transform:rotate(20deg) scale(1.1)}
.theme-toggle svg{width:22px;height:22px}
.theme-toggle .ic-sun{display:none}
html.dark .theme-toggle .ic-sun{display:block}
html.dark .theme-toggle .ic-moon{display:none}

.lang-switch{display:flex;align-items:center;gap:4px;font-family:var(--font-cond);font-weight:600}
.lang-switch a{
  padding:4px 7px;font-size:.92rem;letter-spacing:.08em;color:var(--heading);
  border-radius:4px;text-transform:uppercase;
}
.lang-switch a.active{background:var(--gold);color:#252525}
.lang-switch a:hover{color:var(--gold-deep)}
.lang-switch span{opacity:.3}

html.dark body{
  color:#cfc6b4;
  background-color:#161210;
  background-image:
    radial-gradient(rgba(255,209,0,.05) 1.4px, transparent 1.8px),
    radial-gradient(rgba(201,151,28,.04) 1.2px, transparent 1.6px),
    repeating-linear-gradient(180deg, rgba(255,224,120,.022) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(180deg, transparent 0 317px, rgba(201,151,28,.07) 317px 319px, rgba(201,151,28,.03) 319px 323px, transparent 323px 340px),
    linear-gradient(180deg,#1c1712 0%, #191410 25%, #161110 55%, #120e0b 80%, #0e0b08 100%);
  background-size:260px 220px, 380px 300px, auto, auto, auto;
  background-position:0 0, 130px 90px, 0 0, 0 0, 0 0;
}
html.dark h1,html.dark h2,html.dark h3,html.dark h4,html.dark h5{color:#f0e9d8}
html.dark .site-header{background:rgba(20,16,12,.92);border-bottom-color:rgba(255,255,255,.06)}
html.dark .site-header.scrolled{background:rgba(20,16,12,.97);box-shadow:0 6px 24px rgba(0,0,0,.45)}
html.dark .main-nav a{color:#e8e0cc}
html.dark .main-nav a.nav-cta{color:#252525}
html.dark .nav-toggle span{background:#e8e0cc}
html.dark .main-nav{background:#1c1712}
html.dark .theme-toggle{color:#e8e0cc}
html.dark .lang-switch a{color:#e8e0cc}
html.dark .lang-switch a.active{color:#252525}

html.dark .section{background:transparent}
html.dark .bg-sand,html.dark .bg-sand-deep{
  background:rgba(255,236,190,.045);
  box-shadow:inset 0 1px 0 rgba(201,151,28,.18), inset 0 -1px 0 rgba(201,151,28,.18);
}
html.dark .bg-stone{
  background:rgba(255,255,255,.025);
  box-shadow:inset 0 1px 0 rgba(201,151,28,.12), inset 0 -1px 0 rgba(201,151,28,.12);
}
html.dark .bg-coal{background:linear-gradient(180deg,#131009,#0e0b07)}
html.dark .section-head p.lead,html.dark .split p{color:#cfc6b4}

html.dark .card{background:#211b14;border-color:rgba(255,209,0,.10);color:#cfc6b4}
html.dark .card:hover{box-shadow:0 14px 40px rgba(0,0,0,.5)}
html.dark .bg-coal .card{background:rgba(255,255,255,.04)}
html.dark .side-cards .mini{background:#211b14;box-shadow:0 6px 18px rgba(0,0,0,.35);color:#cfc6b4}
html.dark .news-card{background:#211b14;border-color:rgba(255,209,0,.10)}
html.dark .news-body h3 a{color:#f0e9d8}
html.dark .news-body p{color:#cfc6b4}
html.dark .feature-list li{color:#cfc6b4}
html.dark .article p,html.dark .article li{color:#cfc6b4}
html.dark .process .step p{color:#cfc6b4}
html.dark .process::before{opacity:.35}

html.dark .contact-form{background:#211b14;border-color:rgba(255,209,0,.10)}
html.dark .contact-info .info-row{background:#211b14;border-color:rgba(255,209,0,.10)}
html.dark .contact-form input,html.dark .contact-form textarea{
  background:#161210;border-color:rgba(255,255,255,.14);color:#e8e0cc;
}
html.dark .contact-form input:focus,html.dark .contact-form textarea:focus{background:#1c1712}
html.dark .btn-dark{background:var(--gold);color:#252525}
html.dark a{color:var(--gold-pale)}
html.dark a:hover{color:var(--gold)}
html.dark .main-nav a:hover{color:var(--gold)}
html.dark .news-body h3 a:hover{color:var(--gold)}
html.dark .card h3,html.dark .card h4{color:#f0e9d8}

/* hizmet SVG görselleri */
.service-tile img.tile-img.tile-svg{object-fit:cover;opacity:.9}
.service-tile:hover img.tile-img.tile-svg{opacity:1}

.header-tools{display:flex;align-items:center;gap:16px}
@media (max-width:720px){
  .header-tools{gap:8px;margin-left:auto;margin-right:12px}
  .lang-switch a{padding:3px 5px;font-size:.85rem}
}

/* dark modda masaüstü nav arka planı düzeltmesi */
@media (min-width:721px){
  html.dark .main-nav{background:transparent}
}

/* ============================================================
   DARK MODE KONTRAST DÜZELTMELERİ
   (html.dark a kuralı buton renklerini ezmesin)
   ============================================================ */
html.dark a.btn-gold,html.dark a.btn-gold:hover,
html.dark .btn-gold,html.dark .btn-gold:hover{color:#252525}
html.dark a.btn-outline{color:#f0e9d8}
html.dark a.btn-outline:hover{color:#252525}
html.dark .main-nav a.nav-cta:hover{color:#252525}
html.dark .service-tile .tile-link{color:var(--gold)}
html.dark .news-body .more{color:var(--gold-pale)}
html.dark .section-label{color:var(--gold-deep)}
html.dark .bg-coal .section-label{color:var(--gold)}
html.dark .to-top{color:#241d14}
html.dark .article .article-meta{color:var(--gold-pale)}
html.dark .side-cards .mini h4{color:var(--gold-pale)}
html.dark .news-body .date{color:var(--gold-pale)}
html.dark .contact-form input::placeholder,
html.dark .contact-form textarea::placeholder{color:rgba(232,224,204,.45)}
html.dark .form-note{color:rgba(232,224,204,.6)}
html.dark .contact-info .info-icon{color:#241d14}


/* ============================================================
   JEOLOJİK KATMAN ARKA PLANI (belirgin sürüm)
   Sayfa yüksekliğine yayılır: yüzeyden ana kayaya 7 katman,
   dalgalı sınırlar, çakıllar, kökler ve altın damarları.
   ============================================================ */
body{position:relative}
body::before{
  content:"";position:absolute;inset:0;z-index:-1;pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 1000 4000%22 preserveAspectRatio=%22none%22%3E%3Crect width=%221000%22 height=%224000%22 fill=%22%23f4ecd9%22/%3E%3Cpath d=%22M0,456 C71,456 71,477 143,477 C214,477 214,498 286,498 C357,498 357,494 429,494 C500,494 500,496 571,496 C643,496 643,475 714,475 C786,475 786,500 857,500 C929,500 929,482 1000,482  L1000,4000 L0,4000 Z%22 fill=%22%23efe3c6%22/%3E%3Cpath d=%22M0,1067 C71,1067 71,1034 143,1034 C214,1034 214,1099 286,1099 C357,1099 357,1096 429,1096 C500,1096 500,1057 571,1057 C643,1057 643,1074 714,1074 C786,1074 786,1036 857,1036 C929,1036 929,1037 1000,1037  L1000,4000 L0,4000 Z%22 fill=%22%23ebdab4%22/%3E%3Cpath d=%22M0,1673 C71,1673 71,1709 143,1709 C214,1709 214,1675 286,1675 C357,1675 357,1716 429,1716 C500,1716 500,1708 571,1708 C643,1708 643,1691 714,1691 C786,1691 786,1709 857,1709 C929,1709 929,1705 1000,1705  L1000,4000 L0,4000 Z%22 fill=%22%23e6d1a4%22/%3E%3Cpath d=%22M0,2364 C71,2364 71,2316 143,2316 C214,2316 214,2340 286,2340 C357,2340 357,2342 429,2342 C500,2342 500,2294 571,2294 C643,2294 643,2281 714,2281 C786,2281 786,2329 857,2329 C929,2329 929,2285 1000,2285  L1000,4000 L0,4000 Z%22 fill=%22%23e0c893%22/%3E%3Cpath d=%22M0,2957 C71,2957 71,2950 143,2950 C214,2950 214,2939 286,2939 C357,2939 357,2898 429,2898 C500,2898 500,2906 571,2906 C643,2906 643,2937 714,2937 C786,2937 786,2945 857,2945 C929,2945 929,2881 1000,2881  L1000,4000 L0,4000 Z%22 fill=%22%23d9bd82%22/%3E%3Cpath d=%22M0,3507 C71,3507 71,3469 143,3469 C214,3469 214,3501 286,3501 C357,3501 357,3513 429,3513 C500,3513 500,3466 571,3466 C643,3466 643,3499 714,3499 C786,3499 786,3468 857,3468 C929,3468 929,3456 1000,3456  L1000,4000 L0,4000 Z%22 fill=%22%23d1b172%22/%3E%3Cpath d=%22M0,456 C71,456 71,477 143,477 C214,477 214,498 286,498 C357,498 357,494 429,494 C500,494 500,496 571,496 C643,496 643,475 714,475 C786,475 786,500 857,500 C929,500 929,482 1000,482 %22 fill=%22none%22 stroke=%22%23a8834a%22 stroke-width=%223%22 opacity=%22.38%22/%3E%3Cpath d=%22M0,1067 C71,1067 71,1034 143,1034 C214,1034 214,1099 286,1099 C357,1099 357,1096 429,1096 C500,1096 500,1057 571,1057 C643,1057 643,1074 714,1074 C786,1074 786,1036 857,1036 C929,1036 929,1037 1000,1037 %22 fill=%22none%22 stroke=%22%23a8834a%22 stroke-width=%223%22 opacity=%22.38%22/%3E%3Cpath d=%22M0,1673 C71,1673 71,1709 143,1709 C214,1709 214,1675 286,1675 C357,1675 357,1716 429,1716 C500,1716 500,1708 571,1708 C643,1708 643,1691 714,1691 C786,1691 786,1709 857,1709 C929,1709 929,1705 1000,1705 %22 fill=%22none%22 stroke=%22%23a8834a%22 stroke-width=%223%22 opacity=%22.38%22/%3E%3Cpath d=%22M0,2364 C71,2364 71,2316 143,2316 C214,2316 214,2340 286,2340 C357,2340 357,2342 429,2342 C500,2342 500,2294 571,2294 C643,2294 643,2281 714,2281 C786,2281 786,2329 857,2329 C929,2329 929,2285 1000,2285 %22 fill=%22none%22 stroke=%22%23a8834a%22 stroke-width=%223%22 opacity=%22.38%22/%3E%3Cpath d=%22M0,2957 C71,2957 71,2950 143,2950 C214,2950 214,2939 286,2939 C357,2939 357,2898 429,2898 C500,2898 500,2906 571,2906 C643,2906 643,2937 714,2937 C786,2937 786,2945 857,2945 C929,2945 929,2881 1000,2881 %22 fill=%22none%22 stroke=%22%23a8834a%22 stroke-width=%223%22 opacity=%22.38%22/%3E%3Cpath d=%22M0,3507 C71,3507 71,3469 143,3469 C214,3469 214,3501 286,3501 C357,3501 357,3513 429,3513 C500,3513 500,3466 571,3466 C643,3466 643,3499 714,3499 C786,3499 786,3468 857,3468 C929,3468 929,3456 1000,3456 %22 fill=%22none%22 stroke=%22%23a8834a%22 stroke-width=%223%22 opacity=%22.38%22/%3E%3Cpath d=%22M498,40 q-12,25 -7,49 q-13,22 -8,44 q24,16 15,33 %22 fill=%22none%22 stroke=%22%238c6f3c%22 stroke-width=%222.6%22 opacity=%22.3%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M328,40 q9,16 6,33 q-18,27 -11,55 q25,20 15,40 %22 fill=%22none%22 stroke=%22%238c6f3c%22 stroke-width=%222.6%22 opacity=%22.3%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M208,40 q25,20 15,40 q5,24 3,48 q7,29 4,57 %22 fill=%22none%22 stroke=%22%238c6f3c%22 stroke-width=%222.6%22 opacity=%22.3%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M935,40 q10,27 6,55 q15,25 9,49 q-4,18 -2,37 %22 fill=%22none%22 stroke=%22%238c6f3c%22 stroke-width=%222.6%22 opacity=%22.3%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M280,40 q22,26 13,51 q-20,29 -12,57 q-12,25 -7,51 %22 fill=%22none%22 stroke=%22%238c6f3c%22 stroke-width=%222.6%22 opacity=%22.3%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M462,40 q-12,18 -7,36 q4,21 2,42 q6,25 4,51 %22 fill=%22none%22 stroke=%22%238c6f3c%22 stroke-width=%222.6%22 opacity=%22.3%22 stroke-linecap=%22round%22/%3E%3Cellipse cx=%22807%22 cy=%22952%22 rx=%2216%22 ry=%227.8%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(-0 807 952)%22/%3E%3Cellipse cx=%22872%22 cy=%22935%22 rx=%2218%22 ry=%226.2%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(2 872 935)%22/%3E%3Cellipse cx=%22516%22 cy=%22603%22 rx=%2213%22 ry=%225.4%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(-14 516 603)%22/%3E%3Cellipse cx=%2229%22 cy=%22830%22 rx=%2214%22 ry=%226.7%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(10 29 830)%22/%3E%3Cellipse cx=%22816%22 cy=%22929%22 rx=%2211%22 ry=%225.2%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(-11 816 929)%22/%3E%3Cellipse cx=%22151%22 cy=%22733%22 rx=%2212%22 ry=%223.8%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(1 151 733)%22/%3E%3Cellipse cx=%22947%22 cy=%22596%22 rx=%2212%22 ry=%225.7%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(1 947 596)%22/%3E%3Cellipse cx=%22466%22 cy=%22752%22 rx=%2218%22 ry=%227.3%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(-3 466 752)%22/%3E%3Cellipse cx=%22368%22 cy=%22917%22 rx=%229%22 ry=%223.7%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(4 368 917)%22/%3E%3Cellipse cx=%2228%22 cy=%22706%22 rx=%2213%22 ry=%225.6%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(1 28 706)%22/%3E%3Cellipse cx=%22498%22 cy=%22699%22 rx=%2214%22 ry=%226.7%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(-11 498 699)%22/%3E%3Cellipse cx=%22104%22 cy=%22633%22 rx=%2210%22 ry=%223.3%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(-5 104 633)%22/%3E%3Cellipse cx=%22728%22 cy=%221001%22 rx=%229%22 ry=%223.8%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(-7 728 1001)%22/%3E%3Cellipse cx=%22883%22 cy=%221018%22 rx=%2217%22 ry=%225.4%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(-0 883 1018)%22/%3E%3Cellipse cx=%22435%22 cy=%222041%22 rx=%2211%22 ry=%223.7%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(3 435 2041)%22/%3E%3Cellipse cx=%22813%22 cy=%221934%22 rx=%2213%22 ry=%224.3%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(1 813 1934)%22/%3E%3Cellipse cx=%22803%22 cy=%222010%22 rx=%2210%22 ry=%223.5%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(10 803 2010)%22/%3E%3Cellipse cx=%22703%22 cy=%221893%22 rx=%2215%22 ry=%225.0%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(2 703 1893)%22/%3E%3Cellipse cx=%2247%22 cy=%221916%22 rx=%2214%22 ry=%225.8%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(-6 47 1916)%22/%3E%3Cellipse cx=%22658%22 cy=%221889%22 rx=%2218%22 ry=%228.3%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(2 658 1889)%22/%3E%3Cellipse cx=%22941%22 cy=%221889%22 rx=%2220%22 ry=%226.5%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(2 941 1889)%22/%3E%3Cellipse cx=%22197%22 cy=%221820%22 rx=%2212%22 ry=%224.7%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(-14 197 1820)%22/%3E%3Cellipse cx=%22291%22 cy=%222240%22 rx=%2218%22 ry=%227.8%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(13 291 2240)%22/%3E%3Cellipse cx=%22486%22 cy=%222154%22 rx=%2219%22 ry=%227.8%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(-0 486 2154)%22/%3E%3Cellipse cx=%22171%22 cy=%222247%22 rx=%2213%22 ry=%224.5%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(-8 171 2247)%22/%3E%3Cellipse cx=%22772%22 cy=%221910%22 rx=%2216%22 ry=%227.1%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(12 772 1910)%22/%3E%3Cellipse cx=%22802%22 cy=%222255%22 rx=%2211%22 ry=%223.7%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(-13 802 2255)%22/%3E%3Cellipse cx=%22207%22 cy=%221805%22 rx=%2211%22 ry=%224.7%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(-2 207 1805)%22/%3E%3Cellipse cx=%22267%22 cy=%222019%22 rx=%2211%22 ry=%224.4%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(-3 267 2019)%22/%3E%3Cellipse cx=%2275%22 cy=%222250%22 rx=%2219%22 ry=%227.2%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(3 75 2250)%22/%3E%3Cellipse cx=%2243%22 cy=%221956%22 rx=%2216%22 ry=%226.2%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(-11 43 1956)%22/%3E%3Cellipse cx=%22482%22 cy=%221888%22 rx=%2216%22 ry=%227.1%22 fill=%22%238c6f3c%22 opacity=%22.18%22 transform=%22rotate(1 482 1888)%22/%3E%3Cpath d=%22M803,2776 h33%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M911,2712 h50%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M446,2784 h41%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M625,2573 h52%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M567,2644 h53%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M45,2489 h44%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M321,2566 h41%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M293,2617 h34%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M109,2829 h56%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M750,2548 h65%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M406,2617 h29%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M204,2695 h60%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M291,2788 h55%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M39,2503 h70%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M489,2381 h56%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M350,2429 h67%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M379,2717 h42%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M833,2680 h42%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M270,2843 h55%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M908,2470 h46%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M646,2869 h60%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M433,2835 h60%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M312,3152 h52%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M929,3279 h45%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M630,3026 h51%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M578,3324 h67%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M65,3275 h48%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M261,3208 h39%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M193,3393 h54%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M90,3137 h31%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M349,3149 h30%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M76,3182 h69%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M279,3404 h33%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M760,3039 h57%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M161,3398 h67%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M222,3435 h58%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M54,3381 h46%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M401,3187 h38%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M859,3307 h60%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M763,3100 h58%22 stroke=%22%238c6f3c%22 stroke-width=%222.4%22 opacity=%22.22%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M616,3147 q28,5 56,2 q33,-0 65,-0 q23,6 46,3 q30,9 61,5 %22 fill=%22none%22 stroke=%22%23b8860b%22 stroke-width=%223.4%22 opacity=%22.55%22 stroke-linecap=%22round%22/%3E%3Ccircle cx=%22695%22 cy=%223149%22 r=%225%22 fill=%22%23e0a800%22 opacity=%22.7%22/%3E%3Cpath d=%22M755,3284 q30,-17 60,-8 q25,1 49,1 q21,3 41,1 q17,-19 34,-9 %22 fill=%22none%22 stroke=%22%23b8860b%22 stroke-width=%223.4%22 opacity=%22.55%22 stroke-linecap=%22round%22/%3E%3Ccircle cx=%22832%22 cy=%223293%22 r=%225%22 fill=%22%23e0a800%22 opacity=%22.7%22/%3E%3Cpath d=%22M717,3109 q33,22 66,11 q23,-5 46,-3 q20,-20 40,-10 q31,-8 62,-4 %22 fill=%22none%22 stroke=%22%23b8860b%22 stroke-width=%223.4%22 opacity=%22.55%22 stroke-linecap=%22round%22/%3E%3Ccircle cx=%22773%22 cy=%223116%22 r=%225%22 fill=%22%23e0a800%22 opacity=%22.7%22/%3E%3Cpath d=%22M599,3655 q30,19 59,9 q26,16 52,8 q22,15 43,8 q31,17 62,8 %22 fill=%22none%22 stroke=%22%23b8860b%22 stroke-width=%223.4%22 opacity=%22.55%22 stroke-linecap=%22round%22/%3E%3Ccircle cx=%22693%22 cy=%223650%22 r=%225%22 fill=%22%23e0a800%22 opacity=%22.7%22/%3E%3Cpath d=%22M715,3876 q22,13 45,6 q26,12 52,6 q29,11 59,5 q24,25 47,12 %22 fill=%22none%22 stroke=%22%23b8860b%22 stroke-width=%223.4%22 opacity=%22.55%22 stroke-linecap=%22round%22/%3E%3Ccircle cx=%22821%22 cy=%223877%22 r=%225%22 fill=%22%23e0a800%22 opacity=%22.7%22/%3E%3Cpath d=%22M280,3721 q35,-6 69,-3 q23,-20 46,-10 q22,-23 43,-11 q21,-3 41,-2 %22 fill=%22none%22 stroke=%22%23b8860b%22 stroke-width=%223.4%22 opacity=%22.55%22 stroke-linecap=%22round%22/%3E%3Ccircle cx=%22374%22 cy=%223710%22 r=%225%22 fill=%22%23e0a800%22 opacity=%22.7%22/%3E%3Cpath d=%22M427,3938 q29,21 58,10 q29,-17 57,-9 q24,-16 48,-8 q27,-23 54,-12 %22 fill=%22none%22 stroke=%22%23b8860b%22 stroke-width=%223.4%22 opacity=%22.55%22 stroke-linecap=%22round%22/%3E%3Ccircle cx=%22527%22 cy=%223946%22 r=%225%22 fill=%22%23e0a800%22 opacity=%22.7%22/%3E%3C/svg%3E");
  background-size:100% 100%;background-repeat:no-repeat;
}
html.dark body::before{
  background-image:url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 1000 4000%22 preserveAspectRatio=%22none%22%3E%3Crect width=%221000%22 height=%224000%22 fill=%22%23221b14%22/%3E%3Cpath d=%22M0,456 C71,456 71,477 143,477 C214,477 214,498 286,498 C357,498 357,494 429,494 C500,494 500,496 571,496 C643,496 643,475 714,475 C786,475 786,500 857,500 C929,500 929,482 1000,482  L1000,4000 L0,4000 Z%22 fill=%22%231f1812%22/%3E%3Cpath d=%22M0,1067 C71,1067 71,1034 143,1034 C214,1034 214,1099 286,1099 C357,1099 357,1096 429,1096 C500,1096 500,1057 571,1057 C643,1057 643,1074 714,1074 C786,1074 786,1036 857,1036 C929,1036 929,1037 1000,1037  L1000,4000 L0,4000 Z%22 fill=%22%231c1510%22/%3E%3Cpath d=%22M0,1673 C71,1673 71,1709 143,1709 C214,1709 214,1675 286,1675 C357,1675 357,1716 429,1716 C500,1716 500,1708 571,1708 C643,1708 643,1691 714,1691 C786,1691 786,1709 857,1709 C929,1709 929,1705 1000,1705  L1000,4000 L0,4000 Z%22 fill=%22%2319130e%22/%3E%3Cpath d=%22M0,2364 C71,2364 71,2316 143,2316 C214,2316 214,2340 286,2340 C357,2340 357,2342 429,2342 C500,2342 500,2294 571,2294 C643,2294 643,2281 714,2281 C786,2281 786,2329 857,2329 C929,2329 929,2285 1000,2285  L1000,4000 L0,4000 Z%22 fill=%22%2316100c%22/%3E%3Cpath d=%22M0,2957 C71,2957 71,2950 143,2950 C214,2950 214,2939 286,2939 C357,2939 357,2898 429,2898 C500,2898 500,2906 571,2906 C643,2906 643,2937 714,2937 C786,2937 786,2945 857,2945 C929,2945 929,2881 1000,2881  L1000,4000 L0,4000 Z%22 fill=%22%23130e0a%22/%3E%3Cpath d=%22M0,3507 C71,3507 71,3469 143,3469 C214,3469 214,3501 286,3501 C357,3501 357,3513 429,3513 C500,3513 500,3466 571,3466 C643,3466 643,3499 714,3499 C786,3499 786,3468 857,3468 C929,3468 929,3456 1000,3456  L1000,4000 L0,4000 Z%22 fill=%22%23100b08%22/%3E%3Cpath d=%22M0,456 C71,456 71,477 143,477 C214,477 214,498 286,498 C357,498 357,494 429,494 C500,494 500,496 571,496 C643,496 643,475 714,475 C786,475 786,500 857,500 C929,500 929,482 1000,482 %22 fill=%22none%22 stroke=%22%23c9971c%22 stroke-width=%223%22 opacity=%22.3%22/%3E%3Cpath d=%22M0,1067 C71,1067 71,1034 143,1034 C214,1034 214,1099 286,1099 C357,1099 357,1096 429,1096 C500,1096 500,1057 571,1057 C643,1057 643,1074 714,1074 C786,1074 786,1036 857,1036 C929,1036 929,1037 1000,1037 %22 fill=%22none%22 stroke=%22%23c9971c%22 stroke-width=%223%22 opacity=%22.3%22/%3E%3Cpath d=%22M0,1673 C71,1673 71,1709 143,1709 C214,1709 214,1675 286,1675 C357,1675 357,1716 429,1716 C500,1716 500,1708 571,1708 C643,1708 643,1691 714,1691 C786,1691 786,1709 857,1709 C929,1709 929,1705 1000,1705 %22 fill=%22none%22 stroke=%22%23c9971c%22 stroke-width=%223%22 opacity=%22.3%22/%3E%3Cpath d=%22M0,2364 C71,2364 71,2316 143,2316 C214,2316 214,2340 286,2340 C357,2340 357,2342 429,2342 C500,2342 500,2294 571,2294 C643,2294 643,2281 714,2281 C786,2281 786,2329 857,2329 C929,2329 929,2285 1000,2285 %22 fill=%22none%22 stroke=%22%23c9971c%22 stroke-width=%223%22 opacity=%22.3%22/%3E%3Cpath d=%22M0,2957 C71,2957 71,2950 143,2950 C214,2950 214,2939 286,2939 C357,2939 357,2898 429,2898 C500,2898 500,2906 571,2906 C643,2906 643,2937 714,2937 C786,2937 786,2945 857,2945 C929,2945 929,2881 1000,2881 %22 fill=%22none%22 stroke=%22%23c9971c%22 stroke-width=%223%22 opacity=%22.3%22/%3E%3Cpath d=%22M0,3507 C71,3507 71,3469 143,3469 C214,3469 214,3501 286,3501 C357,3501 357,3513 429,3513 C500,3513 500,3466 571,3466 C643,3466 643,3499 714,3499 C786,3499 786,3468 857,3468 C929,3468 929,3456 1000,3456 %22 fill=%22none%22 stroke=%22%23c9971c%22 stroke-width=%223%22 opacity=%22.3%22/%3E%3Cpath d=%22M498,40 q-12,25 -7,49 q-13,22 -8,44 q24,16 15,33 %22 fill=%22none%22 stroke=%22%23c9971c%22 stroke-width=%222.6%22 opacity=%22.18%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M328,40 q9,16 6,33 q-18,27 -11,55 q25,20 15,40 %22 fill=%22none%22 stroke=%22%23c9971c%22 stroke-width=%222.6%22 opacity=%22.18%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M208,40 q25,20 15,40 q5,24 3,48 q7,29 4,57 %22 fill=%22none%22 stroke=%22%23c9971c%22 stroke-width=%222.6%22 opacity=%22.18%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M935,40 q10,27 6,55 q15,25 9,49 q-4,18 -2,37 %22 fill=%22none%22 stroke=%22%23c9971c%22 stroke-width=%222.6%22 opacity=%22.18%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M280,40 q22,26 13,51 q-20,29 -12,57 q-12,25 -7,51 %22 fill=%22none%22 stroke=%22%23c9971c%22 stroke-width=%222.6%22 opacity=%22.18%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M462,40 q-12,18 -7,36 q4,21 2,42 q6,25 4,51 %22 fill=%22none%22 stroke=%22%23c9971c%22 stroke-width=%222.6%22 opacity=%22.18%22 stroke-linecap=%22round%22/%3E%3Cellipse cx=%22807%22 cy=%22952%22 rx=%2216%22 ry=%227.8%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(-0 807 952)%22/%3E%3Cellipse cx=%22872%22 cy=%22935%22 rx=%2218%22 ry=%226.2%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(2 872 935)%22/%3E%3Cellipse cx=%22516%22 cy=%22603%22 rx=%2213%22 ry=%225.4%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(-14 516 603)%22/%3E%3Cellipse cx=%2229%22 cy=%22830%22 rx=%2214%22 ry=%226.7%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(10 29 830)%22/%3E%3Cellipse cx=%22816%22 cy=%22929%22 rx=%2211%22 ry=%225.2%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(-11 816 929)%22/%3E%3Cellipse cx=%22151%22 cy=%22733%22 rx=%2212%22 ry=%223.8%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(1 151 733)%22/%3E%3Cellipse cx=%22947%22 cy=%22596%22 rx=%2212%22 ry=%225.7%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(1 947 596)%22/%3E%3Cellipse cx=%22466%22 cy=%22752%22 rx=%2218%22 ry=%227.3%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(-3 466 752)%22/%3E%3Cellipse cx=%22368%22 cy=%22917%22 rx=%229%22 ry=%223.7%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(4 368 917)%22/%3E%3Cellipse cx=%2228%22 cy=%22706%22 rx=%2213%22 ry=%225.6%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(1 28 706)%22/%3E%3Cellipse cx=%22498%22 cy=%22699%22 rx=%2214%22 ry=%226.7%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(-11 498 699)%22/%3E%3Cellipse cx=%22104%22 cy=%22633%22 rx=%2210%22 ry=%223.3%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(-5 104 633)%22/%3E%3Cellipse cx=%22728%22 cy=%221001%22 rx=%229%22 ry=%223.8%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(-7 728 1001)%22/%3E%3Cellipse cx=%22883%22 cy=%221018%22 rx=%2217%22 ry=%225.4%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(-0 883 1018)%22/%3E%3Cellipse cx=%22435%22 cy=%222041%22 rx=%2211%22 ry=%223.7%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(3 435 2041)%22/%3E%3Cellipse cx=%22813%22 cy=%221934%22 rx=%2213%22 ry=%224.3%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(1 813 1934)%22/%3E%3Cellipse cx=%22803%22 cy=%222010%22 rx=%2210%22 ry=%223.5%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(10 803 2010)%22/%3E%3Cellipse cx=%22703%22 cy=%221893%22 rx=%2215%22 ry=%225.0%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(2 703 1893)%22/%3E%3Cellipse cx=%2247%22 cy=%221916%22 rx=%2214%22 ry=%225.8%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(-6 47 1916)%22/%3E%3Cellipse cx=%22658%22 cy=%221889%22 rx=%2218%22 ry=%228.3%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(2 658 1889)%22/%3E%3Cellipse cx=%22941%22 cy=%221889%22 rx=%2220%22 ry=%226.5%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(2 941 1889)%22/%3E%3Cellipse cx=%22197%22 cy=%221820%22 rx=%2212%22 ry=%224.7%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(-14 197 1820)%22/%3E%3Cellipse cx=%22291%22 cy=%222240%22 rx=%2218%22 ry=%227.8%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(13 291 2240)%22/%3E%3Cellipse cx=%22486%22 cy=%222154%22 rx=%2219%22 ry=%227.8%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(-0 486 2154)%22/%3E%3Cellipse cx=%22171%22 cy=%222247%22 rx=%2213%22 ry=%224.5%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(-8 171 2247)%22/%3E%3Cellipse cx=%22772%22 cy=%221910%22 rx=%2216%22 ry=%227.1%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(12 772 1910)%22/%3E%3Cellipse cx=%22802%22 cy=%222255%22 rx=%2211%22 ry=%223.7%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(-13 802 2255)%22/%3E%3Cellipse cx=%22207%22 cy=%221805%22 rx=%2211%22 ry=%224.7%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(-2 207 1805)%22/%3E%3Cellipse cx=%22267%22 cy=%222019%22 rx=%2211%22 ry=%224.4%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(-3 267 2019)%22/%3E%3Cellipse cx=%2275%22 cy=%222250%22 rx=%2219%22 ry=%227.2%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(3 75 2250)%22/%3E%3Cellipse cx=%2243%22 cy=%221956%22 rx=%2216%22 ry=%226.2%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(-11 43 1956)%22/%3E%3Cellipse cx=%22482%22 cy=%221888%22 rx=%2216%22 ry=%227.1%22 fill=%22%23ffd100%22 opacity=%22.07%22 transform=%22rotate(1 482 1888)%22/%3E%3Cpath d=%22M803,2776 h33%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M911,2712 h50%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M446,2784 h41%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M625,2573 h52%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M567,2644 h53%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M45,2489 h44%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M321,2566 h41%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M293,2617 h34%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M109,2829 h56%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M750,2548 h65%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M406,2617 h29%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M204,2695 h60%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M291,2788 h55%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M39,2503 h70%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M489,2381 h56%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M350,2429 h67%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M379,2717 h42%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M833,2680 h42%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M270,2843 h55%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M908,2470 h46%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M646,2869 h60%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M433,2835 h60%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M312,3152 h52%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M929,3279 h45%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M630,3026 h51%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M578,3324 h67%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M65,3275 h48%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M261,3208 h39%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M193,3393 h54%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M90,3137 h31%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M349,3149 h30%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M76,3182 h69%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M279,3404 h33%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M760,3039 h57%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M161,3398 h67%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M222,3435 h58%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M54,3381 h46%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M401,3187 h38%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M859,3307 h60%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M763,3100 h58%22 stroke=%22%23ffd100%22 stroke-width=%222.4%22 opacity=%22.1%22 stroke-linecap=%22round%22/%3E%3Cpath d=%22M616,3147 q28,5 56,2 q33,-0 65,-0 q23,6 46,3 q30,9 61,5 %22 fill=%22none%22 stroke=%22%23ffd100%22 stroke-width=%223.4%22 opacity=%22.4%22 stroke-linecap=%22round%22/%3E%3Ccircle cx=%22695%22 cy=%223149%22 r=%225%22 fill=%22%23ffe680%22 opacity=%22.6%22/%3E%3Cpath d=%22M755,3284 q30,-17 60,-8 q25,1 49,1 q21,3 41,1 q17,-19 34,-9 %22 fill=%22none%22 stroke=%22%23ffd100%22 stroke-width=%223.4%22 opacity=%22.4%22 stroke-linecap=%22round%22/%3E%3Ccircle cx=%22832%22 cy=%223293%22 r=%225%22 fill=%22%23ffe680%22 opacity=%22.6%22/%3E%3Cpath d=%22M717,3109 q33,22 66,11 q23,-5 46,-3 q20,-20 40,-10 q31,-8 62,-4 %22 fill=%22none%22 stroke=%22%23ffd100%22 stroke-width=%223.4%22 opacity=%22.4%22 stroke-linecap=%22round%22/%3E%3Ccircle cx=%22773%22 cy=%223116%22 r=%225%22 fill=%22%23ffe680%22 opacity=%22.6%22/%3E%3Cpath d=%22M599,3655 q30,19 59,9 q26,16 52,8 q22,15 43,8 q31,17 62,8 %22 fill=%22none%22 stroke=%22%23ffd100%22 stroke-width=%223.4%22 opacity=%22.4%22 stroke-linecap=%22round%22/%3E%3Ccircle cx=%22693%22 cy=%223650%22 r=%225%22 fill=%22%23ffe680%22 opacity=%22.6%22/%3E%3Cpath d=%22M715,3876 q22,13 45,6 q26,12 52,6 q29,11 59,5 q24,25 47,12 %22 fill=%22none%22 stroke=%22%23ffd100%22 stroke-width=%223.4%22 opacity=%22.4%22 stroke-linecap=%22round%22/%3E%3Ccircle cx=%22821%22 cy=%223877%22 r=%225%22 fill=%22%23ffe680%22 opacity=%22.6%22/%3E%3Cpath d=%22M280,3721 q35,-6 69,-3 q23,-20 46,-10 q22,-23 43,-11 q21,-3 41,-2 %22 fill=%22none%22 stroke=%22%23ffd100%22 stroke-width=%223.4%22 opacity=%22.4%22 stroke-linecap=%22round%22/%3E%3Ccircle cx=%22374%22 cy=%223710%22 r=%225%22 fill=%22%23ffe680%22 opacity=%22.6%22/%3E%3Cpath d=%22M427,3938 q29,21 58,10 q29,-17 57,-9 q24,-16 48,-8 q27,-23 54,-12 %22 fill=%22none%22 stroke=%22%23ffd100%22 stroke-width=%223.4%22 opacity=%22.4%22 stroke-linecap=%22round%22/%3E%3Ccircle cx=%22527%22 cy=%223946%22 r=%225%22 fill=%22%23ffe680%22 opacity=%22.6%22/%3E%3C/svg%3E");
}
/* bölüm zeminleri biraz daha saydam — katmanlar altından okunsun */
.bg-sand{background:rgba(240,232,212,.42)}
.bg-sand-deep{background:rgba(234,222,192,.42)}
.bg-stone{background:rgba(240,242,245,.45)}
html.dark .bg-sand,html.dark .bg-sand-deep{background:rgba(255,236,190,.03)}
html.dark .bg-stone{background:rgba(255,255,255,.018)}

/* ---------- Tek dil düğmesi + mobil header araçları ---------- */
.lang-toggle{
  font-family:var(--font-cond);font-weight:700;font-size:.95rem;
  letter-spacing:.1em;color:var(--heading);
  border:1.5px solid var(--gold-deep);border-radius:6px;
  padding:5px 11px;line-height:1;
}
.lang-toggle:hover{background:var(--gold);border-color:var(--gold);color:#252525}
html.dark .lang-toggle{color:#f0e9d8;border-color:var(--gold-deep)}
html.dark .lang-toggle:hover{background:var(--gold);color:#252525}
.header-tools{display:flex;align-items:center;gap:14px;flex-shrink:0}
@media (max-width:720px){
  .header-tools{gap:10px;margin:0}
  .logo img{height:42px}
  .main-nav{inset:84px 0 auto 0}
}
