﻿/* Combined Tramontana landing. Sections are kept in their original visual style. */

:root{
  --green:#5b9f43;
  --green-dark:#2f7d32;
  --ink:#1f2420;
  --muted:#dfe8dc;
  --line:rgba(255,255,255,.22);
  --shadow:0 18px 46px rgba(0,0,0,.28);
}
*{box-sizing:border-box}
body{margin:0;font-family:Arial,Helvetica,sans-serif;background:#0b1110;color:#fff}
a{text-decoration:none;color:inherit}

.hero{
  position:relative;
  z-index:1;
  min-height:100vh;
  overflow:hidden;
  color:#fff;
  background:
    linear-gradient(90deg, rgba(3,8,7,.88) 0%, rgba(3,8,7,.68) 42%, rgba(3,8,7,.30) 68%, rgba(3,8,7,.62) 100%),
    linear-gradient(180deg, rgba(3,8,7,.18) 0%, rgba(3,8,7,.34) 48%, rgba(3,8,7,.82) 100%),
    url('/wp-content/themes/tramontana/assets/tramontana-camp/images/hero-1920.webp') center center/cover no-repeat;
}
@media (max-width: 1280px){
  .hero{
    background:
      linear-gradient(90deg, rgba(3,8,7,.88) 0%, rgba(3,8,7,.68) 42%, rgba(3,8,7,.30) 68%, rgba(3,8,7,.62) 100%),
      linear-gradient(180deg, rgba(3,8,7,.18) 0%, rgba(3,8,7,.34) 48%, rgba(3,8,7,.82) 100%),
      url('/wp-content/themes/tramontana/assets/tramontana-camp/images/hero-1280.webp') center center/cover no-repeat;
  }
}
@media (max-width: 768px){
  .hero{
    background:
      linear-gradient(90deg, rgba(3,8,7,.88) 0%, rgba(3,8,7,.68) 42%, rgba(3,8,7,.30) 68%, rgba(3,8,7,.62) 100%),
      linear-gradient(180deg, rgba(3,8,7,.18) 0%, rgba(3,8,7,.34) 48%, rgba(3,8,7,.82) 100%),
      url('/wp-content/themes/tramontana/assets/tramontana-camp/images/hero-768.webp') center center/cover no-repeat;
  }
}
.hero:before{
  content:"";
  position:absolute;
  left:44%;
  bottom:6%;
  width:34vw;
  height:28vw;
  max-width:620px;
  max-height:460px;
  min-width:260px;
  min-height:220px;
  pointer-events:none;
  z-index:1;
  background:
    radial-gradient(ellipse at 42% 58%, rgba(255,126,45,.34) 0%, rgba(255,126,45,.18) 24%, rgba(255,126,45,.07) 45%, transparent 70%);
  transform:translate3d(-40px, 100px, 0);
  filter:blur(34px);
  opacity:.52;
  mix-blend-mode:screen;
  animation: campfireGlow 4.8s ease-in-out infinite;
}
@keyframes campfireGlow{
  0%,100%{
    opacity:.46;
    transform:translate3d(-40px, 100px, 0) scale(1);
    filter:blur(34px);
  }
  35%{
    opacity:.62;
    transform:translate3d(calc(-40px - 6px), calc(100px + 4px), 0) scale(1.035);
    filter:blur(30px);
  }
  68%{
    opacity:.52;
    transform:translate3d(calc(-40px + 7px), calc(100px - 5px), 0) scale(.985);
    filter:blur(38px);
  }
}

.hero:after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 52% 42%, rgba(255,255,255,.05), transparent 34%),
    linear-gradient(90deg, rgba(0,0,0,.18), transparent 44%, rgba(0,0,0,.34)),
    linear-gradient(180deg, transparent 58%, rgba(0,0,0,.46));
}
.hero__inner{
  width:1120px;
  max-width:calc(100% - 36px);
  min-height:100vh;
  margin:0 auto;
  position:relative;
  z-index:2;
  padding:96px 0 78px;
  display:flex;
  align-items:center;
}
.hero__content{max-width:830px}
.hero__title{
  margin:0 0 14px;
  font-family:Impact,"Arial Black",sans-serif;
  font-size:clamp(56px,8vw,104px);
  line-height:.9;
  letter-spacing:.025em;
  text-transform:uppercase;
  text-shadow:0 3px 0 rgba(0,0,0,.22),0 16px 34px rgba(0,0,0,.42);
}
.hero__lead{
  margin:0 0 34px;
  font-size:22px;
  line-height:1.35;
  color:#f3f5ef;
  text-shadow:0 4px 18px rgba(0,0,0,.4);
}
.hero__features{
  display:grid;
  grid-template-columns:repeat(4, minmax(120px,1fr));
  gap:24px;
  max-width:820px;
  margin:0 0 34px;
}
.hero-feature{
  display:grid;
  grid-template-columns:42px 1fr;
  align-items:center;
  gap:12px;
  min-height:54px;
  padding:0;
}
.hero-feature__icon{
  width:42px;
  height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(91,159,67,.24);
  border:1px solid rgba(145,197,124,.46);
  color:#d9f2d0;
  box-shadow:0 10px 26px rgba(0,0,0,.22),0 0 0 4px rgba(91,159,67,.06);
  flex:0 0 auto;
}
.hero-feature__icon svg{
  width:23px;
  height:23px;
  stroke-width:2.1;
}
.hero-feature__text{
  font-size:14px;
  font-weight:900;
  line-height:1.16;
  color:#fff;
  text-shadow:0 3px 14px rgba(0,0,0,.42);
}
.hero__actions{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}
.hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:54px;
  padding:0 24px;
  border-radius:8px;
  border:1px solid var(--green);
  background:var(--green);
  color:#fff;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  box-shadow:0 14px 30px rgba(91,159,67,.28);
  transition:.18s ease;
}
.hero-btn:hover{transform:translateY(-2px);background:var(--green-dark);border-color:var(--green-dark);box-shadow:0 0 0 4px rgba(91,159,67,.16),0 0 26px rgba(91,159,67,.46),0 16px 34px rgba(47,125,50,.32)}
.hero-play{
  display:inline-flex;
  align-items:center;
  gap:12px;
  min-height:54px;
  padding:0 18px 0 0;
  color:#fff;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
}
.hero-play__circle{
  width:54px;
  height:54px;
  border-radius:50%;
  border:3px solid #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 24px rgba(0,0,0,.24);
}
.hero-play__circle svg{width:20px;height:20px;margin-left:2px;fill:#fff;stroke:#fff}
.hero-play span small{display:block;margin-top:2px;color:rgba(255,255,255,.72);font-size:10px;letter-spacing:.02em}

@media(max-width:760px){
  .hero:before{
    left:38%;
    bottom:4%;
    width:58vw;
    height:42vw;
    opacity:.45;
    filter:blur(28px);
  }
}

@media (prefers-reduced-motion: reduce){
  .hero:before{
    animation:none;
  }
}

@media(max-width:860px){
  .hero{min-height:100svh}
  .hero__inner{min-height:100svh;padding:92px 0 54px}
  .hero__lead{font-size:18px;margin-bottom:26px}
  .hero__features{grid-template-columns:repeat(2, minmax(0,1fr));gap:18px 22px}
  .hero-feature{min-height:54px}
}
@media(max-width:520px){
  .hero__inner{max-width:calc(100% - 28px);padding:76px 0 44px}
  .hero__title{font-size:48px}
  .hero__features{grid-template-columns:1fr;gap:16px}
  .hero-feature__text{font-size:13px}
  .hero__actions{align-items:stretch;gap:12px}
  .hero-btn,.hero-play{width:100%;justify-content:center;padding:0 18px}
}


  .about-ladoga{
    --green:#5b9f43;
    --green-dark:#2f7d32;
    --ink:#1f2420;
    --muted:#667061;
    --line:#dfe7da;
    --shadow:0 18px 46px rgba(25,41,24,.12);
    max-width:1320px;
    margin:0 auto;
    padding:58px 28px 72px;
    color:var(--ink);
    font-family:Arial,Helvetica,sans-serif;
  }

  .about-ladoga__inner{
    display:grid;
    grid-template-columns:minmax(0,1.02fr) minmax(0,.98fr);
    gap:44px;
    align-items:center;
  }

  .about-ladoga__image{
    border-radius:16px;
    overflow:hidden;
    border:1px solid var(--line);
    box-shadow:var(--shadow);
    background:#fff;
  }

  .about-ladoga__image img{
    display:block;
    width:100%;
    height:310px;
    object-fit:cover;
  }

  .about-ladoga__title{
    margin:0 0 12px;
    font-family:Impact,"Arial Black",sans-serif;
    font-size:46px;
    line-height:.98;
    letter-spacing:.02em;
    text-transform:uppercase;
  }

  .about-ladoga__text{
    margin:0 0 28px;
    color:var(--muted);
    font-size:18px;
    line-height:1.45;
  }

  .about-ladoga__features{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
  }

  .about-ladoga__feature{
    display:grid;
    grid-template-columns:44px 1fr;
    gap:14px;
    align-items:start;
    min-height:104px;
    padding:18px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:16px;
    box-shadow:0 10px 28px rgba(25,41,24,.07);
  }

  .about-ladoga__icon{
    width:44px;
    height:44px;
    border-radius:14px;
    background:#eef5ea;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--green-dark);
  }

  .about-ladoga__icon svg{
    width:25px;
    height:25px;
    fill:none;
    stroke:currentColor;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
  }

  .about-ladoga__feature-title{
    margin:0 0 6px;
    font-weight:900;
    font-size:17px;
    line-height:1.15;
  }

  .about-ladoga__feature-desc{
    color:var(--muted);
    font-size:14px;
    line-height:1.45;
  }

  @media(max-width:900px){
    .about-ladoga__inner{grid-template-columns:1fr;gap:28px}
    .about-ladoga__image img{height:260px}
    .about-ladoga__title{font-size:38px}
  }

  @media(max-width:560px){
    .about-ladoga{padding:42px 14px 52px}
    .about-ladoga__image img{height:220px}
    .about-ladoga__title{font-size:32px}
    .about-ladoga__text{font-size:16px;margin-bottom:20px}
    .about-ladoga__features{grid-template-columns:1fr;gap:12px}
    .about-ladoga__feature{min-height:auto;padding:16px}
  }


    :root{
      --green:#5b9f43;
      --green-dark:#2f7d32;
      --ink:#1f2420;
      --muted:#667061;
      --line:#dfe7da;
      --soft:#f6f8f4;
      --white:#fff;
      --shadow:0 18px 46px rgba(25,41,24,.12);
      --radius:16px;
    }
    *{box-sizing:border-box}
    body{margin:0;background:linear-gradient(180deg,#fbfcfa 0,#f3f6f1 100%);color:var(--ink);font-family:Arial,Helvetica,sans-serif}

    .stories-section{max-width:1320px;margin:0 auto;padding:58px 28px 72px}
    .stories-title{display:flex;align-items:center;justify-content:center;gap:26px;margin:0 0 8px;text-align:center;font-family:Impact,"Arial Black",sans-serif;font-size:54px;line-height:.95;letter-spacing:.02em;text-transform:uppercase}
    .stories-title:before,.stories-title:after{content:"";width:90px;height:2px;background:var(--green)}
    .stories-lead{text-align:center;margin:0 0 32px;color:var(--muted);font-size:20px}

    .stories-shell{background:rgba(255,255,255,.82);border:1px solid var(--line);border-radius:20px;padding:26px 28px;box-shadow:0 12px 34px rgba(30,50,28,.08);overflow:hidden}
    .stories-row{display:flex;gap:26px;align-items:flex-start;overflow-x:auto;overflow-y:hidden;padding:4px 4px 12px;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch}
    .stories-row::-webkit-scrollbar{height:8px}
    .stories-row::-webkit-scrollbar-track{background:#eef3eb;border-radius:999px}
    .stories-row::-webkit-scrollbar-thumb{background:#b5caaa;border-radius:999px}

    .story-item{appearance:none;border:0;background:transparent;padding:0;width:104px;min-width:104px;max-width:104px;flex:0 0 104px;text-align:center;cursor:pointer;scroll-snap-align:start;color:var(--ink)}
    .story-ring{width:96px;height:96px;aspect-ratio:1/1;margin:0 auto 12px;border-radius:50%;padding:4px;background:conic-gradient(from 0deg,#5b9f43,#d8b46e,#2f7d32,#5b9f43);box-shadow:0 10px 24px rgba(47,125,50,.16);transition:transform .22s ease, box-shadow .22s ease}
    .story-item:hover .story-ring{transform:translateY(-4px) scale(1.04);box-shadow:0 16px 34px rgba(47,125,50,.24)}
    .story-circle{width:100%;height:100%;aspect-ratio:1/1;border-radius:50%;overflow:hidden;background:radial-gradient(circle at 35% 25%,#314b35,#15271c 70%);border:4px solid #fff;display:flex;align-items:center;justify-content:center;position:relative}
    .story-circle:after{content:"";position:absolute;inset:0;border-radius:50%;box-shadow:inset 0 0 22px rgba(255,255,255,.12);pointer-events:none}
    .story-emoji{font-size:36px;line-height:1;filter:drop-shadow(0 3px 2px rgba(0,0,0,.35));transform:translateZ(0)}
    .story-name{font-weight:900;font-size:16px;line-height:1.05;margin-bottom:4px}
    .story-desc{font-size:13px;color:var(--muted);line-height:1.2}

    .stories-modal{position:fixed;inset:0;z-index:1000;background:rgba(8,13,10,.86);display:none;align-items:center;justify-content:center;padding:20px}
    .stories-modal.open{display:flex}
    .story-player{position:relative;width:min(420px,92vw);height:min(740px,88vh);background:#0b1110;border-radius:28px;overflow:hidden;box-shadow:0 28px 80px rgba(0,0,0,.45);border:1px solid rgba(255,255,255,.14)}
    .story-progress{position:absolute;top:14px;left:14px;right:14px;display:flex;gap:5px;z-index:4}
    .story-progress span{height:3px;flex:1;border-radius:999px;background:rgba(255,255,255,.28);overflow:hidden}
    .story-progress span:before{content:"";display:block;height:100%;width:0;background:#fff}
    .story-progress span.done:before{width:100%}
    .story-progress span.active:before{animation:storyFill var(--duration,5s) linear forwards}
    @keyframes storyFill{from{width:0}to{width:100%}}

    .story-media{position:absolute;inset:0;background:radial-gradient(circle at 50% 30%,#314b35,#0b1110 72%);display:flex;align-items:center;justify-content:center;color:#fff;text-align:center;padding:34px}
    .story-media video{width:100%;height:100%;object-fit:cover;display:none}
    .story-fallback{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:18px}
    .story-fallback .big{font-size:88px;filter:drop-shadow(0 8px 6px rgba(0,0,0,.45))}
    .story-fallback b{font-family:Impact,"Arial Black",sans-serif;text-transform:uppercase;font-size:42px;line-height:.95;letter-spacing:.02em}
    .story-fallback p{margin:0;color:rgba(255,255,255,.78);font-size:17px}

    .story-top{position:absolute;left:18px;right:18px;top:30px;z-index:5;display:flex;align-items:center;justify-content:space-between;color:#fff}
    .story-caption{position:absolute;left:18px;right:18px;bottom:24px;z-index:5;color:#fff;text-shadow:0 2px 10px rgba(0,0,0,.5)}
    .story-caption b{display:block;font-family:Impact,"Arial Black",sans-serif;font-size:34px;text-transform:uppercase;line-height:.96;margin-bottom:6px}
    .story-caption span{font-size:16px;color:rgba(255,255,255,.82)}
    .story-close,.story-nav{border:0;background:rgba(255,255,255,.14);color:#fff;border-radius:50%;cursor:pointer;backdrop-filter:blur(10px)}
    .story-close{width:38px;height:38px;font-size:28px;line-height:34px}
    .story-nav{position:absolute;top:50%;transform:translateY(-50%);z-index:6;width:44px;height:44px;font-size:30px;line-height:1}
    .story-nav.prev{left:14px}
    .story-nav.next{right:14px}
    .story-tap{position:absolute;inset:0;z-index:3;display:grid;grid-template-columns:1fr 1fr}

    @media(max-width:760px){
      .stories-section{padding:42px 14px 52px}
      .stories-title{font-size:36px;gap:14px}
      .stories-title:before,.stories-title:after{width:42px}
      .stories-lead{font-size:16px;margin-bottom:24px}
      .stories-shell{padding:18px 14px;border-radius:18px}
      .stories-row{gap:18px}
      .story-item{width:88px;min-width:88px;max-width:88px;flex-basis:88px}
      .story-ring{width:82px;height:82px;margin-bottom:10px}
      .story-emoji{font-size:31px}
      .story-name{font-size:14px}
      .story-desc{font-size:12px}
      .story-player{width:94vw;height:84vh;border-radius:22px}
      .story-nav{display:none}
    }
  

    :root{
      --green:#5b9f43;
      --green-dark:#2f7d32;
      --ink:#1f2420;
      --muted:#667061;
      --line:#dfe7da;
      --soft:#f6f8f4;
      --white:#fff;
      --shadow:0 18px 46px rgba(25,41,24,.12);
      --radius:16px;
    }
    *{box-sizing:border-box}
    body{margin:0;background:linear-gradient(180deg,#fbfcfa 0,#f3f6f1 100%);color:var(--ink);font-family:Arial,Helvetica,sans-serif}

    #activities.activities-section{max-width:1320px;margin:0 auto;padding:58px 28px 72px;overflow:hidden}
    #activities .title{display:flex;align-items:center;justify-content:center;gap:26px;margin:0 0 8px;text-align:center;font-family:Impact,"Arial Black",sans-serif;font-size:54px;line-height:.95;letter-spacing:.02em;text-transform:uppercase}
    #activities .title:before,#activities .title:after{content:"";width:90px;height:2px;background:var(--green)}
    #activities .lead{text-align:center;margin:0 0 32px;color:var(--muted);font-size:20px}

    #activities .slider-shell{position:relative;background:#fff;border:1px solid var(--line);border-radius:20px;padding:24px 28px 34px;box-shadow:0 12px 34px rgba(30,50,28,.08)}
    #activities .viewport{overflow:hidden;background:#fff}
    #activities .track{display:flex;gap:20px;transition:transform .38s ease;will-change:transform;background:#fff}
    #activities .activity-card{flex:0 0 calc((100% - 40px)/3);background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:none;overflow:hidden;min-height:390px;transition:transform .18s ease}
    #activities .activity-card:hover{transform:translateY(-3px);box-shadow:none}
    #activities .photo{height:190px;background:linear-gradient(135deg,#253728,#6b7e58 48%,#d5a24b);position:relative;overflow:hidden}
    #activities .photo:after{content:"";position:absolute;inset:0;background:radial-gradient(circle at 25% 30%,rgba(255,200,96,.45),transparent 26%),linear-gradient(180deg,transparent,rgba(0,0,0,.28))}
    #activities .photo.water{background:linear-gradient(135deg,#193448,#4d8fa8 45%,#d5c07a)}
    #activities .photo.forest{background:linear-gradient(135deg,#1f3324,#6e8a45 48%,#dbc17b)}
    #activities .photo.fire{background:linear-gradient(135deg,#2b2118,#8b4a24 44%,#e0a240)}
    #activities .photo.banya{background:linear-gradient(135deg,#30261b,#8a6440 44%,#d8b46e)}
    #activities .photo.yoga{background:linear-gradient(135deg,#273633,#7e8c66 45%,#d3c09a)}
    #activities .photo.wake{background:linear-gradient(135deg,#102b38,#31789d 48%,#e5d7a5)}
    #activities .photo:before{content:"";position:absolute;left:26px;right:26px;bottom:24px;height:44px;border-radius:50%;background:rgba(255,255,255,.16);filter:blur(14px);z-index:1}
    #activities .card-body{padding:22px 22px 24px}
    #activities .activity-card h3{font-size:24px;margin:0 0 10px;font-weight:900;line-height:1.05}
    #activities .activity-card p{margin:0;color:var(--muted);font-size:15px;line-height:1.45}

    #activities .slider-controls{display:flex;justify-content:center;gap:12px;margin-top:22px}
    #activities .nav{position:static;transform:none;width:42px;height:42px;border-radius:50%;border:1px solid var(--line);background:#fff;color:var(--green-dark);font-size:28px;line-height:1;cursor:pointer;box-shadow:0 10px 22px rgba(91,159,67,.16);z-index:2;transition:.18s ease}
    #activities .nav:hover{background:var(--green);border-color:var(--green);color:#fff}
    #activities .dots{display:flex;justify-content:center;gap:9px;margin-top:24px}
    #activities .dot{width:10px;height:10px;border-radius:50%;border:0;background:#cbd8c5;cursor:pointer;padding:0;transition:.18s ease}
    #activities .dot.active{width:28px;border-radius:999px;background:var(--green)}

    @media(max-width:900px){
      #activities.activities-section{padding:44px 14px 56px}
      #activities .title{font-size:42px;gap:14px}
      #activities .title:before,#activities .title:after{width:50px}
      #activities .lead{font-size:16px}
      #activities .slider-shell{padding:18px 14px 28px}
      #activities .activity-card{flex-basis:100%;min-height:360px}
      #activities .photo{height:180px}
    }
  

    :root{
      --green:#5b9f43;
      --green-dark:#2f7d32;
      --ink:#1f2420;
      --muted:#667061;
      --line:#dfe7da;
      --soft:#f6f8f4;
      --white:#fff;
      --shadow:0 18px 46px rgba(25,41,24,.12);
      --radius:16px;
    }
    *{box-sizing:border-box}
    body{margin:0;background:linear-gradient(180deg,#fbfcfa 0,#f3f6f1 100%);color:var(--ink);font-family:Arial,Helvetica,sans-serif}
    .section{max-width:1320px;margin:0 auto;padding:58px 28px 72px}
    .title{display:flex;align-items:center;justify-content:center;gap:26px;margin:0 0 8px;text-align:center;font-family:Impact,"Arial Black",sans-serif;font-size:54px;line-height:.95;letter-spacing:.02em;text-transform:uppercase}
    .title:before,.title:after{content:"";width:90px;height:2px;background:var(--green)}
    .lead{text-align:center;margin:0 0 32px;color:var(--muted);font-size:20px}

    .ready{background:rgba(255,255,255,.82);border:1px solid var(--line);border-radius:20px;padding:24px 28px;margin-bottom:26px;box-shadow:0 12px 34px rgba(30,50,28,.08)}
    .ready-head{font-weight:900;text-transform:uppercase;color:var(--green-dark);font-size:18px;margin-bottom:16px;letter-spacing:.02em}
    .tariffs{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
    .tariff{appearance:none;text-align:left;background:#fff;border:2px solid var(--line);border-radius:14px;padding:18px 18px 16px;cursor:pointer;min-height:116px;box-shadow:0 8px 20px rgba(0,0,0,.04);transition:.18s ease}
    .tariff:hover{transform:translateY(-2px);border-color:#9fca95;box-shadow:0 14px 30px rgba(47,125,50,.12)}
    .tariff.active{border-color:var(--green-dark);box-shadow:0 0 0 3px rgba(91,159,67,.13)}
    .tariff b{display:block;font-size:20px;margin-bottom:20px;line-height:1.15}
    .tariff span{font-weight:900;color:var(--green-dark);font-size:18px}

    .layout{display:grid;grid-template-columns:1fr 380px;gap:24px;align-items:start}
    .cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
    .card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden;min-height:560px}
    .photo{height:150px;background:linear-gradient(135deg,#253728,#6b7e58 48%,#d5a24b);position:relative}
    .photo:after{content:"";position:absolute;inset:0;background:radial-gradient(circle at 25% 30%,rgba(255,200,96,.45),transparent 26%),linear-gradient(180deg,transparent,rgba(0,0,0,.25))}
    .photo.gear{background:linear-gradient(135deg,#273633,#7e8c66 45%,#d3c09a)}
    .photo.comfort{background:linear-gradient(135deg,#30261b,#8a6440 44%,#d8b46e)}
    .card-body{padding:22px 22px 24px}
    .card h3{font-size:24px;margin:0 0 10px;font-weight:900}
    .card p{margin:0 0 20px;color:var(--muted);font-size:15px;line-height:1.45;min-height:64px}
    .item{display:grid;grid-template-columns:24px 1fr auto;gap:12px;align-items:start;border-top:1px solid var(--line);padding:14px 0}
    .check{width:18px;height:18px;margin-top:3px;accent-color:var(--green-dark);cursor:pointer}
    .name{font-weight:900;font-size:16px;line-height:1.15}
    .meta{display:block;font-size:12px;color:var(--muted);font-weight:400;margin-top:3px}
    .price{font-weight:900;color:#176d1f;white-space:nowrap;font-size:16px}
    .qty{grid-column:2/4;display:flex;align-items:center;gap:8px;margin-top:8px;color:var(--muted);font-size:12px}
    .qty button{width:26px;height:26px;border-radius:50%;border:1px solid var(--line);background:#fff;color:var(--green-dark);font-weight:900;line-height:1;cursor:pointer}
    .qty input{width:48px;height:30px;border:1px solid var(--line);border-radius:7px;text-align:center;font-weight:900;color:var(--ink);background:#fff}
    .item:not(.active) .qty{display:none}

    .totalBox{position:sticky;top:20px;background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);padding:28px}
    .totalBox h3{font-family:Impact,"Arial Black",sans-serif;font-size:34px;line-height:.95;text-transform:uppercase;margin:0 0 10px}
    .totalBox p{margin:0 0 22px;color:var(--muted);font-size:14px;line-height:1.4}
    .days{display:flex;align-items:center;gap:10px;margin-bottom:28px}
    .round{width:28px;height:28px;border-radius:50%;border:1px solid var(--line);background:#fff;color:var(--green-dark);font-size:18px;line-height:1;cursor:pointer}
    .days input{width:70px;height:46px;border:1px solid var(--line);border-radius:8px;text-align:center;font-size:20px;font-weight:900}
    .days b{font-size:16px}
    .total{font-size:56px;font-weight:900;color:var(--green-dark);letter-spacing:-.04em;margin-bottom:18px}
    .summary{border-top:1px solid var(--line);padding-top:16px;min-height:142px}
    .row{display:flex;justify-content:space-between;gap:18px;color:var(--muted);font-size:14px;padding:7px 0}
    .row b{color:var(--ink);white-space:nowrap}
    .actions{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:26px}
    .btn{border:1px solid var(--line);border-radius:8px;height:48px;background:#fff;font-weight:900;text-transform:uppercase;cursor:pointer}
    .btn.primary{background:var(--green);border-color:var(--green);color:#fff;box-shadow:0 10px 22px rgba(91,159,67,.22);transition:.18s ease}
    .btn.primary:hover{transform:translateY(-1px);box-shadow:0 0 0 4px rgba(91,159,67,.12),0 0 22px rgba(91,159,67,.36),0 12px 26px rgba(91,159,67,.24)}
    .note{text-align:center;color:var(--muted);font-size:13px;margin-top:26px}

    @media(max-width:1100px){.layout{grid-template-columns:1fr}.totalBox{position:static}.cards{grid-template-columns:1fr}.card{min-height:auto}.tariffs{grid-template-columns:1fr}.title{font-size:42px}.title:before,.title:after{width:50px}}
    @media(max-width:560px){.section{padding:38px 14px}.title{font-size:34px;gap:12px}.lead{font-size:16px}.ready{padding:18px}.total{font-size:44px}.actions{grid-template-columns:1fr}}


@media(max-width:760px){
  #placement .ready,
  #placement .tariffs{
    display:none;
  }

  #placement .section,
  #placement.section{
    padding-bottom:140px;
  }

  #placement .layout{
    display:block;
  }

  #placement .cards{
    display:block;
    gap:0;
  }

  #placement .card{
    background:transparent;
    border:0;
    box-shadow:none;
    border-radius:0;
    min-height:auto;
    margin:0;
    overflow:visible;
  }

  #placement .card + .card{
    margin-top:2px;
  }

  #placement .photo,
  #placement .card h3,
  #placement .card p{
    display:none;
  }

  #placement .card-body{
    padding:0;
  }

  #placement .item{
    grid-template-columns:28px 1fr auto;
    align-items:center;
    padding:14px 0;
  }

  #placement .item .name{
    font-size:15px;
    line-height:1.2;
  }

  #placement .item .meta{
    font-size:12px;
  }

  #placement .item .price{
    font-size:15px;
  }

  #placement .item .qty{
    grid-column:2/4;
    margin-top:10px;
    padding-bottom:4px;
  }

  #placement .totalBox{
    position:static;
    bottom:auto;
    z-index:auto;
    margin:20px 0 0;
    border-radius:18px;
    padding:20px;
    box-shadow:0 12px 34px rgba(25,41,24,.12);
  }

  #placement .totalBox h3{
    font-size:28px;
    margin-bottom:8px;
  }

  #placement .totalBox p{
    margin-bottom:12px;
  }

  #placement .days{
    margin-bottom:14px;
  }

  #placement .total{
    font-size:42px;
    margin-bottom:12px;
  }

  #placement .summary{
    min-height:0;
    max-height:140px;
    overflow:auto;
  }

  #placement .actions{
    grid-template-columns:1fr;
    margin-top:14px;
  }
}
  

    :root{
      --green:#5b9f43;
      --green-dark:#2f7d32;
      --ink:#1f2420;
      --muted:#667061;
      --line:#dfe7da;
      --soft:#eef5f1;
      --white:#fff;
      --shadow:0 18px 46px rgba(25,41,24,.12);
      --radius:16px;
    }
    *{box-sizing:border-box}
    body{margin:0;background:linear-gradient(180deg,#fbfcfa 0,#f3f6f1 100%);color:var(--ink);font-family:Arial,Helvetica,sans-serif}
    .program{max-width:1180px;margin:0 auto;padding:58px 28px 72px}
    .program-title{display:flex;align-items:center;justify-content:center;gap:26px;margin:0 0 8px;text-align:center;font-family:Impact,"Arial Black",sans-serif;font-size:54px;line-height:.95;letter-spacing:.02em;text-transform:uppercase}
    .program-title:before,.program-title:after{content:"";width:90px;height:2px;background:var(--green)}
    .program-lead{text-align:center;margin:0 0 34px;color:var(--muted);font-size:20px}
    .days-list{display:grid;gap:18px;position:relative}
    .day-row{display:grid;grid-template-columns:96px 1fr;gap:22px;align-items:start;position:relative}
    .day-row:after{content:"";position:absolute;left:47px;top:72px;bottom:-28px;width:1px;background:#a8cec1;z-index:0}
    .day-row:last-child:after{display:none}
    .day-badge{position:relative;z-index:1;width:96px;height:96px;border-radius:26px;border:1px solid #a8cec1;background:#f6fbf8;display:flex;flex-direction:column;align-items:center;justify-content:center;color:var(--ink);box-shadow:0 10px 24px rgba(35,70,55,.06)}
    .day-row.open .day-badge{background:#d9ebe6;border-color:#80baaa}
    .day-number{font-size:34px;font-weight:900;line-height:1}
    .day-label{font-size:17px;color:var(--muted);margin-top:5px}
    .day-card{background:#fff;border:1px solid rgba(223,231,218,.95);border-radius:24px;box-shadow:0 12px 34px rgba(30,50,28,.07);overflow:hidden}
    .day-toggle{width:100%;appearance:none;border:0;background:#fff;text-align:left;cursor:pointer;display:grid;grid-template-columns:1fr auto;gap:18px;align-items:center;padding:28px 34px}
    .day-toggle h3{margin:0;font-size:27px;line-height:1.15;font-weight:900}
    .preview{display:block;margin-top:12px;color:var(--muted);font-size:15px;font-weight:400;line-height:1.45}
    .plus{width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#075846;font-size:34px;line-height:1;transition:.2s ease}
    .day-row.open .plus{transform:rotate(45deg)}
    .day-content{max-height:0;overflow:hidden;transition:max-height .42s ease;background:#fff}
    .day-inner{padding:0 34px 34px}
    .scene{border-top:1px solid var(--line);padding:22px 0 0;margin-top:0}
    .scene + .scene{margin-top:22px}
    .scene h4{margin:0 0 10px;font-size:19px;line-height:1.2;color:#112019;font-weight:900}
    .scene p{margin:0;color:#3f4b42;font-size:16px;line-height:1.7}
    .important{margin-top:24px;border:1px solid #bdd8b6;background:linear-gradient(180deg,#f6fbf4,#eef7ec);border-radius:18px;padding:20px 22px}
    .important h4{margin:0 0 10px;font-size:18px;color:var(--green-dark);font-weight:900;text-transform:uppercase}
    .important ul{margin:0;padding-left:20px;color:#3f4b42;line-height:1.65}
    .important li{margin:3px 0}
    @media(max-width:760px){
      .program{padding:42px 16px 58px}
      .program-title{font-size:38px;gap:14px}.program-title:before,.program-title:after{width:44px}
      .program-lead{font-size:16px;margin-bottom:24px}
      .day-row{grid-template-columns:1fr;gap:10px}
      .day-row:after{display:none}
      .day-badge{width:auto;height:auto;min-height:54px;border-radius:16px;flex-direction:row;gap:8px;justify-content:flex-start;padding:12px 16px}
      .day-number{font-size:24px}.day-label{font-size:15px;margin-top:0}
      .day-toggle{padding:22px 20px}.day-toggle h3{font-size:22px}.preview{font-size:14px}
      .day-inner{padding:0 20px 26px}.scene h4{font-size:18px}.scene p{font-size:15px;line-height:1.65}
    }
  

  :root{
    --green:#5b9f43;
    --green-dark:#2f7d32;
    --ink:#1f2420;
    --muted:#667061;
    --line:#dfe7da;
    --shadow:0 18px 46px rgba(25,41,24,.12);
    --radius:16px;
  }

  .included-section{
    max-width:1320px;
    margin:0 auto;
    padding:58px 28px 72px;
    color:var(--ink);
    font-family:Arial,Helvetica,sans-serif;
  }

  .included-title{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:26px;
    margin:0 0 32px;
    text-align:center;
    font-family:Impact,"Arial Black",sans-serif;
    font-size:54px;
    line-height:.95;
    letter-spacing:.02em;
    text-transform:uppercase;
  }

  .included-title:before,
  .included-title:after{
    content:"";
    width:90px;
    height:2px;
    background:var(--green);
  }

  .included-grid{
    display:grid;
    grid-template-columns:repeat(10,1fr);
    gap:14px;
  }

  .included-item{
    min-height:132px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--radius);
    box-shadow:0 12px 34px rgba(30,50,28,.08);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:18px 10px;
    text-align:center;
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  }

  .included-item:hover{
    transform:translateY(-3px);
    border-color:#9fca95;
    box-shadow:0 18px 42px rgba(47,125,50,.12);
  }

  .included-icon{
    width:42px;
    height:42px;
    color:var(--green-dark);
  }

  .included-icon svg{
    width:100%;
    height:100%;
    display:block;
    fill:none;
    stroke:currentColor;
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
  }

  .included-text{
    font-size:14px;
    line-height:1.15;
    font-weight:900;
  }

  @media(max-width:1100px){
    .included-grid{grid-template-columns:repeat(5,1fr)}
    .included-title{font-size:42px}
    .included-title:before,.included-title:after{width:50px}
  }

  @media(max-width:640px){
    .included-section{padding:38px 14px 52px}
    .included-title{font-size:34px;gap:12px;margin-bottom:24px}
    .included-grid{grid-template-columns:repeat(2,1fr);gap:12px}
    .included-item{min-height:118px;padding:16px 8px}
    .included-icon{width:36px;height:36px}
    .included-text{font-size:13px}
  }



/* Header / footer */
.site-header{
  position:absolute;
  top:0;
  left:0;
  right:0;
  z-index:50;
  color:#fff;
  padding:18px 0;
  background:linear-gradient(180deg,rgba(0,0,0,.34),rgba(0,0,0,0));
}
.site-header__inner,
.site-footer__inner{
  width:1120px;
  max-width:calc(100% - 36px);
  margin:0 auto;
}
.site-header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.site-header-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:16px;
  min-width:0;
}
.site-logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  letter-spacing:.03em;
  line-height:1;
  text-transform:uppercase;
  text-shadow:0 3px 16px rgba(0,0,0,.35);
}
.site-logo img{
  display:block;
  width:auto;
  height:44px;
  max-width:min(320px, 28vw);
  filter:brightness(0) invert(1);
}
.site-logo svg{width:42px;height:32px;fill:none;stroke:currentColor;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;flex:0 0 auto}
.site-logo small{display:block;margin-top:3px;font-size:10px;font-weight:800;letter-spacing:.05em;color:rgba(255,255,255,.78)}
.site-nav{display:flex;align-items:center;gap:22px;font-size:12px;font-weight:900;text-transform:uppercase;color:rgba(255,255,255,.86)}
.site-nav a{transition:.18s ease}.site-nav a:hover{color:#fff}
.site-socials{display:flex;align-items:center;gap:9px}
.header-phone{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.24);
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
  font-size:15px;
  font-weight:800;
  color:#ffffff;
  text-decoration:none;
  opacity:.9;
  transition:opacity .2s ease;
  white-space:nowrap;
}
.header-phone:hover{
  opacity:1;
  transform:translateY(-2px);
  background:var(--green-dark);
  border-color:var(--green-dark);
  box-shadow:0 0 0 4px rgba(91,159,67,.14),0 0 24px rgba(91,159,67,.42),0 14px 30px rgba(47,125,50,.32);
}
.site-social{
  width:38px;height:38px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(255,255,255,.24);
  background:rgba(255,255,255,.08);
  color:#fff;
  backdrop-filter:blur(10px);
  transition:.18s ease;
}
.site-social:hover{transform:translateY(-2px);background:rgba(91,159,67,.86);border-color:rgba(91,159,67,.86)}
.site-social svg{width:18px;height:18px;fill:currentColor}
.site-header__cta{
  display:inline-flex;align-items:center;justify-content:center;
  height:42px;padding:0 16px;border-radius:8px;
  background:#5b9f43;color:#fff;font-size:12px;font-weight:900;text-transform:uppercase;
  box-shadow:0 12px 26px rgba(91,159,67,.26);
}
.site-footer{
  background:#0b1110;
  color:#fff;
  padding:38px 0 34px;
  border-top:1px solid rgba(255,255,255,.08);
}
.site-footer__inner{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:28px;
  align-items:start;
}
.site-footer p{margin:12px 0 0;color:rgba(255,255,255,.66);font-size:14px;line-height:1.45;max-width:390px}
.site-footer h4{margin:0 0 14px;font-size:13px;letter-spacing:.05em;text-transform:uppercase;color:rgba(255,255,255,.62)}
.site-footer__links,.site-footer__socials{display:grid;gap:10px;font-size:14px;font-weight:800;color:rgba(255,255,255,.82)}
.site-footer__links a:hover,.site-footer__socials a:hover{color:#fff}
.footer-contact{margin-top:16px}
.footer-contact a{
  font-size:16px;
  font-weight:600;
  color:rgba(255,255,255,.92);
  text-decoration:none;
}
.footer-contact a:hover{text-decoration:underline}
.site-footer__bottom{width:1120px;max-width:calc(100% - 36px);margin:28px auto 0;padding-top:18px;border-top:1px solid rgba(255,255,255,.08);color:rgba(255,255,255,.46);font-size:12px}
@media(max-width:920px){
  .site-nav{display:none}
  .site-footer__inner{grid-template-columns:1fr}
}
@media(max-width:768px){
  .site-header{padding:12px 0}
  .site-header__inner{
    max-width:calc(100% - 32px);
    gap:12px;
  }
  .site-header-actions{gap:10px}
  .site-socials{display:none}
  .site-header__cta{display:none}
  .header-phone{font-size:13px}
}
@media(max-width:520px){
  .site-logo span{font-size:14px}.site-logo small{font-size:9px}
  .site-logo img{height:34px;max-width:210px}
  .site-social{width:34px;height:34px}
  .header-phone{font-size:12px}
}



/* === FINAL MANUAL TWEAKS: spacing, header hover, stronger section backgrounds === */
.hero__features{margin-bottom:0;}
.hero__actions{margin-top:56px;}
.site-header__cta{transition:.18s ease;}
.site-header__cta:hover{transform:translateY(-2px);background:var(--green-dark);box-shadow:0 0 0 4px rgba(91,159,67,.14),0 0 24px rgba(91,159,67,.42),0 14px 30px rgba(47,125,50,.32);}
.about-ladoga{background:#fff;box-shadow:0 0 0 100vmax #fff;clip-path:inset(0 -100vmax);}
.stories-section{background:#eef5f1;box-shadow:0 0 0 100vmax #eef5f1;clip-path:inset(0 -100vmax);}
#activities.activities-section{background:#fff;box-shadow:0 0 0 100vmax #fff;clip-path:inset(0 -100vmax);}
#activities .slider-shell{background:#f3f7f1;}
#activities .viewport,#activities .track,#activities .activity-card{background:#fff;}
#placement.section{background:#fff;box-shadow:0 0 0 100vmax #fff;clip-path:inset(0 -100vmax);}
#camp-program.program{background:#eef5f1;box-shadow:0 0 0 100vmax #eef5f1;clip-path:inset(0 -100vmax);}
#included.included-section{background:linear-gradient(180deg,#f6f9f4 0%,#fff 100%);box-shadow:0 0 0 100vmax #fff;clip-path:inset(0 -100vmax);}
.site-footer{box-shadow:0 0 0 100vmax #0b1110;clip-path:inset(0 -100vmax);}
@media(max-width:520px){.hero__actions{margin-top:34px;}}

/* edge seam fix for section side stripes */
.about-ladoga,
.stories-section,
#activities.activities-section,
#placement.section,
#camp-program.program,
#included.included-section{
  position: relative;
  isolation: isolate;
  box-shadow: none !important;
  clip-path: none !important;
}

.about-ladoga::before,
.stories-section::before,
#activities.activities-section::before,
#placement.section::before,
#camp-program.program::before,
#included.included-section::before{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: -100vw;
  right: -100vw;
  background: inherit;
}

/* Р¦РІРµС‚РѕРІРѕР№ СЂРёС‚Рј С„РёРЅР°Р»СЊРЅРѕР№ СЃС‚СЂР°РЅРёС†С‹: С‚РѕР»СЊРєРѕ С„РѕРЅРѕРІС‹Рµ СЃС†РµРЅС‹, Р±РµР· РёР·РјРµРЅРµРЅРёСЏ СЃС‚СЂСѓРєС‚СѓСЂС‹ Рё JS */
  html, body{
    background:#fff;
  }

  /* РћР±С‰РёР№ РјСЏРіРєРёР№ РІРѕР·РґСѓС… РјРµР¶РґСѓ РєСЂСѓРїРЅС‹РјРё СЃС†РµРЅР°РјРё */
  .about-ladoga,
  .stories-section,
  #activities.activities-section,
  #placement.section,
  #camp-program.program,
  .included-section{
    position:relative;
    isolation:isolate;
  }

  /* 2. Рћ РєРµРјРїРµ вЂ” С‚РµРїР»С‹Р№ СЃРІРµС‚Р»С‹Р№ РїРµСЂРµС…РѕРґ РїРѕСЃР»Рµ С‚РµРјРЅРѕРіРѕ hero */
  .about-ladoga{
    background:
      radial-gradient(circle at 8% 18%, rgba(216,180,110,.16), transparent 34%),
      linear-gradient(180deg,#fffaf0 0%,#ffffff 74%);
    box-shadow:0 0 0 100vmax #fffaf0;
    clip-path:inset(0 -100vmax);
  }

  /* 3. Stories вЂ” Р·Р°РјРµС‚РЅР°СЏ Р·РµР»РµРЅР°СЏ СЃС†РµРЅР° */
  .stories-section{
    background:
      radial-gradient(circle at 14% 20%, rgba(91,159,67,.22), transparent 34%),
      radial-gradient(circle at 84% 72%, rgba(216,180,110,.22), transparent 36%),
      linear-gradient(180deg,#dfeedd 0%,#edf6e9 100%);
    box-shadow:0 0 0 100vmax #e5f1e1;
    clip-path:inset(0 -100vmax);
  }
  .stories-shell{
    background:rgba(255,255,255,.76) !important;
    backdrop-filter:blur(10px);
  }

  /* 4. Р§РµРј Р·Р°РЅСЏС‚СЊСЃСЏ вЂ” С‚РµРїР»Р°СЏ РїРµСЃРѕС‡РЅР°СЏ СЃС†РµРЅР° */
  #activities.activities-section{
    background:#dddddc;
    box-shadow:0 0 0 100vmax #dddddc;
    clip-path:inset(0 -100vmax);
  }
  #activities .slider-shell{
    background:rgba(255,255,255,.72) !important;
    backdrop-filter:blur(10px);
  }
  #activities .viewport,
  #activities .track,
  #activities .activity-card{
    background:#fff !important;
  }

  /* 5. РљР°Р»СЊРєСѓР»СЏС‚РѕСЂ вЂ” РѕСЃС‚Р°РІРёС‚СЊ С‡РёСЃС‚С‹Рј Рё РёРЅСЃС‚СЂСѓРјРµРЅС‚Р°Р»СЊРЅС‹Рј */
  #placement.section{
    background:
      radial-gradient(circle at 90% 8%, rgba(91,159,67,.08), transparent 34%),
      #ffffff;
    box-shadow:0 0 0 100vmax #ffffff;
    clip-path:inset(0 -100vmax);
  }

  /* 6. РџСЂРѕРіСЂР°РјРјР° вЂ” РѕР»РёРІРєРѕРІР°СЏ СЃС†РµРЅР°, РєР°СЂС‚РѕС‡РєРё РѕСЃС‚Р°СЋС‚СЃСЏ Р±РµР»С‹РјРё */
  #camp-program.program{
    background:
      radial-gradient(circle at 12% 22%, rgba(255,255,255,.34), transparent 34%),
      radial-gradient(circle at 86% 18%, rgba(216,180,110,.22), transparent 30%),
      linear-gradient(180deg,#d5e5cb 0%,#e4efdc 100%);
    box-shadow:0 0 0 100vmax #dce9d2;
    clip-path:inset(0 -100vmax);
  }
  #camp-program .day-card,
  #camp-program .day-toggle,
  #camp-program .day-content{
    background:#fff !important;
  }

  /* 7. Р§С‚Рѕ РІС…РѕРґРёС‚ вЂ” СЃРІРµР¶РёР№ Р·РµР»РµРЅС‹Р№ С„РёРЅР°Р»СЊРЅС‹Р№ Р±Р»РѕРє */
  .included-section{
    background:
      radial-gradient(circle at 15% 25%, rgba(91,159,67,.16), transparent 34%),
      linear-gradient(180deg,#eff8ea 0%,#ffffff 100%);
    box-shadow:0 0 0 100vmax #eff8ea;
    clip-path:inset(0 -100vmax);
  }

  /* Р‘РѕР»СЊС€Рµ РІРѕР·РґСѓС…Р° РјРµР¶РґСѓ Р·РѕРЅР°РјРё, РЅРѕ Р±РµР· РёР·РјРµРЅРµРЅРёСЏ РІРЅСѓС‚СЂРµРЅРЅРµР№ Р»РѕРіРёРєРё */
  .about-ladoga,
  .stories-section,
  #activities.activities-section,
  #placement.section,
  #camp-program.program,
  .included-section{
    padding-top:82px !important;
    padding-bottom:86px !important;
  }

  @media(max-width:760px){
    .about-ladoga,
    .stories-section,
    #activities.activities-section,
    #placement.section,
    #camp-program.program,
    .included-section{
      padding-top:54px !important;
      padding-bottom:60px !important;
    }
  }
/* ===== FINAL COLOR + DECOR (PRODUCTION) ===== */

/* STORIES */
.stories-section{
  background:
    radial-gradient(circle at 12% 18%, rgba(91,159,67,.28), transparent 38%),
    radial-gradient(circle at 88% 70%, rgba(216,180,110,.25), transparent 40%),
    linear-gradient(180deg,#dfeedd 0%,#eef6ea 100%);
}

/* ACTIVITIES */
#activities.activities-section{
  background:#dddddc;
  box-shadow:0 0 0 100vmax #dddddc;
  clip-path:inset(0 -100vmax);
}

#activities.activities-section:before{
  content:none;
}

/* seam fix: remove edge artifacts from extended section paints */
#activities.activities-section{
  background:#dddddc !important;
  box-shadow:none !important;
  clip-path:none !important;
}
#activities.activities-section::before,
#activities.activities-section::after{
  content:none !important;
  background:none !important;
  box-shadow:none !important;
}

/* PROGRAM */
#camp-program.program{
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.4), transparent 40%),
    linear-gradient(180deg,#cfe0c3 0%,#e2eed8 100%);
}

#camp-program.program:after{
  content:"";
  position:absolute;
  inset:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 800 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 200 Q200 100 400 200 T800 200' stroke='%2385b79a' fill='none' stroke-width='1' opacity='0.25'/%3E%3Cpath d='M0 260 Q200 160 400 260 T800 260' stroke='%2385b79a' fill='none' stroke-width='1' opacity='0.2'/%3E%3C/svg%3E");
  background-size:800px 400px;
  opacity:.35;
  pointer-events:none;
}

/* INCLUDED */
.included-section{
  background:
    radial-gradient(circle at 15% 30%, rgba(91,159,67,.2), transparent 40%),
    linear-gradient(180deg,#ecf7e6 0%,#ffffff 100%);
}

/* CALCULATOR subtle texture */
#placement.section:before{
  content:"";
  position:absolute;
  inset:0;
  background-image:radial-gradient(rgba(0,0,0,.05) 1px, transparent 1px);
  background-size:20px 20px;
  opacity:.3;
  pointer-events:none;
}


.story-thumb{width:100%;height:100%;object-fit:cover;display:block}



/* Stories simplification: keep title only in circles, hide modal text */
.story-desc{display:none !important;}
.story-caption{display:none !important;}


/* Placement subtitle variants */
.subtitle--mobile{
  display:none;
}

@media(max-width:760px){
  .subtitle--desktop{
    display:none;
  }
  .subtitle--mobile{
    display:block;
  }
}


/* Camp postcards gallery */
.camp-postcards-gallery {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding: 100px 0 56px;
  background: none !important;
  background-image: none !important;
  overflow: visible;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  filter: none !important;
  backdrop-filter: none !important;
}

.camp-postcards-gallery::before,
.camp-postcards-gallery::after {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
}

.camp-gallery-head {
  display: none;
}

.camp-gallery-kicker {
  display: none;
}

.camp-gallery-head h2 {
  display: none;
}

.camp-postcards-track {
  position: relative;
  z-index: 30;
  width: 100%;
  max-width: none;
  min-height: 340px;
  margin: -190px 0 0 !important;
  top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 36px 0 44px;
  background: transparent;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  transform: none !important;
  margin-top: -190px !important;
  margin-bottom: 0 !important;
  background: none !important;
  background-image: none !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  filter: none !important;
  backdrop-filter: none !important;
}

.camp-postcards-track::before,
.camp-postcards-track::after {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
}

.camp-postcards-track.is-centered {
  justify-content: center;
}

.camp-postcards-track::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.camp-postcard {
  position: relative;
  z-index: 31;
  flex: 0 0 clamp(190px, 19vw, 270px);
  height: clamp(220px, 23vw, 310px);
  margin: 0 -12px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(20, 16, 12, 0.12);
  --card-rotate: 0deg;
  --card-y: 0px;
  --hover-lift: 0px;
  --hover-scale: 1;
  --hover-rotate: 0deg;
  transform: translateY(calc(var(--card-y) + var(--hover-lift))) rotate(calc(var(--card-rotate) + var(--hover-rotate))) scale(var(--hover-scale));
  transform-origin: center bottom;
  transition:
    transform 520ms cubic-bezier(.16, 1, .3, 1),
    box-shadow 520ms cubic-bezier(.16, 1, .3, 1),
    filter 520ms cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
  overflow: hidden;
}

.camp-postcard::before {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
}

.camp-postcard img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  transition:
    transform 700ms cubic-bezier(.16, 1, .3, 1),
    filter 700ms cubic-bezier(.16, 1, .3, 1);
}

.camp-postcard img:not([src]),
.camp-postcard img[src=""] {
  opacity: 0;
}

.camp-postcard:hover {
  z-index: 8;
  --hover-lift: -10px;
  --hover-scale: 1.025;
  --hover-rotate: 0deg;
  box-shadow: 0 18px 34px rgba(20, 16, 12, 0.16);
}

.camp-postcard:hover img {
  transform: none;
  filter: saturate(1.04) contrast(1.02);
}

.camp-postcard--one,
.camp-postcard--1 {
  --card-rotate: -5deg;
  --card-y: 12px;
}

.camp-postcard--two,
.camp-postcard--2 {
  --card-rotate: -2deg;
  --card-y: 24px;
}

.camp-postcard--three,
.camp-postcard--3 {
  z-index: 3;
  flex-basis: clamp(210px, 21vw, 300px);
  height: clamp(240px, 25vw, 340px);
  --card-rotate: 2deg;
  --card-y: -6px;
}

.camp-postcard--four,
.camp-postcard--4 {
  --card-rotate: 4deg;
  --card-y: 20px;
}

.camp-postcard--five,
.camp-postcard--5 {
  --card-rotate: -1deg;
  --card-y: 10px;
}

.camp-gallery-arrow {
  position: static;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--green-dark);
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(91,159,67,.16);
  cursor: pointer;
  transition: .18s ease;
}

.camp-gallery-arrow:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.camp-gallery-controls {
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}

.camp-gallery-arrow:disabled {
  opacity: 0.35;
  pointer-events: none;
}

.camp-gallery-arrow[hidden] {
  display: none;
}

.camp-gallery-bullets {
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
}

.camp-gallery-bullets[hidden] {
  display: none;
}

.camp-gallery-bullet {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #cbd8c5;
  cursor: pointer;
  transition: .18s ease;
}

.camp-gallery-bullet.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--green);
}

.camp-gallery-bullet:focus-visible {
  outline: 2px solid rgba(178, 31, 45, 0.35);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .camp-postcards-gallery {
    margin-top: 0;
    padding: 40px 0 36px;
    overflow: hidden;
  }

  .camp-postcards-track {
    justify-content: flex-start;
    max-width: none;
    min-height: 280px;
    padding: 28px 18px 34px;
    background: transparent;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    top: auto;
    transform: none !important;
    margin: -40px 0 0 0 !important;
    margin-top: -40px !important;
    margin-bottom: 0 !important;
  }

  .camp-postcards-track::-webkit-scrollbar {
    display: none;
  }

  .camp-postcard {
    flex: 0 0 74vw;
    height: 240px;
    margin: 0 10px 0 0;
    --card-rotate: 0deg;
    --card-y: 0px;
    --hover-lift: 0px;
    --hover-scale: 1;
    --hover-rotate: 0deg;
    scroll-snap-align: center;
  }

  .camp-postcard--three {
    flex-basis: 74vw;
    height: 240px;
  }

  .camp-gallery-arrow {
    display: none;
  }

  .camp-gallery-controls {
    display: none;
  }

  .camp-gallery-bullets {
    margin-top: 12px;
  }
}

/* Activities photos: real images without decorative glare */
#activities .activity-card .photo{
  background: #1f2c22 !important;
  overflow: hidden;
}

#activities .activity-card .photo::before,
#activities .activity-card .photo::after{
  content: none !important;
  display: none !important;
  background: none !important;
  filter: none !important;
}

#activities .activity-card .photo img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Route section */
#route *{box-sizing:border-box}
#route a{text-decoration:none;color:inherit}

#route.route-section{position:relative;isolation:isolate;max-width:1320px;margin:0 auto;padding:82px 28px 90px;color:var(--ink);font-family:Arial,Helvetica,sans-serif;background:radial-gradient(circle at 12% 20%,rgba(91,159,67,.14),transparent 34%),radial-gradient(circle at 90% 72%,rgba(216,180,110,.24),transparent 38%),linear-gradient(180deg,#fffaf0 0%,#f5ecd5 100%);box-shadow:0 0 0 100vmax #f8efd9;clip-path:inset(0 -100vmax);overflow:hidden}
#route.route-section:before{content:"";position:absolute;inset:0;z-index:-1;background-image:radial-gradient(rgba(47,125,50,.08) 1px,transparent 1px),url("data:image/svg+xml,%3Csvg viewBox='0 0 900 420' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-20 235 Q190 120 420 230 T920 215' stroke='%2385b79a' fill='none' stroke-width='1.4' opacity='.22'/%3E%3Cpath d='M-30 300 Q210 170 450 300 T930 280' stroke='%2385b79a' fill='none' stroke-width='1.1' opacity='.16'/%3E%3Cpath d='M-20 120 Q220 40 440 130 T920 110' stroke='%23d8b46e' fill='none' stroke-width='1.1' opacity='.18'/%3E%3C/svg%3E");background-size:22px 22px,900px 420px;opacity:.9;pointer-events:none}
#route .route-head{text-align:center;max-width:760px;margin:0 auto 34px}#route .route-kicker{display:inline-flex;align-items:center;gap:8px;margin:0 0 14px;padding:9px 13px;border:1px solid rgba(47,125,50,.18);border-radius:999px;background:rgba(255,255,255,.72);color:var(--green-dark);font-size:12px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;box-shadow:0 10px 24px rgba(47,125,50,.08)}#route .route-title{margin:0 0 12px;font-family:Impact,"Arial Black",sans-serif;font-size:54px;line-height:.95;letter-spacing:.02em;text-transform:uppercase}#route .route-lead{margin:0;color:var(--muted);font-size:20px;line-height:1.45}
#route .route-layout{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);gap:24px;align-items:stretch}#route .route-map-card,#route .route-info-card{border:1px solid rgba(47,125,50,.14);border-radius:28px;background:rgba(255,255,255,.76);backdrop-filter:blur(10px);box-shadow:0 24px 60px rgba(32,45,27,.13);overflow:hidden}#route .route-map-card{min-height:560px;display:grid;grid-template-rows:1fr auto}
#route .route-map{position:relative;min-height:455px;background:radial-gradient(circle at 72% 34%,rgba(91,159,67,.28),transparent 16%),radial-gradient(circle at 36% 62%,rgba(58,129,159,.22),transparent 22%),linear-gradient(135deg,#dcebd3 0%,#f8f1df 48%,#d7e9d4 100%);overflow:hidden}#route .route-map:before{content:"";position:absolute;inset:0;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 760 480' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-20 265 C115 190 185 245 300 170 S545 92 790 160' stroke='%23ffffff' fill='none' stroke-width='24' opacity='.56'/%3E%3Cpath d='M-10 340 C130 285 250 320 390 245 S610 220 780 295' stroke='%23ffffff' fill='none' stroke-width='18' opacity='.46'/%3E%3Cpath d='M90 -20 C140 90 80 165 160 250 S260 385 230 520' stroke='%235b9f43' fill='none' stroke-width='3' opacity='.22'/%3E%3Cpath d='M510 -20 C555 105 480 190 560 285 S690 360 660 520' stroke='%235b9f43' fill='none' stroke-width='3' opacity='.2'/%3E%3Cpath d='M-40 115 C150 70 260 125 410 82 S600 52 820 100' stroke='%23d8b46e' fill='none' stroke-width='4' opacity='.24'/%3E%3C/svg%3E");background-size:cover;opacity:.95}#route .route-map:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(255,255,255,.1),rgba(255,255,255,.2));pointer-events:none}
#route .map-pin{position:absolute;left:55%;top:43%;width:92px;height:92px;transform:translate(-50%,-50%);z-index:2;display:flex;align-items:center;justify-content:center;border-radius:50%;background:rgba(255,255,255,.7);border:1px solid rgba(47,125,50,.18);box-shadow:0 16px 38px rgba(47,125,50,.2)}#route .map-pin:before{content:"";position:absolute;width:140px;height:140px;border-radius:50%;border:1px solid rgba(91,159,67,.28);animation:routePulse 2.8s ease-in-out infinite}#route .map-pin svg{position:relative;width:44px;height:44px;color:var(--green-dark);stroke-width:2.2}@keyframes routePulse{0%,100%{transform:scale(.84);opacity:.2}50%{transform:scale(1);opacity:.65}}
#route .map-label{position:absolute;left:50%;bottom:28px;transform:translateX(-50%);z-index:3;width:min(420px,calc(100% - 40px));padding:18px 20px;border-radius:22px;background:rgba(11,17,16,.84);color:#fff;box-shadow:0 20px 44px rgba(0,0,0,.2)}#route .map-label b{display:block;margin-bottom:5px;font-size:19px;line-height:1.15}#route .map-label span{color:rgba(255,255,255,.72);font-size:14px;line-height:1.4}#route .route-map-note{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:18px 22px;background:#fff;border-top:1px solid rgba(47,125,50,.12)}#route .route-map-note span{color:var(--muted);font-size:14px;line-height:1.35}#route .route-map-link{display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:0 16px;border-radius:12px;background:#f3f8ef;color:var(--green-dark);border:1px solid rgba(47,125,50,.15);font-size:12px;font-weight:900;text-transform:uppercase;white-space:nowrap;transition:.18s ease}#route .route-map-link:hover{transform:translateY(-2px);background:var(--green);color:#fff;border-color:var(--green)}
#route .route-info-card{padding:28px;display:flex;flex-direction:column;gap:18px}#route .route-info-top{padding:24px;border-radius:24px;background:linear-gradient(135deg,#173b26,#2f7d32);color:#fff}#route .route-info-top span{display:block;margin-bottom:7px;color:rgba(255,255,255,.7);font-size:12px;font-weight:900;letter-spacing:.12em;text-transform:uppercase}#route .route-info-top strong{display:block;font-family:Impact,"Arial Black",sans-serif;font-size:42px;line-height:.95;letter-spacing:.02em;text-transform:uppercase}#route .route-info-top p{margin:12px 0 0;color:rgba(255,255,255,.78);font-size:15px;line-height:1.45}#route .route-facts{display:grid;gap:12px}#route .route-fact{display:grid;grid-template-columns:48px 1fr;gap:14px;align-items:start;padding:16px;border:1px solid rgba(47,125,50,.12);border-radius:20px;background:#fff}#route .route-fact-icon{width:48px;height:48px;border-radius:16px;display:flex;align-items:center;justify-content:center;color:var(--green-dark);background:#f3f8ef}#route .route-fact-icon svg{width:24px;height:24px;stroke-width:2.1}#route .route-fact b{display:block;margin-bottom:4px;font-size:17px;line-height:1.15}#route .route-fact span{display:block;color:var(--muted);font-size:14px;line-height:1.45}
#route .route-actions{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:auto}#route .route-btn{min-height:52px;display:inline-flex;align-items:center;justify-content:center;gap:9px;border-radius:14px;border:1px solid rgba(47,125,50,.16);background:#fff;color:var(--ink);font-size:12px;font-weight:900;text-transform:uppercase;transition:.18s ease}#route .route-btn.primary{background:var(--green);border-color:var(--green);color:#fff;box-shadow:0 12px 26px rgba(91,159,67,.22)}#route .route-btn:hover{transform:translateY(-2px);box-shadow:0 12px 26px rgba(47,125,50,.12)}#route .route-btn.primary:hover{background:var(--green-dark);border-color:var(--green-dark)}#route .route-btn svg{width:17px;height:17px;stroke-width:2.4}
@media(max-width:980px){#route .route-layout{grid-template-columns:1fr}#route .route-map-card{min-height:auto}#route .route-map{min-height:380px}}@media(max-width:640px){#route.route-section{padding:54px 14px 62px}#route .route-title{font-size:36px}#route .route-lead{font-size:16px}#route .route-map{min-height:330px}#route .route-map-note{display:grid;gap:12px}#route .route-map-link{width:100%}#route .route-info-card{padding:18px;border-radius:22px}#route .route-info-top{padding:21px;border-radius:20px}#route .route-info-top strong{font-size:34px}#route .route-fact{grid-template-columns:42px 1fr;padding:14px;border-radius:18px}#route .route-fact-icon{width:42px;height:42px;border-radius:14px}#route .route-actions{grid-template-columns:1fr}}

/* Camp cleanup overrides (targeted) */
.about-ladoga{
  background:#ffffff !important;
  background-image:none !important;
}
.about-ladoga::before,
.about-ladoga::after{
  content:none !important;
  display:none !important;
}

.stories-section,
#activities.activities-section,
#camp-program.program,
#route.route-section{
  background:#f3f4f6 !important;
  background-image:none !important;
}
.stories-section::before,
.stories-section::after,
#activities.activities-section::before,
#activities.activities-section::after,
#camp-program.program::before,
#camp-program.program::after,
#route.route-section::before,
#route.route-section::after{
  content:none !important;
  display:none !important;
  background:none !important;
  background-image:none !important;
}

/* Placement clean redesign without logic changes */
#placement.section{
  background:#f8faf8 !important;
}
#placement .ready,
#placement .tariffs{
  display:none !important;
}
#placement .layout{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) 370px !important;
  gap:24px !important;
  align-items:start !important;
}
#placement .cards{
  display:grid !important;
  grid-template-columns:1fr !important;
  gap:18px !important;
}
#placement .card{
  min-height:auto !important;
  border:1px solid #dfe7da !important;
  border-radius:24px !important;
  background:#ffffff !important;
  box-shadow:0 12px 32px rgba(25,41,24,.08) !important;
  overflow:hidden !important;
}
#placement .photo{
  display:none !important;
}
#placement .card-body{
  padding:24px !important;
}
#placement .card h3{
  margin:0 0 8px !important;
  font-size:24px !important;
  line-height:1.1 !important;
}
#placement .card p{
  margin:0 0 14px !important;
  min-height:0 !important;
}
#placement .card:nth-child(1) h3::before{
  content:"01 ";
  color:#5b9f43;
}
#placement .card:nth-child(2) h3::before{
  content:"02 ";
  color:#5b9f43;
}
#placement .card:nth-child(3) h3::before{
  content:"03 ";
  color:#5b9f43;
}
#placement .item{
  grid-template-columns:24px 1fr auto !important;
  gap:12px !important;
  align-items:start !important;
  border-top:1px solid #e7eee3 !important;
  padding:14px 0 !important;
}
#placement .price{
  color:#1f7a2f !important;
  background:#e9f6e9;
  border:1px solid #cfe7cf;
  border-radius:999px;
  padding:6px 10px;
  font-size:14px !important;
  line-height:1;
}
#placement .totalBox{
  position:sticky !important;
  top:20px !important;
  border:1px solid #dfe7da !important;
  border-radius:24px !important;
  background:#ffffff !important;
  box-shadow:0 14px 36px rgba(25,41,24,.10) !important;
  padding:0 !important;
  overflow:hidden !important;
}
#placement .totalBox h3{
  margin:0 !important;
  padding:18px 22px 6px !important;
  color:#fff !important;
  background:linear-gradient(135deg,#173b26,#2f7d32);
}
#placement .totalBox h3::before{`r`n  content:none;`r`n}
#placement .totalBox h3::after{`r`n  content:none;`r`n}
#placement .totalBox p,
#placement .days,
#placement .total,
#placement .summary,
#placement .actions{
  margin-left:22px !important;
  margin-right:22px !important;
}
#placement .totalBox p{ margin-top:14px !important; }
#placement .actions{ padding-bottom:22px; }

@media(max-width:1100px){
  #placement .layout{
    grid-template-columns:1fr !important;
  }
  #placement .totalBox{
    position:static !important;
  }
}

/* Summary card refinements (reference match) */
#placement .totalBox{
  border-radius:24px !important;
  overflow:hidden !important;
  padding:0 !important;
}
#placement .totalBox h3{
  min-height:96px;
  padding:22px 24px 10px !important;
}
#placement .totalBox h3::before{`r`n  content:none;`r`n}
#placement .totalBox h3::after{`r`n  content:none;`r`n}
#placement .totalBox p{
  font-size:13px !important;
  line-height:1.45 !important;
  margin-top:12px !important;
  margin-bottom:14px !important;
}
#placement .days{
  border:1px solid #dbead8 !important;
  background:#f8fbf7 !important;
  border-radius:14px !important;
  min-height:58px;
  padding:8px 10px;
  gap:10px !important;
  justify-content:flex-start;
  margin-bottom:14px !important;
}
#placement .round{
  width:28px !important;
  height:28px !important;
}
#placement .days input{
  width:56px !important;
  height:38px !important;
  font-size:20px !important;
  border-radius:10px !important;
  -moz-appearance:textfield;
}
#placement .days input::-webkit-outer-spin-button,
#placement .days input::-webkit-inner-spin-button{
  -webkit-appearance:none;
  margin:0;
}
#placement .summary{
  border-top:1px dashed #cfe0cc !important;
  border-bottom:1px dashed #cfe0cc !important;
  min-height:72px !important;
  max-height:88px !important;
  padding-top:12px !important;
  padding-bottom:10px !important;
  overflow:auto;
}
#placement .row{
  padding:4px 0 !important;
}
#placement .total{
  font-size:44px !important;
  margin-top:12px !important;
  margin-bottom:6px !important;
}
#placement .total::before{
  content:"ИТОГО";
  display:block;
  font-size:11px;
  line-height:1.1;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#6d786a;
  margin-bottom:6px;
}
#placement .actions{
  display:grid !important;
  grid-template-columns:1fr !important;
  gap:10px !important;
  margin-top:14px !important;
  padding-bottom:0 !important;
}
#placement .actions .btn{
  width:100%;
  height:48px !important;
  border-radius:12px !important;
}
#placement .actions #copy{
  background:#fff !important;
  border:1px solid #dbead8 !important;
  color:#1f7a4d !important;
  box-shadow:none !important;
}
#placement .actions #tg{
  background:#5b9f43 !important;
  border-color:#5b9f43 !important;
  color:#fff !important;
}
#placement .summary-contacts{
  margin:14px 22px 22px !important;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:9px;
}
#placement .summary-contact-btn{
  min-height:46px;
  border-radius:11px;
  border:1px solid #dbead8;
  background:#fff;
  color:#1f7a4d;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
}
#placement .summary-contact-btn:hover{
  background:#f2fbf5;
}

@media(max-width:760px){
  #placement .totalBox{
    margin-top:18px !important;
  }
  #placement .summary-contacts{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

/* Contact CTA refactor in summary */
#placement .summary-cta-note{
  margin:14px 22px 11px !important;
  font-size:13px !important;
  line-height:1.4 !important;
  color:#6b7280 !important;
}
#placement .summary-contacts{
  margin:0 22px 20px !important;
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:9px !important;
}
#route .route-actions{
  margin-top:auto;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:9px;
}
#placement .contact-btn,
#route .contact-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  height:44px;
  border-radius:12px;
  border:1px solid #5b9f43;
  background:#5b9f43;
  color:#ffffff;
  font-weight:700;
  font-size:14px;
  transition:.18s ease;
  box-shadow:0 12px 26px rgba(91,159,67,.26);
}
#placement .contact-btn:hover,
#route .contact-btn:hover{
  transform:translateY(-2px);
  background:var(--green-dark);
  border-color:var(--green-dark);
  box-shadow:0 0 0 4px rgba(91,159,67,.14),0 0 24px rgba(91,159,67,.42),0 14px 30px rgba(47,125,50,.32);
}

@media(max-width:760px){
  #placement .summary-contacts{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
  #route .route-actions{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

/* Yandex map card style */
.camp-map-card {
  background: #ffffff;
  border: 1px solid #dbead8;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(31, 63, 37, 0.08);
  display: flex;
  flex-direction: column;
}

.camp-map-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #f8fbf7 0%, #ffffff 100%);
  border-bottom: 1px solid #e2efdf;
}

.camp-map-kicker {
  display: block;
  margin-bottom: 6px;
  color: #7da984;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.camp-map-top h3 {
  margin: 0;
  color: #1f2a22;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 0.95;
  font-weight: 900;
}

.camp-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #dbead8;
  background: #ffffff;
  color: #1f7a4d;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.camp-map-link:hover {
  background: #f2fbf5;
}

.camp-map-wrap {
  position: relative;
  flex: 1 1 auto;
  height: clamp(420px, 56vh, 620px);
  min-height: 420px;
  overflow: hidden;
  background: #eef3ea;
}

.camp-yandex-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.camp-map-zoom {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 5;
  display: grid;
  gap: 6px;
}

.camp-map-zoom-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #dbead8;
  background: rgba(255, 255, 255, 0.94);
  color: #1f7a4d;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(31, 63, 37, 0.12);
  backdrop-filter: blur(8px);
}

.camp-map-zoom-btn:hover {
  background: #f2fbf5;
}

.camp-map-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #dbead8;
  color: #1f2a22;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(31, 63, 37, 0.12);
  backdrop-filter: blur(10px);
}

.camp-map-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #2f7d32;
  box-shadow: 0 0 0 5px rgba(47, 125, 50, 0.14);
}

@media (max-width: 768px) {
  .camp-map-top {
    flex-direction: column;
    padding: 20px;
  }

  .camp-map-link {
    width: 100%;
  }

  .camp-map-wrap {
    height: 360px;
    min-height: 360px;
  }

  .camp-map-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: center;
  }
}



#placement .totalBox h3::before,
#placement .totalBox h3::after{
  content: none !important;
}


/* Final edge-strip fix: full-bleed section backgrounds without box-shadow/clip-path hacks */
.about-ladoga,
.stories-section,
#activities.activities-section,
#placement.section,
#camp-program.program,
#included.included-section,
#route.route-section{
  position: relative;
  isolation: isolate;
  box-shadow: none !important;
  clip-path: none !important;
  overflow: visible;
}

.about-ladoga{ background:#ffffff !important; }
.stories-section{ background:#f3f4f6 !important; }
#activities.activities-section{ background:#f3f4f6 !important; }
#placement.section{ background:#ffffff !important; }
#camp-program.program{ background:#f3f4f6 !important; }
#included.included-section{ background:#ffffff !important; }
#route.route-section{ background:#f3f4f6 !important; }

.about-ladoga::before,
.stories-section::before,
#activities.activities-section::before,
#placement.section::before,
#camp-program.program::before,
#included.included-section::before,
#route.route-section::before{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  right: auto;
  width: 100vw;
  transform: translateX(-50%);
  background: inherit !important;
  pointer-events: none;
}

/* kill legacy decorative side overlays that could tint edges */
.about-ladoga::after,
.stories-section::after,
#activities.activities-section::after,
#placement.section::after,
#camp-program.program::after,
#included.included-section::after,
#route.route-section::after{
  background: none !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* Mobile overflow fix: disable full-bleed pseudo background extenders on narrow viewports */
@media (max-width: 768px){
  .about-ladoga::before,
  .stories-section::before,
  #activities.activities-section::before,
  #placement.section::before,
  #camp-program.program::before,
  #included.included-section::before,
  #route.route-section::before{
    content: none !important;
    display: none !important;
    left: 0 !important;
    right: 0 !important;
  }
}

/* Full-width section backgrounds + constrained inner content */
.about-ladoga,
.stories-section,
#activities.activities-section,
.section#placement,
#camp-program.program,
#included.included-section,
#route.route-section{
  width:100% !important;
  max-width:none !important;
  margin-left:0 !important;
  margin-right:0 !important;
}

.about-ladoga{
  padding:58px 0 72px !important;
}

.about-ladoga > .about-ladoga__inner,
.stories-section > .stories-title,
.stories-section > .stories-lead,
.stories-section > .stories-shell,
#activities.activities-section > .title,
#activities.activities-section > .lead,
#activities.activities-section > .slider-shell,
.section#placement > .title,
.section#placement > .lead,
.section#placement > .ready,
.section#placement > .layout,
#camp-program.program > .program-title,
#camp-program.program > .program-lead,
#camp-program.program > .days-list,
#included.included-section > .included-title,
#included.included-section > .included-grid,
#route.route-section > .route-head,
#route.route-section > .route-layout{
  width:min(1320px, calc(100% - 56px));
  margin-left:auto;
  margin-right:auto;
}

@media (max-width:768px){
  .about-ladoga > .about-ladoga__inner,
  .stories-section > .stories-title,
  .stories-section > .stories-lead,
  .stories-section > .stories-shell,
  #activities.activities-section > .title,
  #activities.activities-section > .lead,
  #activities.activities-section > .slider-shell,
  .section#placement > .title,
  .section#placement > .lead,
  .section#placement > .ready,
  .section#placement > .layout,
  #camp-program.program > .program-title,
  #camp-program.program > .program-lead,
  #camp-program.program > .days-list,
  #included.included-section > .included-title,
  #included.included-section > .included-grid,
  #route.route-section > .route-head,
  #route.route-section > .route-layout{
    width:calc(100% - 28px);
  }
}
