/* Restore Legal Group layout:bands */
:root {
  --color-brand: #234e52;
  --color-accent: #319795;
  --color-text: #1a202c;
  --color-muted: #4a5568;
  --color-bg: #f0f7f6;
  --color-surface: #ffffff;
  --color-border: #e2e8f0;
  --font-heading: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 6px;
  --max: 1200px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0; font-family: var(--font-body); font-size: 16px; line-height: 1.65;
  color: var(--color-text); background: var(--color-bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--color-brand); color: #fff;
  padding: .75rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 0; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.site-header {
  background: var(--color-surface); border-bottom: 1px solid var(--color-border);
  position: sticky; top: 0; z-index: 50;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .75rem 0; min-height: 64px;
}
.logo { display: inline-flex; align-items: center; text-decoration: none; color: var(--color-brand); }
.logo img { height: 40px; width: auto; }
.nav { display: none; }
.nav.is-open {
  display: block; position: absolute; left: 0; right: 0; top: 64px;
  background: #fff; border-bottom: 1px solid var(--color-border); padding: 1rem;
}
.nav__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.nav__link {
  display: inline-flex; align-items: center; min-height: 44px; padding: .5rem .75rem;
  text-decoration: none; color: var(--color-text); font-weight: 500;
}
.nav__link:hover { color: var(--color-accent); }
.nav-toggle {
  min-width: 44px; min-height: 44px; border: 1px solid var(--color-border);
  background: #fff; border-radius: var(--radius); cursor: pointer;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 44px; padding: .75rem 1.25rem; border-radius: var(--radius);
  font-weight: 600; text-decoration: none; border: 2px solid transparent; cursor: pointer;
}
.btn--primary { background: var(--color-brand); color: #fff; }
.btn--primary:hover { background: var(--color-accent); color: #fff; }
.btn--ghost { background: transparent; border-color: var(--color-brand); color: var(--color-brand); }
.hero { background: var(--color-brand); color: #fff; padding: 2.5rem 0 3rem; }
.hero__title { font-family: var(--font-heading); font-size: clamp(1.75rem, 4vw, 2.6rem); line-height: 1.2; margin: 0 0 1rem; }
.hero__sub { font-size: 1.05rem; opacity: .95; margin: 0 0 1.5rem; max-width: 42rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero__media img { width: 100%; border-radius: var(--radius); object-fit: cover; aspect-ratio: 16/10; }
.section { padding: 3rem 0; }
.section--alt { background: var(--color-surface); }
.section__title { font-family: var(--font-heading); font-size: 1.75rem; margin: 0 0 1rem; color: var(--color-brand); }
.section__lead { color: var(--color-muted); margin: 0 0 1.5rem; max-width: 44rem; }
.prose p { margin: 0 0 1rem; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 1.25rem; }
.card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 1.25rem;
}
.card h3 { margin: 0 0 .5rem; font-family: var(--font-heading); font-size: 1.15rem; color: var(--color-brand); }
.card p { margin: 0; color: var(--color-muted); }
.media-row { display: grid; gap: 1.5rem; align-items: center; }
.media-row img, .media-row picture img { border-radius: var(--radius); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.media-row--rev { }
.gallery { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.gallery figure { margin: 0; }
.gallery figcaption { font-size: .85rem; color: var(--color-muted); margin-top: .4rem; }
.faq__item { border-bottom: 1px solid var(--color-border); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; padding: 1rem 0; min-height: 44px;
  font: inherit; font-weight: 600; cursor: pointer; color: var(--color-text);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq__a { display: none; padding: 0 0 1rem; color: var(--color-muted); }
.faq__item.is-open .faq__a { display: block; }
.contact-block address { font-style: normal; }
.site-footer { background: var(--color-brand); color: #e2e8f0; padding: 2.5rem 0 2rem; margin-top: 2rem; }
.site-footer a { color: #fff; }
.site-footer__grid { display: grid; gap: 1.5rem; }
.site-footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; }
.site-footer__links a, .site-footer__links button { min-height: 44px; display: inline-flex; align-items: center; }
.disclaimer { font-size: .9rem; opacity: .9; margin-top: 1rem; }
.legal-page { padding: 2.5rem 0 3rem; background: var(--color-surface); }
.legal-page h1 { font-family: var(--font-heading); color: var(--color-brand); }
.legal-page h2 { margin-top: 2rem; color: var(--color-brand); }
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
  background: #1a202c; color: #f7fafc; padding: 1rem; box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  max-height: 30vh; overflow: auto;
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner__inner { width: min(100% - 1rem, var(--max)); margin-inline: auto; }
.cookie-banner p { margin: 0 0 .75rem; font-size: .95rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner .btn { font-size: .9rem; padding: .5rem 1rem; }
.cookie-banner .btn--primary { background: var(--color-accent); }
.cookie-banner .btn--ghost { border-color: #fff; color: #fff; }
.cookie-panel { margin-top: .75rem; padding-top: .75rem; border-top: 1px solid #4a5568; }
.cookie-panel label { display: flex; align-items: center; gap: .5rem; min-height: 44px; }
.page-404 { text-align: center; padding: 4rem 0; }
.values-list { display: grid; gap: 1rem; }

.hero--bands { background: var(--color-accent); color: #fff; padding: 3rem 0; }
.hero--bands .hero__grid { display: grid; gap: 1.5rem; }
.hero--bands .btn--ghost { border-color: #fff; color: #fff; }
.section--band-a { background: var(--color-surface); }
.section--band-b { background: var(--color-bg); border-top: 4px solid var(--color-accent); }
.gallery { display: grid; gap: 1rem; }
@media (min-width: 700px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery figure:nth-child(1) { grid-column: span 2; }

@media (min-width: 768px) {
  .nav { display: block; position: static; padding: 0; border: 0; background: transparent; }
  .nav__list { flex-direction: row; align-items: center; gap: .25rem; }
  .nav-toggle { display: none; }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .media-row { grid-template-columns: 1fr 1fr; }
  .media-row--rev .media-row__text { order: 2; }
  .media-row--rev .media-row__media { order: 1; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .site-footer__grid { grid-template-columns: 2fr 1fr; }
  .values-list { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 4rem 0; }
}
