  :root{
    --teal-900:#0E3B39;
    --teal-800:#134A47;
    --teal-700:#1B5C57;
    --foam:#F6EEE1;
    --white:#FFFDF9;
    --mint:#CFE6DC;
    --mint-soft:#E5F0EA;
    --amber:#E3A73E;
    --amber-dark:#C98A24;
    --ink:#16302E;
    --ink-soft:#4C625D;
    --whatsapp:#25D366;
    --whatsapp-dark:#1DA851;
    --line:#DCE5DC;
    --shadow: 0 12px 32px -12px rgba(14,59,57,.25);
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    *{animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important;}
  }

  body{
    margin:0;
    font-family:'Inter',sans-serif;
    color:var(--ink);
    background:var(--foam);
    -webkit-font-smoothing:antialiased;
  }

  h1,h2,h3,.display{
    font-family:'Space Grotesk',sans-serif;
    color:var(--teal-900);
    margin:0;
    line-height:1.08;
    letter-spacing:-0.01em;
  }

  .mono{font-family:'IBM Plex Mono',monospace;}

  p{color:var(--ink-soft); line-height:1.65; margin:0;}
  a{color:inherit; text-decoration:none;}
  img{max-width:100%; display:block;}
  ul{margin:0; padding:0; list-style:none;}
  button{font-family:inherit; cursor:pointer;}

  .wrap{max-width:1180px; margin:0 auto; padding:0 24px;}
  section{padding:96px 0;}
  @media (max-width:720px){ section{padding:64px 0;} }

  .eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    font-family:'IBM Plex Mono',monospace;
    font-size:12.5px; letter-spacing:.14em; text-transform:uppercase;
    color:var(--teal-700); font-weight:600;
    margin-bottom:14px;
  }
  .eyebrow::before{
    content:""; width:16px; height:2px; background:var(--amber); display:inline-block;
  }

  /* ---------- Buttons ---------- */
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:9px;
    padding:14px 24px; border-radius:11px; font-weight:600; font-size:15px;
    border:1.5px solid transparent; white-space:nowrap;
    transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
  }
  .btn:active{transform:translateY(1px);}
  .btn svg{width:19px; height:19px; flex-shrink:0;}
  .btn-call{
    background:var(--amber); color:var(--teal-900); box-shadow:0 10px 24px -10px rgba(242,169,59,.7);
  }
  .btn-call:hover{background:var(--amber-dark); box-shadow:0 14px 28px -10px rgba(242,169,59,.8);}
  .btn-wa{
    background:var(--whatsapp); color:#fff; box-shadow:0 10px 24px -10px rgba(37,211,102,.55);
  }
  .btn-wa:hover{background:var(--whatsapp-dark);}
  .btn-outline{
    border-color:var(--teal-900); color:var(--teal-900); background:transparent;
  }
  .btn-outline:hover{background:var(--teal-900); color:#fff;}
  .btn-sm{padding:10px 16px; font-size:13.5px; border-radius:9px;}

  /* ---------- Header ---------- */
  header{
    position:sticky; top:0; z-index:100;
    background:rgba(246,250,248,.9); backdrop-filter:blur(10px);
    border-bottom:1px solid transparent;
    transition:border-color .25s ease, box-shadow .25s ease;
  }
  header.scrolled{border-color:var(--line); box-shadow:0 6px 24px -18px rgba(14,59,57,.4);}
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:16px 0;
  }
  .brand{display:flex; align-items:center; gap:10px; font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:19px; color:var(--teal-900);}
  .brand-mark{
    width:38px; height:38px; border-radius:10px; background:var(--teal-900);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .brand-mark svg{width:20px; height:20px;}
  .nav-links{display:flex; align-items:center; gap:30px;}
  .nav-links a{font-size:14.5px; font-weight:500; color:var(--ink-soft);}
  .nav-links a:hover{color:var(--teal-900);}
  .nav-cta{display:flex; align-items:center; gap:10px;}
  .nav-phone{
    display:flex; flex-direction:column; align-items:flex-end; margin-right:4px;
  }
  .nav-phone small{font-size:11px; color:var(--ink-soft); font-weight:500;}
  .nav-phone strong{font-family:'IBM Plex Mono',monospace; font-size:15.5px; color:var(--teal-900);}
  .menu-toggle{display:none; background:none; border:none; padding:8px;}
  @media (max-width:900px){
    .nav-links{display:none;}
    .nav-phone{display:none;}
  }

  /* ---------- Hero ---------- */
  .hero{
    position:relative; overflow:hidden;
    padding:76px 0 100px;
    background:
      radial-gradient(560px 380px at 88% -8%, var(--mint) 0%, rgba(205,238,226,0) 70%),
      linear-gradient(180deg,var(--foam) 0%, var(--foam) 100%);
  }
  .hero-grid{
    display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center;
  }
  @media (max-width:920px){ .hero-grid{grid-template-columns:1fr;} }

  .hero h1{font-size:clamp(34px,4.6vw,54px); font-weight:700;}
  .hero .accent-word{position:relative; display:inline-block; color:var(--teal-900);}
  .hero .accent-word::after{
    content:""; position:absolute; left:-2%; right:-2%; bottom:6px; height:.42em;
    background:var(--amber); opacity:.55; z-index:-1; border-radius:3px;
    transform:scaleX(0); transform-origin:left; animation:sweep 1s .5s ease forwards;
  }
  @keyframes sweep{to{transform:scaleX(1);}}

  .hero p.lead{font-size:17.5px; margin-top:20px; max-width:46ch;}
  .hero-actions{display:flex; gap:14px; margin-top:32px; flex-wrap:wrap;}
  .hero-badges{
    display:flex; flex-wrap:wrap; gap:10px 22px; margin-top:38px;
  }
  .hero-badge{display:flex; align-items:center; gap:8px; font-size:13.5px; font-weight:600; color:var(--teal-800);}
  .hero-badge svg{width:17px; height:17px; color:var(--amber-dark); flex-shrink:0;}

  .hero-visual{position:relative; aspect-ratio:1/1; max-width:440px; margin:0 auto;}
  .hero-visual .ring{
    position:absolute; inset:0; border-radius:50%;
    border:1.5px dashed var(--mint);
    animation:spin 40s linear infinite;
  }
  @keyframes spin{to{transform:rotate(360deg);}}
  .hero-visual .core{
    position:absolute; inset:10%; border-radius:50%;
    background:linear-gradient(155deg,var(--teal-800),var(--teal-900));
    display:flex; align-items:center; justify-content:center;
    box-shadow:var(--shadow);
  }
  .hero-visual .core svg{width:46%; height:46%;}
  .hero-visual .chip{
    position:absolute; background:var(--white); border-radius:14px; padding:12px 14px;
    box-shadow:var(--shadow); display:flex; align-items:center; gap:10px;
    font-size:12.5px; font-weight:600; color:var(--teal-900);
  }
  .hero-visual .chip svg{width:18px; height:18px; color:var(--whatsapp); flex-shrink:0;}
  .chip-1{top:2%; left:-8%;}
  .chip-2{bottom:6%; right:-10%;}
  .chip-2 svg{color:var(--amber-dark);}
  @media (max-width:920px){ .hero-visual{max-width:320px; margin-top:12px;} }

  /* ---------- Wipe divider (signature element) ---------- */
  .wipe{
    position:relative; height:64px; margin-top:-1px;
  }
  .wipe svg{width:100%; height:100%; display:block;}

  /* ---------- Section heading ---------- */
  .section-head{max-width:640px; margin-bottom:48px;}
  .section-head h2{font-size:clamp(26px,3.2vw,36px); font-weight:700;}
  .section-head p{margin-top:14px; font-size:16px;}

  /* ---------- Services ---------- */
  .services-section{background:var(--white);}
  .services-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
  @media (max-width:900px){ .services-grid{grid-template-columns:repeat(2,1fr);} }
  @media (max-width:600px){ .services-grid{grid-template-columns:1fr;} }
  .service-card{
    border:1px solid var(--line); border-radius:16px; padding:28px 26px;
    background:var(--foam);
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    display:flex; flex-direction:column; gap:14px;
  }
  .service-card:hover{transform:translateY(-4px); box-shadow:var(--shadow); border-color:transparent;}
  .service-icon{
    width:48px; height:48px; border-radius:12px; background:var(--teal-900);
    display:flex; align-items:center; justify-content:center;
  }
  .service-icon svg{width:24px; height:24px; color:var(--mint);}
  .service-card h3{font-size:18px; font-weight:600;}
  .service-card p{font-size:14.5px;}
  .service-card .link{
    margin-top:auto; font-size:13.5px; font-weight:600; color:var(--teal-700);
    display:inline-flex; align-items:center; gap:5px;
  }
  .service-card .link svg{width:14px; height:14px; transition:transform .2s ease;}
  .service-card:hover .link svg{transform:translateX(3px);}

  /* ---------- Service Policy ---------- */
  .policy-section{background:var(--mint-soft);}
  .policy-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px;}
  @media (max-width:900px){ .policy-grid{grid-template-columns:repeat(2,1fr);} }
  @media (max-width:600px){ .policy-grid{grid-template-columns:1fr;} }
  .policy-item{
    display:flex; gap:14px; align-items:flex-start;
    background:var(--white); border:1px solid var(--line); border-radius:14px; padding:20px;
  }
  .policy-icon{
    width:30px; height:30px; border-radius:8px; background:var(--teal-900);
    display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px;
  }
  .policy-icon svg{width:16px; height:16px; color:var(--mint);}
  .policy-item h3{font-size:15.5px; font-weight:600; margin-bottom:5px;}
  .policy-item p{font-size:13.5px;}

  /* ---------- Process ---------- */
  .process-section{background:var(--teal-900); color:#fff; position:relative;}
  .process-section .section-head h2{color:#fff;}
  .process-section .section-head p{color:#B9D4CF;}
  .process-section .eyebrow{color:var(--mint);}
  .process-section .eyebrow::before{background:var(--amber);}
  .process-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:rgba(255,255,255,.12); border-radius:18px; overflow:hidden;}
  @media (max-width:800px){ .process-grid{grid-template-columns:1fr;} }
  .process-step{background:var(--teal-900); padding:34px 30px;}
  .process-step .num{
    font-family:'IBM Plex Mono',monospace; font-size:13px; color:var(--amber);
    letter-spacing:.08em; margin-bottom:16px; display:block;
  }
  .process-step h3{color:#fff; font-family:'Space Grotesk',sans-serif; font-size:19px; font-weight:600; margin-bottom:10px;}
  .process-step p{color:#B9D4CF; font-size:14.5px;}

  /* ---------- Districts ---------- */
  .districts-section{background:var(--mint-soft);}
  .districts-inner{display:grid; grid-template-columns:.85fr 1.15fr; gap:56px; align-items:start;}
  @media (max-width:900px){ .districts-inner{grid-template-columns:1fr; gap:36px;} }
  .district-list{display:grid; grid-template-columns:repeat(2,1fr); gap:12px;}
  @media (max-width:480px){ .district-list{grid-template-columns:1fr;} }
  .district-item{
    display:flex; align-items:center; gap:10px;
    background:var(--white); border:1px solid var(--line); border-radius:11px;
    padding:13px 15px; font-size:14.5px; font-weight:600; color:var(--teal-900);
  }
  .district-item svg{width:17px; height:17px; color:var(--whatsapp); flex-shrink:0;}
  .districts-note{
    margin-top:22px; padding:16px 18px; background:var(--white); border-radius:12px;
    border:1px dashed var(--teal-700); font-size:13.5px; color:var(--ink-soft);
  }

  /* ---------- Event/Organizasyon teaser ---------- */
  .event-teaser{
    display:flex; align-items:center; gap:18px; text-decoration:none;
    background:var(--white); border:1px solid var(--line); border-radius:16px;
    padding:20px 22px; margin:8px 0 -8px; box-shadow:var(--shadow);
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .event-teaser:hover{transform:translateY(-3px);}
  .event-teaser-icon{
    width:48px; height:48px; border-radius:12px; background:var(--amber);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .event-teaser-icon svg{width:24px; height:24px; color:var(--white);}
  .event-teaser-text{display:flex; flex-direction:column; gap:3px; flex:1;}
  .event-teaser-text strong{font-family:'Space Grotesk',sans-serif; font-size:15.5px; color:var(--teal-900);}
  .event-teaser-text span{font-size:13px; color:var(--ink-soft);}
  .event-teaser-arrow{
    width:34px; height:34px; border-radius:50%; background:var(--mint-soft); flex-shrink:0;
    display:flex; align-items:center; justify-content:center; color:var(--teal-900);
  }
  @media (max-width:640px){
    .event-teaser{align-items:flex-start;}
    .event-teaser-arrow{display:none;}
  }

  /* ---------- Stats ---------- */
  .stats-section{background:var(--white); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
  .stats-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center;}
  @media (max-width:800px){ .stats-grid{grid-template-columns:repeat(2,1fr); gap:32px;} }
  .stat .num{font-family:'IBM Plex Mono',monospace; font-size:clamp(30px,4vw,42px); font-weight:600; color:var(--teal-900);}
  .stat .label{margin-top:8px; font-size:13.5px; color:var(--ink-soft); font-weight:500;}

  /* ---------- Testimonials ---------- */
  .testi-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
  @media (max-width:900px){ .testi-grid{grid-template-columns:1fr;} }
  .testi-card{
    background:var(--white); border:1px solid var(--line); border-radius:16px; padding:26px;
  }
  .testi-stars{display:flex; gap:3px; margin-bottom:14px;}
  .testi-stars svg{width:15px; height:15px; color:var(--amber);}
  .testi-card p{font-size:14.5px; color:var(--ink); font-style:italic;}
  .testi-name{margin-top:16px; font-size:13.5px; font-weight:700; color:var(--teal-900);}
  .testi-loc{font-size:12.5px; color:var(--ink-soft);}

  /* ---------- CTA banner ---------- */
  .cta-banner{
    background:linear-gradient(120deg,var(--teal-900),var(--teal-700));
    border-radius:24px; padding:52px 48px; color:#fff;
    display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap;
    position:relative; overflow:hidden;
  }
  .cta-banner::after{
    content:""; position:absolute; right:-60px; top:-60px; width:220px; height:220px;
    border-radius:50%; background:rgba(242,169,59,.18);
  }
  .cta-banner h2{color:#fff; font-size:clamp(22px,3vw,30px); max-width:26ch;}
  .cta-banner .phone-big{font-family:'IBM Plex Mono',monospace; font-size:22px; font-weight:600; color:var(--amber); margin-top:10px; display:block;}
  .cta-actions{display:flex; gap:12px; flex-wrap:wrap; position:relative; z-index:1;}

  /* ---------- Footer ---------- */
  footer{background:var(--teal-900); color:#B9D4CF; padding:64px 0 28px;}
  .footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:36px;}
  @media (max-width:800px){ .footer-grid{grid-template-columns:1fr 1fr; row-gap:32px;} }
  @media (max-width:480px){ .footer-grid{grid-template-columns:1fr;} }
  footer h4{color:#fff; font-family:'Space Grotesk',sans-serif; font-size:14px; margin-bottom:16px; letter-spacing:.03em;}
  footer .brand{color:#fff;}
  footer p.desc{font-size:13.5px; margin-top:14px; max-width:32ch; color:#9FC1BB;}
  footer ul li{font-size:13.5px; margin-bottom:10px; color:#B9D4CF;}
  footer ul li a:hover{color:#fff;}
  .footer-contact li{display:flex; align-items:center; gap:9px;}
  .footer-contact svg{width:15px; height:15px; color:var(--amber); flex-shrink:0;}
  .footer-bottom{
    margin-top:48px; padding-top:24px; border-top:1px solid rgba(255,255,255,.12);
    display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:12.5px; color:#7FA49D;
  }
  .socials{display:flex; gap:10px;}
  .socials a{width:34px; height:34px; border-radius:9px; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center;}
  .socials a:hover{background:var(--amber); color:var(--teal-900);}
  .socials svg{width:16px; height:16px;}

  /* ---------- Floating WhatsApp ---------- */
  .float-wa{
    position:fixed; bottom:22px; right:22px; z-index:200;
    width:60px; height:60px; border-radius:50%; background:var(--whatsapp);
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 14px 30px -8px rgba(37,211,102,.6);
    animation:pulse 2.4s ease-in-out infinite;
  }
  .float-wa svg{width:30px; height:30px; color:#fff;}
  @keyframes pulse{
    0%,100%{box-shadow:0 14px 30px -8px rgba(37,211,102,.6);}
    50%{box-shadow:0 14px 34px -6px rgba(37,211,102,.85);}
  }

  /* ---------- Reveal on scroll ---------- */
  .reveal{opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease;}
  .reveal.in{opacity:1; transform:translateY(0);}

  /* ---------- Venue / Organizasyon page ---------- */
  .venue-hero{
    padding:64px 0 80px;
    background:
      radial-gradient(560px 380px at 88% -8%, var(--mint) 0%, rgba(207,230,220,0) 70%),
      linear-gradient(180deg,var(--foam) 0%, var(--foam) 100%);
  }
  .venue-hero-grid{display:grid; grid-template-columns:1.1fr .9fr; gap:48px; align-items:center;}
  @media (max-width:920px){ .venue-hero-grid{grid-template-columns:1fr;} }
  .venue-hero h1{font-size:clamp(30px,4vw,46px); font-weight:700;}
  .venue-hero p.lead{font-size:17px; margin-top:18px; max-width:50ch;}
  .venue-hero-actions{display:flex; gap:14px; margin-top:28px; flex-wrap:wrap;}
  .back-link{
    display:inline-flex; align-items:center; gap:6px; font-size:13.5px; font-weight:600;
    color:var(--teal-700); margin-bottom:22px;
  }
  .back-link svg{width:15px; height:15px;}

  .venue-visual{
    position:relative; aspect-ratio:4/3; border-radius:20px; overflow:hidden;
    background:linear-gradient(150deg,var(--teal-800),var(--teal-900));
    display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow);
  }
  .venue-visual svg{width:34%; height:34%; opacity:.9;}

  .venue-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:20px;}
  @media (max-width:700px){ .venue-grid{grid-template-columns:1fr;} }
  .venue-card{
    background:var(--white); border:1px solid var(--line); border-radius:16px; padding:26px;
    display:flex; gap:16px; align-items:flex-start;
  }
  .venue-card-icon{
    width:42px; height:42px; border-radius:11px; background:var(--teal-900);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .venue-card-icon svg{width:21px; height:21px; color:var(--mint);}
  .venue-card h3{font-size:16.5px; font-weight:600; margin-bottom:6px;}
  .venue-card p{font-size:14px;}

  .venue-note{
    margin-top:36px; padding:20px 24px; background:var(--mint-soft); border-radius:14px;
    border:1px dashed var(--teal-700); font-size:14px; color:var(--ink-soft); max-width:72ch;
  }
  .venue-note strong{color:var(--teal-900);}
