:root {
  --accent: #096d65;
  --accent-light: #0d8a7f;
  --accent-dark: #064f49;
  --bg-page: #eef2f1;
  --bg-paper: #ffffff;
  --bg-dark: #1a2423;
  --bg-teal: #064f49;
  --bg-muted: #e4ebe9;
  --bg-elevated: #ffffff;
  --text-on-light: #1a2423;
  --text-on-dark: #f5f7f6;
  --text-muted: #5c6b68;
  --icon-contrast: #f4a261;
  --icon-on-light: #096d65;
  --shadow-sm: 0 2px 8px rgba(26, 36, 35, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 36, 35, 0.1);
  --shadow-lg: 0 16px 48px rgba(26, 36, 35, 0.14);
  --shadow-xl: 0 24px 64px rgba(26, 36, 35, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1180px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-on-light);
  background: var(--bg-page);
  background-image: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(9, 109, 101, 0.12), transparent);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-light);
}

h1, h2, h3, h4 {
  line-height: 1.3;
  margin-top: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
h2 { font-size: clamp(1.35rem, 4vw, 1.85rem); }
h3 { font-size: 1.125rem; font-weight: 600; }

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.disclaimer-bar {
  background: var(--bg-dark);
  color: rgba(245, 247, 246, 0.9);
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  text-align: center;
  line-height: 1.5;
  box-shadow: var(--shadow-sm);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-on-light);
  font-weight: 700;
  font-size: 0.85rem;
}

.logo-link img {
  filter: drop-shadow(var(--shadow-sm));
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  color: var(--icon-contrast);
  border: none;
  border-radius: var(--radius);
  padding: 0.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.nav-toggle .material-icons {
  font-size: 1.5rem;
}

.main-nav {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 1rem;
  right: 1rem;
  background: var(--bg-paper);
  border-radius: var(--radius-lg);
  flex-direction: column;
  padding: 0.5rem;
  box-shadow: var(--shadow-xl);
}

.main-nav.is-open {
  display: flex;
}

.main-nav a {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--text-on-light);
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: var(--bg-muted);
  color: var(--accent-dark);
}

.header-wrap {
  position: relative;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.15rem;
    padding: 0;
    background: transparent;
    box-shadow: none;
    left: auto;
    right: auto;
  }

  .main-nav a {
    padding: 0.5rem 0.75rem;
    font-size: 0.88rem;
  }
}

section {
  padding: 3rem 0;
}

.section-dark {
  background: linear-gradient(160deg, var(--bg-teal) 0%, #053d38 100%);
  color: var(--text-on-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.section-dark h2,
.section-dark h3 {
  color: var(--text-on-dark);
}

.section-dark a {
  color: var(--icon-contrast);
}

.section-dark a:hover {
  color: #ffc896;
}

.section-dark .material-icons {
  color: var(--icon-contrast);
}

.section-light {
  background: var(--bg-paper);
  color: var(--text-on-light);
}

.section-grunge {
  background: var(--bg-muted);
  color: var(--text-on-light);
}

.material-icons {
  vertical-align: middle;
  font-size: 1.25rem;
}

.section-light .material-icons,
.section-grunge .material-icons {
  color: var(--icon-on-light);
}

h2 .material-icons,
h3 .material-icons {
  margin-right: 0.35rem;
}

.hero-collage {
  position: relative;
  padding: 2.5rem 0 3rem;
  background: linear-gradient(145deg, var(--bg-dark) 0%, #0a3530 50%, var(--bg-teal) 100%);
  color: var(--text-on-dark);
  overflow: hidden;
}

.hero-collage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(9, 109, 101, 0.35), transparent 55%);
  pointer-events: none;
}

.hero-collage__wrap {
  position: relative;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .hero-collage__wrap {
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
  }
}

.hero-scatter {
  position: relative;
  min-height: 280px;
}

.hero-piece {
  margin: 0;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  background: var(--bg-dark);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-piece:hover {
  transform: translateY(-4px) rotate(0deg) !important;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.35);
}

.hero-piece img {
  width: 100%;
  object-fit: cover;
}

.hero-piece--lead {
  width: 78%;
  transform: rotate(-1deg);
  z-index: 2;
  position: relative;
}

.hero-piece--tl {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  transform: rotate(2deg);
  z-index: 3;
}

.hero-piece--br {
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto;
  width: 38%;
  transform: rotate(-1.5deg);
  z-index: 2;
}

.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-paper);
  color: var(--accent-dark);
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  z-index: 4;
  box-shadow: var(--shadow-lg);
}

.hero-badge .material-icons {
  color: var(--accent);
  font-size: 1rem;
}

.hero-badge--time {
  bottom: 12%;
  right: 2%;
}

.hero-badge--ergo {
  top: 38%;
  left: 0;
}

.hero-panel h1 {
  color: var(--text-on-dark);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--icon-contrast);
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.hero-pills {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-pills li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.hero-pills .material-icons {
  color: var(--icon-contrast);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: var(--text-on-dark);
  box-shadow: 0 4px 14px rgba(9, 109, 101, 0.45);
}

.btn-primary:hover {
  background: var(--accent-light);
  box-shadow: 0 8px 24px rgba(9, 109, 101, 0.5);
  color: var(--text-on-dark);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-on-dark);
  box-shadow: var(--shadow-sm);
}

.section-light .btn-outline,
.section-grunge .btn-outline {
  background: var(--bg-paper);
  color: var(--accent-dark);
  box-shadow: var(--shadow-md);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--text-on-dark);
  box-shadow: var(--shadow-lg);
}

.grid-2 {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 700px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--bg-elevated);
  border: none;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.media-block {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: none;
}

.media-block img {
  width: 100%;
}

.split-media {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .split-media {
    grid-template-columns: 1fr 1.1fr;
  }

  .split-media--reverse {
    direction: rtl;
  }

  .split-media--reverse > * {
    direction: ltr;
  }
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  background: var(--accent);
  color: var(--text-on-dark);
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  border: none;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  align-items: flex-start;
}

.check-list .material-icons {
  color: var(--icon-on-light);
  flex-shrink: 0;
}

.section-dark .check-list .material-icons {
  color: var(--icon-contrast);
}

.number-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.number-list li {
  counter-increment: step;
  position: relative;
  padding-left: 2.75rem;
  margin-bottom: 1.1rem;
}

.number-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--accent);
  color: var(--text-on-dark);
  font-weight: 700;
  text-align: center;
  line-height: 2rem;
  border: none;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.definition-grid {
  display: grid;
  gap: 1rem;
}

.definition-grid dt {
  font-weight: 700;
  color: var(--accent-dark);
  margin-top: 0.75rem;
}

.section-dark .definition-grid dt {
  color: var(--icon-contrast);
}

.events-table-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-paper);
}

.section-dark .events-table-wrap {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.events-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.events-table th,
.events-table td {
  border: none;
  padding: 0.85rem 1rem;
  text-align: left;
}

.events-table th {
  background: var(--accent);
  color: var(--text-on-dark);
  font-weight: 600;
}

.events-table tbody tr {
  transition: background 0.2s ease;
}

.events-table tbody tr:nth-child(even) {
  background: rgba(9, 109, 101, 0.06);
}

.section-dark .events-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.05);
}

.section-dark .events-table th {
  background: rgba(0, 0, 0, 0.25);
}

.faq-list details {
  border: none;
  margin-bottom: 0.75rem;
  background: var(--bg-paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-list details:hover {
  box-shadow: var(--shadow-md);
}

.faq-list details[open] {
  box-shadow: var(--shadow-md);
}

.section-dark .faq-list details {
  background: rgba(255, 255, 255, 0.08);
}

.faq-list summary {
  padding: 1rem 1.15rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  content: "+";
  font-weight: 700;
  color: var(--accent);
  font-size: 1.2rem;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-muted);
  border-radius: 50%;
  flex-shrink: 0;
}

.section-dark .faq-list summary::before {
  background: rgba(255, 255, 255, 0.15);
  color: var(--icon-contrast);
}

.faq-list details[open] summary::before {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--text-muted);
}

.section-dark .faq-list details p {
  color: rgba(245, 247, 246, 0.85);
}

.page-hero-simple {
  background: linear-gradient(145deg, var(--bg-dark), var(--bg-teal));
  color: var(--text-on-dark);
  padding: 2.5rem 0;
  box-shadow: var(--shadow-md);
}

.page-hero-simple .lead {
  font-size: 1.05rem;
  max-width: 65ch;
  color: rgba(245, 247, 246, 0.9);
}

.page-hero-inner {
  padding: 1.5rem 0 2rem;
}

.page-hero-inner .hero-scatter {
  min-height: 220px;
  margin-bottom: 1.5rem;
}

.icon-list {
  list-style: none;
  padding: 0;
}

.icon-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
  padding: 0.75rem;
  background: var(--bg-muted);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.icon-list .material-icons {
  color: var(--icon-on-light);
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: var(--radius);
  background: var(--bg-muted);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-on-light);
  box-shadow: inset 0 1px 3px rgba(26, 36, 35, 0.08);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: var(--bg-paper);
  box-shadow: 0 0 0 3px rgba(9, 109, 101, 0.25), var(--shadow-sm);
}

.checkbox-row {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin: 1.25rem 0;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.3rem;
  accent-color: var(--accent);
}

.map-wrap {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 1.25rem;
  box-shadow: var(--shadow-lg);
}

.map-wrap iframe {
  width: 100%;
  max-width: 100%;
  display: block;
}

.policy-content {
  padding: 2.5rem 0 3rem;
  max-width: 800px;
}

.policy-content h2 {
  margin-top: 2rem;
  color: var(--accent-dark);
}

.policy-content ul {
  padding-left: 1.25rem;
}

.policy-content .events-table-wrap {
  margin: 1rem 0;
}

.success-box {
  text-align: center;
  padding: 4rem 1.5rem;
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.success-box .material-icons {
  font-size: 3.5rem;
  color: var(--accent);
}

.site-footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 2.5rem 0 1.25rem;
  box-shadow: 0 -8px 32px rgba(26, 36, 35, 0.12);
}

.site-footer a {
  color: var(--icon-contrast);
  display: block;
  margin-bottom: 0.4rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--text-on-dark);
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-trust {
  font-size: 0.85rem;
  color: rgba(245, 247, 246, 0.8);
  max-width: var(--max-width);
  margin: 0 auto 1rem;
  padding: 0 1rem;
  line-height: 1.6;
  text-align: center;
}

.footer-trust a {
  display: inline;
  color: var(--icon-contrast);
}

.trust-panel {
  background: var(--bg-paper);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.section-dark .trust-panel {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.section-grunge .trust-panel {
  background: var(--bg-paper);
}

.trust-panel h3 {
  margin-bottom: 0.85rem;
}

.trust-panel ul {
  margin: 0;
  padding-left: 1.2rem;
}

.trust-panel li {
  margin-bottom: 0.5rem;
}

.business-info-lead {
  max-width: 65ch;
  margin-bottom: 1.75rem;
  color: var(--text-muted);
}

.business-info-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .business-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.info-card {
  background: var(--bg-paper);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-md);
}

.info-card--primary {
  box-shadow: var(--shadow-lg);
}

.info-card--wide {
  grid-column: 1 / -1;
}

.info-card h3 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: var(--accent-dark);
}

.info-card h3 .material-icons {
  color: var(--icon-on-light);
}

.info-dl {
  margin: 0;
}

.info-dl__row {
  display: grid;
  grid-template-columns: minmax(5.5rem, 7rem) 1fr;
  gap: 0.5rem 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(9, 109, 101, 0.12);
}

.info-dl__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-dl__row:first-child {
  padding-top: 0;
}

.info-dl dt {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.info-dl dd {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-on-light);
}

.info-note {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.info-list li:last-child {
  margin-bottom: 0;
}

.info-list .material-icons {
  font-size: 1.15rem;
  color: var(--icon-on-light);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.info-columns {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .info-columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .info-columns {
    grid-template-columns: repeat(4, 1fr);
  }
}

.info-subtitle {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--accent-dark);
  margin: 0 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.info-columns p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .info-dl__row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  padding-top: 1.25rem;
  color: rgba(245, 247, 246, 0.65);
}

.footer-bottom a {
  display: inline;
  color: var(--icon-contrast);
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
  z-index: 500;
  background: var(--bg-paper);
  color: var(--text-on-light);
  border: none;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transform: translateY(calc(110% + 2rem));
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-xl);
}

@media (min-width: 600px) {
  .cookie-banner {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(calc(110% + 2rem));
    width: min(calc(100% - 2rem), var(--max-width));
  }

  .cookie-banner.is-visible {
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 599px) {
  .cookie-banner.is-visible {
    transform: translateY(0);
  }
}

.cookie-inner p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cookie-inner a {
  color: var(--accent);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-banner .btn,
.cookie-banner .btn-primary,
.cookie-banner .btn-outline {
  background: var(--accent);
  color: var(--text-on-dark);
  box-shadow: 0 4px 14px rgba(9, 109, 101, 0.4);
}

.cookie-banner .btn:hover {
  background: var(--accent-light);
  color: var(--text-on-dark);
  box-shadow: 0 6px 18px rgba(9, 109, 101, 0.45);
}

.cookie-settings {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  box-shadow: inset 0 1px 0 rgba(26, 36, 35, 0.08);
}

.cookie-settings.is-open {
  display: block;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  padding: 0.5rem 0;
}

.stagger-cards {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .stagger-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stagger-cards .card:nth-child(2) {
  transform: none;
}

@media (min-width: 640px) {
  .stagger-cards .card:nth-child(2) {
    transform: translateY(0.5rem);
  }
}

.quote-block {
  position: relative;
  border: none;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem 1.25rem 1.75rem;
  margin: 1.5rem 0;
  background: var(--bg-paper);
  font-style: italic;
  box-shadow: var(--shadow-md);
}

.quote-block::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 1rem;
  bottom: 1rem;
  width: 4px;
  background: var(--accent);
  border-radius: 4px;
}

.section-dark .quote-block {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.section-dark .quote-block::before {
  background: var(--icon-contrast);
}

@media (max-width: 320px) {
  body {
    font-size: 0.94rem;
  }

  .header-inner {
    padding: 0.65rem 0.5rem;
  }

  .hero-piece--lead {
    width: 100%;
  }

  .hero-piece--tl {
    width: 48%;
    right: 0;
    left: auto;
  }

  .hero-piece--br {
    width: 48%;
    right: 0;
    left: auto;
    bottom: 0;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  section {
    padding: 2rem 0;
  }

  .cookie-banner {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
  }
}
