:root{
  --bg:#F7F6F3;
  --panel:#FFFFFF;
  --panel2:#EFEDE8;
  --text:#1A1D24;
  --muted:#4B5060;
  --accent:#9B978E;
  --accent2:#5C574E;
  --border:rgba(155,151,142,.42);
  --shadow:rgba(0,0,0,.10);
  --radius:18px;
  --radius2:26px;
  --maxw:1120px;
  --cookieBg:rgba(255,255,255,.96);
  --header-bg:rgba(255,255,255,.88);
  --mobile-menu-bg:rgba(255,255,255,.97);
  --surface-soft:rgba(0,0,0,.04);
  --surface-border:rgba(0,0,0,.09);
  --overlay-dim:rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background: radial-gradient(900px 520px at 10% 0%, rgba(155,151,142,.18), transparent 55%),
              radial-gradient(820px 460px at 90% 20%, rgba(155,151,142,.14), transparent 50%),
              var(--bg);
  color:var(--text);
  line-height:1.6;
}

img{max-width:100%; height:auto; display:block}
iframe{max-width:100%; border:0}
a{color:inherit}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px;
  top:16px;
  z-index:9999;
  width:auto;
  height:auto;
  padding:10px 14px;
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:12px;
}

.container{
  width:100%;
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 18px;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.logo-link{
  display:flex;
  align-items:center;
  text-decoration:none;
}
.logo-img{
  width:44px;
  height:44px;
  display:block;
}

.desktop-nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.desktop-nav a{
  text-decoration:none;
  font-size:14px;
  color:var(--muted);
  padding:8px 10px;
  border-radius:999px;
  border:1px solid transparent;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.desktop-nav a:hover{
  color:var(--text);
  border-color: rgba(155,151,142,.35);
  background: rgba(155,151,142,.08);
}

.mobile-toggle{
  display:none;
  text-decoration:none;
  border:1px solid rgba(155,151,142,.30);
  background: rgba(155,151,142,.08);
  padding:10px 12px;
  border-radius:14px;
  color:var(--text);
  align-items:center;
  gap:10px;
}
.mobile-toggle i{color:var(--accent2)}
.mobile-toggle span{font-size:14px}

.mobile-menu{
  display:none;
  border-top:1px solid var(--border);
  background: var(--mobile-menu-bg);
}
.mobile-menu.open{display:block}
.mobile-menu-inner{
  padding:14px 0 18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.mobile-menu a{
  text-decoration:none;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(155,151,142,.20);
  background: rgba(155,151,142,.06);
  color:var(--text);
  font-size:15px;
}

.site-main{padding:18px 0 40px}

.hero{
  position:relative;
  min-height:520px;
  border-radius:var(--radius2);
  overflow:hidden;
  box-shadow: 0 18px 60px var(--shadow);
  border:1px solid rgba(155,151,142,.18);
}
.hero-media{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform: scale(1.02);
}
.hero-media--home{background-image:url("../image/picture.jpg")}
.hero-media--guidelines{
  background-image:url("../image/picture2.jpg");
  background-size:contain;
  background-repeat:no-repeat;
  background-color:var(--panel2);
  transform:none;
}
.hero-media--exercises{
  background-image:url("../image/picture3.jpg");
  background-size:contain;
  background-repeat:no-repeat;
  background-color:var(--panel2);
  transform:none;
}
.hero-media--events{background-image:url("../image/picture4.jpg")}
.hero-media--faq{background-image:url("../image/picture5.jpg")}
.hero-media--contacts{background-image:url("../image/picture6.jpg")}
.hero-media--privacy{background-image:url("../image/picture9.jpg")}
.hero-media--cookies{background-image:url("../image/picture8.jpg")}
.hero-media--terms{background-image:url("../image/picture11.jpg")}
.hero-media--success{background-image:url("../image/picture11.jpg")}
.hero-media--about{
  background-image:url("../image/picture8.jpg");
  background-size:contain;
  background-repeat:no-repeat;
  background-color:var(--panel2);
  transform:none;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(247,246,243,.94), rgba(247,246,243,.78) 55%, rgba(247,246,243,.90)),
    radial-gradient(520px 420px at 20% 20%, rgba(155,151,142,.22), transparent 55%);
}
.hero-content{
  position:relative;
  padding:72px 22px 44px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}
.hero-eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:14px;
  margin-bottom:14px;
}
.hero-eyebrow i{color:var(--accent2)}
.hero h1{
  margin:0 0 12px;
  font-size:46px;
  letter-spacing:-.6px;
}
.hero p{
  margin:0 0 18px;
  color:var(--muted);
  max-width:62ch;
  font-size:17px;
}
.hero-cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:10px;
}
.cta{
  text-decoration:none;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(155,151,142,.32);
  background: rgba(155,151,142,.10);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  font-weight:650;
}
.cta:hover{
  transform: translateY(-1px);
  background: rgba(155,151,142,.14);
  border-color: rgba(155,151,142,.50);
}
.cta.secondary{
  background: var(--panel);
  border-color: var(--border);
  color:var(--text);
  font-weight:600;
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
}
.hero-side{
  padding:16px;
  border-radius:18px;
  background: rgba(255,255,255,.88);
  border:1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.hero-side h2{
  margin:2px 0 10px;
  font-size:16px;
}
.hero-side ul{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}
.hero-side li{margin:8px 0}

.home-gallery{
  margin:22px 0 26px;
  padding:20px;
  border-radius:var(--radius2);
  border:1px solid var(--border);
  background:
    radial-gradient(700px 380px at 100% 0%, rgba(155,151,142,.14), transparent 55%),
    linear-gradient(180deg, var(--panel), var(--panel2));
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
}
.gallery-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:16px;
}
.gallery-head-text{max-width:68ch}
.gallery-eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 8px;
  color:var(--muted);
  font-size:14px;
}
.gallery-eyebrow i{color:var(--accent2)}
.gallery-head h2{
  margin:0 0 8px;
  font-size:28px;
  letter-spacing:-.4px;
  color:var(--text);
}
.gallery-head p{
  margin:0;
  color:var(--muted);
  font-size:15px;
}
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, minmax(150px, 190px));
  gap:12px;
}
.gallery-card{
  position:relative;
  display:block;
  overflow:hidden;
  border-radius:18px;
  border:1px solid var(--border);
  text-decoration:none;
  color:var(--text);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  opacity:0;
  transform: translateY(18px) scale(.98);
  animation: galleryReveal .75s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: var(--gallery-delay, 0s);
  transition: box-shadow .35s ease, border-color .35s ease;
}
.gallery-card--featured{
  grid-column: 1 / span 3;
  grid-row: 1 / span 2;
}
.gallery-card:not(.gallery-card--featured):nth-of-type(2){grid-column: 4 / span 2; grid-row: 1;}
.gallery-card:not(.gallery-card--featured):nth-of-type(3){grid-column: 6; grid-row: 1;}
.gallery-card:not(.gallery-card--featured):nth-of-type(4){grid-column: 4 / span 2; grid-row: 2;}
.gallery-card:not(.gallery-card--featured):nth-of-type(5){grid-column: 6; grid-row: 2;}
.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform .55s cubic-bezier(.2,.8,.2,1), filter .45s ease;
}
.gallery-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  padding:14px;
  background: linear-gradient(180deg, transparent 35%, rgba(26,29,36,.72));
  opacity:0;
  transition: opacity .35s ease, background .35s ease;
}
.gallery-caption{
  display:flex;
  flex-direction:column;
  gap:4px;
  transform: translateY(8px);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.gallery-caption strong{
  font-size:15px;
  color:#fff;
}
.gallery-caption span{
  font-size:13px;
  color:rgba(255,255,255,.88);
}
.gallery-arrow{
  color:var(--accent2);
  font-size:22px;
  transform: translate(6px, 6px);
  opacity:0;
  transition: transform .35s ease, opacity .35s ease;
}
.gallery-card:hover,
.gallery-card:focus-visible{
  border-color: rgba(155,151,142,.65);
  box-shadow: 0 18px 44px rgba(0,0,0,.14);
}
.gallery-card:hover img,
.gallery-card:focus-visible img{
  transform: scale(1.08);
  filter: saturate(1.05);
}
.gallery-card:hover .gallery-overlay,
.gallery-card:focus-visible .gallery-overlay{
  opacity:1;
  background: linear-gradient(180deg, rgba(155,151,142,.08), rgba(26,29,36,.78));
}
.gallery-card:hover .gallery-caption,
.gallery-card:focus-visible .gallery-caption{
  transform: translateY(0);
}
.gallery-card:hover .gallery-arrow,
.gallery-card:focus-visible .gallery-arrow{
  opacity:1;
  transform: translate(0, 0);
}
.gallery-card:focus-visible{
  outline:3px solid rgba(155,151,142,.55);
  outline-offset:3px;
}
@keyframes galleryReveal{
  to{
    opacity:1;
    transform: translateY(0) scale(1);
  }
}
@media (prefers-reduced-motion: reduce){
  .gallery-card{
    animation:none;
    opacity:1;
    transform:none;
  }
  .gallery-card img,
  .gallery-overlay,
  .gallery-caption,
  .gallery-arrow{
    transition:none;
  }
}

.page-title{
  padding:26px 0 6px;
}
.page-title h1{
  font-size:34px;
  margin:0;
  letter-spacing:-.4px;
}
.page-title p{
  margin:10px 0 0;
  color:var(--muted);
  max-width:70ch;
}

.disclaimer{
  margin:18px 0 22px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(155,151,142,.35);
  background: linear-gradient(180deg, rgba(155,151,142,.12), rgba(155,151,142,.05));
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.disclaimer--prominent{
  border-width:2px;
  border-color:rgba(92,87,78,.45);
}
.trust-panel{
  margin:0 0 22px;
  padding:18px;
  border-radius:var(--radius2);
  border:1px solid var(--border);
  background:linear-gradient(180deg,var(--panel),var(--panel2));
  box-shadow:0 10px 32px rgba(0,0,0,.07);
}
.trust-panel h2{
  margin:0 0 10px;
  font-size:20px;
}
.trust-panel p,.trust-panel li{
  color:var(--muted);
}
.trust-panel ul{
  margin:10px 0 0;
  padding-left:18px;
}
.trust-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:12px;
}
.trust-grid .item{
  padding:12px;
  border-radius:14px;
  border:1px solid var(--surface-border);
  background:var(--surface-soft);
}
.trust-grid strong{
  display:block;
  margin-bottom:6px;
  color:var(--text);
}
.footer-business{
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
  max-width:42ch;
}
.footer-business p{margin:6px 0}
.footer-business strong{color:var(--text)}
.disclaimer strong{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
}
.disclaimer p{
  margin:8px 0 0;
  color:var(--muted);
}

#mainSections{
  scroll-margin-top:88px;
}
.sections{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.section-card{
  border-radius:var(--radius);
  padding:18px;
  border:1px solid var(--border);
  background: linear-gradient(180deg, var(--panel), var(--panel2));
  box-shadow: 0 10px 32px rgba(0,0,0,.07);
}
.section-card.alt{
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(155,151,142,.16), transparent 60%),
    linear-gradient(180deg, var(--panel2), var(--panel));
}

.section-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:12px;
}
.section-head h2{
  margin:0;
  font-size:18px;
  letter-spacing:-.2px;
}
.section-head .icon-badge{
  display:flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:16px;
  background: rgba(155,151,142,.10);
  border:1px solid rgba(155,151,142,.26);
}
.section-head i{color:var(--accent2)}

.section-content{
  color:var(--muted);
  font-size:15px;
}
.section-content p{margin:10px 0}
.section-content ul{margin:10px 0; padding-left:18px}
.section-content li{margin:8px 0}

.img-split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:stretch;
}
.img-split img{
  border-radius:16px;
  border:1px solid rgba(155,151,142,.16);
  background: var(--panel2);
  height:100%;
  object-fit:cover;
}
.img-split--full{
  align-items:start;
}
.img-split img.img-full{
  width:100%;
  height:auto;
  max-height:none;
  object-fit:contain;
  object-position:center;
  display:block;
}
.img-split .text{
  padding:6px 2px 0;
}

.callout{
  margin-top:14px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(155,151,142,.26);
  background: rgba(155,151,142,.08);
}
.callout strong{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--text);
  font-size:14px;
}
.callout p{margin:8px 0 0; color:var(--muted)}

.checklist{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px 14px;
  margin-top:12px;
}
.checklist .item{
  display:flex;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--surface-border);
  background: var(--surface-soft);
}
.checklist .item i{color:var(--accent2); margin-top:2px}
.checklist .item span{
  color:var(--muted);
  font-size:14px;
}

.tableish{
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(155,151,142,.18);
  background: var(--panel2);
}
.row{
  display:flex;
  gap:12px;
  padding:12px 14px;
  border-bottom:1px solid rgba(155,151,142,.12);
}
.row:last-child{border-bottom:0}
.row .k{
  min-width:150px;
  color:var(--accent2);
  font-weight:700;
}
.row .v{color:var(--muted)}

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}

.site-footer{
  border-top:1px solid rgba(155,151,142,.14);
  padding:26px 0 34px;
  background: var(--panel2);
}
.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.footer-links a{
  text-decoration:none;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(155,151,142,.18);
  background: rgba(155,151,142,.06);
  color:var(--muted);
  font-size:14px;
}
.footer-links a:hover{
  color:var(--text);
}
.copyright{
  color:var(--muted);
  font-size:14px;
}

.cookie-banner{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:200;
  background: var(--cookieBg);
  border-top:1px solid rgba(155,151,142,.20);
  padding:16px 0;
}
.cookie-banner[hidden]{display:none}
.cookie-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.cookie-text{
  max-width:75ch;
}
.cookie-text strong{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:15px;
}
.cookie-text p{
  margin:8px 0 0;
  color:var(--muted);
  font-size:14px;
}
.cookie-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
}
.cookie-actions a{
  text-decoration:none;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(155,151,142,.28);
  background: rgba(155,151,142,.10);
  font-weight:700;
  font-size:14px;
}
.cookie-actions a.secondary{
  background: var(--surface-soft);
  border-color: var(--surface-border);
  font-weight:650;
  color:var(--text);
}

.cookie-settings-overlay{
  position:fixed;
  inset:0;
  background: var(--overlay-dim);
  z-index:250;
  display:none;
}
.cookie-settings-overlay.open{display:block}
.cookie-settings-modal{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:min(920px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  overflow:auto;
  border-radius:22px;
  border:1px solid rgba(155,151,142,.28);
  background: var(--panel);
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
}
.cookie-modal-inner{
  padding:18px;
}
.cookie-modal-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}
.cookie-modal-head h3{
  margin:0;
  font-size:18px;
}
.cookie-modal-head p{
  margin:8px 0 0;
  color:var(--muted);
  font-size:14px;
}
.cookie-close{
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:14px;
  border:1px solid var(--surface-border);
  background: var(--surface-soft);
}
.cookie-close i{color:var(--accent2)}

.cookie-consent-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top:14px;
}
.cookie-toggle{
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(155,151,142,.18);
  background: var(--surface-soft);
}
.cookie-toggle strong{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:15px;
}
.cookie-toggle p{
  margin:8px 0 0;
  color:var(--muted);
  font-size:14px;
}
.cookie-toggle label{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:12px;
  color:var(--text);
}
.switch{
  position:relative;
  width:52px;
  height:30px;
  background: var(--panel2);
  border:1px solid var(--surface-border);
  border-radius:999px;
  cursor:pointer;
}
.switch input{display:none}
.switch .slider{
  position:absolute;
  left:4px;
  top:50%;
  transform: translateY(-50%);
  width:22px;
  height:22px;
  border-radius:50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
  transition: left .16s ease, background .16s ease;
}
.switch.on{
  background: rgba(155,151,142,.22);
  border-color: rgba(155,151,142,.40);
}
.switch.on .slider{
  left: calc(100% - 26px);
  background: var(--accent2);
}
.cookie-settings-actions{
  display:flex;
  gap:10px;
  justify-content:flex-end;
  flex-wrap:wrap;
  margin-top:16px;
}
.cookie-settings-actions a{
  text-decoration:none;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(155,151,142,.28);
  background: rgba(155,151,142,.10);
  font-weight:750;
  font-size:14px;
}
.cookie-settings-actions a.secondary{
  background: var(--surface-soft);
  border-color: var(--surface-border);
  color:var(--text);
  font-weight:650;
}

.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:12px;
}
.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.field label{
  color:var(--text);
  font-weight:650;
  font-size:14px;
}
.field input,.field textarea{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(155,151,142,.24);
  background: var(--panel);
  color:var(--text);
  padding:12px 12px;
  outline:none;
}
.field textarea{min-height:140px; resize:vertical}
.field input::placeholder,.field textarea::placeholder{color:rgba(75,80,96,.55)}
.field input:focus,.field textarea:focus{
  border-color: rgba(155,151,142,.55);
  box-shadow: 0 0 0 3px rgba(155,151,142,.12);
}
.gdpr-line{
  display:flex;
  gap:12px;
  align-items:flex-start;
  color:var(--muted);
  font-size:14px;
  margin-top:12px;
}
.gdpr-line input{margin-top:3px}
.form-actions{
  margin-top:16px;
}
.form-actions input[type="submit"]{
  cursor:pointer;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(155,151,142,.32);
  background: rgba(155,151,142,.10);
  color:var(--text);
  font-weight:800;
  font-size:15px;
}
.form-actions input[type="submit"]:hover{
  background: rgba(155,151,142,.14);
  border-color: rgba(155,151,142,.50);
}

.events-list{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:12px;
}
.event-card{
  border-radius:16px;
  border:1px solid var(--surface-border);
  background: var(--surface-soft);
  padding:12px 14px;
}
.event-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.event-top strong{
  font-size:15px;
}
.event-meta{
  color:var(--muted);
  font-size:13px;
  margin-top:6px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(155,151,142,.22);
  background: rgba(155,151,142,.08);
  color:var(--text);
  font-size:13px;
  font-weight:750;
}

.faq-list{
  margin-top:10px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.faq-item{
  border-radius:16px;
  border:1px solid var(--surface-border);
  background: var(--surface-soft);
  padding:12px 14px;
}
.faq-item details summary{
  cursor:pointer;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-weight:800;
}
.faq-item details summary::-webkit-details-marker{display:none}
.faq-item details p{
  margin:10px 0 0;
  color:var(--muted);
}

@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
  .hero h1{font-size:38px}
  .cookie-consent-grid{grid-template-columns:1fr}
  .img-split{grid-template-columns:1fr}
  .two-col{grid-template-columns:1fr}
  .checklist{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
  .gallery-grid{
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-card--featured,
  .gallery-card:not(.gallery-card--featured):nth-of-type(2),
  .gallery-card:not(.gallery-card--featured):nth-of-type(3),
  .gallery-card:not(.gallery-card--featured):nth-of-type(4),
  .gallery-card:not(.gallery-card--featured):nth-of-type(5){
    grid-column:auto;
    grid-row:auto;
    min-height:180px;
  }
  .gallery-card--featured{grid-column: 1 / -1; min-height:240px}
}

@media (max-width: 520px){
  .desktop-nav{display:none}
  .mobile-toggle{display:flex}
  .hero-content{padding:56px 16px 34px}
  .hero h1{font-size:30px}
  .cookie-inner{padding:0 10px}
  .home-gallery{padding:14px}
  .gallery-head h2{font-size:24px}
  .gallery-grid{grid-template-columns:1fr}
  .gallery-card--featured{min-height:220px}
  .gallery-card{min-height:170px}
  .trust-grid{grid-template-columns:1fr}
}

