:root {
    --cream: #f2e8d0;
    --cream-dark: #e8dcc0;
    --green: #3a5c38;
    --green-mid: #4e7a4b;
    --rust: #b85c38;
    --rust-dark: #a04e2e;
    --sand: #d4b88a;
    --text: #2a2016;
    --text-light: #6b5c44;
    --white: #fdf8ef;
  }
  * { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior: smooth; }
  body { background: var(--cream); color: var(--text); font-family: 'PT Sans', sans-serif; font-size: 16px; line-height: 1.6; }

  /* NAV */
  nav {
    position: fixed; top:0; left:0; right:0; z-index:100;
    background: rgba(242,232,208,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--cream-dark);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; height: 64px;
  }
  .nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; }
  .nav-logo-icon { width:40px; height:40px; }
  .nav-logo-text { font-family:'Oswald',sans-serif; font-weight:700; font-size:15px; line-height:1.2; color:var(--green); text-transform:uppercase; }
  .nav-links { display:flex; gap:32px; list-style:none; }
  .nav-links a { font-family:'Oswald',sans-serif; font-size:13px; font-weight:500; letter-spacing:.08em; text-transform:uppercase; text-decoration:none; color:var(--text); transition:color .2s; }
  .nav-links a:hover, .nav-links a.active { color:var(--rust); }
  .nav-cta { background:var(--rust); color:var(--white); font-family:'Oswald',sans-serif; font-size:13px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; border:none; border-radius:32px; padding:10px 22px; cursor:pointer; text-decoration:none; transition:background .2s; }
  .nav-cta:hover { background:var(--rust-dark); }

  /* HERO */
  .hero {
    min-height: 100vh;
    background: var(--cream);
    display: flex; flex-direction:column; align-items:center; justify-content:center;
    padding: 96px 48px 56px;
    position: relative; overflow:hidden;
  }
  .hero-bg {
    position:absolute; inset:0;
    background: url('https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?w=1800&q=60') center/cover;
    opacity: 0.13;
  }
  .hero-eyebrow {
    font-family:'Oswald',sans-serif; font-weight:600; font-size:13px; letter-spacing:.32em; text-transform:uppercase;
    color:var(--rust); position:relative; z-index:1; margin-bottom:14px;
    display:flex; align-items:center; gap:14px;
  }
  .hero-eyebrow::before, .hero-eyebrow::after {
    content:''; width:32px; height:1px; background:var(--rust);
  }
  .hero-title {
    font-family:'Oswald',sans-serif; font-weight:700; text-transform:uppercase;
    text-align:center; line-height:0.92; position:relative; z-index:1;
    font-size: clamp(56px, 9.5vw, 124px);
    letter-spacing: -0.01em;
  }
  .hero-title .t2 { color: var(--green); }
  .hero-title .t3 { color: var(--rust); margin-left:0.2em; }
  .hero-sub { font-family:'Lora',serif; font-style:italic; font-size:17px; color:var(--text-light); text-align:center; max-width:520px; margin:18px auto 0; position:relative; z-index:1; }

  /* Polaroid strip */
  .polaroid-strip {
    display:flex; gap:28px; align-items:flex-start; justify-content:center;
    margin: 56px auto 0; position:relative; z-index:1;
    width:100%; max-width:920px;
    padding-top: 30px;
  }
  .polaroid-string {
    position:absolute; top:0; left:2%; right:2%;
    height:80px; z-index:0; pointer-events:none;
  }
  .polaroid-string svg { width:100%; height:100%; display:block; overflow:visible; }
  .polaroid {
    background: var(--white);
    padding: 10px 10px 30px;
    box-shadow: 0 4px 24px rgba(42,32,22,.12), 0 1px 4px rgba(42,32,22,.08);
    width: 180px; flex-shrink:0;
    position:relative; z-index:1;
  }
  .polaroid:nth-child(2) { transform: rotate(-4deg) translateY(6px); }
  .polaroid:nth-child(3) { transform: rotate(2deg) translateY(22px); }
  .polaroid:nth-child(4) { transform: rotate(-1.5deg) translateY(28px); }
  .polaroid:nth-child(5) { transform: rotate(3.5deg) translateY(10px); }
  .polaroid-clip {
    position:absolute; top:-10px; left:50%; transform:translateX(-50%);
    width:14px; height:20px; border-radius:2px; z-index:2;
  }
  .polaroid:nth-child(2) .polaroid-clip { background:var(--rust); }
  .polaroid:nth-child(3) .polaroid-clip { background:var(--green); }
  .polaroid:nth-child(4) .polaroid-clip { background:var(--rust); }
  .polaroid:nth-child(5) .polaroid-clip { background:var(--green); }
  .polaroid-clip::before {
    content:''; position:absolute; top:-10px; left:50%; transform:translateX(-50%);
    width:2px; height:14px; background:rgba(42,32,22,.25);
  }
  .polaroid-img {
    width:100%; aspect-ratio:1; object-fit:cover;
    background: var(--cream-dark);
    display:flex; align-items:center; justify-content:center;
    overflow:hidden;
  }
  .polaroid-img img { width:100%; height:100%; object-fit:cover; }
  .polaroid-caption { font-family:'Oswald',sans-serif; font-size:11px; font-weight:400; color:var(--text-light); text-align:center; margin-top:8px; letter-spacing:.04em; }

  .hero-cta-row { display:flex; gap:14px; margin-top:24px; position:relative; z-index:1; flex-wrap:wrap; justify-content:center; }
  .hero-btn {
    display:inline-block;
    background:var(--rust); color:var(--white);
    font-family:'Oswald',sans-serif; font-weight:600; font-size:15px; letter-spacing:.1em; text-transform:uppercase;
    padding:16px 40px; border-radius:40px; text-decoration:none;
    transition:background .2s, transform .2s;
    box-shadow: 0 4px 16px rgba(184,92,56,.3);
  }
  .hero-btn:hover { background:var(--rust-dark); transform:translateY(-2px); }
  .hero-btn-ghost {
    display:inline-block;
    background:transparent; color:var(--green);
    font-family:'Oswald',sans-serif; font-weight:600; font-size:15px; letter-spacing:.1em; text-transform:uppercase;
    padding:14px 32px; border-radius:40px; text-decoration:none;
    border: 2px solid var(--green);
    transition:all .2s;
  }
  .hero-btn-ghost:hover { background:var(--green); color:var(--cream); }
  .hero-meta { display:flex; gap:32px; margin-top:32px; position:relative; z-index:1; flex-wrap:wrap; justify-content:center; }
  .hero-meta-item { display:flex; align-items:center; gap:10px; font-family:'Oswald',sans-serif; font-size:12px; font-weight:500; letter-spacing:.12em; text-transform:uppercase; color:var(--text-light); }
  .hero-meta-item .dot { width:8px; height:8px; border-radius:50%; background:var(--green); }
  .hero-meta-item:nth-child(2) .dot { background:var(--rust); }
  .hero-meta-item:nth-child(3) .dot { background:var(--sand); }

  /* SECTION */
  section { padding: 80px 48px; }
  section.alt { background: var(--white); }
  section.green-bg { background: var(--green); color:var(--white); }
  .section-label { font-family:'Oswald',sans-serif; font-size:12px; font-weight:600; letter-spacing:.2em; text-transform:uppercase; color:var(--rust); margin-bottom:12px; }
  .section-title {
    font-family:'Oswald',sans-serif; font-weight:700; text-transform:uppercase;
    font-size: clamp(32px, 5vw, 56px); line-height:1.0; color:var(--green);
    margin-bottom:16px;
  }
  section.green-bg .section-title { color:var(--cream); }
  .section-sub { font-family:'Lora',serif; font-style:italic; font-size:17px; color:var(--text-light); max-width:600px; line-height:1.7; margin-bottom:48px; }
  section.green-bg .section-sub { color:rgba(242,232,208,.75); }
  .container { max-width:1200px; margin:0 auto; }
  .section-center { text-align:center; }
  .section-center .section-sub { margin-left:auto; margin-right:auto; }

  /* SESSIONS */
  .sessions-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
  .session-card {
    background:var(--white); border-radius:16px; padding:28px 24px;
    box-shadow: 0 2px 16px rgba(42,32,22,.08);
    border: 1px solid var(--cream-dark);
    position:relative; overflow:hidden;
    transition: transform .2s, box-shadow .2s;
  }
  .session-card:hover { transform:translateY(-4px); box-shadow:0 8px 32px rgba(42,32,22,.14); }
  .session-card::before {
    content:''; position:absolute; top:0; left:0; right:0; height:4px;
    background: var(--green);
  }
  .session-num { font-family:'Oswald',sans-serif; font-size:48px; font-weight:700; color:var(--cream-dark); line-height:1; margin-bottom:8px; }
  .session-name { font-family:'Oswald',sans-serif; font-size:14px; font-weight:600; text-transform:uppercase; color:var(--green); letter-spacing:.04em; margin-bottom:16px; line-height:1.3; }
  .session-dates { font-size:14px; color:var(--text-light); margin-bottom:4px; }
  .session-dates strong { color:var(--text); }
  .session-price { font-family:'Oswald',sans-serif; font-size:28px; font-weight:700; color:var(--rust); margin:16px 0 8px; }
  .session-spots { display:inline-block; background:var(--cream); border-radius:20px; padding:4px 12px; font-size:13px; color:var(--text-light); }
  .session-spots.few { background:#fff0eb; color:var(--rust); font-weight:700; }
  .sessions-btn-wrap { text-align:center; margin-top:40px; }

  /* WHY */
  .why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px; }
  .why-card {
    background:var(--cream); border-radius:16px; padding:32px 28px;
    border: 1px solid var(--cream-dark);
  }
  .why-icon { font-size:36px; margin-bottom:16px; line-height:1; }
  .why-title { font-family:'Oswald',sans-serif; font-size:18px; font-weight:600; text-transform:uppercase; color:var(--green); letter-spacing:.04em; margin-bottom:10px; }
  .why-text { font-size:14px; color:var(--text-light); line-height:1.7; }

  /* ACTIVITIES */
  .activities-list { display:flex; flex-direction:column; gap:0; }
  .activity-item {
    display:grid; grid-template-columns:80px 1fr 320px; gap:32px; align-items:center;
    padding:32px 0; border-bottom:1px solid var(--cream-dark);
  }
  .activity-item:last-child { border-bottom:none; }
  .activity-num { font-family:'Oswald',sans-serif; font-size:56px; font-weight:700; color:var(--cream-dark); line-height:1; }
  .activity-title { font-family:'Oswald',sans-serif; font-size:20px; font-weight:600; text-transform:uppercase; color:var(--green); letter-spacing:.06em; margin-bottom:8px; }
  .activity-text { font-size:14px; color:var(--text-light); line-height:1.7; max-width:480px; }
  .activity-img {
    width:100%; aspect-ratio:16/9; border-radius:12px; overflow:hidden;
    background:var(--cream-dark);
    display:flex; align-items:center; justify-content:center;
    position:relative;
  }
  .activity-img img { width:100%; height:100%; object-fit:cover; }
  .activity-badge {
    position:absolute; bottom:12px; right:12px;
    background:var(--rust); border-radius:50%; width:36px; height:36px;
    display:flex; align-items:center; justify-content:center;
  }
  .activity-badge svg { width:16px; height:16px; fill:white; }

  /* FOR KIDS / FOR PARENTS */
  .twocol { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
  .twocol-list { list-style:none; display:flex; flex-direction:column; gap:12px; }
  .twocol-list li {
    display:flex; align-items:flex-start; gap:12px;
    padding:16px 20px; background:var(--cream); border-radius:12px;
    border:1px solid var(--cream-dark);
  }
  .twocol-list li .bullet {
    width:24px; height:24px; background:var(--green); border-radius:50%;
    flex-shrink:0; margin-top:1px;
    display:flex; align-items:center; justify-content:center;
  }
  .twocol-list li .bullet svg { width:10px; height:10px; fill:white; }
  .twocol-list li span { font-size:14px; color:var(--text); line-height:1.5; }
  .img-block { border-radius:20px; overflow:hidden; aspect-ratio:4/3; background:var(--cream-dark); }
  .img-block img { width:100%; height:100%; object-fit:cover; }

  /* REVIEWS */
  .reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
  .review-card {
    background:var(--cream); border-radius:16px; padding:28px 24px;
    border:1px solid var(--cream-dark);
  }
  .review-stars { color:var(--rust); font-size:16px; margin-bottom:12px; letter-spacing:2px; }
  .review-text { font-family:'Lora',serif; font-style:italic; font-size:14px; color:var(--text); line-height:1.8; margin-bottom:16px; }
  .review-author { font-family:'Oswald',sans-serif; font-size:13px; font-weight:600; text-transform:uppercase; letter-spacing:.06em; color:var(--green); }
  .review-date { font-size:12px; color:var(--text-light); margin-top:2px; }

  /* NEWS */
  .news-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
  .news-card {
    background:var(--white); border-radius:14px; overflow:hidden;
    border:1px solid var(--cream-dark);
    transition:transform .2s;
  }
  .news-card:hover { transform:translateY(-4px); }
  .news-img { aspect-ratio:4/3; background:var(--cream-dark); overflow:hidden; }
  .news-img img { width:100%; height:100%; object-fit:cover; }
  .news-body { padding:20px 18px; }
  .news-date { font-size:12px; color:var(--rust); font-family:'Oswald',sans-serif; font-weight:600; letter-spacing:.06em; margin-bottom:8px; }
  .news-title { font-family:'Oswald',sans-serif; font-size:16px; font-weight:600; text-transform:uppercase; color:var(--green); line-height:1.3; }
  .news-excerpt { font-size:13px; color:var(--text-light); margin-top:8px; line-height:1.6; }

  /* FAQ */
  .faq-list { max-width:780px; margin:0 auto; }
  .faq-item { border-bottom:1px solid var(--cream-dark); }
  .faq-q {
    display:flex; justify-content:space-between; align-items:center;
    padding:20px 0; cursor:pointer;
    font-family:'Oswald',sans-serif; font-size:15px; font-weight:600;
    text-transform:uppercase; letter-spacing:.06em; color:var(--text);
    transition:color .2s; gap:16px;
    user-select: none;
  }
  .faq-q:hover { color:var(--rust); }
  .faq-q.open { color:var(--rust); }
  .faq-arrow { flex-shrink:0; width:28px; height:28px; border:1px solid var(--cream-dark); border-radius:50%; display:flex; align-items:center; justify-content:center; transition:transform .3s, background .2s; }
  .faq-q.open .faq-arrow { transform:rotate(45deg); background:var(--rust); border-color:var(--rust); }
  .faq-arrow svg { width:10px; height:10px; stroke:var(--text); }
  .faq-q.open .faq-arrow svg { stroke:white; }
  .faq-a { font-size:14px; color:var(--text-light); line-height:1.75; max-height:0; overflow:hidden; transition:max-height .35s ease, padding .35s; }
  .faq-a.open { max-height:200px; padding-bottom:20px; }

  /* GALLERY */
  .gallery-mosaic { display:grid; grid-template-columns:repeat(4,1fr); grid-template-rows:200px 200px; gap:12px; }
  .gallery-mosaic .g1 { grid-column:1/3; grid-row:1/3; }
  .gallery-mosaic .g2 { grid-column:3/4; grid-row:1/2; }
  .gallery-mosaic .g3 { grid-column:4/5; grid-row:1/2; }
  .gallery-mosaic .g4 { grid-column:3/4; grid-row:2/3; }
  .gallery-mosaic .g5 { grid-column:4/5; grid-row:2/3; }
  .g-item { border-radius:12px; overflow:hidden; background:var(--cream-dark); }
  .g-item img { width:100%; height:100%; object-fit:cover; display:block; }

  /* CONTACTS */
  .contacts-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
  .contacts-info { display:flex; flex-direction:column; gap:24px; }
  .contact-row { display:flex; gap:16px; }
  .contact-icon { width:44px; height:44px; background:var(--cream); border-radius:50%; flex-shrink:0; display:flex; align-items:center; justify-content:center; border:1px solid var(--cream-dark); }
  .contact-icon svg { width:18px; height:18px; stroke:var(--rust); }
  .contact-label { font-family:'Oswald',sans-serif; font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:.1em; color:var(--text-light); margin-bottom:4px; }
  .contact-val { font-size:15px; color:var(--text); font-weight:700; }
  .map-placeholder { background:var(--cream-dark); border-radius:16px; height:340px; display:flex; align-items:center; justify-content:center; overflow:hidden; }
  .map-placeholder iframe { width:100%; height:100%; border:none; border-radius:16px; }

  /* FOOTER */
  footer {
    background:var(--green); color:rgba(242,232,208,.8);
    padding:56px 48px 32px;
  }
  .footer-inner { max-width:1200px; margin:0 auto; }
  .footer-top { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr 1.5fr; gap:40px; margin-bottom:48px; }
  .footer-brand .footer-logo { display:flex; align-items:center; gap:10px; margin-bottom:16px; }
  .footer-brand .footer-logo-text { font-family:'Oswald',sans-serif; font-weight:700; font-size:16px; color:var(--cream); text-transform:uppercase; line-height:1.2; }
  .footer-desc { font-size:13px; line-height:1.7; }
  .footer-col h4 { font-family:'Oswald',sans-serif; font-size:13px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--cream); margin-bottom:16px; }
  .footer-col ul { list-style:none; display:flex; flex-direction:column; gap:8px; }
  .footer-col ul li a { font-size:13px; color:rgba(242,232,208,.7); text-decoration:none; transition:color .2s; }
  .footer-col ul li a:hover { color:var(--cream); }
  .footer-contact { font-size:13px; line-height:1.8; }
  .footer-contact a { color:var(--cream); text-decoration:none; }
  .footer-bottom { border-top:1px solid rgba(242,232,208,.15); padding-top:24px; display:flex; justify-content:space-between; align-items:center; }
  .footer-copy { font-size:12px; }
  .footer-socials { display:flex; gap:12px; }
  .footer-socials a { width:34px; height:34px; border-radius:50%; border:1px solid rgba(242,232,208,.25); display:flex; align-items:center; justify-content:center; transition:border-color .2s; }
  .footer-socials a:hover { border-color:var(--cream); }
  .footer-socials svg { width:14px; height:14px; fill:rgba(242,232,208,.7); }

  /* NEWSLETTER */
  .newsletter-row { display:flex; gap:8px; margin-top:16px; }
  .newsletter-row input { flex:1; padding:10px 16px; background:rgba(242,232,208,.1); border:1px solid rgba(242,232,208,.25); border-radius:40px; color:var(--cream); font-size:13px; outline:none; }
  .newsletter-row input::placeholder { color:rgba(242,232,208,.4); }
  .newsletter-row button { background:var(--rust); border:none; border-radius:40px; padding:10px 18px; color:white; font-family:'Oswald',sans-serif; font-size:12px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; cursor:pointer; transition:background .2s; }
  .newsletter-row button:hover { background:var(--rust-dark); }

  /* BUTTONS */
  .btn { display:inline-block; padding:14px 32px; border-radius:40px; font-family:'Oswald',sans-serif; font-size:14px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; text-decoration:none; cursor:pointer; border:none; transition:all .2s; }
  .btn-rust { background:var(--rust); color:white; box-shadow:0 4px 16px rgba(184,92,56,.25); }
  .btn-rust:hover { background:var(--rust-dark); transform:translateY(-2px); }
  .btn-outline { background:transparent; color:var(--green); border:2px solid var(--green); }
  .btn-outline:hover { background:var(--green); color:white; }
  .btn-outline-cream { background:transparent; color:var(--cream); border:2px solid rgba(242,232,208,.5); }
  .btn-outline-cream:hover { background:rgba(242,232,208,.1); }

  /* PLACEHOLDER IMAGES */
  .ph { background: linear-gradient(135deg, var(--cream-dark) 0%, var(--sand) 100%); display:flex; align-items:center; justify-content:center; }
  .ph-label { font-family:monospace; font-size:11px; color:var(--text-light); text-align:center; padding:8px; }

  /* SECTION DIVIDER */
  .divider { width:60px; height:3px; background:var(--rust); border-radius:2px; margin:0 0 40px; }
  .divider.center { margin:0 auto 40px; }

  @media(max-width:900px) {
    nav { padding:0 20px; }
    .nav-links { display:none; }
    section { padding:60px 24px; }
    .sessions-grid { grid-template-columns:1fr 1fr; }
    .why-grid { grid-template-columns:1fr 1fr; }
    .twocol { grid-template-columns:1fr; }
    .reviews-grid { grid-template-columns:1fr 1fr; }
    .news-grid { grid-template-columns:1fr 1fr; }
    .activity-item { grid-template-columns:60px 1fr; }
    .activity-img { display:none; }
    .gallery-mosaic { grid-template-columns:1fr 1fr; grid-template-rows:auto; }
    .gallery-mosaic .g1 { grid-column:1/3; grid-row:auto; }
    .gallery-mosaic .g2,.g3,.g4,.g5 { grid-column:auto; }
    .contacts-grid { grid-template-columns:1fr; }
    .footer-top { grid-template-columns:1fr 1fr; }
    .polaroid { width:140px; }
  }