/* Soft Activity Consultations — Card-based Tiles Layout */
:root {
  --cream: #e9d5be;
  --cream-light: #f5ebe0;
  --cream-dark: #d4bc9e;
  --charcoal: #2a2318;
  --charcoal-soft: #3d3428;
  --accent: #5c4a32;
  --accent-dark: #3e3222;
  --teal: #2d6a6a;
  --teal-light: #3d8585;
  --white: #fffdf9;
  --shadow: rgba(42, 35, 24, 0.12);
  --shadow-deep: rgba(42, 35, 24, 0.22);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --max-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--cream-light);
  line-height: 1.65;
  min-width: 320px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

ul, ol {
  padding-left: 1.25rem;
}

h1, h2, h3, h4 {
  color: var(--charcoal);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Disclaimer Bar */
.disclaimer-bar {
  background: var(--charcoal);
  color: var(--cream);
  font-size: 0.78rem;
  text-align: center;
  padding: 0.5rem 1rem;
  line-height: 1.45;
}

.disclaimer-bar a {
  color: var(--cream-light);
  text-decoration: underline;
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--cream-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.95rem;
}

.logo-link:hover { color: var(--accent); }

.logo-link img {
  width: 42px;
  height: 42px;
}

.main-nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.main-nav a {
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--teal);
}

.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--charcoal);
  border-radius: 6px;
  padding: 0.4rem 0.55rem;
  cursor: pointer;
  color: var(--charcoal);
  font-size: 1.4rem;
  line-height: 1;
}

/* Hero — Fragmented Collage */
.hero-collage {
  position: relative;
  min-height: 420px;
  background: var(--accent-dark);
  overflow: hidden;
  padding: 2rem 1rem;
}

.hero-collage .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.hero-text {
  color: var(--cream-light);
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-text p {
  color: var(--cream);
  font-size: 1.05rem;
}

.hero-fragments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

.hero-fragments .frag-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--cream);
  box-shadow: 8px 8px 0 var(--teal);
}

.hero-fragments .frag-sm {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--cream-dark);
  aspect-ratio: 4/3;
}

.hero-fragments img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--teal);
  color: var(--white);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream);
  color: var(--charcoal);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 1.25rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero-cta:hover {
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-deep);
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--charcoal-soft);
  color: var(--cream-light);
}

.section-alt h2,
.section-alt h3 {
  color: var(--white);
}

.section-alt p,
.section-alt li {
  color: var(--cream);
}

.section-cream {
  background: var(--cream);
}

.section-teal {
  background: var(--teal);
  color: var(--white);
}

.section-teal h2,
.section-teal h3 {
  color: var(--white);
}

.section-teal p,
.section-teal li {
  color: var(--cream-light);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-header .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.section-alt .section-header .icon-wrap {
  background: var(--cream);
  color: var(--charcoal);
}

.section-teal .section-header .icon-wrap {
  background: var(--cream);
  color: var(--teal);
}

/* Tiles Grid */
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.tile-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--cream-dark);
}

.tile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px var(--shadow-deep);
}

.section-alt .tile-card {
  background: var(--charcoal);
  border-color: var(--accent);
  color: var(--cream);
}

.section-alt .tile-card h3 {
  color: var(--white);
}

.section-teal .tile-card {
  background: rgba(255, 253, 249, 0.12);
  border-color: rgba(233, 213, 190, 0.3);
  color: var(--cream-light);
}

.section-teal .tile-card h3 {
  color: var(--white);
}

.tile-card .card-icon {
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section-alt .tile-card .card-icon {
  color: var(--cream);
}

.section-teal .tile-card .card-icon {
  color: var(--cream);
}

/* Split Layout */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.split-block.reverse {
  direction: rtl;
}

.split-block.reverse > * {
  direction: ltr;
}

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow-deep);
  border: 3px solid var(--cream-dark);
}

.split-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.split-image-full img {
  height: auto;
  max-height: none;
  object-fit: contain;
}

.split-image-full {
  background: var(--cream-light);
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
  box-shadow: 0 2px 8px var(--shadow);
  color: var(--charcoal-soft);
  border: 1px solid var(--cream-dark);
  border-left: 4px solid var(--teal);
}

.feature-list li span {
  color: var(--charcoal-soft);
}

.feature-list li strong {
  color: var(--charcoal);
}

.section-alt .feature-list li {
  background: var(--charcoal);
  border-color: var(--accent);
  border-left-color: var(--cream);
  color: var(--cream);
}

.section-alt .feature-list li span {
  color: var(--cream);
}

.section-alt .feature-list li strong {
  color: var(--white);
}

.section-teal .feature-list li {
  background: rgba(255, 253, 249, 0.12);
  border-color: rgba(233, 213, 190, 0.3);
  border-left-color: var(--cream);
  color: var(--cream-light);
}

.section-teal .feature-list li span {
  color: var(--cream-light);
}

.section-teal .feature-list li strong {
  color: var(--white);
}

.feature-list li i {
  color: var(--teal);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.section-alt .feature-list li i {
  color: var(--cream);
}

.section-teal .feature-list li i {
  color: var(--cream);
}

/* Numbered Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  counter-reset: step;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  padding-top: 2.5rem;
  box-shadow: 0 4px 16px var(--shadow);
  border: 1px solid var(--cream-dark);
}

.step-card h3 {
  color: var(--charcoal);
}

.step-card p {
  color: var(--charcoal-soft);
  margin-bottom: 0;
}

.section-alt .step-card {
  background: var(--charcoal);
  border-color: var(--accent);
}

.section-alt .step-card h3 {
  color: var(--white);
}

.section-alt .step-card p {
  color: var(--cream);
}

.section-teal .step-card {
  background: rgba(255, 253, 249, 0.12);
  border-color: rgba(233, 213, 190, 0.3);
}

.section-teal .step-card h3 {
  color: var(--white);
}

.section-teal .step-card p {
  color: var(--cream-light);
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -14px;
  left: 1.25rem;
  width: 36px;
  height: 36px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  box-shadow: 0 2px 8px var(--shadow);
}

.section-alt .faq-item {
  background: var(--charcoal);
  border-color: var(--accent);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  gap: 1rem;
}

.section-alt .faq-question {
  color: var(--white);
}

.faq-question i {
  color: var(--teal);
  font-size: 1.25rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.section-alt .faq-question i {
  color: var(--cream);
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
  color: var(--charcoal-soft);
}

.section-alt .faq-answer-inner {
  color: var(--cream);
}

/* Events Calendar */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1rem;
  align-items: start;
  border: 1px solid var(--cream-dark);
  box-shadow: 0 4px 12px var(--shadow);
}

.event-date {
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius);
  text-align: center;
  padding: 0.5rem;
}

.event-date .day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 0.75rem;
  text-transform: uppercase;
}

.event-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.event-card p {
  font-size: 0.88rem;
  margin: 0;
  color: var(--charcoal-soft);
}

/* Safety Guidelines */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.safety-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  border-top: 4px solid var(--teal);
  box-shadow: 0 4px 12px var(--shadow);
}

.safety-card i {
  font-size: 1.75rem;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.safety-card h3 {
  font-size: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-deep);
}

.btn-secondary {
  background: var(--cream);
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}

.btn-secondary:hover {
  color: var(--charcoal);
  background: var(--cream-dark);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px var(--shadow);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--cream-light);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-group.checkbox-group input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
  margin: 0.2em 0 0;
  padding: 0;
  flex-shrink: 0;
  accent-color: var(--teal);
  cursor: pointer;
  border: 2px solid var(--cream-dark);
  background: var(--white);
}

.form-group.checkbox-group label {
  display: block;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1.55;
  flex: 1;
  cursor: pointer;
}

.form-group.checkbox-group label a {
  font-weight: 600;
}

.content-notice {
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.content-notice strong {
  color: var(--charcoal);
}

.section-alt .content-notice {
  background: var(--charcoal);
  border-color: var(--cream);
  color: var(--cream);
}

.section-alt .content-notice strong {
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.trust-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--cream-dark);
  box-shadow: 0 2px 8px var(--shadow);
}

.trust-card i {
  font-size: 1.75rem;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.trust-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 0.88rem;
  margin: 0;
  color: var(--charcoal-soft);
}

  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-card {
  background: var(--white);
  color: var(--charcoal);
  padding: 1.25rem;
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid var(--cream-dark);
  box-shadow: 0 2px 8px var(--shadow);
}

.info-card i {
  font-size: 1.5rem;
  color: var(--charcoal);
  flex-shrink: 0;
}

.info-card h3 {
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}

.info-card p {
  color: var(--charcoal);
  margin-bottom: 0;
}

.info-card a {
  color: var(--charcoal);
}

.info-card a:hover {
  color: var(--teal);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 1rem;
  border: 3px solid var(--cream-dark);
}

.map-wrap iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

/* Policy Pages */
.policy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}

.policy-content h1 {
  margin-bottom: 0.5rem;
}

.policy-content .updated {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.policy-content h2 {
  margin-top: 2rem;
  font-size: 1.3rem;
}

.policy-content ul {
  margin-bottom: 1rem;
}

/* Success Page */
.success-block {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.success-block i {
  font-size: 4rem;
  color: var(--teal);
  margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.footer-grid p,
.footer-grid a {
  color: var(--cream);
  font-size: 0.88rem;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.45;
}

.footer-contact li i {
  color: var(--cream);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-cookie-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--cream);
  font-family: inherit;
  font-size: 0.88rem;
  cursor: pointer;
  text-decoration: underline;
}

.footer-cookie-btn:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--accent);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--cream-dark);
}

.footer-legal-note {
  margin-top: 0.65rem;
  font-size: 0.78rem;
  line-height: 1.5;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.footer-legal-note a {
  color: var(--cream-light);
  text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal);
  color: var(--cream);
  padding: 1.25rem;
  z-index: 9999;
  box-shadow: 0 -4px 24px var(--shadow-deep);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  min-width: 240px;
  font-size: 0.88rem;
}

.cookie-text a {
  color: var(--cream-light);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-buttons .btn {
  font-size: 0.82rem;
  padding: 0.55rem 1rem;
}

.cookie-settings-panel {
  display: none;
  width: 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--accent);
}

.cookie-settings-panel.open {
  display: block;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--accent);
}

.cookie-toggle label {
  font-size: 0.88rem;
}

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--accent);
  border-radius: 24px;
  transition: var(--transition);
}

.toggle-slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--cream);
  border-radius: 50%;
  transition: var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--teal);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Highlight Box */
.highlight-box {
  background: var(--cream);
  border-left: 5px solid var(--teal);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}

.section-alt .highlight-box {
  background: var(--charcoal);
  border-left-color: var(--cream);
}

/* Quote Block */
.quote-block {
  font-style: italic;
  padding: 1.5rem;
  background: rgba(45, 106, 106, 0.1);
  border-radius: var(--radius);
  margin: 1.5rem 0;
  border-left: 4px solid var(--teal);
}

/* Two Column List */
.two-col-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
  list-style: disc;
  margin-bottom: 1rem;
}

/* Mobile Navigation */
@media (max-width: 900px) {
  .hero-collage .container {
    grid-template-columns: 1fr;
  }

  .split-block,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split-block.reverse {
    direction: ltr;
  }

  .two-col-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 4.5rem 1.5rem 2rem;
    gap: 0;
    box-shadow: -4px 0 24px var(--shadow-deep);
    transition: right var(--transition);
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav a {
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 1rem;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(42, 35, 24, 0.5);
    z-index: 998;
  }

  .nav-overlay.open {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 2.5rem 0;
  }

  .hero-collage {
    min-height: auto;
    padding: 1.5rem 0.75rem;
  }

  .hero-fragments {
    grid-template-columns: 1fr;
  }

  .hero-fragments .frag-sm {
    display: none;
  }

  .tiles-grid {
    grid-template-columns: 1fr;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .logo-link span {
    font-size: 0.75rem;
    max-width: 140px;
    line-height: 1.2;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .map-wrap iframe {
    height: 250px;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .header-inner {
    padding: 0.5rem 0.75rem;
  }

  .logo-link img {
    width: 36px;
    height: 36px;
  }

  .container {
    padding: 0 0.75rem;
  }

  .tile-card,
  .step-card,
  .event-card {
    padding: 1rem;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn {
    width: 100%;
    justify-content: center;
  }
}
