@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800&family=Karla:wght@300;400;500;600;700&family=Roboto+Mono:wght@400;500;600&display=swap');

:root {
  --parchment-1: #FDF6EC;
  --parchment-2: #F5EBE0;
  --parchment-3: #E8DCD0;
  --paper: #FEFCF8;
  --olive-brown: #3D3D3D;
  --warm-gray: #6B6B6B;
  --terracotta: #C45D3E;
  --terracotta-soft: #E8A898;
  --sage: #7A8B6F;
  --sage-pastel: #C5D4B8;
  --ochre: #D4A853;
  --border: #D4C5B5;
  --shadow: rgba(196, 93, 62, 0.15);
  --shadow-strong: rgba(196, 93, 62, 0.3);
  --shadow-text: rgba(196, 93, 62, 0.2);
  --dark-text: #FAF6EE;
}

* {
  border-radius: 0 !important;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Karla', sans-serif;
  color: var(--olive-brown);
  background: linear-gradient(135deg, var(--parchment-1) 0%, var(--parchment-2) 50%, var(--parchment-3) 100%);
  background-attachment: fixed;
  max-width: 100vw;
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', serif;
  color: var(--olive-brown);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em 0;
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 0.01em;
}

h3 {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
}

p {
  color: var(--olive-brown);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 1em;
}

strong, b {
  color: inherit;
  font-weight: 600;
}

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color 0.2s linear;
}

a:hover {
  color: var(--olive-brown);
}

.mono {
  font-family: 'Roboto Mono', monospace;
  letter-spacing: 0.05em;
}

.serif {
  font-family: 'Fraunces', serif;
}

.sans {
  font-family: 'Karla', sans-serif;
}

.uppercase {
  text-transform: uppercase;
}

.terracotta-text { color: var(--terracotta); }
.sage-text { color: var(--sage); }
.ochre-text { color: var(--ochre); }
.warm-gray-text { color: var(--warm-gray); }
.olive-text { color: var(--olive-brown); }

.bulma-container-yankton {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-yankton {
  padding: 80px 0;
  position: relative;
}

.section-yankton-compact {
  padding: 48px 0;
}

.sharp-divider {
  height: 2px;
  background: linear-gradient(90deg, var(--terracotta) 0%, transparent 100%);
  width: 100%;
  margin: 24px 0;
  position: relative;
}

.sharp-divider::before {
  content: '';
  position: absolute;
  top: -2px;
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  border-radius: 50% !important;
}

.sharp-divider-center {
  height: 2px;
  background: var(--terracotta);
  width: 80px;
  margin: 24px auto;
}

.sharp-card {
  background: var(--paper);
  border: 2px solid var(--border);
  box-shadow: 6px 6px 0px var(--shadow);
  padding: 32px 24px;
  transition: all 0.2s linear;
  position: relative;
  color: var(--olive-brown);
}

.sharp-card:hover {
  z-index: 15;
  position: relative;
  transform: scale(1.03);
  border: 3px solid var(--terracotta);
  box-shadow: 10px 10px 0px var(--shadow-text);
}

.sharp-card-sage {
  background: var(--paper);
  border: 2px solid var(--sage);
  box-shadow: 6px 6px 0px rgba(122, 139, 111, 0.2);
  padding: 32px 24px;
  color: var(--olive-brown);
}

.sharp-card-olive {
  background: var(--olive-brown);
  border: 2px solid var(--terracotta);
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.2);
  padding: 32px 24px;
  color: var(--dark-text);
}

.sharp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--terracotta);
  color: #FFFFFF;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 0;
  box-shadow: 6px 6px 0px rgba(196, 93, 62, 0.4);
  cursor: pointer;
  transition: all 0.2s linear;
  white-space: nowrap;
  text-decoration: none;
  min-height: 52px;
}

.sharp-btn:hover {
  background: var(--olive-brown);
  color: #FFFFFF;
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px rgba(196, 93, 62, 0.6);
}

.sharp-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--paper);
  color: var(--terracotta);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 15px;
  border: 3px solid var(--terracotta);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s linear;
  white-space: nowrap;
  text-decoration: none;
  min-height: 52px;
}

.sharp-btn-outline:hover {
  background: var(--terracotta);
  color: #FFFFFF;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(196, 93, 62, 0.3);
}

.sharp-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 44px;
  background: var(--olive-brown);
  color: #FFFFFF;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 0;
  box-shadow: 6px 6px 0px var(--shadow-strong);
  cursor: pointer;
  transition: all 0.2s linear;
  white-space: nowrap;
  text-decoration: none;
  min-height: 56px;
}

.sharp-btn-dark:hover {
  background: var(--terracotta);
  color: #FFFFFF;
  transform: translate(-2px, -2px);
}

.sharp-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(196, 93, 62, 0.12);
  color: var(--terracotta);
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sharp-tag-sage {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(122, 139, 111, 0.15);
  color: var(--sage);
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sharp-tag-ochre {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(212, 168, 83, 0.18);
  color: #B58637;
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sharp-deco-line {
  position: absolute;
  width: 3px;
  height: 100%;
  background: var(--terracotta);
  opacity: 0.15;
}

.sharp-deco-corner {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 3px solid var(--terracotta);
  opacity: 0.15;
  pointer-events: none;
}

.sharp-deco-corner.top-right {
  top: 16px;
  right: 16px;
  border-left: none;
  border-bottom: none;
}

.sharp-deco-corner.bottom-left {
  bottom: 16px;
  left: 16px;
  border-right: none;
  border-top: none;
}

.sharp-bg-pattern {
  position: relative;
  overflow: hidden;
}

.sharp-bg-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(90deg, transparent 49px, rgba(196, 93, 62, 0.05) 50px, transparent 51px),
    linear-gradient(0deg, transparent 49px, rgba(196, 93, 62, 0.05) 50px, transparent 51px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

.yankton-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 236, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 4px solid var(--terracotta);
  box-shadow: 0 4px 16px rgba(61, 61, 61, 0.08);
  height: 72px;
  display: flex;
  align-items: center;
}

.yankton-header-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.yankton-logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--olive-brown);
}

.yankton-logo-mark {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--terracotta), var(--sage));
  border: 3px solid var(--terracotta);
  box-shadow: 4px 4px 0px var(--shadow-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.yankton-logo-mark svg {
  width: 26px;
  height: 26px;
  fill: #FFFFFF;
}

.yankton-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.yankton-logo-domain {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: var(--olive-brown);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.yankton-logo-name {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  color: var(--olive-brown);
  letter-spacing: 0.12em;
  font-weight: 700;
}

.yankton-nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: flex-end;
}

.yankton-nav-desktop a {
  font-family: 'Karla', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--olive-brown);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 14px;
  text-decoration: none;
  transition: all 0.2s linear;
  white-space: nowrap;
  position: relative;
}

.yankton-nav-desktop a:hover,
.yankton-nav-desktop a.active {
  background: var(--terracotta);
  color: #FFFFFF;
  box-shadow: 4px 4px 0px var(--shadow-strong);
}

.yankton-nav-cta {
  margin-left: 16px;
  padding: 12px 24px !important;
  background: var(--terracotta) !important;
  color: #FFFFFF !important;
  font-family: 'Fraunces', serif !important;
  font-weight: 600 !important;
  box-shadow: 4px 4px 0px rgba(196, 93, 62, 0.4);
  letter-spacing: 0.02em !important;
  text-transform: none !important;
}

.yankton-nav-cta:hover {
  background: var(--olive-brown) !important;
  color: #FFFFFF !important;
  transform: translate(-2px, -2px);
}

.yankton-burger {
  display: none;
  width: 44px;
  height: 44px;
  background: rgba(253, 246, 236, 0.95);
  border: 2px solid var(--border);
  border-radius: 0 !important;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
}

.yankton-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--olive-brown);
  transition: all 0.2s linear;
}

.yankton-burger.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.yankton-burger.is-open span:nth-child(2) {
  opacity: 0;
}

.yankton-burger.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.yankton-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--parchment-1) 0%, var(--parchment-2) 100%);
  z-index: 99;
  display: none;
  flex-direction: column;
  padding: 96px 32px 32px;
  overflow-y: auto;
}

.yankton-mobile-menu.is-open {
  display: flex;
}

.yankton-mobile-menu::before {
  content: '';
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 48px,
    rgba(196, 93, 62, 0.08) 50px,
    transparent 52px
  );
  pointer-events: none;
}

.yankton-mobile-menu a {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--olive-brown);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  transition: all 0.2s linear;
}

.yankton-mobile-menu a:hover {
  background: rgba(196, 93, 62, 0.1);
  padding-left: 12px;
  color: var(--terracotta);
}

.yankton-mobile-menu .num-prefix {
  font-family: 'Roboto Mono', monospace;
  font-size: 12px;
  color: var(--terracotta);
  font-weight: 500;
}

.yankton-hero {
  min-height: 88vh;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.yankton-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50% !important;
  filter: blur(80px);
  opacity: 0.22;
  pointer-events: none;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: var(--terracotta);
  top: -150px;
  right: -100px;
  animation: blob-float-1 28s ease-in-out infinite;
  max-width: 200%;
  max-height: 200%;
}

.hero-blob-2 {
  width: 350px;
  height: 350px;
  background: var(--sage);
  bottom: -100px;
  left: -100px;
  filter: blur(70px);
  opacity: 0.2;
  animation: blob-float-2 32s ease-in-out infinite;
  max-width: 200%;
  max-height: 200%;
}

.hero-blob-3 {
  width: 220px;
  height: 220px;
  background: var(--ochre);
  top: 50%;
  left: 50%;
  filter: blur(60px);
  opacity: 0.18;
  animation: blob-float-3 24s ease-in-out infinite;
  max-width: 200%;
  max-height: 200%;
}

.hero-blob-4 {
  width: 700px;
  height: 700px;
  background: var(--parchment-1);
  top: 20%;
  left: 30%;
  filter: blur(120px);
  opacity: 0.4;
  animation: blob-float-4 40s ease-in-out infinite;
  max-width: 200%;
  max-height: 200%;
}

@keyframes blob-float-1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-60px, 40px); }
}

@keyframes blob-float-2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(50px, -50px); }
}

@keyframes blob-float-3 {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(calc(-50% + 40px), calc(-50% - 30px)); }
}

@keyframes blob-float-4 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(80px, -60px); }
}

.kinetic-marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.18;
  max-width: 100vw;
}

.kinetic-marquee-line {
  position: absolute;
  width: 200%;
  font-family: 'Roboto Mono', monospace;
  font-size: 36px;
  letter-spacing: 0.2em;
  color: var(--border);
  white-space: nowrap;
  animation: marquee-scroll 40s linear infinite;
  max-width: 200vw;
}

.kinetic-marquee-line:nth-child(1) { top: 12%; }
.kinetic-marquee-line:nth-child(2) { top: 32%; animation-duration: 50s; animation-direction: reverse; }
.kinetic-marquee-line:nth-child(3) { top: 62%; animation-duration: 60s; }
.kinetic-marquee-line:nth-child(4) { top: 82%; animation-duration: 45s; animation-direction: reverse; }

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.yankton-hero-content {
  position: relative;
  z-index: 5;
  max-width: 880px;
}

.yankton-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: var(--paper);
  border: 2px solid var(--terracotta);
  font-family: 'Roboto Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}

.yankton-hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  border-radius: 50% !important;
  animation: pulse-dot 1.6s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.yankton-hero h1 {
  margin-bottom: 20px;
  position: relative;
}

.yankton-hero h1 .accent-mark {
  color: var(--terracotta);
  font-style: italic;
}

.yankton-hero-subline {
  font-family: 'Roboto Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--warm-gray);
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.yankton-hero-subline .div-dot {
  width: 4px;
  height: 4px;
  background: var(--terracotta);
  border-radius: 50% !important;
  display: inline-block;
}

.yankton-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.yankton-hero-cta-row > * {
  margin: 0;
}

.yankton-hero-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid var(--border);
  background: var(--paper);
  position: relative;
}

.yankton-hero-stat {
  padding: 24px 20px;
  border-right: 2px solid var(--border);
  text-align: left;
}

.yankton-hero-stat:last-child {
  border-right: none;
}

.yankton-hero-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}

.yankton-hero-stat-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: var(--warm-gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yankton-section-title {
  margin-bottom: 16px;
}

.yankton-section-eyebrow {
  display: inline-block;
  font-family: 'Roboto Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
  position: relative;
  padding-left: 28px;
}

.yankton-section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--terracotta);
}

.yankton-section-desc {
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 32px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 16px;
  margin-top: 32px;
}

.bento-cell {
  background: var(--paper);
  border: 2px solid var(--border);
  box-shadow: 6px 6px 0px var(--shadow);
  padding: 24px;
  position: relative;
  overflow: hidden;
  color: var(--olive-brown);
  transition: all 0.2s linear;
}

.bento-cell:hover {
  z-index: 15;
  position: relative;
  transform: scale(1.03);
  border: 3px solid var(--terracotta);
  box-shadow: 10px 10px 0px var(--shadow-text);
}

.bento-cell.span-2x2 {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-cell.span-2x1 {
  grid-column: span 2;
}

.bento-cell.span-1x2 {
  grid-row: span 2;
}

.bento-cell.span-1x1 {
  grid-column: span 1;
}

.bento-cell-dark {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--olive-brown) 100%);
  color: var(--dark-text);
  border: 2px solid var(--terracotta);
}

.bento-cell-sage {
  background: var(--sage-pastel);
  color: var(--olive-brown);
  border: 2px solid var(--sage);
}

.bento-cell-num {
  font-family: 'Roboto Mono', monospace;
  font-size: 13px;
  color: var(--terracotta);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  display: block;
}

.bento-cell-dark .bento-cell-num,
.bento-cell-sage .bento-cell-num {
  color: inherit;
  opacity: 0.7;
}

.bento-cell h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.bento-cell p {
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.6;
}

.bento-cell-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 12px;
  color: var(--terracotta);
}

.bento-cell-dark .bento-cell-icon,
.bento-cell-sage .bento-cell-icon {
  color: inherit;
}

.bento-cell-image {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  display: block;
  margin: 0;
}

.bento-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: var(--parchment-3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bento-cell-tag-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-rail {
  margin-top: 48px;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  padding: 18px 0;
  overflow-x: auto;
  display: flex;
  gap: 8px;
  scrollbar-width: thin;
}

.category-rail::-webkit-scrollbar {
  height: 6px;
}

.category-rail::-webkit-scrollbar-thumb {
  background: var(--terracotta);
}

.category-rail a {
  flex-shrink: 0;
  padding: 10px 20px;
  font-family: 'Roboto Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--olive-brown);
  text-transform: uppercase;
  border: 2px solid var(--border);
  background: var(--paper);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s linear;
}

.category-rail a:hover {
  background: var(--terracotta);
  color: #FFFFFF;
  border-color: var(--terracotta);
}

.timeline-yankton {
  margin-top: 40px;
  position: relative;
}

.timeline-yankton::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 28px;
  bottom: 28px;
  width: 3px;
  background: var(--terracotta);
}

.timeline-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  margin-bottom: 28px;
  align-items: stretch;
}

.timeline-node {
  width: 56px;
  height: 56px;
  background: var(--paper);
  border: 3px solid var(--terracotta);
  color: var(--terracotta);
  font-family: 'Roboto Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 52px;
  position: relative;
  z-index: 2;
  transition: all 0.2s linear;
}

.timeline-step:hover .timeline-node {
  transform: scale(1.15);
  background: var(--terracotta);
  color: #FFFFFF;
}

.timeline-step:last-child .timeline-node {
  background: var(--sage);
  border-color: var(--sage);
  color: #FFFFFF;
}

.timeline-card {
  background: var(--paper);
  border: 2px solid var(--border);
  box-shadow: 6px 6px 0px var(--shadow);
  padding: 24px;
  position: relative;
  z-index: 1;
  margin-left: -24px;
  transition: all 0.2s linear;
}

.timeline-step:hover .timeline-card {
  z-index: 10;
  border: 3px solid var(--terracotta);
  box-shadow: 10px 10px 0px var(--shadow-text);
  transform: scale(1.02);
}

.timeline-step:last-child:hover .timeline-card {
  border-color: var(--sage);
}

.timeline-card-eyebrow {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: var(--terracotta);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
  font-weight: 600;
}

.timeline-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.timeline-card p {
  font-size: 14px;
  margin-bottom: 0;
  color: var(--warm-gray);
}

.masonry-grid {
  column-count: 3;
  column-gap: 20px;
  margin-top: 40px;
}

.masonry-card {
  break-inside: avoid;
  margin-bottom: 20px;
  background: var(--paper);
  border: 2px solid var(--border);
  box-shadow: 8px 8px 0px var(--shadow);
  padding: 8px;
  display: block;
  color: var(--olive-brown);
  text-decoration: none;
  transition: all 0.2s linear;
}

.masonry-card:hover {
  z-index: 15;
  position: relative;
  transform: scale(1.04);
  border: 3px solid var(--terracotta);
  box-shadow: 10px 10px 0px var(--shadow-text);
}

.masonry-img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 12px;
}

.masonry-card-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  padding: 0 8px;
}

.masonry-card-meta {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: var(--terracotta);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 8px 12px;
  display: block;
}

.split-sticky {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.split-sticky-left {
  position: sticky;
  top: 100px;
  height: fit-content;
  align-self: start;
}

.split-sticky-image {
  width: 100%;
  height: 460px;
  max-width: 100%;
  max-height: 60vw;
  object-fit: cover;
  display: block;
  border: 3px solid var(--terracotta);
  box-shadow: 12px 12px 0px var(--shadow-strong);
}

.split-sticky-right {
  padding: 0 0 0 56px;
}

.fact-card-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.fact-card {
  background: var(--paper);
  border: 2px solid var(--border);
  box-shadow: 6px 6px 0px var(--shadow);
  padding: 24px;
  position: relative;
  transition: all 0.2s linear;
  color: var(--olive-brown);
}

.fact-card:hover {
  z-index: 10;
  position: relative;
  border: 3px solid var(--terracotta);
  box-shadow: 10px 10px 0px var(--shadow-text);
  transform: scale(1.02);
}

.fact-card-num {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1;
  display: block;
}

.fact-card-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: var(--warm-gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.fact-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  margin: 0;
  color: var(--olive-brown);
}

.coverflow {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 40px 20px;
  scrollbar-width: thin;
  margin: 0 -20px;
}

.coverflow::-webkit-scrollbar {
  height: 8px;
}

.coverflow::-webkit-scrollbar-thumb {
  background: var(--terracotta);
}

.coverflow-card {
  flex: 0 0 320px;
  scroll-snap-align: center;
  background: var(--paper);
  border: 2px solid var(--border);
  box-shadow: 8px 8px 0px var(--shadow);
  padding: 32px 24px;
  margin: 0 12px;
  position: relative;
  transition: all 0.2s linear;
  color: var(--olive-brown);
}

.coverflow-card:hover {
  z-index: 20;
  position: relative;
  border: 3px solid var(--terracotta);
  box-shadow: 10px 10px 0px var(--shadow-text);
  transform: scale(1.04);
}

.coverflow-card-num {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 12px;
  line-height: 1;
  display: block;
}

.coverflow-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.coverflow-card p {
  font-size: 13px;
  color: var(--warm-gray);
  margin: 0;
}

.coverflow-card-pattern {
  position: absolute;
  bottom: 12px;
  right: 12px;
  opacity: 0.1;
  pointer-events: none;
}

.team-hover-block {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 32px;
  margin-top: 32px;
}

.team-list {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--border);
}

.team-list-item {
  padding: 24px 16px;
  border-bottom: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.2s linear;
  position: relative;
}

.team-list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--terracotta);
  opacity: 0;
  transition: opacity 0.2s linear;
}

.team-list-item:hover,
.team-list-item.is-active {
  background: rgba(196, 93, 62, 0.08);
  padding-left: 20px;
}

.team-list-item:hover::before,
.team-list-item.is-active::before {
  opacity: 1;
}

.team-list-name {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--olive-brown);
  margin-bottom: 4px;
  display: block;
}

.team-list-role {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: var(--terracotta);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-preview {
  position: relative;
  min-height: 380px;
  background: var(--paper);
  border: 2px solid var(--border);
  box-shadow: 8px 8px 0px var(--shadow);
  padding: 24px;
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.team-preview-photo {
  flex: 0 0 240px;
  width: 240px;
  height: 320px;
  object-fit: cover;
  display: block;
  border: 3px solid var(--border);
}

.team-preview-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-preview-info h4 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  margin-bottom: 8px;
}

.team-preview-info .role {
  font-family: 'Roboto Mono', monospace;
  font-size: 12px;
  color: var(--terracotta);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.team-preview-info p {
  font-size: 14px;
  color: var(--warm-gray);
  margin-bottom: 12px;
}

.team-preview-info .meta {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--warm-gray);
}

.team-preview-info .meta span strong {
  color: var(--olive-brown);
  font-weight: 600;
}

.flex-grow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.review-card {
  background: var(--paper);
  border: 2px solid var(--border);
  box-shadow: 6px 6px 0px rgba(196, 93, 62, 0.08);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.2s linear;
  color: var(--olive-brown);
  cursor: default;
}

.review-card:hover {
  z-index: 20;
  position: relative;
  border: 3px solid var(--terracotta);
  box-shadow: 10px 10px 0px var(--shadow-text);
  transform: scale(1.04);
}

.review-stars {
  color: var(--terracotta);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: block;
}

.review-text {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  color: var(--olive-brown);
  line-height: 1.7;
  margin-bottom: 16px;
}

.review-meta {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: var(--warm-gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 2px solid var(--border);
}

.review-meta .location {
  color: var(--terracotta);
  font-weight: 600;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  border-top: 2px solid var(--terracotta);
  border-right: 2px solid var(--terracotta);
  opacity: 0.1;
  pointer-events: none;
}

.accordion-yankton {
  max-width: 880px;
  margin: 32px auto 0;
}

.accordion-item-yankton {
  background: var(--paper);
  border-bottom: 2px solid var(--border);
  padding: 0;
  position: relative;
}

.accordion-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 16px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--olive-brown);
  transition: all 0.2s linear;
  border-radius: 0 !important;
}

.accordion-trigger:hover {
  background: rgba(196, 93, 62, 0.06);
}

.accordion-trigger .acc-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(196, 93, 62, 0.14);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto Mono', monospace;
  font-size: 20px;
  font-weight: 600;
  transition: transform 0.2s linear, background 0.2s linear;
}

.accordion-trigger:hover .acc-icon {
  background: var(--sage);
  color: #FFFFFF;
}

.accordion-item-yankton.is-open .accordion-trigger .acc-icon {
  transform: rotate(45deg);
  background: var(--terracotta);
  color: #FFFFFF;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.accordion-item-yankton.is-open .accordion-content {
  max-height: 400px;
}

.accordion-content-inner {
  padding: 0 16px 24px;
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.75;
}

.contact-split {
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  background: var(--paper);
  box-shadow: 0 16px 48px var(--shadow);
}

.contact-split-left {
  padding: 56px 48px;
  background: var(--paper);
}

.contact-split-right {
  background: var(--olive-brown);
  color: var(--dark-text);
  padding: 56px 48px;
  position: relative;
}

.contact-split-right::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 6px;
  background: var(--terracotta);
}

.contact-split-right h3 {
  color: #FFFFFF;
  font-size: 40px;
  margin-bottom: 24px;
}

.contact-phone-big {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  color: var(--ochre);
  font-weight: 700;
  display: block;
  margin-bottom: 24px;
  text-decoration: none;
  letter-spacing: -0.01em;
  word-break: break-all;
}

.contact-phone-big:hover {
  color: var(--terracotta-soft);
}

.contact-info-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: 'Roboto Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--sage-pastel);
  line-height: 1.6;
}

.contact-info-line:last-of-type {
  border-bottom: none;
}

.contact-info-line .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--terracotta-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 16px;
}

.form-grid-yankton {
  display: grid;
  gap: 24px;
}

.form-field-yankton {
  position: relative;
  border-bottom: 3px solid var(--border);
  padding-top: 24px;
  transition: border-color 0.3s ease-out;
}

.form-field-yankton:focus-within {
  border-color: var(--terracotta);
}

.form-field-yankton label {
  display: block;
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: var(--olive-brown);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-field-yankton input,
.form-field-yankton textarea,
.form-field-yankton select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  color: var(--olive-brown);
  padding: 8px 0;
  border-radius: 0 !important;
}

.form-field-yankton input::placeholder,
.form-field-yankton textarea::placeholder {
  color: var(--warm-gray);
  opacity: 0.6;
}

.form-field-yankton textarea {
  resize: vertical;
  min-height: 80px;
}

.form-field-yankton select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.yankton-footer {
  background: var(--olive-brown);
  color: var(--dark-text);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.yankton-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--terracotta);
}

.yankton-footer::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  height: 2px;
  background-image: radial-gradient(circle, var(--ochre) 1.5px, transparent 2px);
  background-size: 60px 2px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-logo-block .yankton-logo-mark {
  width: 56px;
  height: 56px;
}

.footer-logo-block .yankton-logo-name {
  color: #FFFFFF;
  font-size: 16px;
}

.footer-logo-block .yankton-logo-domain {
  color: var(--sage-pastel);
}

.footer-about {
  font-size: 14px;
  line-height: 1.7;
  color: var(--sage-pastel);
  margin-bottom: 24px;
}

.footer-col-title {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
  font-weight: 600;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--terracotta);
}

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

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--sage-pastel);
  font-size: 13px;
  text-decoration: none;
  font-family: 'Karla', sans-serif;
  transition: color 0.2s linear;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col a::before {
  content: '→';
  color: var(--terracotta);
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s linear;
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-col a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-item {
  font-family: 'Roboto Mono', monospace;
  font-size: 12px;
  color: var(--sage-pastel);
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-contact-item strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: var(--sage-pastel);
  letter-spacing: 0.05em;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: var(--sage-pastel);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.2s linear;
}

.footer-legal-links a:hover {
  color: #FFFFFF;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 380px;
  background: var(--paper);
  border: 3px solid var(--terracotta);
  box-shadow: 8px 8px 0px var(--shadow-strong);
  padding: 24px;
  z-index: 9999;
  color: var(--olive-brown);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner-title {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--olive-brown);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-banner-text {
  font-size: 12px;
  line-height: 1.6;
  color: var(--warm-gray);
  margin-bottom: 16px;
}

.cookie-banner-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-banner-accept {
  flex: 1;
  padding: 10px 16px;
  background: var(--terracotta);
  color: #FFFFFF;
  font-family: 'Karla', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 0 !important;
  min-height: 40px;
}

.cookie-banner-accept:hover {
  background: var(--olive-brown);
}

.cookie-banner-decline {
  flex: 1;
  padding: 10px 16px;
  background: transparent;
  color: var(--olive-brown);
  font-family: 'Karla', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 2px solid var(--border);
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 0 !important;
  min-height: 40px;
}

.cookie-banner-decline:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.diagonal-cut-top {
  clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
  margin-top: -40px;
  padding-top: 80px;
}

.diagonal-cut-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
  padding-bottom: 80px;
}

.section-bg-dark {
  background: var(--olive-brown);
  color: var(--dark-text);
}

.section-bg-dark h1,
.section-bg-dark h2,
.section-bg-dark h3,
.section-bg-dark h4 {
  color: #FFFFFF;
}

.section-bg-dark p {
  color: var(--sage-pastel);
}

.section-bg-dark .yankton-section-eyebrow {
  color: var(--ochre);
}

.section-bg-dark .yankton-section-eyebrow::before {
  background: var(--ochre);
}

.section-bg-sage {
  background: var(--sage-pastel);
}

.section-bg-paper {
  background: var(--paper);
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.kpi-card {
  background: var(--paper);
  border: 2px solid var(--border);
  padding: 24px;
  box-shadow: 4px 4px 0px var(--shadow);
  transition: all 0.2s linear;
  position: relative;
}

.kpi-card:hover {
  border: 3px solid var(--terracotta);
  box-shadow: 8px 8px 0px var(--shadow-text);
  transform: scale(1.03);
  z-index: 5;
}

.kpi-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.kpi-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  color: var(--warm-gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kpi-card-dark {
  background: var(--olive-brown);
  border-color: var(--terracotta);
}

.kpi-card-dark .kpi-num {
  color: var(--ochre);
}

.kpi-card-dark .kpi-label {
  color: var(--sage-pastel);
}

.service-detail-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.service-detail-list li {
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--border);
  position: relative;
  font-size: 14px;
  color: var(--olive-brown);
}

.service-detail-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-size: 12px;
  top: 14px;
}

.service-detail-list li:last-child {
  border-bottom: none;
}

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 12px 20px;
  background: var(--terracotta);
  color: #FFFFFF;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  box-shadow: 4px 4px 0px rgba(196, 93, 62, 0.3);
}

.price-tag small {
  font-size: 12px;
  font-family: 'Roboto Mono', monospace;
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: 0.04em;
}

.service-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  margin-bottom: 32px;
  background: var(--paper);
  border: 2px solid var(--border);
  box-shadow: 8px 8px 0px var(--shadow);
  transition: all 0.2s linear;
  position: relative;
}

.service-row:hover {
  z-index: 10;
  border: 3px solid var(--terracotta);
  box-shadow: 12px 12px 0px var(--shadow-text);
  transform: scale(1.01);
}

.service-row-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.service-row-body {
  padding: 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-row-body h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.service-row-body p {
  font-size: 14px;
  color: var(--warm-gray);
  margin-bottom: 16px;
}

.service-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  align-items: center;
}

.service-row-meta .price-tag {
  font-size: 18px;
  padding: 8px 16px;
}

.thanks-block {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thanks-block-content {
  max-width: 720px;
  position: relative;
  z-index: 5;
}

.thanks-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, var(--terracotta), var(--sage));
  border: 4px solid var(--terracotta);
  box-shadow: 8px 8px 0px var(--shadow-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 56px;
  color: #FFFFFF;
  font-weight: 700;
}

.legal-page-content {
  max-width: 880px;
  margin: 0 auto;
  padding: 80px 24px;
}

.legal-page-content h1 {
  font-size: 44px;
  margin-bottom: 16px;
}

.legal-page-content h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-top: 24px;
  border-top: 2px solid var(--border);
}

.legal-page-content p {
  font-size: 15px;
  margin-bottom: 16px;
}

.legal-page-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-page-content li {
  font-size: 14px;
  color: var(--warm-gray);
  margin-bottom: 8px;
  line-height: 1.7;
}

.faq-block {
  background: var(--paper);
  padding: 32px;
  border: 2px solid var(--border);
  box-shadow: 8px 8px 0px var(--shadow);
}

.faq-block h2 {
  margin-bottom: 24px;
}

.hero-inner-page {
  min-height: 420px;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--parchment-2), var(--parchment-3));
}

.hero-inner-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(196, 93, 62, 0.06) 80px
    );
  pointer-events: none;
}

.hero-inner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-inner-content h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 16px;
}

.hero-inner-content p {
  font-size: 16px;
  color: var(--warm-gray);
  max-width: 640px;
}

.breadcrumb {
  font-family: 'Roboto Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--warm-gray);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--terracotta);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .sep {
  margin: 0 8px;
  color: var(--border);
}

.section-divider-line {
  width: 100%;
  height: 2px;
  background: var(--border);
  margin: 0;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.text-center {
  text-align: center;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mt-6 { margin-top: 64px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-cell.span-2x2 {
    grid-column: span 2;
    grid-row: span 1;
  }
  .bento-cell.span-1x2 {
    grid-row: span 1;
  }
  .split-sticky {
    grid-template-columns: 1fr;
  }
  .split-sticky-left {
    position: relative;
    top: auto;
  }
  .split-sticky-right {
    padding: 32px 0 0;
  }
  .team-hover-block {
    grid-template-columns: 1fr;
  }
  .masonry-grid {
    column-count: 2;
  }
  .contact-split {
    grid-template-columns: 1fr;
  }
  .contact-split-right::before {
    left: 24px;
    right: 24px;
    top: 0;
    bottom: auto;
    height: 6px;
    width: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .service-row {
    grid-template-columns: 1fr;
  }
  .timeline-yankton::before {
    left: 48px;
  }
  .timeline-step {
    grid-template-columns: 80px 1fr;
  }
  .timeline-node {
    margin-left: 20px;
  }
}

@media (max-width: 768px) {
  .yankton-nav-desktop {
    display: none;
  }
  .yankton-burger {
    display: flex;
  }
  .section-yankton {
    padding: 56px 0;
    overflow-x: hidden;
  }
  .bulma-container-yankton {
    padding: 0 16px;
    max-width: 100%;
  }
  .yankton-hero {
    min-height: auto;
    padding: 56px 0 48px;
    width: 100%;
    max-width: 100vw;
  }
  .yankton-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .yankton-hero-stat:nth-child(2) {
    border-right: none;
  }
  .yankton-hero-stat:nth-child(1),
  .yankton-hero-stat:nth-child(2) {
    border-bottom: 2px solid var(--border);
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-cell.span-2x2,
  .bento-cell.span-2x1 {
    grid-column: span 1;
  }
  .masonry-grid {
    column-count: 1;
  }
  .flex-grow-grid {
    grid-template-columns: 1fr;
  }
  .kpi-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal-links {
    justify-content: center;
  }
  .contact-split-left,
  .contact-split-right {
    padding: 32px 24px;
  }
  .contact-phone-big {
    font-size: 28px;
  }
  .contact-split-right h3 {
    font-size: 28px;
  }
  .yankton-hero h1 {
    font-size: 36px;
  }
  .yankton-hero-subline {
    font-size: 12px;
  }
  .timeline-yankton::before {
    left: 28px;
  }
  .timeline-step {
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }
  .timeline-node {
    width: 40px;
    height: 40px;
    font-size: 14px;
    margin-left: 8px;
  }
  .timeline-card {
    margin-left: 0;
    padding: 16px;
  }
  .team-preview {
    flex-direction: column;
  }
  .team-preview-photo {
    width: 100%;
    height: 240px;
    flex: 0 0 auto;
  }
  .hero-blob-1 {
    width: 320px;
    height: 320px;
    max-width: 150vw;
  }
  .hero-blob-2 {
    width: 240px;
    height: 240px;
    max-width: 150vw;
  }
  .hero-blob-3,
  .hero-blob-4 {
    display: none;
  }
  .kinetic-marquee-line {
    font-size: 18px;
  }
  .kinetic-marquee-line:nth-child(3),
  .kinetic-marquee-line:nth-child(4) {
    display: none;
  }
  .yankton-hero-cta-row {
    flex-direction: column;
  }
  .yankton-hero-cta-row > * {
    width: 100%;
  }
  .coverflow-card {
    flex: 0 0 260px;
  }
  .service-row-body {
    padding: 24px 20px;
  }
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
  .thanks-icon {
    width: 80px;
    height: 80px;
    font-size: 36px;
  }
  .split-sticky-image {
    height: auto;
    max-height: 50vw;
  }
  .coverflow {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 480px) {
  .yankton-logo-name {
    font-size: 12px;
  }
  .yankton-logo-domain {
    font-size: 9px;
  }
  .yankton-logo-mark {
    width: 40px;
    height: 40px;
  }
  .yankton-logo-mark svg {
    width: 22px;
    height: 22px;
  }
  .hero-inner-content h1 {
    font-size: 32px;
  }
  .accordion-trigger {
    font-size: 14px;
    padding: 18px 12px;
  }
  .fact-card-row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-blob, .kinetic-marquee-line {
    animation: none !important;
  }
}