/* ===================================
   ELVARION DIGITAL - MAIN STYLESHEET
   Prefix: ed-
   Design: Neo Brutalist
   =================================== */


:root {
  --ed-primary: #1a1a2e;
  --ed-primary-dark: #0f0f1a;
  --ed-secondary: #e8e0d0;
  --ed-accent: #d4500a;
  --ed-accent-hover: #b84208;
  --ed-accent-light: #f5e6dc;
  --ed-warm-bg: #f7f3ee;
  --ed-warm-mid: #ede6db;
  --ed-text: #1c1c1c;
  --ed-text-muted: #5a5550;
  --ed-text-light: #8a847e;
  --ed-border: #1a1a2e;
  --ed-border-width: 2.5px;
  --ed-shadow-hard: 4px 4px 0px #1a1a2e;
  --ed-shadow-hard-lg: 6px 6px 0px #1a1a2e;
  --ed-shadow-hard-accent: 4px 4px 0px #d4500a;
  --ed-radius-sm: 4px;
  --ed-radius-md: 8px;
  --ed-radius-lg: 12px;
  --ed-font: 'Instrument Sans', sans-serif;
  --ed-nav-h: 68px;
  --ed-hero-grad-1: #1a1a2e;
  --ed-hero-grad-2: #2d1b0e;
  --ed-hero-grad-3: #3d2808;
  --ed-hero-grad-4: #1e2d1a;
}


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

html { scroll-behavior: smooth; font-size: 16px; }

body.ed-body {
  font-family: var(--ed-font);
  background-color: var(--ed-warm-bg);
  color: var(--ed-text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color 0.2s ease, opacity 0.2s ease; }

ul { list-style: none; }


.ed-skeleton-overlay {
  position: fixed;
  inset: 0;
  background: var(--ed-warm-bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.ed-skeleton-overlay.ed-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ed-skeleton-inner {
  width: min(680px, 90vw);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ed-skel {
  background: linear-gradient(90deg, #e8e0d0 25%, #f0ebe3 50%, #e8e0d0 75%);
  background-size: 200% 100%;
  animation: ed-shimmer 1.5s infinite;
  border-radius: var(--ed-radius-sm);
}

.ed-skel-logo { height: 40px; width: 140px; }
.ed-skel-h1 { height: 56px; width: 85%; }
.ed-skel-h2 { height: 36px; width: 65%; }
.ed-skel-p { height: 18px; width: 100%; }
.ed-skel-p.ed-skel-short { width: 70%; }
.ed-skel-btn { height: 48px; width: 180px; margin-top: 8px; }

@keyframes ed-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}


.ed-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--ed-warm-bg);
  border-bottom: var(--ed-border-width) solid var(--ed-border);
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  height: var(--ed-nav-h);
}

.ed-nav.ed-nav-visible,
.ed-nav.ed-nav-shown {
  transform: translateY(0);
}

.ed-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ed-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.ed-nav-logo-img {
  width: 32px;
  height: 32px;
}

.ed-nav-brand {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ed-primary);
  letter-spacing: -0.02em;
}

.ed-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.ed-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: var(--ed-radius-sm);
  color: var(--ed-text-muted);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.ed-nav-link:hover {
  color: var(--ed-text);
  background: var(--ed-warm-mid);
}

.ed-nav-link.ed-nav-active {
  color: var(--ed-accent);
  font-weight: 600;
}

.ed-nav-link.ed-nav-cta {
  background: var(--ed-primary);
  color: #fff;
  border: var(--ed-border-width) solid var(--ed-primary);
  box-shadow: var(--ed-shadow-hard);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.ed-nav-link.ed-nav-cta:hover {
  box-shadow: 2px 2px 0 var(--ed-primary);
  transform: translate(2px, 2px);
  color: #fff;
  background: var(--ed-primary);
}

.ed-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.ed-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ed-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}


.ed-mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--ed-primary);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ed-mobile-overlay.ed-open {
  transform: translateX(0);
}

.ed-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.ed-mobile-close {
  background: none;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: var(--ed-radius-sm);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.ed-mobile-close:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

.ed-mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  flex: 1;
  align-content: start;
}

.ed-mobile-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--ed-radius-md);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  min-height: 100px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.ed-mobile-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.ed-mobile-item i {
  font-size: 1.5rem;
  color: var(--ed-accent);
}

.ed-breadcrumb {
  background: var(--ed-warm-mid);
  border-bottom: var(--ed-border-width) solid var(--ed-border);
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
  color: var(--ed-text-muted);
}

.ed-breadcrumb .ed-container-narrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ed-breadcrumb a {
  color: var(--ed-accent);
  font-weight: 500;
}

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

.ed-breadcrumb i { font-size: 0.65rem; color: var(--ed-text-light); }


.ed-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ed-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ed-hero-grad-1) 0%, var(--ed-hero-grad-2) 35%, var(--ed-hero-grad-3) 65%, var(--ed-hero-grad-4) 100%);
  background-size: 400% 400%;
  animation: ed-gradient-shift 12s ease infinite;
}

@keyframes ed-gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.ed-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  text-align: center;
}

.ed-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 80, 10, 0.15);
  border: 2px solid var(--ed-accent);
  color: #f5a070;
  padding: 0.4rem 1rem;
  border-radius: var(--ed-radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.ed-hero-title {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.ed-hero-accent {
  color: var(--ed-accent);
  position: relative;
}

.ed-hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.ed-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.ed-hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: ed-bounce 2s ease infinite;
  z-index: 2;
}

@keyframes ed-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}


.ed-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--ed-font);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--ed-radius-sm);
  border: var(--ed-border-width) solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.15s ease, transform 0.15s ease, background 0.2s ease;
  min-height: 44px;
}

.ed-btn-primary {
  background: var(--ed-accent);
  color: #fff;
  border-color: var(--ed-accent);
  box-shadow: var(--ed-shadow-hard-accent);
}

.ed-btn-primary:hover {
  box-shadow: 2px 2px 0 var(--ed-accent-hover);
  transform: translate(2px, 2px);
  background: var(--ed-accent-hover);
}

.ed-btn-secondary {
  background: var(--ed-primary);
  color: #fff;
  border-color: var(--ed-primary);
  box-shadow: var(--ed-shadow-hard);
}

.ed-btn-secondary:hover {
  box-shadow: 2px 2px 0 var(--ed-primary);
  transform: translate(2px, 2px);
}

.ed-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
  box-shadow: 4px 4px 0 rgba(255,255,255,0.2);
}

.ed-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  box-shadow: 2px 2px 0 rgba(255,255,255,0.2);
  transform: translate(2px, 2px);
}

.ed-btn-ghost {
  background: var(--ed-warm-mid);
  color: var(--ed-primary);
  border-color: var(--ed-primary);
  box-shadow: var(--ed-shadow-hard);
}

.ed-btn-ghost:hover {
  background: var(--ed-warm-mid);
  box-shadow: 2px 2px 0 var(--ed-primary);
  transform: translate(2px, 2px);
}

.ed-btn-full { width: 100%; }


.ed-container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}


.ed-section {
  padding: 5rem 0;
}

.ed-section-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--ed-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.ed-section-intro {
  font-size: 1.05rem;
  color: var(--ed-text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.ed-body-text {
  font-size: 1rem;
  color: var(--ed-text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}


.ed-intro-section { background: var(--ed-warm-bg); }

.ed-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ed-intro-image .ed-img-bordered {
  border: var(--ed-border-width) solid var(--ed-border);
  box-shadow: var(--ed-shadow-hard-lg);
  border-radius: var(--ed-radius-sm);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.ed-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ed-accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  transition: gap 0.2s ease;
}

.ed-link-arrow:hover { gap: 0.75rem; }


.ed-learn-section { background: var(--ed-warm-mid); }

.ed-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.ed-card {
  background: var(--ed-warm-bg);
  border: var(--ed-border-width) solid var(--ed-border);
  box-shadow: var(--ed-shadow-hard);
  border-radius: var(--ed-radius-sm);
  padding: 1.5rem;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.ed-card:hover {
  box-shadow: var(--ed-shadow-hard-lg);
  transform: translate(-2px, -2px);
}

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

.ed-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ed-primary);
  margin-bottom: 0.5rem;
}

.ed-card-text {
  font-size: 0.875rem;
  color: var(--ed-text-muted);
  line-height: 1.65;
}


.ed-fullwidth-image-section {
  position: relative;
  overflow: hidden;
  border-top: var(--ed-border-width) solid var(--ed-border);
  border-bottom: var(--ed-border-width) solid var(--ed-border);
}

.ed-fullwidth-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.ed-fullwidth-caption {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  background: rgba(26,26,46,0.85);
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--ed-radius-sm);
  border: 1px solid rgba(255,255,255,0.2);
}


.ed-process-section { background: var(--ed-warm-bg); }

.ed-process-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ed-process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem 0;
}

.ed-process-connector {
  width: 2px;
  height: 2rem;
  background: var(--ed-accent);
  margin-left: 31px;
}

.ed-step-number {
  width: 64px;
  height: 64px;
  background: var(--ed-primary);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--ed-border-width) solid var(--ed-border);
  box-shadow: var(--ed-shadow-hard);
  border-radius: var(--ed-radius-sm);
  flex-shrink: 0;
  font-family: var(--ed-font);
}

.ed-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ed-primary);
  margin-bottom: 0.4rem;
}

.ed-step-text {
  font-size: 0.9rem;
  color: var(--ed-text-muted);
  line-height: 1.65;
}


.ed-gallery-section { background: var(--ed-warm-mid); }

.ed-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 1rem;
}

.ed-gallery-item {
  overflow: hidden;
  border: var(--ed-border-width) solid var(--ed-border);
  box-shadow: var(--ed-shadow-hard);
  border-radius: var(--ed-radius-sm);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.ed-gallery-item:hover {
  box-shadow: var(--ed-shadow-hard-lg);
  transform: translate(-2px, -2px);
}

.ed-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.ed-gallery-item:hover img { transform: scale(1.04); }

.ed-gallery-tall { grid-row: span 2; }
.ed-gallery-wide { grid-column: span 2; }


.ed-resources-section { background: var(--ed-warm-bg); }

.ed-resources-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.ed-resource-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--ed-warm-bg);
  border: var(--ed-border-width) solid var(--ed-border);
  box-shadow: var(--ed-shadow-hard);
  border-radius: var(--ed-radius-sm);
  padding: 1.25rem;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.ed-resource-card:hover {
  box-shadow: var(--ed-shadow-hard-lg);
  transform: translate(-2px, -2px);
}

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

.ed-resource-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ed-primary);
  margin-bottom: 0.35rem;
}

.ed-resource-desc {
  font-size: 0.825rem;
  color: var(--ed-text-muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.ed-resource-tag {
  display: inline-block;
  background: var(--ed-warm-mid);
  border: 1px solid var(--ed-border);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ed-text-muted);
  padding: 0.2rem 0.5rem;
  border-radius: var(--ed-radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ed-resources-note {
  font-size: 0.875rem;
  color: var(--ed-text-muted);
  text-align: center;
}

.ed-link { color: var(--ed-accent); font-weight: 500; }
.ed-link:hover { text-decoration: underline; }


.ed-about-section { background: var(--ed-warm-mid); }

.ed-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ed-about-image img {
  border: var(--ed-border-width) solid var(--ed-border);
  box-shadow: var(--ed-shadow-hard-lg);
  border-radius: var(--ed-radius-sm);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}


.ed-cta-section { background: var(--ed-warm-bg); }

.ed-cta-box {
  background: var(--ed-primary);
  border: var(--ed-border-width) solid var(--ed-border);
  box-shadow: var(--ed-shadow-hard-lg);
  border-radius: var(--ed-radius-sm);
  padding: 3rem 2.5rem;
  text-align: center;
}

.ed-cta-title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.ed-cta-text {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.ed-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


.ed-page-hero {
  background: var(--ed-primary);
  padding: 5rem 1.5rem 3.5rem;
  border-bottom: var(--ed-border-width) solid var(--ed-border);
}

.ed-page-hero-sm {
  padding: 3.5rem 1.5rem 2.5rem;
}

.ed-page-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ed-page-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto;
}

.ed-legal-date {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
}


.ed-principle-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: var(--ed-border-width) solid var(--ed-warm-mid);
}

.ed-principle-block:last-of-type { border-bottom: none; }

.ed-principle-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ed-accent);
  line-height: 1;
  padding-top: 0.25rem;
  font-variant-numeric: tabular-nums;
}

.ed-principle-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ed-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.ed-principle-image {
  margin: 2rem 0;
}

.ed-principle-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border: var(--ed-border-width) solid var(--ed-border);
  box-shadow: var(--ed-shadow-hard-lg);
  border-radius: var(--ed-radius-sm);
}


.ed-format-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.ed-format-card {
  background: var(--ed-warm-bg);
  border: var(--ed-border-width) solid var(--ed-border);
  box-shadow: var(--ed-shadow-hard);
  border-radius: var(--ed-radius-sm);
  padding: 1.75rem;
  position: relative;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.ed-format-card:hover {
  box-shadow: var(--ed-shadow-hard-lg);
  transform: translate(-2px, -2px);
}

.ed-format-featured {
  border-color: var(--ed-accent);
  box-shadow: var(--ed-shadow-hard-accent);
}

.ed-format-badge {
  position: absolute;
  top: -12px;
  left: 1.25rem;
  background: var(--ed-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--ed-radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: var(--ed-border-width) solid var(--ed-border);
}

.ed-format-icon {
  font-size: 1.5rem;
  color: var(--ed-accent);
  margin-bottom: 0.75rem;
}

.ed-format-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ed-primary);
  margin-bottom: 0.75rem;
}

.ed-format-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.ed-format-detail span {
  font-size: 0.8rem;
  color: var(--ed-text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ed-format-detail i { color: var(--ed-accent); }

.ed-format-desc {
  font-size: 0.875rem;
  color: var(--ed-text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.ed-format-includes {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ed-format-includes li {
  font-size: 0.8rem;
  color: var(--ed-text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ed-format-includes i { color: var(--ed-accent); font-size: 0.7rem; }


.ed-schedule-note {
  display: flex;
  gap: 1rem;
  background: var(--ed-accent-light);
  border: var(--ed-border-width) solid var(--ed-accent);
  border-radius: var(--ed-radius-sm);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--ed-shadow-hard-accent);
}

.ed-schedule-note > i {
  color: var(--ed-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.ed-schedule-note h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ed-primary);
  margin-bottom: 0.35rem;
}

.ed-schedule-note p {
  font-size: 0.875rem;
  color: var(--ed-text-muted);
  line-height: 1.6;
}

.ed-schedule-note a { color: var(--ed-accent); font-weight: 500; }


.ed-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 3px solid var(--ed-accent);
  margin-left: 1rem;
  padding-left: 1.5rem;
}

.ed-timeline-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  position: relative;
}

.ed-timeline-item::before {
  content: '';
  position: absolute;
  left: -1.9rem;
  top: 1.35rem;
  width: 12px;
  height: 12px;
  background: var(--ed-accent);
  border: 2px solid var(--ed-warm-bg);
  border-radius: 50%;
}

.ed-timeline-time {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ed-accent);
  padding-top: 0.15rem;
  font-variant-numeric: tabular-nums;
}

.ed-timeline-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ed-primary);
  margin-bottom: 0.3rem;
}

.ed-timeline-content p {
  font-size: 0.85rem;
  color: var(--ed-text-muted);
  line-height: 1.6;
}


.ed-materials-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.ed-materials-intro img {
  border: var(--ed-border-width) solid var(--ed-border);
  box-shadow: var(--ed-shadow-hard-lg);
  border-radius: var(--ed-radius-sm);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.ed-materials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.ed-material-block {
  background: var(--ed-warm-bg);
  border: var(--ed-border-width) solid var(--ed-border);
  box-shadow: var(--ed-shadow-hard);
  border-radius: var(--ed-radius-sm);
  padding: 1.5rem;
}

.ed-material-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.ed-material-header i {
  color: var(--ed-accent);
  font-size: 1.1rem;
}

.ed-material-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ed-primary);
}

.ed-material-list {
  list-style: disc;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ed-material-list li {
  font-size: 0.85rem;
  color: var(--ed-text-muted);
  line-height: 1.55;
  list-style: disc;
}

.ed-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.ed-tool-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--ed-text-muted);
  padding: 0.6rem 0.75rem;
  background: var(--ed-warm-mid);
  border: 1.5px solid var(--ed-border);
  border-radius: var(--ed-radius-sm);
}

.ed-tool-item i { color: var(--ed-accent); font-size: 0.8rem; }

.ed-materials-image-row img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: var(--ed-border-width) solid var(--ed-border);
  box-shadow: var(--ed-shadow-hard-lg);
  border-radius: var(--ed-radius-sm);
}


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

.ed-subsection-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ed-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.ed-contact-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.ed-contact-gallery img:first-child {
  grid-column: span 2;
  height: 180px;
  object-fit: cover;
  border: var(--ed-border-width) solid var(--ed-border);
  box-shadow: var(--ed-shadow-hard);
  border-radius: var(--ed-radius-sm);
}

.ed-contact-gallery img:not(:first-child) {
  height: 130px;
  object-fit: cover;
  border: var(--ed-border-width) solid var(--ed-border);
  box-shadow: var(--ed-shadow-hard);
  border-radius: var(--ed-radius-sm);
}

.ed-contact-info-card {
  background: var(--ed-warm-mid);
  border: var(--ed-border-width) solid var(--ed-border);
  box-shadow: var(--ed-shadow-hard);
  border-radius: var(--ed-radius-sm);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.ed-contact-info-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.ed-contact-info-item i {
  color: var(--ed-accent);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.ed-contact-info-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ed-text-light);
  margin-bottom: 0.2rem;
}

.ed-contact-info-item p {
  font-size: 0.9rem;
  color: var(--ed-text-muted);
  line-height: 1.5;
}

.ed-contact-info-item a { color: var(--ed-accent); }
.ed-contact-info-item a:hover { text-decoration: underline; }


.ed-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ed-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ed-form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ed-primary);
}

.ed-required { color: var(--ed-accent); }

.ed-form-input,
.ed-form-select,
.ed-form-textarea {
  font-family: var(--ed-font);
  font-size: 0.9rem;
  color: var(--ed-text);
  background: var(--ed-warm-bg);
  border: var(--ed-border-width) solid var(--ed-border);
  border-radius: var(--ed-radius-sm);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 44px;
  width: 100%;
}

.ed-form-input:focus,
.ed-form-select:focus,
.ed-form-textarea:focus {
  border-color: var(--ed-accent);
  box-shadow: 0 0 0 3px rgba(212, 80, 10, 0.12);
}

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

.ed-form-checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

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

.ed-form-checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--ed-accent);
  cursor: pointer;
}


.ed-map-section { margin-top: 2rem; }

.ed-map-container {
  border: var(--ed-border-width) solid var(--ed-border);
  box-shadow: var(--ed-shadow-hard-lg);
  border-radius: var(--ed-radius-sm);
  overflow: hidden;
}


.ed-thanks-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
  background: var(--ed-warm-bg);
}

.ed-thanks-content {
  text-align: center;
  max-width: 480px;
}

.ed-envelope-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.ed-envelope {
  position: relative;
  width: 100px;
  height: 70px;
}

.ed-envelope-body {
  width: 100px;
  height: 70px;
  background: var(--ed-warm-mid);
  border: var(--ed-border-width) solid var(--ed-border);
  border-radius: var(--ed-radius-sm);
  position: absolute;
  bottom: 0;
  box-shadow: var(--ed-shadow-hard);
}

.ed-envelope-flap {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 38px solid var(--ed-primary);
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: top center;
  animation: ed-flap-open 1s ease 0.5s forwards;
}

@keyframes ed-flap-open {
  0% { transform: rotateX(0deg); }
  100% { transform: rotateX(-180deg); }
}

.ed-envelope-letter {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: 70px;
  height: 50px;
  background: #fff;
  border: 1.5px solid var(--ed-border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--ed-accent);
  animation: ed-letter-rise 0.8s ease 1.2s forwards;
  opacity: 0;
}

@keyframes ed-letter-rise {
  0% { opacity: 0; transform: translateX(-50%) translateY(0); }
  100% { opacity: 1; transform: translateX(-50%) translateY(-40px); }
}

.ed-thanks-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--ed-primary);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  animation: ed-fade-in-up 0.6s ease 2s both;
}

.ed-thanks-text {
  font-size: 1rem;
  color: var(--ed-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  animation: ed-fade-in-up 0.6s ease 2.2s both;
}

.ed-thanks-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: ed-fade-in-up 0.6s ease 2.4s both;
}

@keyframes ed-fade-in-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}


.ed-legal-section {
  padding: 3rem 0 5rem;
}

.ed-legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  align-items: start;
}

.ed-legal-sidebar {
  position: sticky;
  top: calc(var(--ed-nav-h) + 1.5rem);
}

.ed-legal-nav {
  background: var(--ed-warm-mid);
  border: var(--ed-border-width) solid var(--ed-border);
  box-shadow: var(--ed-shadow-hard);
  border-radius: var(--ed-radius-sm);
  padding: 1.25rem;
}

.ed-legal-nav-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ed-text-light);
  margin-bottom: 0.75rem;
}

.ed-legal-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.ed-legal-nav-list li { counter-increment: none; }

.ed-legal-nav-list a {
  display: block;
  font-size: 0.8rem;
  color: var(--ed-text-muted);
  padding: 0.35rem 0.5rem;
  border-radius: 3px;
  transition: background 0.15s ease, color 0.15s ease;
  line-height: 1.4;
}

.ed-legal-nav-list a:hover {
  background: var(--ed-warm-bg);
  color: var(--ed-accent);
}

.ed-legal-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ed-legal-block {
  padding: 2rem 0;
  border-bottom: 1.5px solid var(--ed-warm-mid);
}

.ed-legal-block:last-child { border-bottom: none; }

.ed-legal-block h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ed-primary);
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--ed-accent);
  display: inline-block;
}

.ed-legal-block p {
  font-size: 0.9rem;
  color: var(--ed-text-muted);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.ed-legal-block p:last-child { margin-bottom: 0; }

.ed-legal-block ul,
.ed-legal-block ol {
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.ed-legal-block ul li { list-style: disc; }
.ed-legal-block ol li { list-style: decimal; }

.ed-legal-block li {
  font-size: 0.875rem;
  color: var(--ed-text-muted);
  line-height: 1.65;
}

.ed-legal-block a { color: var(--ed-accent); }
.ed-legal-block a:hover { text-decoration: underline; }

.ed-legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  font-size:
0.875rem;
}

.ed-legal-table th,
.ed-legal-table td {
  padding: 0.6rem 0.85rem;
  text-align: left;
  border: 1.5px solid var(--ed-border);
}

.ed-legal-table th {
  background: var(--ed-warm-mid);
  font-weight: 700;
  color: var(--ed-primary);
  width: 35%;
}

.ed-legal-table td {
  background: var(--ed-warm-bg);
  color: var(--ed-text-muted);
}


.ed-cookie-table-wrapper {
  overflow-x: auto;
  margin-bottom: 1rem;
}

.ed-cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  min-width: 480px;
}

.ed-cookie-table th,
.ed-cookie-table td {
  padding: 0.55rem 0.75rem;
  border: 1.5px solid var(--ed-border);
  text-align: left;
  line-height: 1.4;
}

.ed-cookie-table th {
  background: var(--ed-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ed-cookie-table tr:nth-child(even) td {
  background: var(--ed-warm-mid);
}

.ed-cookie-table tr:nth-child(odd) td {
  background: var(--ed-warm-bg);
}

.ed-cookie-table td {
  color: var(--ed-text-muted);
}


.ed-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ed-primary);
  border-top: var(--ed-border-width) solid var(--ed-accent);
  box-shadow: 0 -4px 0 var(--ed-accent);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 280px;
}

.ed-cookie-banner.ed-cookie-visible {
  transform: translateY(0);
}

.ed-cookie-banner.ed-cookie-hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.ed-cookie-left {
  padding: 1.5rem 1.75rem;
  border-right: 1.5px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.ed-cookie-right {
  padding: 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.ed-cookie-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ed-cookie-title i { color: var(--ed-accent); }

.ed-cookie-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.ed-cookie-link {
  color: var(--ed-accent);
  text-decoration: underline;
}

.ed-cookie-toggles {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ed-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 0.75rem;
}

.ed-toggle-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.ed-toggle-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.ed-toggle-track {
  width: 38px;
  height: 20px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  position: relative;
  flex-shrink: 0;
  transition: background 0.25s ease;
  cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.3);
}

.ed-toggle-track::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s ease;
}

.ed-toggle-input:checked + .ed-toggle-track {
  background: var(--ed-accent);
  border-color: var(--ed-accent);
}

.ed-toggle-input:checked + .ed-toggle-track::after {
  transform: translateX(18px);
}

.ed-toggle-locked {
  opacity: 0.5;
  cursor: not-allowed;
}

.ed-cookie-btns {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ed-cookie-btn {
  font-family: var(--ed-font);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.5rem 0.85rem;
  border-radius: var(--ed-radius-sm);
  cursor: pointer;
  border: var(--ed-border-width) solid transparent;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.15s ease, transform 0.15s ease;
  min-height: 36px;
  text-align: center;
}

.ed-cookie-accept-all {
  background: var(--ed-accent);
  color: #fff;
  border-color: var(--ed-accent);
  box-shadow: 2px 2px 0 rgba(212,80,10,0.5);
}

.ed-cookie-accept-all:hover {
  background: var(--ed-accent-hover);
  box-shadow: 1px 1px 0 rgba(212,80,10,0.5);
  transform: translate(1px, 1px);
}

.ed-cookie-save {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.4);
}

.ed-cookie-save:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.ed-cookie-reject {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border-color: transparent;
  font-size: 0.72rem;
}

.ed-cookie-reject:hover {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
}


.ed-footer {
  background: var(--ed-primary-dark);
  border-top: var(--ed-border-width) solid var(--ed-border);
  margin-top: auto;
}

.ed-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
}

.ed-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.ed-footer-logo-img {
  width: 28px;
  height: 28px;
}

.ed-footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 240px;
}

.ed-footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.85rem;
}

.ed-footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ed-footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}

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

.ed-footer-contact p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.ed-footer-contact i {
  color: var(--ed-accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
  font-size: 0.85rem;
}

.ed-footer-contact a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}

.ed-footer-contact a:hover { color: var(--ed-accent); }

.ed-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.ed-footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}


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

  .ed-intro-grid,
  .ed-about-grid,
  .ed-materials-intro,
  .ed-contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ed-resources-grid,
  .ed-materials-grid {
    grid-template-columns: 1fr;
  }

  .ed-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .ed-gallery-tall { grid-row: span 1; }
  .ed-gallery-wide { grid-column: span 2; }

  .ed-gallery-item {
    height: 180px;
  }

  .ed-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .ed-footer-brand {
    grid-column: span 2;
  }

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

  .ed-legal-sidebar {
    position: static;
    display: none;
  }

  .ed-cookie-banner {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .ed-cookie-left {
    border-right: none;
    border-bottom: 1.5px solid rgba(255,255,255,0.15);
    padding: 1.25rem 1.25rem 1rem;
  }

  .ed-cookie-right {
    padding: 1rem 1.25rem 1.25rem;
  }

  .ed-cookie-btns {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .ed-principle-block {
    grid-template-columns: 60px 1fr;
    gap: 1.25rem;
  }

  .ed-principle-number { font-size: 1.75rem; }

  .ed-format-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .ed-section { padding: 3rem 0; }

  .ed-hero-actions { flex-direction: column; align-items: center; }

  .ed-cards-grid { grid-template-columns: 1fr; }

  .ed-gallery-grid {
    grid-template-columns: 1fr;
  }

  .ed-gallery-wide { grid-column: span 1; }
  .ed-gallery-item { height: 200px; }

  .ed-footer-inner {
    grid-template-columns: 1fr;
  }

  .ed-footer-brand { grid-column: span 1; }

  .ed-process-step {
    grid-template-columns: 52px 1fr;
    gap: 1rem;
  }

  .ed-step-number {
    width: 52px;
    height: 52px;
    font-size: 0.9rem;
  }

  .ed-process-connector { margin-left: 25px; }

  .ed-cta-box { padding: 2rem 1.25rem; }

  .ed-cta-actions { flex-direction: column; align-items: center; }

  .ed-contact-gallery { grid-template-columns: 1fr; }
  .ed-contact-gallery img:first-child { grid-column: span 1; }

  .ed-thanks-actions { flex-direction: column; align-items: center; }

  .ed-principle-block {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .ed-principle-number { font-size: 1.5rem; }

  .ed-timeline { margin-left: 0.5rem; }

  .ed-timeline-item {
    grid-template-columns: 55px 1fr;
    gap: 0.75rem;
  }

  .ed-resources-grid { grid-template-columns: 1fr; }

  .ed-materials-grid { grid-template-columns: 1fr; }

  .ed-cookie-btns { flex-direction: column; }

  .ed-fullwidth-img { height: 240px; }
}

@media (max-width: 400px) {
  .ed-hero-title { font-size: 1.9rem; }
  .ed-page-title { font-size: 1.75rem; }
  .ed-mobile-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
}