﻿:root {
  --bg: #f6f0e4;
  --bg-2: #efe4d1;
  --surface: #fffaf0;
  --surface-2: #fff3df;
  --ink: #1f2a2e;
  --ink-soft: #4b5a5f;
  --line: #d7c4a5;
  --accent-1: #ef6a3a;
  --accent-2: #1f7a8c;
  --accent-3: #f2b84b;
  --ok: #2f9e6d;
  --danger: #c84b4b;
  --radius: 16px;
  --shadow: 0 10px 24px rgba(39, 30, 18, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: 'Trebuchet MS', 'Gill Sans', sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 8% 2%, rgba(239, 106, 58, 0.18), transparent 22%),
    radial-gradient(circle at 92% 6%, rgba(31, 122, 140, 0.14), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

main {
  flex: 1 0 auto;
}

img, picture {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a { color: #185d6c; word-break: break-word; }
a:hover { color: #9e3f20; }

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
  min-width: 0;
}

.section {
  padding: 3.6rem 0;
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
}

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  color: #000;
  border: 2px solid #000;
  border-radius: 8px;
  padding: 0.5rem 0.7rem;
  z-index: 100;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 45;
  background: rgba(255, 248, 236, 0.96);
  border-bottom: 2px solid var(--line);
  backdrop-filter: blur(5px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  position: relative;
}

.logo {
  text-decoration: none;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 1.02rem;
}
.logo span { color: var(--accent-1); }

.site-nav { min-width: 0; }
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}
.nav-list a {
  display: inline-block;
  text-decoration: none;
  color: var(--ink-soft);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.34rem 0.62rem;
  font-weight: 700;
}
.nav-list a:hover,
.nav-list a.active {
  color: var(--ink);
  border-color: #d7b184;
  background: #fff2dd;
}

.header-back-link {
  display: inline-block;
  text-decoration: none;
  color: var(--ink-soft);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.34rem 0.62rem;
  font-weight: 700;
}
.header-back-link:hover,
.header-back-link:focus-visible {
  color: var(--ink);
  border-color: #d7b184;
  background: #fff2dd;
  outline: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #d9be99;
  background: #fff8eb;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.menu-toggle-line,
.menu-toggle-line::before,
.menu-toggle-line::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #2b2f31;
  position: relative;
  transition: transform 260ms ease, opacity 220ms ease, top 260ms ease;
  content: '';
}
.menu-toggle-line::before { position: absolute; top: -6px; }
.menu-toggle-line::after { position: absolute; top: 6px; }
.menu-toggle.is-open .menu-toggle-line { background: transparent; }
.menu-toggle.is-open .menu-toggle-line::before { top: 0; transform: rotate(45deg); }
.menu-toggle.is-open .menu-toggle-line::after { top: 0; transform: rotate(-45deg); }

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.26;
  overflow-wrap: anywhere;
}
h2 {
  display: inline-block;
  border-bottom: 3px solid #e8c592;
  padding-bottom: 0.18rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1rem;
  align-items: stretch;
}
.hero-grid > div {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem 1.1rem;
  box-shadow: var(--shadow);
}
.hero-media {
  margin: 0;
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.5rem;
  box-shadow: var(--shadow);
}
.hero-visual picture,
.hero-visual img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 12px;
}
.eyebrow {
  margin: 0 0 .5rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .8rem;
  color: var(--accent-2);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.btn {
  border: none;
  border-radius: 12px;
  padding: 0.6rem 1rem;
  cursor: pointer;
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-1), #e94d22);
  box-shadow: 0 6px 14px rgba(201, 79, 37, 0.22);
  transition: transform .2s ease, filter .2s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.03); }
.btn-secondary {
  background: #ffeccc;
  color: var(--ink);
  border: 1px solid #e6c79b;
  box-shadow: none;
}

.hero-live {
  margin-top: .9rem;
  background: #fff7ea;
  border: 1px dashed #d8b792;
  border-radius: 12px;
  padding: .7rem;
}
.hero-rotator {
  margin: 0 0 .5rem;
  color: #7a3a24;
  font-weight: 700;
}
.hero-metrics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .5rem;
}
.hero-metrics li {
  background: #fffdf7;
  border: 1px solid #e2c8a6;
  border-radius: 10px;
  padding: .52rem;
  text-align: center;
}
.hero-metrics strong {
  display: block;
  color: #1f7a8c;
  font-size: 1.08rem;
}
.hero-metrics span {
  display: block;
  font-size: .82rem;
  color: var(--ink-soft);
}

.section-media {
  margin: 1rem 0;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: .8rem;
  background: #fff7ea;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: .8rem;
}
.section-media figure {
  margin: 0;
  min-width: 0;
}
.section-media img {
  border-radius: 12px;
  border: 1px solid #e2c8a6;
}
.section-media .media-copy {
  min-width: 0;
  background: #fffdf8;
  border: 1px dashed #d8c4a7;
  border-radius: 12px;
  padding: .72rem;
}

.filter-panel {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: .75rem;
  align-items: end;
}
.filter-panel label {
  display: flex;
  flex-direction: column;
  gap: .38rem;
  font-weight: 700;
  min-width: 0;
}
select, input, textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #d4c0a1;
  border-radius: 10px;
  background: #fffaf0;
  color: var(--ink);
  padding: .58rem .65rem;
}
textarea { resize: vertical; }

.card-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.activity-card {
  min-width: 0;
  background: linear-gradient(180deg, #fffdf8, #fff5e6);
  border: 1px solid #dec9a7;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.activity-card h3 { color: #8f3d22; margin-bottom: .1rem; }
.activity-card strong { color: #205f70; }
.activity-card:hover { border-color: #c79c6f; transform: translateY(-1px); }
.activity-card.hidden { display: none; }

.two-col {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}

.section-comm .comm-grid { align-items: stretch; }
.section-comm .comm-info {
  min-width: 0;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
}
.section-comm .comm-info .contact-list {
  list-style: none;
  padding: 0;
  margin: .8rem 0 0;
  display: grid;
  gap: .48rem;
}
.section-comm .comm-info .contact-list li {
  background: #fffdf8;
  border: 1px solid #e3ccab;
  border-radius: 10px;
  padding: .52rem .65rem;
}
.section-comm .comm-form-wrap {
  min-width: 0;
  background: linear-gradient(180deg, var(--surface), #fff4e4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: .9rem;
}
.contact-form {
  margin: 0;
  background: linear-gradient(180deg, #fffdf9, #fff7eb);
  border: 1px solid #ddc4a0;
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(41, 27, 14, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  padding: 1rem 1rem 1.1rem;
}
.contact-form label {
  display: block;
  margin-top: .72rem;
  font-weight: 700;
  color: #2b4046;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: #fffdfa;
  border: 1px solid #d5bc97;
  border-radius: 12px;
  padding: .62rem .72rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7b8589;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #c98f57;
  box-shadow: 0 0 0 3px rgba(242, 184, 75, 0.2);
  background: #fff;
}
.contact-form .btn {
  width: 100%;
  margin-top: .85rem;
}
.checkbox {
  display: flex;
  gap: .5rem;
  align-items: flex-start;
  margin-top: .85rem;
  border: 1px dashed #dcc3a2;
  background: #fffaf0;
  border-radius: 12px;
  padding: .62rem .66rem;
}
.checkbox input {
  width: 20px;
  height: 20px;
  margin-top: .12rem;
  flex: 0 0 auto;
}
.honeypot { display: none; }
.form-status {
  min-height: 1.35rem;
  margin-top: .62rem;
  font-weight: 700;
}
.form-status.error { color: var(--danger); }
.form-status.success { color: var(--ok); }

.accordion-trigger {
  width: 100%;
  text-align: left;
  border: 1px solid #d9c09b;
  border-radius: 11px;
  background: #fff6e7;
  color: var(--ink);
  padding: .72rem;
  cursor: pointer;
}
.accordion-panel {
  padding: .55rem .2rem 1rem;
  transition: max-height 320ms ease, opacity 240ms ease;
  overflow: hidden;
}

.site-footer {
  border-top: 2px solid var(--line);
  background: #fff7ea;
  padding: 1.2rem 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  border: none;
  border-radius: 999px;
  padding: .58rem .9rem;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent-3), var(--accent-1));
  color: #2c1a11;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: .2s ease;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  max-width: 980px;
  margin: 0 auto;
  border: 2px solid #d8b28a;
  border-radius: 18px;
  background: #fff8ea;
  box-shadow: 0 16px 34px rgba(53, 34, 16, 0.2);
  padding: .9rem;
}
.cookie-banner.hidden { display: none; }
.cookie-content {
  border: 1px solid #e2c5a1;
  border-radius: 14px;
  padding: .8rem;
  background: #fffdf8;
}
.cookie-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .5rem;
}
.cookie-actions .btn,
.cookie-actions .btn-secondary {
  width: 100%;
  min-height: 42px;
}
.cookie-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: .7rem;
  border-top: 1px solid #ebd4b7;
  margin-top: .7rem;
  padding-top: .7rem;
}
.cookie-switch {
  min-width: 88px;
  border: 1px solid #cfac81;
  border-radius: 999px;
  background: #fff6e7;
  color: var(--ink);
  padding: .42rem .75rem;
  cursor: pointer;
}
.cookie-switch[aria-pressed='true'] {
  background: #e4f7ef;
  border-color: #77c7a1;
}

.reveal { opacity: 0; transform: translateY(10px); }
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .45s ease, transform .45s ease;
}

figure figcaption {
  margin-top: .45rem;
  font-size: .88rem;
  color: var(--ink-soft);
}

@media (max-width: 1024px) {
  .hero-grid,
  .two-col,
  .section-media {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-visual img,
  .hero-visual picture {
    min-height: 240px;
  }
}

@media (max-width: 860px) {
  .menu-toggle { display: inline-flex; }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 2px);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-8px);
    transition: max-height 320ms ease, opacity 220ms ease, transform 280ms ease;
    background: rgba(255, 248, 236, 0.98);
    border-bottom: 1px solid #ddc5a4;
    pointer-events: none;
  }
  .site-nav.is-open {
    max-height: 280px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .site-nav .nav-list {
    padding: .7rem 1rem 1rem;
    display: grid;
    gap: .45rem;
  }
  .site-nav .nav-list a {
    display: block;
    background: #fff8eb;
    border: 1px solid #e2c7a2;
    border-radius: 10px;
    padding: .5rem .62rem;
  }
}

@media (max-width: 680px) {
  .container { width: min(100%, 94vw); }

  .section { padding: 3rem 0; }

  .filter-panel,
  .card-grid,
  .hero-metrics,
  .cookie-actions,
  .cookie-row {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .section-comm .comm-info,
  .section-comm .comm-form-wrap,
  .section-media {
    padding: .75rem;
  }

  .cookie-banner {
    left: 0;
    right: 0;
    bottom: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-radius: 18px 18px 0 0;
    max-width: none;
    padding: .72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

.footer-grid nav a {
  text-decoration: none;
  color: #274f58;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.24rem 0.52rem;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}
.footer-grid nav a:hover,
.footer-grid nav a:focus-visible {
  color: #8e3a1f;
  background: #fff0d9;
  border-color: #d8b28a;
  outline: none;
}

.comm-check {
  align-items: center;
  justify-items: center;
  max-width: 900px;
  margin: 1.1rem auto 0;
  grid-template-columns: 1fr;
}
.comm-check figure { width: min(100%, 760px); margin: 0 auto; }
.comm-check .media-copy { width: min(100%, 760px); }
.comm-check .media-copy {
  text-align: center;
}




