.kaart-met-legende {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 2.2rem;
  margin-bottom: 1.2rem;
}

.kaart-met-legende .route-map {
  flex: 1 1 0;
  max-width: 700px;
  width: 100%;
}

.kaart-met-legende .legend {
  flex: 0 0 270px;
  width: 100%;
  min-width: 220px;
  max-width: 320px;
  margin: 0.2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  height: auto;
  overflow: auto;
  padding-right: 0;
  scrollbar-width: auto;
  scrollbar-color: #7f9fc8 #eef3f8;
}

.kaart-met-legende .legend::-webkit-scrollbar {
  width: 12px;
}

.kaart-met-legende .legend::-webkit-scrollbar-track {
  background: #eef3f8;
  border-radius: 999px;
}

.kaart-met-legende .legend::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #8ea9cc 0%, #5d80b0 100%);
  border-radius: 999px;
  border: 2px solid #eef3f8;
}

.kaart-met-legende .legend::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #7b9bc3 0%, #4f739f 100%);
}

.kaart-met-legende .legend .legend-item {
  padding: 0.42rem 0.5rem;
  font-size: 0.82rem;
  line-height: 1.25;
  border-radius: 10px;
}

.kaart-met-legende .legend .legend-item strong {
  font-size: 0.86rem;
  margin-bottom: 0.08rem;
}

@media (max-width: 900px) {
  .kaart-met-legende {
    display: block;
  }

  .kaart-met-legende .legend {
    max-width: 100%;
    min-width: 0;
    margin-top: 1rem;
    height: auto;
    overflow: visible;
    padding-right: 0;
  }
}

:root {
  --bg: #f1f4f8;
  --surface: #ffffff;
  --surface-soft: #edf2f7;
  --ink: #243753;
  --muted: #556983;
  --line: #d3dce8;
  --brand: #2b4f85;
  --brand-soft: #e5edf8;
  --accent: #6e90c4;
  --accent-deep: #1f3f6c;
  --max: 1180px;
  --radius: 18px;
  --shadow: 0 16px 38px rgba(24, 44, 78, 0.11);
  --font-heading: Constantia, Georgia, serif;
  --font-body: Verdana, Geneva, sans-serif;
  --font-nav: Verdana, Geneva, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
  background-image:
    radial-gradient(circle at 20% 18%, #000 0.35px, transparent 0.7px),
    radial-gradient(circle at 74% 61%, #000 0.35px, transparent 0.75px),
    radial-gradient(circle at 48% 82%, #000 0.25px, transparent 0.65px);
  background-size: 3px 3px, 4px 4px, 5px 5px;
}

a {
  color: inherit;
}

.site-header {
  background: linear-gradient(180deg, color-mix(in oklab, var(--surface) 55%, var(--bg) 45%) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(5px);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1rem 0.75rem;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  text-decoration: none;
}

.brand-logo {
  height: clamp(56px, 10vw, 96px);
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-main {
  font-size: clamp(2rem, 5vw, 4.3rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--brand);
  line-height: 1;
  text-transform: uppercase;
}

.brand-sub {
  color: var(--accent-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.55rem;
}

.site-nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: #4f5e6c;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.2rem;
  transition: color 180ms ease, border-color 180ms ease;
  font-family: var(--font-nav);
}

.site-nav a:hover,
.site-nav a.active {
  color: #1f2e3c;
  border-color: #0d739d;
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
}

.page-hero {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1rem, 2.4vw, 1.8rem);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  top: -140px;
  right: -110px;
  background: radial-gradient(circle, color-mix(in oklab, var(--brand) 24%, transparent 76%) 0%, transparent 74%);
}

.page-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--muted);
}

.page-title {
  margin: 0.35rem 0 0;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  font-family: var(--font-heading);
  font-weight: 700;
}

.page-intro {
  margin: 0.65rem 0 0;
  max-width: 70ch;
  color: #35424f;
  line-height: 1.65;
}

.page-hero-index .page-title {
  max-width: 24ch;
}

.page-hero-index .page-intro {
  max-width: 80ch;
}

.index-story {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1rem;
  max-width: 100%;
}

.index-story p {
  margin: 0;
  color: #2c3a47;
  line-height: 1.68;
  font-size: 0.98rem;
}

.index-story p:nth-of-type(1),
.index-story p:nth-of-type(3),
.index-story p:nth-of-type(5) {
  grid-column: 1;
}

.index-story p:nth-of-type(2),
.index-story p:nth-of-type(4) {
  grid-column: 2;
}

.index-inline-photo {
  margin: 0;
  border: 1px solid #d7dde3;
  background: #eef2f5;
  align-self: start;
}

.index-inline-photo img {
  width: 100%;
  height: 184px;
  object-fit: cover;
  display: block;
  filter: saturate(0.8) contrast(0.93) brightness(0.98);
  opacity: 0.92;
}

.index-inline-photo-a {
  grid-column: 2;
}

.index-inline-photo-b {
  grid-column: 1;
}

.index-inline-photo-c {
  grid-column: 2;
}

/* Layout modes (A-F) */
body[data-layout-style="1"] .index-story {
  grid-template-columns: 1fr 1fr;
}

body[data-layout-style="2"] .index-story {
  grid-template-columns: 1fr;
  max-width: 76ch;
}

body[data-layout-style="2"] .index-story p,
body[data-layout-style="2"] .index-inline-photo,
body[data-layout-style="2"] .index-inline-photo-a,
body[data-layout-style="2"] .index-inline-photo-b,
body[data-layout-style="2"] .index-inline-photo-c {
  grid-column: 1;
}

body[data-layout-style="2"] .index-inline-photo img {
  height: 220px;
}

body[data-layout-style="3"] .index-story {
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1.1rem 1.2rem;
}

body[data-layout-style="3"] .index-story p:nth-of-type(1),
body[data-layout-style="3"] .index-story p:nth-of-type(2),
body[data-layout-style="3"] .index-story p:nth-of-type(3),
body[data-layout-style="3"] .index-story p:nth-of-type(4),
body[data-layout-style="3"] .index-story p:nth-of-type(5) {
  grid-column: 1;
}

body[data-layout-style="3"] .index-inline-photo-a,
body[data-layout-style="3"] .index-inline-photo-b,
body[data-layout-style="3"] .index-inline-photo-c {
  grid-column: 2;
}

body[data-layout-style="3"] .index-inline-photo img {
  height: 168px;
}

body[data-layout-style="4"] .index-story {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
}

body[data-layout-style="4"] .index-story p {
  grid-column: span 3;
  padding: 0.8rem;
  border: 1px solid var(--line);
  background: #fff;
}

body[data-layout-style="4"] .index-inline-photo-a {
  grid-column: span 3;
}

body[data-layout-style="4"] .index-inline-photo-b {
  grid-column: span 2;
}

body[data-layout-style="4"] .index-inline-photo-c {
  grid-column: span 4;
}

body[data-layout-style="4"] .index-inline-photo img {
  height: 148px;
}

body[data-layout-style="5"] .index-story {
  grid-template-columns: 1fr;
  max-width: 80ch;
  position: relative;
  padding-left: 1rem;
}

body[data-layout-style="5"] .index-story::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--brand);
  opacity: 0.45;
}

body[data-layout-style="5"] .index-story p,
body[data-layout-style="5"] .index-inline-photo,
body[data-layout-style="5"] .index-inline-photo-a,
body[data-layout-style="5"] .index-inline-photo-b,
body[data-layout-style="5"] .index-inline-photo-c {
  grid-column: 1;
}

body[data-layout-style="5"] .index-inline-photo {
  max-width: 30rem;
}

body[data-layout-style="5"] .index-inline-photo:nth-of-type(even) {
  margin-left: auto;
}

body[data-layout-style="5"] .index-inline-photo img {
  height: 200px;
}

body[data-layout-style="6"] .index-story {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

body[data-layout-style="6"] .index-story p {
  flex: 1 1 calc(33% - 0.75rem);
  min-width: 16rem;
  border: 1px solid var(--line);
  padding: 0.85rem;
  background: #fff;
}

body[data-layout-style="6"] .index-inline-photo {
  flex: 1 1 calc(50% - 0.75rem);
  min-width: 16rem;
}

body[data-layout-style="6"] .index-inline-photo img {
  height: 156px;
}

body[data-layout-style="7"] .index-story {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

body[data-layout-style="7"] .index-story p {
  border-left: 3px solid var(--brand);
  padding-left: 0.7rem;
}

body[data-layout-style="7"] .index-inline-photo-a {
  grid-column: 1;
}

body[data-layout-style="7"] .index-inline-photo-b,
body[data-layout-style="7"] .index-inline-photo-c {
  grid-column: 2;
}

body[data-layout-style="8"] .index-story {
  grid-template-columns: 2fr 1fr;
  gap: 1rem 1.1rem;
}

body[data-layout-style="8"] .index-story p:nth-of-type(1),
body[data-layout-style="8"] .index-story p:nth-of-type(2),
body[data-layout-style="8"] .index-story p:nth-of-type(3),
body[data-layout-style="8"] .index-story p:nth-of-type(4),
body[data-layout-style="8"] .index-story p:nth-of-type(5) {
  grid-column: 1;
}

body[data-layout-style="8"] .index-inline-photo,
body[data-layout-style="8"] .index-inline-photo-a,
body[data-layout-style="8"] .index-inline-photo-b,
body[data-layout-style="8"] .index-inline-photo-c {
  grid-column: 2;
}

body[data-layout-style="8"] .index-inline-photo img {
  height: 145px;
}

body[data-layout-style="9"] .index-story {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.7rem;
}

body[data-layout-style="9"] .index-story p:nth-of-type(odd) {
  grid-column: span 7;
}

body[data-layout-style="9"] .index-story p:nth-of-type(even) {
  grid-column: span 5;
}

body[data-layout-style="9"] .index-inline-photo-a {
  grid-column: span 5;
}

body[data-layout-style="9"] .index-inline-photo-b {
  grid-column: span 7;
}

body[data-layout-style="9"] .index-inline-photo-c {
  grid-column: span 12;
}

body[data-layout-style="9"] .index-inline-photo img {
  height: 178px;
}

body[data-layout-style="10"] .index-story {
  grid-template-columns: 1.1fr 0.9fr;
  max-width: 100%;
}

body[data-layout-style="10"] .index-story p {
  grid-column: 1;
}

body[data-layout-style="10"] .index-inline-photo,
body[data-layout-style="10"] .index-inline-photo-a,
body[data-layout-style="10"] .index-inline-photo-b,
body[data-layout-style="10"] .index-inline-photo-c {
  grid-column: 2;
}

body[data-layout-style="10"] .index-inline-photo {
  position: sticky;
  top: 104px;
}

body[data-layout-style="10"] .index-inline-photo img {
  height: 210px;
}

body[data-layout-style="11"] .index-story {
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

body[data-layout-style="11"] .index-story p,
body[data-layout-style="11"] .index-inline-photo,
body[data-layout-style="11"] .index-inline-photo-a,
body[data-layout-style="11"] .index-inline-photo-b,
body[data-layout-style="11"] .index-inline-photo-c {
  grid-column: 1;
}

body[data-layout-style="11"] .index-story p {
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.75rem;
}

body[data-layout-style="11"] .index-inline-photo img {
  height: 170px;
}

body[data-layout-style="12"] .index-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: dense;
}

body[data-layout-style="12"] .index-inline-photo-a {
  grid-column: span 2;
}

body[data-layout-style="12"] .index-inline-photo-b,
body[data-layout-style="12"] .index-inline-photo-c {
  grid-column: span 1;
}

body[data-layout-style="12"] .index-inline-photo img {
  height: 190px;
}

.index-partners {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.index-partners img {
  height: 34px;
  width: auto;
  object-fit: contain;
  opacity: 0.88;
}

.hero-split {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.9rem;
}

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

.hero-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.hero-media-grid img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #d0d9df;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f0f3f6;
}

.hero-media-grid img.wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 8;
}

.ghost-card {
  border: 1px dashed #b7c4cd;
  border-radius: 12px;
  background: var(--surface-soft);
  padding: 0.8rem;
}

.logo-line {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.logo-line img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.logo-line img.big {
  height: 56px;
}

.grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 12px;
}

.note {
  font-size: 0.94rem;
  color: #374657;
  line-height: 1.6;
  margin: 0.65rem 0 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: #0d5372;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.route-map {
  margin-top: 1rem;
  background: linear-gradient(130deg, #f5ebc8, #f0e0af);
  border: 1px solid #dbcb9f;
  border-radius: var(--radius);
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.route-map-image {
  width: 100%;
  height: auto;
  display: block;
}

.route-map::before,
.route-map::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 140%;
  height: 7px;
  background: #e23e62;
  left: -15%;
  border-radius: 999px;
}

.route-map::before {
  top: 34%;
  rotate: 14deg;
}

.route-map::after {
  top: 59%;
  rotate: -10deg;
}

.route-map.has-image::before,
.route-map.has-image::after {
  display: none;
}

.map-label {
  position: absolute;
  padding: 0.35rem 0.6rem;
  border-radius: 10px;
  background: #ffffffdd;
  border: 1px solid #e9dcb4;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.map-points-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.map-point-icon {
  position: absolute;
  width: 9px;
  height: 9px;
  transform: translate(-50%, -88%);
  background: #1f5da8;
  border: 1px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
  z-index: 2;
  transition: box-shadow 0.15s, background 0.15s, border 0.15s, transform 0.15s;
  pointer-events: auto;
  cursor: pointer;
}

.map-point-icon::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
}

.map-point-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateY(-28px);
  background: #fff;
  color: #1f5da8;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 8px;
  border: 1px solid #d4dfdb;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0.96;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: none;
}

.map-point-icon:hover+.map-point-label,
.map-point-icon:focus+.map-point-label,
.map-point-icon.is-highlighted+.map-point-label {
  display: block;
}

.map-point-icon.is-highlighted {
  background: #e34d32;
  border-color: #ffffff;
  box-shadow: 0 0 0 3px #e34d321f;
  transform: translate(-50%, -88%) scale(1.1);
  z-index: 10;
}

.legend-item.is-highlighted {
  border-color: #e34d32;
  background: #fff3f0;
  box-shadow: 0 0 0 2px #e34d3233;
}

.map-point-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 1px;
  height: 1px;
  background: rgba(31, 93, 168, 0.32);
  transform: translateX(-50%);
  border-radius: 999px;
}

.map-point-icon:hover,
.map-point-icon:focus {
  transform: translate(-50%, -88%) scale(1.05);
}

.map-gallery {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.map-gallery img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d0d7de;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.legend {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.legend-item {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 0.7rem;
}

.legend-item strong {
  display: block;
  font-size: 1rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

body.clean-layout .contact-layout {
  grid-template-columns: 1fr;
}

body.clean-layout .hero-split {
  grid-template-columns: 1fr;
}

body.clean-layout .about-visual {
  width: min(100%, 460px);
  justify-self: start;
}

.form-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #384756;
  display: block;
  margin-bottom: 0.35rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd7df;
  border-radius: 10px;
  background: #fff;
  color: #1f2730;
  padding: 0.7rem 0.75rem;
  font: inherit;
}

textarea {
  min-height: 125px;
  resize: vertical;
  grid-column: 1 / -1;
}

.btn {
  margin-top: 0.8rem;
  border: 0;
  border-radius: 999px;
  padding: 0.68rem 1.2rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  cursor: pointer;
}

.btn:hover {
  filter: brightness(1.06);
}

.btn.alt {
  color: #123042;
  background: linear-gradient(135deg, #d4f7ea, #c6eef9);
}

.link-row {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.story-controls {
  margin-top: 1rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.story-filter {
  border: 1px solid #c9d7e0;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.story-filter.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.stories-grid {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.story-card:hover,
.story-card:focus-visible {
  transform: translateY(-1px);
  border-color: #8cb6d8;
  box-shadow: 0 10px 24px rgba(21, 54, 84, 0.08);
  outline: none;
}

.story-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}

.story-title {
  margin: 0;
  font-size: 1.1rem;
}

.story-external-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  border-radius: 999px;
  background: #edf5fb;
  color: #255f93;
}

.story-external-badge svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.story-card-external .story-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.story-meta {
  margin-top: 0.35rem;
  color: #5d6d7b;
  font-size: 0.85rem;
}

.story-preview {
  margin-top: 0.75rem;
}

.story-preview iframe,
.story-preview img,
.story-preview video {
  width: 100%;
  border: 0;
  border-radius: 10px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.story-text {
  margin-top: 0.7rem;
  color: #334453;
  line-height: 1.55;
}

.empty-state {
  border: 1px dashed #b7c4cd;
  border-radius: 12px;
  background: #fff;
  padding: 1rem;
  color: #516170;
}

.shop-toolbar {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.cart-chip {
  text-decoration: none;
  border: 1px solid #b7ccd8;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-weight: 800;
  background: #fff;
}

.shop-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.product-card {
  border: none;
  background: linear-gradient(180deg, #f6f8fa 0%, #edf2f5 100%);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 0.8rem;
  box-shadow: inset 0 0 0 1px rgba(210, 220, 228, 0.55);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(32, 50, 66, 0.08), inset 0 0 0 1px rgba(200, 212, 221, 0.7);
  background: linear-gradient(180deg, #f9fbfc 0%, #eef3f6 100%);
}

.product-card:focus-visible {
  outline: 3px solid rgba(15, 73, 95, 0.18);
  outline-offset: 2px;
}

.product-image {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 16px;
  background: #edf2f6;
}

.product-body {
  padding: 0.95rem 0.2rem 0.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  height: 100%;
}

.product-title {
  margin: 0;
  font-size: 1rem;
}

.product-price {
  font-size: 1.08rem;
  font-weight: 900;
}

.product-actions {
  margin-top: auto;
}

.object-shell {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.4rem;
  align-items: start;
  background: linear-gradient(180deg, #f8fafb 0%, #eef3f6 100%);
  border-radius: 28px;
  padding: 1.4rem;
  box-shadow: inset 0 0 0 1px rgba(210, 220, 228, 0.6);
}

.object-gallery-panel,
.object-info-panel {
  border: none;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.object-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand);
  text-decoration: none;
  font-weight: 800;
}

.object-back-link:hover {
  text-decoration: underline;
}

.object-main-image {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 22px;
  background: #edf2f6;
}

.object-thumbs {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 0.65rem;
}

.object-thumb {
  padding: 0;
  border: none;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.66);
  overflow: hidden;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(210, 220, 228, 0.7);
}

.object-thumb.is-active {
  box-shadow: 0 0 0 2px rgba(15, 73, 95, 0.14), inset 0 0 0 1px rgba(15, 73, 95, 0.18);
}

.object-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  background: #edf2f6;
}

.object-title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  line-height: 1.08;
}

.object-subtitle {
  margin: 0.35rem 0 0;
  color: #5f7180;
  font-size: 1.02rem;
}

.object-meta {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.object-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #cad4dd;
  background: #f6f9fb;
  color: #32404d;
  font-size: 0.82rem;
  font-weight: 700;
}

.object-price {
  margin-top: 1rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
}

.object-description {
  margin-top: 1rem;
  color: #40505f;
  white-space: pre-line;
  line-height: 1.65;
  max-width: 58ch;
}

.object-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.cart-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.cart-item {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 0.75rem;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 0.8rem;
  align-items: center;
}

.cart-item img {
  width: 90px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
  background: #eef2f5;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.qty-row input {
  width: 72px;
  padding: 0.4rem 0.55rem;
}

.qty-remove-btn {
  margin-top: 0;
  padding: 0.42rem;
  min-width: 36px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.qty-remove-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.summary-box {
  margin-top: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.order-success-layout {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}

.order-success-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.order-success-card h2 {
  margin: 0 0 0.9rem;
  font-size: 1.05rem;
}

.order-success-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.order-status-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.order-status-pending {
  background: #fff5d8;
  color: #8a5a00;
}

.order-status-processing {
  background: #dff2ff;
  color: #13507a;
}

.order-status-completed {
  background: #ddf5e8;
  color: #0f5e3f;
}

.order-status-cancelled {
  background: #fde5e8;
  color: #9a1532;
}

.order-success-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
}

.order-success-meta div {
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fafb;
}

.order-success-meta dt {
  margin: 0 0 0.25rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.order-success-meta dd {
  margin: 0;
  color: #20303f;
  font-weight: 600;
}

.order-success-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.order-success-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.order-success-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.order-success-item-title {
  margin: 0;
  font-weight: 700;
}

.order-success-item-meta,
.order-success-address,
.order-success-help,
.order-success-inline-note {
  margin: 0.2rem 0 0;
  color: #485867;
  line-height: 1.55;
}

.order-success-total {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
}

.order-success-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.order-success-code {
  word-break: break-all;
}

@media (max-width: 640px) {
  .order-success-item,
  .order-success-total,
  .order-success-status {
    flex-direction: column;
    align-items: flex-start;
  }
}

.shipping-box {
  margin-top: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
}

.shipping-box h2 {
  margin: 0 0 0.75rem 0;
  font-size: 1rem;
}

.shipping-toggle {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.shipping-option {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fafb;
  transition: background 0.15s, border-color 0.15s;
}

.shipping-option:has(input:checked) {
  background: #e8f5e9;
  border-color: #2d5f4f;
}

.shipping-option-label {
  font-weight: 500;
}

.pickup-location-selector {
  margin-top: 0.75rem;
}

.pickup-location-selector label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.pickup-select {
  width: 100%;
  max-width: 400px;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.95rem;
  background: #fff;
}

.pickup-note {
  color: #9a1532;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 0.2rem;
}

.about-visual {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #ced8de;
  background: #f2f4f6;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.contact-socials {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.contact-socials img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.site-footer {
  margin: 2rem 0 0;
  width: 100%;
  background: #eceff2;
  border-top: 1px solid #cfd6dd;
  color: #2a3540;
  font-size: 0.9rem;
  padding: 0;
}

.site-footer-social {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.site-footer-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem 1rem;
}

.site-footer-sections {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.site-footer-section h4 {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #25303a;
}

.site-footer-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer-section li {
  margin: 0 0 0.35rem;
}

.site-footer-section a,
.site-footer-link {
  color: var(--brand);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
}

.site-footer-section a:hover,
.site-footer-link:hover {
  text-decoration: underline;
}

.site-footer-empty {
  color: #657483;
  font-size: 0.82rem;
}

/* Visual style variations (1-10) */
body[data-visual-style="2"] {
  --brand: #1f5aa8;
  --line: #c8d6e7;
}

body[data-visual-style="2"] .page-hero {
  box-shadow: none;
}

body[data-visual-style="3"] {
  --brand: #8a3f1f;
  --line: #e3d2c8;
}

body[data-visual-style="3"] html,
body[data-visual-style="3"] body {
  background: #f2ebe6;
}

body[data-visual-style="4"] {
  --brand: #145f50;
  --line: #c9ded9;
}

body[data-visual-style="4"] .site-header {
  background: #edf3f2;
}

body[data-visual-style="5"] {
  --brand: #0e6c7f;
  --line: #bdd5dc;
}

body[data-visual-style="5"] .page-hero {
  border-width: 2px;
}

body[data-visual-style="6"] {
  --brand: #7b2f56;
  --line: #e1c7d5;
}

body[data-visual-style="6"] .index-inline-photo img {
  filter: saturate(0.9) contrast(1.02);
}

body[data-visual-style="7"] {
  --brand: #355c1a;
  --line: #d0dec3;
}

body[data-visual-style="7"] .page-kicker {
  letter-spacing: 0.2em;
}

body[data-visual-style="8"] {
  --brand: #263f77;
  --line: #c8d1e6;
}

body[data-visual-style="8"] .site-nav a {
  font-size: 0.68rem;
}

body[data-visual-style="9"] {
  --brand: #7a481f;
  --line: #dbc9b8;
}

body[data-visual-style="9"] .page-hero::before {
  opacity: 0;
}

body[data-visual-style="10"] {
  --brand: #0f495f;
  --line: #b8d2dc;
}

body[data-visual-style="10"] .index-story p {
  font-size: 1.02rem;
  line-height: 1.72;
}

.site-footer-link {
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
}

.site-footer-link:hover {
  text-decoration: underline;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main>* {
  animation: riseIn 420ms ease both;
}

@media (max-width: 820px) {

  .grid.two,
  .contact-layout,
  .legend,
  .form-grid,
  .stories-grid,
  .shop-grid,
  .object-shell {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .hero-split,
  .hero-media-grid,
  .map-gallery,
  .index-story {
    grid-template-columns: 1fr;
  }

  .index-story p,
  .index-inline-photo,
  .index-inline-photo-a,
  .index-inline-photo-b,
  .index-inline-photo-c {
    grid-column: 1;
  }

  body[data-layout-style="4"] .index-story {
    grid-template-columns: 1fr;
  }

  body[data-layout-style="4"] .index-story p,
  body[data-layout-style="4"] .index-inline-photo-a,
  body[data-layout-style="4"] .index-inline-photo-b,
  body[data-layout-style="4"] .index-inline-photo-c {
    grid-column: 1;
  }

  body[data-layout-style="6"] .index-story {
    display: grid;
    grid-template-columns: 1fr;
  }

  body[data-layout-style="6"] .index-story p,
  body[data-layout-style="6"] .index-inline-photo {
    flex: initial;
    min-width: 0;
  }

  body[data-layout-style="9"] .index-story {
    grid-template-columns: 1fr;
  }

  body[data-layout-style="9"] .index-story p,
  body[data-layout-style="9"] .index-inline-photo-a,
  body[data-layout-style="9"] .index-inline-photo-b,
  body[data-layout-style="9"] .index-inline-photo-c {
    grid-column: 1;
  }

  body[data-layout-style="10"] .index-story {
    grid-template-columns: 1fr;
  }

  body[data-layout-style="10"] .index-inline-photo,
  body[data-layout-style="10"] .index-inline-photo-a,
  body[data-layout-style="10"] .index-inline-photo-b,
  body[data-layout-style="10"] .index-inline-photo-c {
    position: static;
    grid-column: 1;
  }

  body[data-layout-style="12"] .index-story {
    grid-template-columns: 1fr;
  }

  body[data-layout-style="12"] .index-inline-photo-a,
  body[data-layout-style="12"] .index-inline-photo-b,
  body[data-layout-style="12"] .index-inline-photo-c {
    grid-column: 1;
  }

  .index-inline-photo img {
    height: 170px;
  }

  .brand-main {
    letter-spacing: 0.05em;
  }

  .site-footer-sections {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }

}

@media (max-width: 520px) {
  .site-footer-sections {
    grid-template-columns: 1fr;
  }
}

/* Screenshot-style overrides */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fffffff0;
  border-bottom: 1px solid #d4deea;
  backdrop-filter: blur(6px);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo {
  width: 146px;
  height: auto;
  display: block;
}

.brand-tagline {
  display: none;
}

.brand-main,
.brand-sub {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.05rem;
  margin: 0;
  align-self: center;
}

.site-nav a {
  text-decoration: none;
  text-transform: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #304f79;
  padding: 0.36rem 0.72rem;
  border-radius: 999px;
  border-bottom: 0;
  transition: background-color 160ms ease, color 160ms ease;
}

.site-nav a.active,
.site-nav a:hover {
  color: #f3f8ff;
  background: #304f79;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #27476f;
  border-radius: 0;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-toggle:hover {
  color: #1f3f67;
}

.nav-toggle svg {
  position: absolute;
  width: 22px;
  height: 22px;
  fill: currentColor;
  transition: opacity 180ms ease, transform 220ms ease;
}

.nav-toggle .icon-menu {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.nav-toggle .icon-close {
  opacity: 0;
  transform: scale(0.82) rotate(-90deg);
}

.nav-toggle.is-open .icon-menu {
  opacity: 0;
  transform: scale(0.82) rotate(90deg);
}

.nav-toggle.is-open .icon-close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

@keyframes mobileMenuIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-map-btn,
.header-cart-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid #d5deea;
  background: #f9fbfd;
  color: #27476f;
  font-weight: 700;
}

.header-map-btn {
  padding: 0.66rem 1rem;
  border-radius: 9px;
  background: #244a79;
  color: #f5f8fc;
  border-color: #244a79;
  font-size: 0.86rem;
}

.header-map-btn:hover {
  background: #1f3f67;
  border-color: #1f3f67;
}

.header-cart-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.header-map-btn svg,
.header-cart-btn svg,
.btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.home-main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.1rem 2.5rem;
}

.home-hero {
  background: transparent;
  border: 0;
  border-radius: 0;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1.9rem;
  padding: 0;
  position: relative;
  overflow: hidden;
  align-items: start;
  width: 90%;
  margin: 2em auto;
}

.hero-copy {
  max-width: 600px;
}

.hero-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7b93b8;
  font-size: 0.75rem;
  font-weight: 700;
}

.home-hero h1 {
  margin: 0 0 0.45rem;
  color: #28476f;
  font-family: var(--font-heading);
  font-size: clamp(1.38rem, 2.2vw, 1.95rem);
  line-height: 1.25;
  max-width: 24ch;
}

.hero-intro {
  margin: 0.55rem 0 20px;
  color: #556d8a;
  line-height: 1.7;
  max-width: 54ch;
  font-size: 0.98rem;
}

.btn {
  margin-top: 0;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0.7rem 1.08rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: #294f84;
  color: #f9fffb;
}

.btn-primary:hover {
  background: #22436f;
}

.btn-secondary,
.btn.alt {
  background: #f5f8fc;
  color: #2b4e82;
  border-color: #d1dced;
}

.btn-secondary:hover,
.btn.alt:hover {
  background: #eef3fa;
}

.hero-rating {
  margin-top: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.hero-avatars {
  display: flex;
}

.hero-avatars img {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid #f2f5f1;
  object-fit: cover;
  margin-left: -7px;
}

.hero-avatars img:first-child {
  margin-left: 0;
}

.hero-rating-copy p {
  margin: 0;
  color: #4a6a5f;
  font-size: 0.84rem;
}

.hero-rating-copy .stars {
  color: #e4aa21;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 0;
  overflow: hidden;
  width: min(100%, 340px);
  justify-self: end;
}

.hero-visual img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  display: block;
  border: 0;
  filter: saturate(0.8) contrast(0.93) brightness(0.97);
  margin-bottom: 40px;
}

.hero-visual#hero-slideshow .slide-stack {
  position: relative;
  width: 100%;
  height: 220px;
  background: #fff;
  margin-bottom: 40px;
}

.hero-visual#hero-slideshow .slideshow-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.8s ease-in-out;
}

.hero-visual#hero-slideshow .slideshow-img.back {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.hero-floating-card {
  position: absolute;
  right: 1rem;
  bottom: 1.1rem;
  width: min(300px, calc(100% - 2rem));
  background: #165243;
  color: #f6fffb;
  border-radius: 18px;
  padding: 0.95rem 1rem;
  z-index: 3;
}

.floating-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.hero-floating-card h2 {
  margin: 0.58rem 0 0;
  font-size: 1.03rem;
}

.hero-floating-card p {
  margin: 0.48rem 0 0;
  font-size: 0.84rem;
  line-height: 1.6;
  opacity: 0.93;
}

.feature-strip {
  margin-top: 0;
  background: #f5f7f3;
  border: 1px solid #dce5de;
  border-top: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-item {
  padding: 1.4rem 1.2rem;
  border-left: 1px solid #dce5de;
}

.feature-item:first-child {
  border-left: 0;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #deeadf;
  color: #2d5d4c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.feature-item h3 {
  margin: 0.6rem 0 0;
  font-size: 1rem;
  color: #27483d;
}

.feature-item p {
  margin: 0.4rem 0 0;
  color: #546f64;
  line-height: 1.6;
  font-size: 0.89rem;
}

.about-band {
  padding: 1.8rem 0 1.4rem;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 1.7rem;
  align-items: start;
}

.about-band-copy {
  max-width: 720px;
}

.about-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  color: #7c95b9;
  font-weight: 700;
}

.about-band h2 {
  margin: 0.65rem 0 0;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.15;
  color: #25466f;
}

.story-lead {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.65;
  color: #2c4c7a;
  font-weight: 700;
}

.story-groups {
  display: grid;
  gap: 1.35rem;
}

.story-group {
  background: transparent;
  border: 0;
  padding: 0;
}

.story-group p {
  margin-top: 0.8rem;
}

.story-group p:first-child {
  margin-top: 0;
}

.about-band-copy p {
  margin: 0.85rem 0 0;
  color: #566f8f;
  line-height: 1.72;
  max-width: 70ch;
}

.story-group+.story-group {
  padding-top: 0.25rem;
}

.about-band-copy .btn {
  margin-top: 1rem;
}

.about-band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  position: sticky;
  top: 108px;
  max-width: 340px;
  justify-self: end;
}

.thumb-card img {
  width: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  height: auto;
  border-radius: 8px;
  border: 0;
  filter: saturate(0.84) contrast(0.95) brightness(0.98);
}

.inline-link {
  color: #2b4f85;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.inline-link:hover {
  color: #1e3c63;
}

.thumb-card h3 {
  margin: 0.52rem 0 0;
  color: #294d7c;
  font-size: 1rem;
}

.thumb-card p {
  margin: 0.25rem 0 0;
  color: #5c7496;
  font-size: 0.88rem;
}

.thumb-card-photo-only h3,
.thumb-card-photo-only p {
  display: none;
}

.index-partners {
  margin-top: 2em;
  width: 600px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 0 0 2.2rem;
}

.index-partners img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.index-partners img:first-child {
  height: 56px;
}

.site-footer {
  margin: 1.6rem 0 0;
  background: radial-gradient(circle at 15% 80%, rgba(88, 128, 197, 0.24) 0%, transparent 44%), linear-gradient(125deg, #162f56 0%, #224b79 52%, #2e6299 100%);
  border-top: 0;
  color: #e8f0fb;
}

.site-footer-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.8rem 1rem 1.5rem;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 1.5rem;
}

.site-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.site-footer-brand img {
  width: 76px;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-footer-brand p {
  margin: 0;
  color: #d2e1f3;
  line-height: 1.5;
}

.site-footer-social {
  margin-top: 0.25rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.site-footer-social a {
  text-decoration: none;
  color: #e8f0fb;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.01em;
}

.site-footer-social a:hover {
  text-decoration: underline;
}

.site-footer-sections {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.site-footer-section h4 {
  margin: 0 0 0.55rem;
  color: #f3f8ff;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 1rem;
}

.site-footer-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer-section li {
  margin: 0 0 0.38rem;
}

.site-footer-section a,
.site-footer-link {
  color: #d6e6fb;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
}

.site-footer-section a:hover,
.site-footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

body.clean-layout main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.5rem 1.1rem 2.6rem;
}

body.clean-layout .page-hero,
body.clean-layout .card,
body.clean-layout .form-panel,
body.clean-layout .legend-item,
body.clean-layout .summary-box,
body.clean-layout .cart-item,
body.clean-layout .product-card,
body.clean-layout .route-map,
body.clean-layout .map-label {
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.clean-layout .page-hero {
  padding: 0;
  overflow: visible;
}

body.clean-layout .page-hero::before {
  display: none;
}

body.clean-layout .page-kicker {
  color: #6885ad;
}

body.clean-layout .page-title {
  margin-top: 0.15rem;
}

body.clean-layout .page-intro {
  margin-top: 0.85rem;
  max-width: 72ch;
}

body.clean-layout .route-map {
  min-height: 0;
  margin-top: 1rem;
}

body.clean-layout .map-gallery {
  margin-top: 1rem;
}

body.clean-layout .legend {
  margin-top: 1.7rem;
  gap: 1rem;
}

body.clean-layout .legend-item {
  padding: 0;
}

body.clean-layout .grid.two {
  margin-top: 1.7rem;
  gap: 1.2rem;
}

body.clean-layout .card {
  padding: 0;
}

body.clean-layout .badge {
  background: transparent;
  color: #2a4f83;
  padding: 0;
}

body.clean-layout .contact-layout {
  margin-top: 2rem;
  gap: 1.8rem;
}

body.clean-layout .form-panel {
  padding: 0;
}

body.clean-layout .shop-toolbar {
  margin-top: 0;
  padding-top: 0.2rem;
}

body.clean-layout .cart-chip {
  border-color: #d4e0ef;
  background: #f7faff;
}

@media (max-width: 1090px) {
  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .home-hero {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-visual {
    min-height: 0;
    border-radius: 22px;
    width: min(100%, 340px);
    justify-self: center;
  }

  .hero-visual img {
    height: auto;
  }

  .feature-strip,
  .about-band,
  .about-band-grid,
  .site-footer-wrap,
  .site-footer-sections {
    grid-template-columns: 1fr 1fr;
  }

  .about-band {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 1.15rem;
  }

  .about-band-grid {
    position: static;
    top: auto;
  }

  .site-footer-wrap {
    gap: 1rem;
  }
}

@media (max-width: 760px) {
  .home-hero {
    width: 100%;
    margin: 1rem auto 1.2rem;
    gap: 0.9rem;
  }

  .home-hero h1 {
    font-size: clamp(1.3rem, 6vw, 1.7rem);
    line-height: 1.2;
    max-width: none;
  }

  .hero-intro {
    margin: 0.45rem 0 0.85rem;
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: none;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .hero-visual img {
    margin-bottom: 0;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .index-partners {
    width: 100%;
    margin-top: 1rem;
    gap: 0.8rem;
    justify-content: center;
    padding-bottom: 1rem;
  }

  .index-partners img {
    height: 36px;
  }

  .index-partners img:first-child {
    height: 46px;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.6rem;
    padding: 0.75rem 0.8rem;
    align-items: center;
  }

  .brand {
    justify-content: flex-start;
    min-width: 0;
  }

  .brand-logo {
    width: 140px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-column: 3;
    grid-row: 1;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .site-nav.is-open {
    display: grid;
    animation: mobileMenuIn 220ms ease;
  }

  .site-nav a {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.38rem 0.72rem;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.45rem;
    justify-content: flex-end;
  }

  .header-map-btn {
    min-height: 36px;
    padding: 0.5rem 0.68rem;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .header-cart-btn {
    width: 36px;
    height: 36px;
    justify-content: center;
  }

  .feature-strip,
  .about-band,
  .about-band-grid,
  .site-footer-wrap,
  .site-footer-sections {
    grid-template-columns: 1fr;
  }

  .feature-item {
    border-left: 0;
    border-top: 1px solid #dce5de;
  }

  .feature-item:first-child {
    border-top: 0;
  }

  .about-band {
    padding: 1.2rem 1rem 1.8rem;
  }

  .home-main {
    padding: 0 0.9rem 0;
  }
}

@media (max-width: 420px) {
  .hero-visual {
    grid-template-columns: 1fr;
  }

  .site-nav a {
    font-size: 0.84rem;
    padding: 0.34rem 0.62rem;
  }

  .header-map-btn {
    padding: 0.48rem 0.56rem;
    font-size: 0.75rem;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    row-gap: 0.35rem;
  }

  .brand-logo {
    width: 118px;
  }

  .nav-toggle {
    grid-column: 3;
    grid-row: 1;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
  }

  .site-nav {
    grid-row: 2;
  }
}