@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

@layer reset, tokens, layout, components, utilities;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
  body { line-height: 1.6; -webkit-font-smoothing: antialiased; }
  img { max-width: 100%; height: auto; display: block; }
  ul { list-style: none; }
  a { text-decoration: none; color: inherit; }
  button { cursor: pointer; border: none; background: none; font-family: inherit; }
  input, textarea, select { font-family: inherit; }
  address { font-style: normal; }
}

@layer tokens {
  :root {
    --cream: #faf6f0;
    --cream-dark: #f2ebe0;
    --warm-white: #fffdf9;
    --parchment: #e8ddd0;
    --ink: #2c2418;
    --ink-light: #4a3f32;
    --ink-muted: #7a6e62;
    --amber: #c4833a;
    --amber-light: #d9a05a;
    --amber-dark: #9e6425;
    --sage: #6b7c5a;
    --sage-light: #8a9e72;
    --polaroid-white: #fefcf8;
    --shadow-sm: 0 2px 8px rgba(44,36,24,0.08), 0 1px 3px rgba(44,36,24,0.05);
    --shadow-md: 0 4px 16px rgba(44,36,24,0.12), 0 2px 6px rgba(44,36,24,0.07);
    --shadow-lg: 0 8px 32px rgba(44,36,24,0.16), 0 4px 12px rgba(44,36,24,0.09);
    --shadow-polaroid: 0 6px 24px rgba(44,36,24,0.18), 0 2px 8px rgba(44,36,24,0.10), inset 0 0 0 1px rgba(44,36,24,0.04);
    --shadow-hover: 0 12px 40px rgba(44,36,24,0.22), 0 4px 16px rgba(44,36,24,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    --nav-h: 80px;
    --font-body: 'Inter', sans-serif;
    --transition-fast: 0.18s ease;
    --transition-mid: 0.3s ease;
    --transition-slow: 0.5s ease;
  }
}

@layer layout {
  body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.7;
    overflow-x: hidden;
  }

  .ep-container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 var(--space-md);
  }

  .ep-page-wrapper {
    transition: transform var(--transition-mid), opacity var(--transition-mid);
    transform-origin: right center;
  }

  .ep-page-wrapper.ep-menu-open {
    transform: translateX(-320px) scale(0.95);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
}

@layer components {

  
  .ep-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--warm-white);
    border-bottom: 1px solid var(--parchment);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-mid), opacity var(--transition-mid);
  }

  .ep-nav.ep-nav-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
  }

  .ep-nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
  }

  .ep-nav-logo { flex-shrink: 0; }
  .ep-logo-img { height: 44px; width: auto; }

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

  .ep-nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink-light);
    transition: color var(--transition-fast);
    position: relative;
    padding-bottom: 2px;
  }

  .ep-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: width var(--transition-mid);
  }

  .ep-nav-link:hover { color: var(--amber); }
  .ep-nav-link:hover::after { width: 100%; }
  .ep-nav-link.ep-active { color: var(--amber); }
  .ep-nav-link.ep-active::after { width: 100%; }

  .ep-nav-cta {
    background: var(--amber);
    color: var(--warm-white);
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    transition: background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
    white-space: nowrap;
  }

  .ep-nav-cta:hover {
    background: var(--amber-dark);
    box-shadow: 0 4px 12px rgba(196,131,58,0.35);
    transform: translateY(-1px);
  }

  .ep-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
  }

  .ep-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: transform var(--transition-mid), opacity var(--transition-mid);
    border-radius: 2px;
  }

  
  .ep-mini-nav {
    position: fixed;
    top: var(--space-sm);
    right: var(--space-sm);
    z-index: 950;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-mid);
  }

  .ep-mini-nav.ep-mini-visible {
    opacity: 1;
    pointer-events: all;
  }

  .ep-mini-pill {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--amber);
    color: var(--warm-white);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  }

  .ep-mini-pill:hover {
    background: var(--amber-dark);
    transform: scale(1.08);
    box-shadow: var(--shadow-lg);
  }

  
  .ep-mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: var(--warm-white);
    z-index: 1000;
    padding: var(--space-2xl) var(--space-lg) var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    box-shadow: -8px 0 32px rgba(44,36,24,0.15);
    transition: right var(--transition-mid);
    overflow-y: auto;
  }

  .ep-mobile-menu.ep-menu-active { right: 0; }

  .ep-mobile-close {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--ink-light);
    border-radius: var(--radius-md);
    transition: color var(--transition-fast), background var(--transition-fast);
  }

  .ep-mobile-close:hover { color: var(--amber); background: var(--cream-dark); }

  .ep-mobile-links { display: flex; flex-direction: column; gap: 0; }

  .ep-mobile-links li a {
    display: block;
    padding: 0.9rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--ink-light);
    border-bottom: 1px solid var(--parchment);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
  }

  .ep-mobile-links li a:hover { color: var(--amber); padding-left: 0.5rem; }

  .ep-mobile-cta {
    display: inline-block;
    background: var(--amber);
    color: var(--warm-white);
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-align: center;
    margin-top: var(--space-sm);
    transition: background var(--transition-fast);
  }

  .ep-mobile-cta:hover { background: var(--amber-dark); }

  
  .ep-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    text-align: center;
  }

  .ep-btn-primary {
    background: var(--amber);
    color: var(--warm-white);
    box-shadow: 0 4px 12px rgba(196,131,58,0.3);
  }

  .ep-btn-primary:hover {
    background: var(--amber-dark);
    box-shadow: 0 6px 20px rgba(196,131,58,0.45);
    transform: translateY(-2px);
  }

  .ep-btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 2px solid var(--parchment);
  }

  .ep-btn-ghost:hover {
    border-color: var(--amber);
    color: var(--amber);
    transform: translateY(-2px);
  }

  .ep-btn-outline-light {
    background: transparent;
    color: var(--warm-white);
    border: 2px solid rgba(255,255,255,0.5);
  }

  .ep-btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--warm-white);
    transform: translateY(-2px);
  }

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

  
  .ep-label-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: var(--space-xs);
  }

  
  .ep-section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: var(--space-md);
  }

  .ep-section-desc {
    font-size: 1.05rem;
    color: var(--ink-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .ep-section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
  }

  
  .ep-polaroid {
    background: var(--polaroid-white);
    padding: 14px 14px 40px;
    box-shadow: var(--shadow-polaroid);
    display: inline-block;
    position: relative;
    border-radius: 2px;
    transition: transform var(--transition-mid), box-shadow var(--transition-mid);
  }

  .ep-polaroid img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.15) saturate(1.1);
    transition: filter var(--transition-mid);
  }

  .ep-polaroid:hover img { filter: sepia(0.05) saturate(1.2); }

  .ep-polaroid-caption {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.7rem;
    color: var(--ink-muted);
    font-style: italic;
    font-family: var(--font-body);
    letter-spacing: 0.02em;
  }

  
  .ep-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--cream);
    overflow: hidden;
    padding-top: var(--nav-h);
  }

  .ep-hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 80% 40%, rgba(196,131,58,0.08) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 10% 80%, rgba(107,124,90,0.06) 0%, transparent 60%);
    pointer-events: none;
  }

  .ep-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1160px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    width: 100%;
  }

  .ep-hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: var(--space-sm);
  }

  .ep-hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--ink);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
  }

  .ep-hero-sub {
    font-size: 1.1rem;
    color: var(--ink-light);
    line-height: 1.75;
    margin-bottom: var(--space-lg);
    max-width: 500px;
  }

  .ep-hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
  }

  .ep-hero-polaroids {
    position: relative;
    height: 480px;
  }

  .ep-polaroid-1 {
    position: absolute;
    top: 0;
    left: 10%;
    width: 200px;
    height: 220px;
    transform: rotate(-3deg);
  }

  .ep-polaroid-1 img { width: 200px; height: 175px; object-fit: cover; }

  .ep-polaroid-1:hover { transform: rotate(-1deg) scale(1.03); box-shadow: var(--shadow-hover); z-index: 10; }

  .ep-polaroid-2 {
    position: absolute;
    top: 120px;
    right: 0;
    width: 220px;
    height: 240px;
    transform: rotate(2.5deg);
    z-index: 2;
  }

  .ep-polaroid-2 img { width: 220px; height: 195px; object-fit: cover; }
  .ep-polaroid-2:hover { transform: rotate(0.5deg) scale(1.03); box-shadow: var(--shadow-hover); z-index: 10; }

  .ep-polaroid-3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 190px;
    height: 210px;
    transform: rotate(1.5deg);
    z-index: 3;
  }

  .ep-polaroid-3 img { width: 190px; height: 165px; object-fit: cover; }
  .ep-polaroid-3:hover { transform: rotate(-0.5deg) scale(1.03); box-shadow: var(--shadow-hover); z-index: 10; }

  
  .ep-intro {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
  }

  .ep-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
  }

  .ep-intro-left .ep-section-title { margin-bottom: 0; }

  .ep-intro-right p {
    color: var(--ink-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
  }

  .ep-intro-right p:last-child { margin-bottom: 0; }

  
  .ep-courses {
    padding: var(--space-3xl) 0;
    background: var(--cream);
  }

  .ep-courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }

  .ep-course-card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-mid), box-shadow var(--transition-mid);
  }

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

  .ep-course-card:hover .ep-course-more { max-height: 200px; opacity: 1; padding-top: var(--space-sm); }

  .ep-course-polaroid {
    padding: 14px 14px 0;
    background: var(--polaroid-white);
  }

  .ep-course-polaroid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    filter: sepia(0.12) saturate(1.1);
    border-radius: var(--radius-sm);
  }

  .ep-course-body { padding: var(--space-md); }

  .ep-course-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber);
    background: rgba(196,131,58,0.1);
    padding: 2px 10px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-xs);
  }

  .ep-course-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: var(--space-xs);
  }

  .ep-course-body p {
    font-size: 0.9rem;
    color: var(--ink-light);
    line-height: 1.65;
  }

  .ep-course-more {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height var(--transition-slow), opacity var(--transition-mid), padding-top var(--transition-mid);
  }

  .ep-course-more p {
    font-size: 0.875rem;
    color: var(--ink-muted);
    margin-bottom: var(--space-sm);
  }

  .ep-link-arrow {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--amber);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition-fast), color var(--transition-fast);
  }

  .ep-link-arrow:hover { gap: 10px; color: var(--amber-dark); }

  
  .ep-atmosphere {
    padding: var(--space-3xl) 0;
    background: var(--cream-dark);
  }

  .ep-atm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
  }

  .ep-polaroid-large {
    width: 100%;
    max-width: 420px;
  }

  .ep-polaroid-large img {
    width: 100%;
    height: 340px;
    object-fit: cover;
  }

  .ep-atm-content .ep-section-title { margin-top: var(--space-sm); }

  .ep-atm-content p {
    color: var(--ink-light);
    line-height: 1.75;
    margin-bottom: var(--space-md);
  }

  .ep-atm-features { display: flex; flex-direction: column; gap: var(--space-md); margin-top: var(--space-lg); }

  .ep-atm-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .ep-atm-feature i {
    color: var(--amber);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
  }

  .ep-atm-feature strong {
    display: block;
    font-weight: 600;
    color: var(--ink);
    font-size: 0.95rem;
  }

  .ep-atm-feature span {
    display: block;
    font-size: 0.875rem;
    color: var(--ink-muted);
  }

  
  .ep-how {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
  }

  .ep-how-quad {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .ep-how-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border-left: 4px solid var(--amber);
    transition: transform var(--transition-mid), box-shadow var(--transition-mid);
  }

  .ep-how-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  .ep-how-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--amber);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: var(--space-xs);
  }

  .ep-how-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: var(--space-xs);
  }

  .ep-how-card p {
    font-size: 0.9rem;
    color: var(--ink-light);
    line-height: 1.7;
  }

  
  .ep-detail-cards {
    padding: var(--space-3xl) 0;
    background: var(--cream);
  }

  .ep-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .ep-detail-card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform var(--transition-mid), box-shadow var(--transition-mid);
    position: relative;
    overflow: hidden;
  }

  .ep-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amber), var(--amber-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-mid);
  }

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

  .ep-detail-card:hover::before { transform: scaleX(1); }
  .ep-detail-card:hover .ep-detail-expand { max-height: 200px; opacity: 1; margin-top: var(--space-sm); }

  .ep-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(196,131,58,0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    transition: background var(--transition-fast);
  }

  .ep-detail-card:hover .ep-detail-icon { background: rgba(196,131,58,0.2); }

  .ep-detail-icon i { color: var(--amber); font-size: 1.1rem; }

  .ep-detail-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: var(--space-xs);
  }

  .ep-detail-card > p {
    font-size: 0.9rem;
    color: var(--ink-light);
    line-height: 1.7;
  }

  .ep-detail-expand {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height var(--transition-slow), opacity var(--transition-mid), margin-top var(--transition-mid);
  }

  .ep-detail-expand p {
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.7;
    border-top: 1px solid var(--parchment);
    padding-top: var(--space-sm);
  }

  
  .ep-cta-band {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--amber-dark) 0%, var(--amber) 60%, var(--amber-light) 100%);
  }

  .ep-cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    flex-wrap: wrap;
  }

  .ep-cta-band-text h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--warm-white);
    margin-bottom: 0.4rem;
  }

  .ep-cta-band-text p {
    color: rgba(255,253,249,0.85);
    font-size: 1rem;
  }

  .ep-cta-band-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }

  
  .ep-page-hero {
    padding-top: calc(var(--nav-h) + var(--space-2xl));
    padding-bottom: var(--space-2xl);
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }

  .ep-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196,131,58,0.07) 0%, transparent 70%);
    pointer-events: none;
  }

  .ep-page-hero-content {
    max-width: 700px;
  }

  .ep-page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
  }

  .ep-page-hero-sub {
    font-size: 1.1rem;
    color: var(--ink-light);
    line-height: 1.75;
    max-width: 600px;
  }

  .ep-legal-date {
    font-size: 0.85rem;
    color: var(--ink-muted);
    margin-top: var(--space-xs);
  }

  
  .ep-why-intro {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
  }

  .ep-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
  }

  .ep-polaroid-lg {
    width: 100%;
    max-width: 380px;
  }

  .ep-polaroid-lg img {
    width: 100%;
    height: 320px;
    object-fit: cover;
  }

  .ep-why-text p {
    color: var(--ink-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
  }

  .ep-why-text p:last-child { margin-bottom: 0; }

  
  .ep-pillars {
    padding: var(--space-3xl) 0;
    background: var(--cream);
  }

  .ep-pillars-quad {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .ep-pillar-card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-mid), box-shadow var(--transition-mid);
  }

  .ep-pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
  }

  .ep-pillar-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(196,131,58,0.15), rgba(196,131,58,0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
  }

  .ep-pillar-icon i { color: var(--amber); font-size: 1.2rem; }

  .ep-pillar-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: var(--space-xs);
  }

  .ep-pillar-card p {
    font-size: 0.9rem;
    color: var(--ink-light);
    line-height: 1.7;
  }

  
  .ep-compare {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
  }

  .ep-compare-table {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }

  .ep-compare-row {
    display: grid;
    grid-template-columns: 1.5fr 2fr 2fr;
    gap: 0;
  }

  .ep-compare-header {
    background: var(--amber);
    color: var(--warm-white);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .ep-compare-row > div {
    padding: var(--space-md);
    border-right: 1px solid var(--parchment);
    font-size: 0.9rem;
    color: var(--ink-light);
    line-height: 1.6;
  }

  .ep-compare-header > div { color: var(--warm-white); border-color: rgba(255,255,255,0.2); }

  .ep-compare-row > div:last-child { border-right: none; }

  .ep-compare-row:not(.ep-compare-header) {
    border-bottom: 1px solid var(--parchment);
    background: var(--warm-white);
    transition: background var(--transition-fast);
  }

  .ep-compare-row:not(.ep-compare-header):hover { background: var(--cream); }
  .ep-compare-row:last-child { border-bottom: none; }

  .ep-compare-row small { color: var(--ink-muted); font-size: 0.8rem; }

  
  .ep-facilitators {
    padding: var(--space-3xl) 0;
    background: var(--cream);
  }

  .ep-fac-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 800px;
    margin: 0 auto;
  }

  .ep-fac-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  .ep-fac-polaroid {
    background: var(--polaroid-white);
    padding: 12px 12px 44px;
    box-shadow: var(--shadow-polaroid);
    border-radius: 2px;
    position: relative;
    transition: transform var(--transition-mid), box-shadow var(--transition-mid);
  }

  .ep-fac-card:nth-child(1) .ep-fac-polaroid { transform: rotate(-2deg); }
  .ep-fac-card:nth-child(2) .ep-fac-polaroid { transform: rotate(1.5deg); }

  .ep-fac-card:hover .ep-fac-polaroid {
    transform: rotate(0) scale(1.02);
    box-shadow: var(--shadow-hover);
  }

  .ep-fac-polaroid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: top;
    filter: sepia(0.12) saturate(1.1);
  }

  .ep-fac-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: var(--space-xs);
  }

  .ep-fac-info p {
    font-size: 0.9rem;
    color: var(--ink-light);
    line-height: 1.7;
  }

  
  .ep-space {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
  }

  .ep-space-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
  }

  .ep-space-polaroid-stack {
    position: relative;
    height: 400px;
  }

  .ep-polaroid-stack-a {
    position: absolute;
    top: 0;
    left: 5%;
    width: 280px;
    transform: rotate(-3deg);
    z-index: 1;
  }

  .ep-polaroid-stack-a img { width: 280px; height: 230px; object-fit: cover; }

  .ep-polaroid-stack-b {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 260px;
    transform: rotate(2deg);
    z-index: 2;
  }

  .ep-polaroid-stack-b img { width: 260px; height: 210px; object-fit: cover; }

  .ep-polaroid-stack-a:hover, .ep-polaroid-stack-b:hover {
    transform: rotate(0) scale(1.03);
    box-shadow: var(--shadow-hover);
    z-index: 10;
  }

  .ep-space-details { margin-top: var(--space-lg); display: flex; flex-direction: column; gap: var(--space-sm); }

  .ep-space-detail {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--ink-light);
  }

  .ep-space-detail i { color: var(--amber); width: 18px; }

  .ep-space-content p {
    color: var(--ink-light);
    line-height: 1.75;
    margin-bottom: var(--space-md);
  }

  
  .ep-formats {
    padding: var(--space-3xl) 0;
    background: var(--cream);
  }

  .ep-formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }

  .ep-format-card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-mid), box-shadow var(--transition-mid);
  }

  .ep-format-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
  }

  .ep-format-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
  }

  .ep-format-header i { color: var(--amber); font-size: 1.2rem; }

  .ep-format-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
  }

  .ep-format-card > p {
    font-size: 0.9rem;
    color: var(--ink-light);
    line-height: 1.7;
    margin-bottom: var(--space-md);
  }

  .ep-format-details { display: flex; flex-direction: column; gap: 0.5rem; }

  .ep-format-details li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--ink-light);
  }

  .ep-format-details li i { color: var(--sage); font-size: 0.75rem; margin-top: 4px; flex-shrink: 0; }

  
  .ep-schedule {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
  }

  .ep-schedule-list { display: flex; flex-direction: column; gap: var(--space-sm); margin-bottom: var(--space-xl); }

  .ep-schedule-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: var(--space-md);
    align-items: center;
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    border-left: 4px solid var(--amber);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  }

  .ep-schedule-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
  }

  .ep-schedule-date { text-align: center; }

  .ep-sch-month {
    display: block;
    font-weight: 700;
    color: var(--amber);
    font-size: 0.9rem;
  }

  .ep-sch-year {
    display: block;
    font-size: 0.8rem;
    color: var(--ink-muted);
  }

  .ep-schedule-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 2px;
  }

  .ep-schedule-info p {
    font-size: 0.85rem;
    color: var(--ink-muted);
  }

  .ep-schedule-tag {
    background: rgba(196,131,58,0.12);
    color: var(--amber);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    white-space: nowrap;
  }

  .ep-schedule-note {
    text-align: center;
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
  }

  .ep-schedule-note p {
    color: var(--ink-muted);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
  }

  
  .ep-steps {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
  }

  .ep-steps-flow { display: flex; flex-direction: column; gap: 0; }

  .ep-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: var(--space-md);
    align-items: start;
    padding: var(--space-lg) 0;
  }

  .ep-step-connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(to bottom, var(--amber), var(--parchment));
    margin-left: 29px;
  }

  .ep-step-num {
    width: 56px;
    height: 56px;
    background: var(--amber);
    color: var(--warm-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(196,131,58,0.35);
    flex-shrink: 0;
  }

  .ep-step-content { padding-top: 10px; }

  .ep-step-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: var(--space-xs);
  }

  .ep-step-content p {
    color: var(--ink-light);
    line-height: 1.75;
    font-size: 0.95rem;
  }

  .ep-step-content a { color: var(--amber); font-weight: 500; }
  .ep-step-content a:hover { text-decoration: underline; }

  
  .ep-faq {
    padding: var(--space-3xl) 0;
    background: var(--cream);
  }

  .ep-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .ep-faq-item {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-mid), box-shadow var(--transition-mid);
  }

  .ep-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }

  .ep-faq-q {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
  }

  .ep-faq-q i { color: var(--amber); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }

  .ep-faq-q h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
  }

  .ep-faq-item p {
    font-size: 0.875rem;
    color: var(--ink-light);
    line-height: 1.7;
  }

  
  .ep-prepare {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
  }

  .ep-prepare-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-2xl);
    align-items: center;
  }

  .ep-polaroid-md {
    width: 260px;
    flex-shrink: 0;
    transform: rotate(-2deg);
  }

  .ep-polaroid-md img { width: 260px; height: 220px; object-fit: cover; }
  .ep-polaroid-md:hover { transform: rotate(0) scale(1.03); }

  .ep-prepare-text p {
    color: var(--ink-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
  }

  .ep-prepare-text p:last-child { margin-bottom: 0; }

  
  .ep-contact-methods {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
  }

  .ep-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }

  .ep-method-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: transform var(--transition-mid), box-shadow var(--transition-mid);
  }

  .ep-method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }

  .ep-method-icon {
    width: 52px;
    height: 52px;
    background: rgba(196,131,58,0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
  }

  .ep-method-icon i { color: var(--amber); font-size: 1.2rem; }

  .ep-method-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: var(--space-xs);
  }

  .ep-method-best {
    font-size: 0.82rem;
    font-style: italic;
    color: var(--amber);
    margin-bottom: var(--space-xs);
  }

  .ep-method-card p {
    font-size: 0.875rem;
    color: var(--ink-light);
    line-height: 1.65;
    margin-bottom: var(--space-xs);
  }

  .ep-method-link {
    font-weight: 600;
    color: var(--amber);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
  }

  .ep-method-link:hover { color: var(--amber-dark); text-decoration: underline; }

  .ep-contact-main {
    padding: var(--space-3xl) 0;
    background: var(--cream);
  }

  .ep-contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
  }

  .ep-contact-form-wrap .ep-section-title { margin-bottom: var(--space-xs); }
  .ep-contact-form-wrap > p { color: var(--ink-muted); margin-bottom: var(--space-lg); }

  .ep-contact-form { display: flex; flex-direction: column; gap: var(--space-md); }

  .ep-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .ep-form-group { display: flex; flex-direction: column; gap: 6px; }

  .ep-form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
  }

  .ep-form-group input,
  .ep-form-group select,
  .ep-form-group textarea {
    padding: 0.7rem var(--space-sm);
    border: 2px solid var(--parchment);
    border-radius: var(--radius-md);
    background: var(--warm-white);
    color: var(--ink);
    font-size: 0.9rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    width: 100%;
  }

  .ep-form-group input:focus,
  .ep-form-group select:focus,
  .ep-form-group textarea:focus {
    outline: none;
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(196,131,58,0.15);
  }

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

  .ep-form-check {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .ep-form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--amber);
    cursor: pointer;
  }

  .ep-form-check label {
    font-size: 0.82rem;
    color: var(--ink-muted);
    line-height: 1.5;
    cursor: pointer;
  }

  .ep-form-check label a { color: var(--amber); font-weight: 500; }
  .ep-form-check label a:hover { text-decoration: underline; }

  .ep-contact-info-wrap .ep-section-title { margin-bottom: var(--space-lg); }

  .ep-contact-details { display: flex; flex-direction: column; gap: var(--space-md); margin-bottom: var(--space-lg); }

  .ep-contact-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .ep-contact-detail i { color: var(--amber); margin-top: 3px; width: 18px; flex-shrink: 0; }

  .ep-contact-detail strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
  }

  .ep-contact-detail span,
  .ep-contact-detail a {
    font-size: 0.9rem;
    color: var(--ink-light);
    transition: color var(--transition-fast);
  }

  .ep-contact-detail a:hover { color: var(--amber); }

  .ep-map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--polaroid-white);
  }

  
  .ep-thanks-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: var(--space-3xl) 0;
    padding-top: calc(var(--nav-h) + var(--space-2xl));
    background: var(--cream);
  }

  .ep-thanks-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-xl);
  }

  .ep-envelope-wrap { perspective: 600px; }

  .ep-envelope {
    width: 120px;
    height: 90px;
    position: relative;
    margin: 0 auto;
    animation: ep-envelope-appear 0.6s ease both;
  }

  @keyframes ep-envelope-appear {
    from { opacity: 0; transform: scale(0.5) translateY(30px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
  }

  .ep-envelope-body {
    width: 120px;
    height: 90px;
    background: var(--polaroid-white);
    border: 2px solid var(--parchment);
    border-radius: var(--radius-sm);
    position: relative;
    overflow: visible;
    box-shadow: var(--shadow-md);
  }

  .ep-envelope-flap {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 50px;
    background: var(--cream-dark);
    border: 2px solid var(--parchment);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    transform-origin: top center;
    animation: ep-flap-open 0.8s ease 0.6s both;
  }

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

  .ep-envelope-letter {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 70px;
    background: var(--warm-white);
    border: 1px solid var(--parchment);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ep-letter-rise 0.7s ease 1.2s both;
    box-shadow: 0 2px 6px rgba(44,36,24,0.1);
  }

  @keyframes ep-letter-rise {
    from { transform: translateX(-50%) translateY(0); opacity: 0; }
    to { transform: translateX(-50%) translateY(-50px); opacity: 1; }
  }

  .ep-letter-text {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--amber);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .ep-thanks-text {
    animation: ep-text-appear 0.6s ease 1.8s both;
  }

  @keyframes ep-text-appear {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .ep-thanks-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: var(--space-md);
  }

  .ep-thanks-sub {
    font-size: 1.05rem;
    color: var(--ink-light);
    line-height: 1.75;
    max-width: 500px;
    margin: 0 auto var(--space-lg);
  }

  .ep-thanks-actions { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; }

  
  .ep-legal-content {
    padding: var(--space-2xl) 0 var(--space-3xl);
    background: var(--warm-white);
  }

  .ep-legal-layout { max-width: 800px; }

  .ep-legal-article { color: var(--ink-light); line-height: 1.8; }

  .ep-legal-intro {
    font-size: 1.05rem;
    color: var(--ink-light);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: var(--cream);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--amber);
  }

  .ep-legal-article h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--parchment);
  }

  .ep-legal-article h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
  }

  .ep-legal-article p {
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
    color: var(--ink-light);
  }

  .ep-term {
    color: var(--amber-dark);
    font-weight: 700;
  }

  .ep-definition-box {
    background: var(--cream);
    border: 1px solid var(--parchment);
    border-left: 4px solid var(--amber-light);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-md) 0 var(--space-lg);
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.7;
  }

  .ep-definition-box strong { color: var(--ink); display: block; margin-bottom: 4px; }
  .ep-def-inline { margin-top: var(--space-sm); }

  .ep-legal-list {
    list-style: disc;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
  }

  .ep-legal-list li {
    font-size: 0.9rem;
    color: var(--ink-light);
    margin-bottom: 0.5rem;
    line-height: 1.65;
  }

  .ep-legal-list li strong { color: var(--ink); }

  .ep-legal-contact { list-style: none; padding-left: 0; }
  .ep-legal-contact li { font-size: 0.95rem; }

  .ep-legal-article a { color: var(--amber); font-weight: 500; }
  .ep-legal-article a:hover { text-decoration: underline; }

  
  .ep-terms-clause { margin-bottom: var(--space-xl); }

  .ep-clause-item {
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--parchment);
  }

  .ep-clause-item:last-child { border-bottom: none; }

  .ep-clause-num {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--amber);
    background: rgba(196,131,58,0.1);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-xs);
  }

  .ep-clause-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
  }

  
  .ep-cookie-category {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    border: 1px solid var(--parchment);
  }

  .ep-cookie-cat-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
  }

  .ep-cookie-cat-header h3 { margin: 0; font-size: 1.05rem; }

  .ep-cookie-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .ep-badge-required { background: rgba(107,124,90,0.15); color: var(--sage); }
  .ep-badge-analytics { background: rgba(196,131,58,0.15); color: var(--amber-dark); }
  .ep-badge-marketing { background: rgba(44,36,24,0.1); color: var(--ink-light); }

  .ep-cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    margin-top: var(--space-md);
  }

  .ep-cookie-table th {
    text-align: left;
    padding: 0.6rem 0.8rem;
    background: var(--parchment);
    color: var(--ink);
    font-weight: 700;
    font-size: 0.8rem;
  }

  .ep-cookie-table td {
    padding: 0.6rem 0.8rem;
    color: var(--ink-light);
    border-bottom: 1px solid var(--parchment);
  }

  .ep-cookie-table tr:last-child td { border-bottom: none; }

  
  .ep-footer {
    background: var(--ink);
    color: var(--parchment);
    padding: var(--space-2xl) 0 0;
  }

  .ep-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .ep-footer-logo { height: 40px; width: auto; margin-bottom: var(--space-sm); filter: brightness(0) invert(1) opacity(0.8); }

  .ep-footer-brand p {
    font-size: 0.875rem;
    color: rgba(232,221,208,0.7);
    line-height: 1.65;
    margin-bottom: var(--space-md);
  }

  .ep-footer-brand address {
    font-size: 0.875rem;
    color: rgba(232,221,208,0.7);
    line-height: 1.8;
  }

  .ep-footer-brand address a {
    color: rgba(232,221,208,0.85);
    transition: color var(--transition-fast);
  }

  .ep-footer-brand address a:hover { color: var(--amber-light); }

  .ep-footer-nav h4, .ep-footer-legal h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: var(--space-md);
  }

  .ep-footer-nav ul, .ep-footer-legal ul { display: flex; flex-direction: column; gap: 0.6rem; }

  .ep-footer-nav a, .ep-footer-legal a {
    font-size: 0.875rem;
    color: rgba(232,221,208,0.7);
    transition: color var(--transition-fast);
  }

  .ep-footer-nav a:hover, .ep-footer-legal a:hover { color: var(--amber-light); }

  .ep-footer-bottom {
    padding: var(--space-md) 0;
    text-align: center;
  }

  .ep-footer-bottom p {
    font-size: 0.8rem;
    color: rgba(232,221,208,0.4);
  }

  
  .ep-cookie-consent {
    position: fixed;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 380px;
    max-width: calc(100vw - 2rem);
  }

  .ep-cookie-card {
    background: var(--warm-white);
    border-radius: var(--radius-xl);
    padding: var(--space-md) var(--space-lg);
    box-shadow: 0 8px 40px rgba(44,36,24,0.2), 0 2px 12px rgba(44,36,24,0.1);
    border: 1px solid var(--parchment);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .ep-cookie-card-compact .ep-cookie-msg {
    font-size: 0.875rem;
    color: var(--ink-light);
    margin-bottom: var(--space-sm);
    line-height: 1.55;
  }

  .ep-cookie-card-compact .ep-cookie-msg a { color: var(--amber); font-weight: 500; }
  .ep-cookie-card-compact .ep-cookie-msg a:hover { text-decoration: underline; }

  .ep-cookie-btns {
    display: flex;
    gap: 0.5rem;
  }

  .ep-cookie-accept {
    flex: 1;
    background: var(--amber);
    color: var(--warm-white);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    transition: background var(--transition-fast), transform var(--transition-fast);
    min-height: 44px;
  }

  .ep-cookie-accept:hover { background: var(--amber-dark); transform: translateY(-1px); }

  .ep-cookie-settings-btn {
    flex: 1;
    background: var(--cream);
    color: var(--ink-light);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--parchment);
    transition: background var(--transition-fast), color var(--transition-fast);
    min-height: 44px;
  }

  .ep-cookie-settings-btn:hover { background: var(--parchment); color: var(--ink); }

  .ep-cookie-panel { display: none; }

  .ep-cookie-panel.ep-panel-open { display: block; }

  .ep-cookie-panel-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: var(--space-sm);
  }

  .ep-cookie-cat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--parchment);
  }

  .ep-cookie-cat-row:last-of-type { border-bottom: none; }

  .ep-cookie-cat-label { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
  .ep-cookie-cat-desc { font-size: 0.75rem; color: var(--ink-muted); }

  .ep-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
  }

  .ep-toggle input { opacity: 0; width: 0; height: 0; }

  .ep-toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--parchment);
    border-radius: var(--radius-full);
    transition: background var(--transition-fast);
    cursor: pointer;
  }

  .ep-toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3px;
    background: white;
    border-radius: 50%;
    transition: transform var(--transition-fast);
    box-shadow: 0 1px 4px rgba(44,36,24,0.2);
  }

  .ep-toggle input:checked + .ep-toggle-slider { background: var(--amber); }
  .ep-toggle input:checked + .ep-toggle-slider::before { transform: translateX(20px); }
  .ep-toggle input:disabled + .ep-toggle-slider { opacity: 0.6; cursor: not-allowed; }

  .ep-cookie-save-btn {
    display: block;
    width: 100%;
    background: var(--amber);
    color: var(--warm-white);
    padding: 0.65rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: var(--space-sm);
    transition: background var(--transition-fast);
    min-height: 44px;
  }

  .ep-cookie-save-btn:hover { background: var(--amber-dark); }

  .ep-cookie-consent.ep-hidden { display: none; }
}

@layer utilities {
  
  @media (max-width: 1024px) {
    .ep-hero-content { grid-template-columns: 1fr; gap: var(--space-xl); }
    .ep-hero-polaroids { height: 320px; }
    .ep-polaroid-1 { left: 5%; }
    .ep-polaroid-2 { right: 5%; }
    .ep-courses-grid { grid-template-columns: 1fr 1fr; }
    .ep-atm-grid { gap: var(--space-lg); }
    .ep-intro-grid { gap: var(--space-lg); }
    .ep-formats-grid { grid-template-columns: 1fr 1fr; }
    .ep-methods-grid { grid-template-columns: 1fr; gap: var(--space-md); }
    .ep-contact-layout { grid-template-columns: 1fr; gap: var(--space-xl); }
    .ep-footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
    .ep-footer-brand { grid-column: 1 / -1; }
  }

  @media (max-width: 768px) {
    :root { --nav-h: 64px; }

    .ep-nav-links, .ep-nav-cta { display: none; }
    .ep-hamburger { display: flex; }

    .ep-hero-content { grid-template-columns: 1fr; padding: var(--space-xl) var(--space-md); }
    .ep-hero-polaroids { display: none; }
    .ep-hero-title { font-size: clamp(2.2rem, 8vw, 3.2rem); }

    .ep-intro-grid { grid-template-columns: 1fr; gap: var(--space-lg); }

    .ep-courses-grid { grid-template-columns: 1fr; }

    .ep-atm-grid { grid-template-columns: 1fr; }
    .ep-atm-visual { display: flex; justify-content: center; }
    .ep-polaroid-large { max-width: 300px; }
    .ep-polaroid-large img { height: 240px; }

    .ep-how-quad { grid-template-columns: 1fr; }

    .ep-detail-grid { grid-template-columns: 1fr; }

    .ep-cta-band-inner { flex-direction: column; text-align: center; }

    .ep-why-grid { grid-template-columns: 1fr; }
    .ep-polaroid-lg { max-width: 280px; }
    .ep-polaroid-lg img { height: 220px; }

    .ep-pillars-quad { grid-template-columns: 1fr; }

    .ep-compare-row { grid-template-columns: 1fr; }
    .ep-compare-row > div { border-right: none; border-bottom: 1px solid var(--parchment); }
    .ep-compare-row > div:last-child { border-bottom: none; }
    .ep-compare-header { display: none; }

    .ep-fac-grid { grid-template-columns: 1fr; max-width: 340px; }

    .ep-space-grid { grid-template-columns: 1fr; }
    .ep-space-polaroid-stack { height: 280px; }
    .ep-polaroid-stack-a { width: 200px; }
    .ep-polaroid-stack-a img { width: 200px; height: 165px; }
    .ep-polaroid-stack-b { width: 185px; }
    .ep-polaroid-stack-b img { width: 185px; height: 150px; }

    .ep-formats-grid { grid-template-columns: 1fr; }

    .ep-schedule-item { grid-template-columns: 80px 1fr; }
    .ep-schedule-tag { display: none; }

    .ep-faq-grid { grid-template-columns: 1fr; }

    .ep-prepare-inner { grid-template-columns: 1fr; }
    .ep-polaroid-md { width: 200px; margin: 0 auto; }
    .ep-polaroid-md img { width: 200px; height: 170px; }

    .ep-form-row { grid-template-columns: 1fr; }

    .ep-methods-grid { grid-template-columns: 1fr; }

    .ep-footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }

    .ep-steps-flow { gap: 0; }

    .ep-cookie-consent { width: calc(100vw - 2rem); }
  }

  @media (max-width: 480px) {
    .ep-hero-actions { flex-direction: column; }
    .ep-btn { width: 100%; text-align: center; }
    .ep-cta-band-actions { flex-direction: column; width: 100%; }
    .ep-thanks-actions { flex-direction: column; align-items: center; }
    .ep-hero-actions .ep-btn { width: auto; }
    .ep-step { grid-template-columns: 48px 1fr; }
    .ep-step-num { width: 44px; height: 44px; font-size: 1.1rem; }
    .ep-step-connector { margin-left: 21px; }
  }
}