
:root {
  --ink: #1a1714;
  --paper: #f5f1eb;
  --paper-dark: #ede8e0;
  --accent: #5c7a5e;
  --accent-light: #7a9e7c;
  --accent-muted: #d4e0d5;
  --warm-gray: #8a8278;
  --border: #d4cec5;
  --shadow-sm: 0 1px 3px rgba(26,23,20,0.08), 0 1px 2px rgba(26,23,20,0.06);
  --shadow-md: 0 4px 12px rgba(26,23,20,0.10), 0 2px 6px rgba(26,23,20,0.07);
  --shadow-lg: 0 12px 32px rgba(26,23,20,0.12), 0 4px 12px rgba(26,23,20,0.08);
  --shadow-xl: 0 20px 48px rgba(26,23,20,0.14), 0 8px 20px rgba(26,23,20,0.09);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Work Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a { color: inherit; }


.surface { background: var(--paper); }
.surface-raised { background: #fff; box-shadow: var(--shadow-md); }
.surface-inset { background: var(--paper-dark); }


.text-display {
  font-family: 'Vollkorn', serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.text-body {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--warm-gray);
}

.text-caption {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gray);
}


.action-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-md);
}

.action-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.action-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--ink);
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.action-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}


.space-section { padding: var(--space-xl) var(--space-md); }
.space-card { padding: var(--space-md); }


nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(245,241,235,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,206,197,0.5);
  box-shadow: 0 2px 20px rgba(26,23,20,0.06);
}

.nav-logo {
  font-family: 'Vollkorn', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.3s ease;
}

.nav-logo:hover { opacity: 0.75; }
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a.active { color: var(--accent); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 200;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--ink);
  clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
  transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.mobile-menu-overlay.open {
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
  pointer-events: all;
}

.mobile-menu-inner {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}

.mobile-menu-overlay.open .mobile-menu-inner {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.mobile-nav-links a {
  font-family: 'Vollkorn', serif;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--paper);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.mobile-nav-links a:hover { color: var(--accent-light); }

.mobile-menu-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu-contact p {
  color: var(--warm-gray);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}


.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.hero-icon-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(8, 1fr);
  opacity: 0.04;
  pointer-events: none;
}

.hero-icon-grid i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--ink);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 2rem;
}

.hero-eyebrow {
  margin-bottom: 1rem;
  animation: heroFadeUp 0.7s ease both;
}

.hero-title {
  font-family: 'Vollkorn', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  animation: heroFadeUp 0.7s 0.15s ease both;
}

.hero-subtitle {
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  animation: heroFadeUp 0.7s 0.3s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeUp 0.7s 0.45s ease both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 2s infinite;
}

.hero-scroll-indicator span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--ink), transparent);
  margin: 0 auto;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}


.section-container {
  max-width: 1160px;
  margin: 0 auto;
}

.section-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section-title {
  font-family: 'Vollkorn', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0.5rem 0 1rem;
}

.section-lead {
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
}


.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.process-step {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  font-family: 'Vollkorn', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-muted);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.step-title {
  font-family: 'Vollkorn', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}


.two-col-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col-feature--reverse { direction: rtl; }
.two-col-feature--reverse > * { direction: ltr; }

.feature-text { }

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--accent-muted);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 100px;
}


.img-rounded {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.img-rounded:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.img-tall { aspect-ratio: 3/4; }


.cities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.city-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.city-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.city-card:hover .city-img { transform: scale(1.05); }

.city-card { overflow: hidden; }

.city-card-body { }

.city-title {
  font-family: 'Vollkorn', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}


.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefit-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
}

.benefit-title {
  font-family: 'Vollkorn', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}


.resources-section { }

.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.resource-card {
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-muted);
}

.resource-card--featured {
  grid-column: span 1;
  background: var(--ink);
  border-color: var(--ink);
}

.resource-card--featured .resource-icon { background: rgba(255,255,255,0.1); color: var(--accent-light); }
.resource-card--featured .resource-title { color: var(--paper); }
.resource-card--featured .text-body { color: rgba(245,241,235,0.7); }
.resource-card--featured .resource-tag { background: rgba(255,255,255,0.1); color: var(--accent-light); }

.resource-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.resource-body { flex: 1; }

.resource-title {
  font-family: 'Vollkorn', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.resource-tag {
  display: inline-block;
  background: var(--paper-dark);
  color: var(--warm-gray);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-top: 0.75rem;
  letter-spacing: 0.04em;
}


.cta-section { }

.cta-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--paper-dark);
  border-radius: var(--radius-lg);
  padding: 4rem;
  border: 1px solid var(--border);
}

.cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.cta-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.cta-contact-item:hover { color: var(--accent); }

.cta-contact-item i {
  width: 36px;
  height: 36px;
  background: var(--accent-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
}


.site-footer { margin-top: auto; }

.footer-gradient {
  background: linear-gradient(135deg, #2a2420 0%, #1a1714 50%, #1e2a1f 100%);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  font-family: 'Vollkorn', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--paper);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo span { color: var(--accent-light); }

.footer-tagline {
  color: rgba(245,241,235,0.55);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.footer-address {
  color: rgba(245,241,235,0.55);
  font-size: 0.875rem;
  line-height: 1.8;
  font-style: normal;
}

.footer-address a {
  color: rgba(245,241,235,0.55);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-address a:hover { color: var(--accent-light); }

.footer-heading {
  font-family: 'Vollkorn', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(245,241,235,0.55);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--accent-light); }

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom .text-caption { color: rgba(245,241,235,0.35); }

.footer-bottom a {
  color: rgba(245,241,235,0.35);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover { color: var(--accent-light); }


.page-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  background: var(--paper-dark);
}


.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.tool-card {
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tool-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.tool-card:hover .tool-icon { background: var(--accent); color: #fff; }

.tool-title {
  font-family: 'Vollkorn', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}


.specs-table {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.spec-row:last-child { border-bottom: none; }
.spec-row:hover { background: var(--paper-dark); }

.spec-label {
  font-weight: 500;
  color: var(--ink);
  font-size: 0.95rem;
}

.spec-value {
  font-family: 'Vollkorn', serif;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
  text-align: right;
}


.emergency-scenarios {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.scenario-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.scenario-card:hover { box-shadow: var(--shadow-xl); }

.scenario-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform 0.5s ease;
}

.scenario-card:hover .scenario-img { transform: scale(1.04); }

.scenario-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scenario-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

.scenario-title {
  font-family: 'Vollkorn', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}


.timeline {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  display: flex;
  gap: 2rem;
  padding-bottom: 2rem;
  position: relative;
}

.timeline-dot {
  width: 42px;
  height: 42px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 3px solid var(--paper-dark);
  margin-top: 0.5rem;
}

.timeline-content {
  flex: 1;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.timeline-title {
  font-family: 'Vollkorn', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}


.zones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.zone-card {
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zone-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.zone-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.zone-card:hover .zone-icon { background: var(--accent); color: #fff; }

.zone-title {
  font-family: 'Vollkorn', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}


.prep-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.prep-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prep-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.prep-number {
  font-family: 'Vollkorn', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-muted);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}

.prep-content h4 {
  font-family: 'Vollkorn', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}


.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-link {
  font-family: 'Vollkorn', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover { color: var(--accent); }

.hours-block { }

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.hours-row:last-of-type { border-bottom: none; }

.hours-day { color: var(--warm-gray); }
.hours-time { font-weight: 600; color: var(--ink); }


.contact-form-wrap {
  border-radius: var(--radius-md);
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.form-progress {
  margin-bottom: 2rem;
}

.form-step-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 0.75rem;
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--border);
  color: var(--warm-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.step-dot--active {
  background: var(--accent);
  color: #fff;
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  max-width: 60px;
}

.form-step {
  display: none;
}

.form-step--active {
  display: block;
}

.form-step-title {
  font-family: 'Vollkorn', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(92,122,94,0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-field--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox-label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--warm-gray);
  cursor: pointer;
  line-height: 1.5;
}

.form-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-checkbox-label a { color: var(--accent); }


.map-container {
  overflow: hidden;
}


.cookie-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26,23,20,0.6);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(4px);
}

.cookie-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  z-index: 1000;
  width: 90%;
  max-width: 520px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(26,23,20,0.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  max-height: 90%;
  overflow-y: auto;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.cookie-modal-inner {
  padding: 2.5rem;
}

.cookie-modal-title {
  font-family: 'Vollkorn', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.cookie-modal-desc {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.75rem;
}

.cookie-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}

.cookie-cat:last-child { border-bottom: none; }

.cookie-cat-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.cookie-cat-info strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.cookie-cat-info span {
  font-size: 0.8rem;
  color: var(--warm-gray);
}

.cookie-toggle--locked {
  color: var(--warm-gray);
  font-size: 0.9rem;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-switch input { opacity: 0; width: 0; height: 0; }

.cookie-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.cookie-switch input:checked + .cookie-slider { background: var(--accent); }
.cookie-switch input:checked + .cookie-slider::before { transform: translateX(20px); }

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn-minimal { flex: 1; justify-content: center; font-size: 0.8rem; padding: 0.75rem 1rem; }
.cookie-btn-custom { flex: 1; justify-content: center; font-size: 0.8rem; padding: 0.75rem 1rem; }
.cookie-btn-accept { flex: 1.5; justify-content: center; }


.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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


@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .benefits-layout { grid-template-columns: 1fr; }
  .benefits-image { max-width: 480px; }
  .two-col-feature { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .space-section { padding: 4rem 1.25rem; }

  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }

  .two-col-feature,
  .two-col-feature--reverse { grid-template-columns: 1fr; direction: ltr; }

  .cities-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }

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

  .cta-block {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }

  .scenario-card { grid-template-columns: 1fr; }
  .scenario-img { min-height: 220px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-col.footer-brand { grid-column: 1 / -1; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-actions { flex-direction: column; align-items: center; }
  .action-primary, .action-ghost { width: 100%; max-width: 300px; justify-content: center; }

  .timeline::before { left: 16px; }
  .timeline-dot { width: 34px; height: 34px; }

  .spec-row { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .spec-value { text-align: left; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .cookie-actions { flex-direction: column; }
  .cookie-btn-minimal, .cookie-btn-custom, .cookie-btn-accept { flex: none; width: 100%; }
  .resource-card { flex-direction: column; }
  .cta-block { padding: 1.5rem; }
}