@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&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%; }
  body { min-height: 100vh; line-height: 1.6; }
  img, video { max-width: 100%; height: auto; display: block; }
  button, input, select, textarea { font: inherit; }
  a { color: inherit; text-decoration: none; }
  ul, ol { list-style: none; }
  h1,h2,h3,h4,h5,h6 { text-wrap: balance; }
  p { text-wrap: pretty; }
}

@layer tokens {
  :root {
    --ink-900: #1a1714;
    --ink-800: #2c2825;
    --ink-700: #3e3a36;
    --ink-600: #5a554f;
    --ink-500: #7a7570;
    --ink-400: #a09b95;
    --ink-300: #c5c0ba;
    --ink-200: #dedad5;
    --ink-100: #eeebe6;
    --paper-50: #faf8f4;
    --paper-100: #f5f2ec;
    --paper-200: #ede9e1;
    --accent-warm: #8b6f47;
    --accent-warm-light: #b89a6e;
    --accent-warm-dark: #6b5235;
    --accent-rust: #a0522d;
    --white: #ffffff;

    --shadow-xs: 0 1px 2px rgba(26,23,20,0.06), 0 1px 1px rgba(26,23,20,0.04);
    --shadow-sm: 0 2px 4px rgba(26,23,20,0.07), 0 1px 2px rgba(26,23,20,0.05);
    --shadow-md: 0 4px 12px rgba(26,23,20,0.09), 0 2px 4px rgba(26,23,20,0.06), 0 1px 2px rgba(26,23,20,0.04);
    --shadow-lg: 0 8px 24px rgba(26,23,20,0.10), 0 4px 8px rgba(26,23,20,0.07), 0 2px 4px rgba(26,23,20,0.05);
    --shadow-xl: 0 16px 40px rgba(26,23,20,0.12), 0 8px 16px rgba(26,23,20,0.08), 0 2px 4px rgba(26,23,20,0.04);
    --shadow-accent: 0 4px 16px rgba(139,111,71,0.20), 0 2px 6px rgba(139,111,71,0.12);

    --radius-xs: 2px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    --font-sans: 'Instrument Sans', system-ui, -apple-system, sans-serif;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;

    --nav-height: 72px;
    --container-max: 1200px;
    --container-narrow: 760px;
    --container-wide: 1400px;

    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
}

@layer layout {
  body {
    font-family: var(--font-sans);
    background-color: var(--paper-50);
    color: var(--ink-800);
    font-size: var(--text-base);
    line-height: 1.7;
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
  }

  .container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--space-6);
  }

  .container--narrow {
    max-width: var(--container-narrow);
  }

  .container--wide {
    max-width: var(--container-wide);
  }

  main { position: relative; z-index: 1; }

  .section {
    padding-block: var(--space-24);
  }

  .section--large {
    padding-block: var(--space-32);
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .section--full {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@layer components {

  /* ===== NAVIGATION ===== */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-height);
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ink-200);
    transition: box-shadow var(--transition-base), background var(--transition-base);
  }

  .site-header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(250, 248, 244, 0.97);
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    gap: var(--space-6);
  }

  .nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
  }

  .nav-logo img,
  .nav-logo svg {
    height: 36px;
    width: auto;
  }

  .nav-logo-text {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--ink-900);
    letter-spacing: -0.02em;
  }

  .nav-logo-text span {
    color: var(--accent-warm);
  }

  .nav-links {
    display: none;
    align-items: center;
    gap: var(--space-1);
  }

  .nav-links a {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--ink-600);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
    letter-spacing: 0.01em;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--ink-900);
    background: var(--paper-200);
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-shrink: 0;
  }

  .lang-switcher {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    background: var(--paper-200);
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-full);
    padding: var(--space-1) var(--space-2);
  }

  .lang-btn {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--ink-500);
    padding: 3px var(--space-2);
    border-radius: var(--radius-full);
    letter-spacing: 0.08em;
    transition: all var(--transition-fast);
    text-transform: uppercase;
  }

  .lang-btn:hover {
    color: var(--ink-800);
  }

  .lang-btn.active {
    background: var(--ink-800);
    color: var(--paper-50);
  }

  .lang-divider {
    color: var(--ink-300);
    font-size: var(--text-xs);
  }

  .nav-cta {
    display: none;
    padding: var(--space-2) var(--space-5);
    background: var(--ink-900);
    color: var(--paper-50);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
  }

  .nav-cta:hover {
    background: var(--ink-700);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
  }

  .hamburger:hover { background: var(--paper-200); }

  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink-800);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
  }

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

  .mobile-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--paper-50);
    z-index: 99;
    padding: var(--space-8) var(--space-6);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    overflow-y: auto;
    border-top: 1px solid var(--ink-200);
  }

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

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    margin-bottom: var(--space-8);
  }

  .mobile-menu nav a {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--ink-700);
    padding: var(--space-4) var(--space-3);
    border-bottom: 1px solid var(--ink-100);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
  }

  .mobile-menu nav a:hover {
    color: var(--ink-900);
    padding-left: var(--space-5);
  }

  .mobile-menu-cta {
    display: block;
    text-align: center;
    padding: var(--space-4) var(--space-6);
    background: var(--ink-900);
    color: var(--paper-50);
    border-radius: var(--radius-full);
    font-size: var(--text-base);
    font-weight: 600;
    margin-top: var(--space-6);
    transition: background var(--transition-base);
  }

  .mobile-menu-cta:hover { background: var(--ink-700); }

  /* ===== HERO SECTION ===== */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--paper-100);
    padding-top: var(--nav-height);
  }

  .hero-icon-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, 80px);
    grid-template-rows: repeat(auto-fill, 80px);
    gap: 0;
    opacity: 0.04;
    pointer-events: none;
    overflow: hidden;
  }

  .hero-icon-grid i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--ink-800);
    width: 80px;
    height: 80px;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-block: var(--space-20);
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--paper-200);
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--accent-warm-dark);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-6);
  }

  .hero-badge i {
    font-size: 0.7rem;
    color: var(--accent-warm);
  }

  .hero-title {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--ink-900);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-6);
  }

  .hero-title em {
    font-style: normal;
    color: var(--accent-warm);
    position: relative;
  }

  .hero-title em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-warm);
    opacity: 0.3;
    border-radius: 2px;
  }

  .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--ink-600);
    line-height: 1.7;
    margin-bottom: var(--space-8);
    max-width: 560px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    align-items: center;
  }

  .hero-image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
  }

  .hero-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139,111,71,0.08) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
  }

  .hero-image-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
  }

  /* ===== BUTTONS ===== */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
    min-height: 44px;
  }

  .btn-primary {
    background: var(--ink-900);
    color: var(--paper-50);
    border-color: var(--ink-900);
    box-shadow: var(--shadow-sm);
  }

  .btn-primary:hover {
    background: var(--ink-700);
    border-color: var(--ink-700);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }

  .btn-secondary {
    background: transparent;
    color: var(--ink-800);
    border-color: var(--ink-300);
  }

  .btn-secondary:hover {
    border-color: var(--ink-600);
    background: var(--paper-200);
    transform: translateY(-1px);
  }

  .btn-accent {
    background: var(--accent-warm);
    color: var(--white);
    border-color: var(--accent-warm);
    box-shadow: var(--shadow-accent);
  }

  .btn-accent:hover {
    background: var(--accent-warm-dark);
    border-color: var(--accent-warm-dark);
    box-shadow: 0 6px 20px rgba(139,111,71,0.30);
    transform: translateY(-2px);
  }

  .btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
    min-height: 52px;
  }

  .btn i { font-size: 0.9em; }

  /* ===== SECTION HEADERS ===== */
  .section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--accent-warm);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
  }

  .section-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--accent-warm);
    border-radius: 1px;
  }

  .section-title {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--ink-900);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: var(--space-4);
  }

  .section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: var(--ink-600);
    line-height: 1.7;
    max-width: 600px;
  }

  .section-header {
    margin-bottom: var(--space-12);
  }

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

  .section-header--center .section-label {
    justify-content: center;
  }

  .section-header--center .section-subtitle {
    margin-inline: auto;
  }

  /* ===== BENEFITS SECTION ===== */
  .benefits-section {
    background: var(--paper-50);
    padding-block: var(--space-32);
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    margin-top: var(--space-12);
  }

  .benefit-card {
    display: flex;
    gap: var(--space-5);
    padding: var(--space-6);
    background: var(--white);
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    transition: all var(--transition-base);
    align-items: flex-start;
    flex-direction: column;
  }

  .benefit-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--ink-200);
    transform: translateY(-3px);
  }

  .benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--paper-100);
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-warm);
    transition: all var(--transition-base);
  }

  .benefit-card:hover .benefit-icon {
    background: var(--accent-warm);
    color: var(--white);
    border-color: var(--accent-warm);
    box-shadow: var(--shadow-accent);
  }

  .benefit-body h3 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--ink-900);
    margin-bottom: var(--space-2);
    line-height: 1.3;
  }

  .benefit-body p {
    font-size: var(--text-sm);
    color: var(--ink-600);
    line-height: 1.6;
  }

  /* ===== GRADIENT SECTION ===== */
  .gradient-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
      135deg,
      var(--ink-900) 0%,
      #2e2520 30%,
      #4a3728 60%,
      var(--accent-warm-dark) 100%
    );
    padding-block: var(--space-32);
    color: var(--paper-50);
  }

  .gradient-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184,154,110,0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  .gradient-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139,111,71,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .gradient-section .section-label {
    color: var(--accent-warm-light);
  }

  .gradient-section .section-label::before {
    background: var(--accent-warm-light);
  }

  .gradient-section .section-title {
    color: var(--paper-50);
  }

  .gradient-section .section-subtitle {
    color: rgba(250,248,244,0.75);
  }

  .gradient-inner {
    position: relative;
    z-index: 2;
  }

  .gradient-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    margin-top: var(--space-12);
  }

  .gradient-card {
    background: rgba(250,248,244,0.07);
    border: 1px solid rgba(250,248,244,0.12);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    backdrop-filter: blur(8px);
    transition: all var(--transition-base);
  }

  .gradient-card:hover {
    background: rgba(250,248,244,0.11);
    border-color: rgba(250,248,244,0.20);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  }

  .gradient-card-icon {
    font-size: 1.5rem;
    color: var(--accent-warm-light);
    margin-bottom: var(--space-4);
  }

  .gradient-card h3 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--paper-50);
    margin-bottom: var(--space-2);
  }

  .gradient-card p {
    font-size: var(--text-sm);
    color: rgba(250,248,244,0.72);
    line-height: 1.6;
  }

  /* ===== FAQ SECTION ===== */
  .faq-section {
    background: var(--paper-100);
    padding-block: var(--space-32);
  }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin-top: var(--space-12);
  }

  .faq-card {
    background: var(--white);
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: box-shadow var(--transition-base), border-color var(--transition-base);
  }

  .faq-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--ink-200);
  }

  .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-6);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--ink-800);
    line-height: 1.4;
    transition: color var(--transition-fast);
    min-height: 64px;
  }

  .faq-question:hover { color: var(--ink-900); }

  .faq-question.open { color: var(--accent-warm-dark); }

  .faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--paper-100);
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: var(--ink-600);
    transition: all var(--transition-base);
  }

  .faq-question.open .faq-icon {
    background: var(--accent-warm);
    border-color: var(--accent-warm);
    color: var(--white);
    transform: rotate(180deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .faq-answer.open {
    max-height: 400px;
  }

  .faq-answer-inner {
    padding: 0 var(--space-6) var(--space-5);
    font-size: var(--text-sm);
    color: var(--ink-600);
    line-height: 1.7;
    border-top: 1px solid var(--ink-100);
    padding-top: var(--space-4);
  }

  /* ===== PROCESS / HOW WE START ===== */
  .process-section {
    background: var(--paper-50);
    padding-block: var(--space-32);
  }

  .process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin-top: var(--space-12);
    position: relative;
  }

  .process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-6);
    align-items: flex-start;
  }

  .step-number {
    width: 56px;
    height: 56px;
    background: var(--ink-900);
    color: var(--paper-50);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    letter-spacing: -0.02em;
  }

  .step-content h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: var(--space-2);
    line-height: 1.3;
  }

  .step-content p {
    font-size: var(--text-base);
    color: var(--ink-600);
    line-height: 1.7;
  }

  .step-content .step-detail {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-3);
  }

  .step-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    background: var(--paper-200);
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-full);
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--ink-700);
  }

  .step-tag i { font-size: 0.65rem; color: var(--accent-warm); }

  /* ===== SERVICES PAGE ===== */
  .services-hero {
    background: var(--paper-100);
    padding-block: var(--space-20);
    padding-top: calc(var(--nav-height) + var(--space-20));
    min-height: 60vh;
    display: flex;
    align-items: center;
  }

  .service-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    margin-top: var(--space-12);
  }

  .service-card {
    background: var(--white);
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
  }

  .service-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    border-color: var(--ink-200);
  }

  .service-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }

  .service-card-body {
    padding: var(--space-6);
  }

  .service-card-icon {
    width: 44px;
    height: 44px;
    background: var(--paper-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent-warm);
    margin-bottom: var(--space-4);
    border: 1px solid var(--ink-100);
  }

  .service-card-body h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: var(--space-3);
    line-height: 1.3;
  }

  .service-card-body p {
    font-size: var(--text-sm);
    color: var(--ink-600);
    line-height: 1.7;
    margin-bottom: var(--space-4);
  }

  .service-includes {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    padding-top: var(--space-4);
    border-top: 1px solid var(--ink-100);
  }

  .service-includes li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--ink-700);
  }

  .service-includes li i {
    color: var(--accent-warm);
    font-size: 0.75rem;
    margin-top: 4px;
    flex-shrink: 0;
  }

  /* ===== SPLIDE CAROUSEL ===== */
  .splide-section {
    padding-block: var(--space-24);
    background: var(--paper-100);
    overflow: hidden;
  }

  .splide__slide {
    padding: var(--space-2);
  }

  .carousel-card {
    background: var(--white);
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all var(--transition-base);
  }

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

  .carousel-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .carousel-card-body {
    padding: var(--space-5);
  }

  .carousel-card-body h3 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--ink-900);
    margin-bottom: var(--space-2);
  }

  .carousel-card-body p {
    font-size: var(--text-sm);
    color: var(--ink-600);
    line-height: 1.6;
  }

  .splide__pagination__page {
    background: var(--ink-300);
    transition: all var(--transition-fast);
  }

  .splide__pagination__page.is-active {
    background: var(--ink-800);
    transform: scale(1.2);
  }

  .splide__arrow {
    background: var(--white);
    border: 1px solid var(--ink-200);
    box-shadow: var(--shadow-sm);
    opacity: 1;
    transition: all var(--transition-base);
  }

  .splide__arrow:hover {
    background: var(--ink-900);
    border-color: var(--ink-900);
    box-shadow: var(--shadow-md);
  }

  .splide__arrow svg { fill: var(--ink-700); }
  .splide__arrow:hover svg { fill: var(--paper-50); }

  /* ===== CONTACT PAGE ===== */
  .contact-hero {
    background: var(--paper-100);
    padding-top: calc(var(--nav-height) + var(--space-16));
    padding-bottom: var(--space-16);
    min-height: 40vh;
    display: flex;
    align-items: center;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    margin-top: var(--space-12);
  }

  .contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
  }

  .form-group {
    margin-bottom: var(--space-5);
  }

  .form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--ink-700);
    margin-bottom: var(--space-2);
    letter-spacing: 0.01em;
  }

  .form-control {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: var(--paper-50);
    border: 1.5px solid var(--ink-200);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    color: var(--ink-800);
    transition: all var(--transition-fast);
    line-height: 1.5;
    min-height: 44px;
  }

  .form-control:focus {
    outline: none;
    border-color: var(--accent-warm);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(139,111,71,0.12);
  }

  .form-control::placeholder { color: var(--ink-400); }

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

  .form-check {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-top: var(--space-4);
  }

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

  .form-check label {
    font-size: var(--text-sm);
    color: var(--ink-600);
    line-height: 1.5;
    cursor: pointer;
  }

  .form-check a {
    color: var(--accent-warm);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .contact-info-card {
    background: var(--paper-100);
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
  }

  .contact-info-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: var(--space-6);
  }

  .contact-info-item {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    margin-bottom: var(--space-5);
  }

  .contact-info-item:last-child { margin-bottom: 0; }

  .contact-info-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--accent-warm);
    flex-shrink: 0;
    box-shadow: var(--shadow-xs);
  }

  .contact-info-text strong {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--ink-800);
    margin-bottom: 2px;
  }

  .contact-info-text span,
  .contact-info-text a {
    font-size: var(--text-sm);
    color: var(--ink-600);
    transition: color var(--transition-fast);
  }

  .contact-info-text a:hover { color: var(--accent-warm); }

  .map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--ink-200);
    box-shadow: var(--shadow-sm);
    margin-top: var(--space-6);
  }

  .map-wrap iframe {
    display: block;
    width: 100%;
    height: 280px;
    border: none;
  }

  /* ===== THANKS PAGE ===== */
  .thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-8);
    background: var(--paper-50);
    padding-top: var(--nav-height);
  }

  .thanks-card {
    background: var(--white);
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-2xl);
    padding: var(--space-16) var(--space-12);
    text-align: center;
    max-width: 560px;
    width: 100%;
    box-shadow: var(--shadow-xl);
  }

  .thanks-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--paper-200), var(--paper-100));
    border: 2px solid var(--ink-200);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-warm);
    margin: 0 auto var(--space-8);
    box-shadow: var(--shadow-md);
  }

  .thanks-card h1 {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
  }

  .thanks-card p {
    font-size: var(--text-base);
    color: var(--ink-600);
    line-height: 1.7;
    margin-bottom: var(--space-8);
  }

  /* ===== INTERIOR PAGE HERO ===== */
  .page-hero {
    background: var(--paper-100);
    padding-top: calc(var(--nav-height) + var(--space-16));
    padding-bottom: var(--space-16);
    border-bottom: 1px solid var(--ink-200);
  }

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

  .page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--ink-900);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: var(--space-4);
  }

  .page-hero p {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--ink-600);
    line-height: 1.7;
  }

  /* ===== CUSTOM PAGE — RECATEGORIZACION ===== */
  .recateg-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin-top: var(--space-12);
  }

  .recateg-card {
    background: var(--white);
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
  }

  .recateg-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--ink-200);
  }

  .recateg-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
  }

  .recateg-card-icon {
    width: 52px;
    height: 52px;
    background: var(--paper-100);
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-warm);
    flex-shrink: 0;
  }

  .recateg-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--ink-900);
    line-height: 1.3;
  }

  .recateg-card p {
    font-size: var(--text-base);
    color: var(--ink-600);
    line-height: 1.7;
  }

  .recateg-card ul {
    margin-top: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
  }

  .recateg-card ul li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--ink-700);
    line-height: 1.5;
  }

  .recateg-card ul li i {
    color: var(--accent-warm);
    font-size: 0.7rem;
    margin-top: 4px;
    flex-shrink: 0;
  }

  .recateg-image-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
  }

  .recateg-image-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
  }

  .period-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--space-6);
    font-size: var(--text-sm);
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--ink-100);
  }

  .period-table th {
    background: var(--ink-900);
    color: var(--paper-50);
    padding: var(--space-3) var(--space-5);
    text-align: left;
    font-weight: 600;
    font-size: var(--text-xs);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .period-table td {
    padding: var(--space-3) var(--space-5);
    color: var(--ink-700);
    border-bottom: 1px solid var(--ink-100);
  }

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

  .period-table tr:hover td { background: var(--paper-50); }

  /* ===== LEGAL PAGES ===== */
  .legal-content {
    max-width: 760px;
    margin: 0 auto;
    padding-block: var(--space-16);
  }

  .legal-content h2 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--ink-900);
    margin-top: var(--space-10);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-2);
    border-bottom: 1px solid var(--ink-200);
  }

  .legal-content h3 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--ink-800);
    margin-top: var(--space-6);
    margin-bottom: var(--space-2);
  }

  .legal-content p {
    font-size: var(--text-base);
    color: var(--ink-600);
    line-height: 1.8;
    margin-bottom: var(--space-4);
  }

  .legal-content ul {
    margin-bottom: var(--space-4);
    padding-left: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
  }

  .legal-content ul li {
    font-size: var(--text-sm);
    color: var(--ink-600);
    line-height: 1.7;
    list-style: disc;
  }

  .legal-content a {
    color: var(--accent-warm);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .legal-meta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--paper-200);
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-sm);
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
    color: var(--ink-600);
    margin-bottom: var(--space-8);
  }

  /* ===== FOOTER ===== */
  .site-footer {
    background: var(--ink-900);
    color: var(--paper-50);
    padding-block: var(--space-16) var(--space-8);
    position: relative;
    z-index: 1;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
    margin-bottom: var(--space-12);
  }

  .footer-brand p {
    font-size: var(--text-sm);
    color: rgba(250,248,244,0.65);
    line-height: 1.7;
    margin-top: var(--space-4);
    max-width: 300px;
  }

  .footer-logo-text {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--paper-50);
    letter-spacing: -0.02em;
  }

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

  .footer-nav h4 {
    font-size: var(--text-xs);
    font-weight: 600;
    color: rgba(250,248,244,0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
  }

  .footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
  }

  .footer-nav ul li a {
    font-size: var(--text-sm);
    color: rgba(250,248,244,0.72);
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
  }

  .footer-nav ul li a:hover { color: var(--paper-50); }

  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
  }

  .footer-contact-item i {
    font-size: 0.85rem;
    color: var(--accent-warm-light);
    margin-top: 3px;
    flex-shrink: 0;
  }

  .footer-contact-item span,
  .footer-contact-item a {
    font-size: var(--text-sm);
    color: rgba(250,248,244,0.72);
    line-height: 1.5;
    transition: color var(--transition-fast);
  }

  .footer-contact-item a:hover { color: var(--paper-50); }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(250,248,244,0.1);
    align-items: flex-start;
  }

  .footer-bottom p {
    font-size: var(--text-xs);
    color: rgba(250,248,244,0.45);
  }

  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
  }

  .footer-legal-links a {
    font-size: var(--text-xs);
    color: rgba(250,248,244,0.5);
    transition: color var(--transition-fast);
  }

  .footer-legal-links a:hover { color: rgba(250,248,244,0.8); }

  /* ===== COOKIE BANNER ===== */
  .cookie-banner {
    position: fixed;
    bottom: var(--space-4);
    left: var(--space-4);
    right: var(--space-4);
    background: var(--ink-900);
    color: var(--paper-50);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    z-index: 1000;
    box-shadow: 0 20px 60px rgba(26,23,20,0.35), 0 8px 20px rgba(26,23,20,0.2);
    border: 1px solid rgba(250,248,244,0.1);
    transform: translateY(120%);
    transition: transform var(--transition-slow);
    max-width: 520px;
  }

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

  .cookie-banner h3 {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--paper-50);
    margin-bottom: var(--space-2);
  }

  .cookie-banner p {
    font-size: var(--text-xs);
    color: rgba(250,248,244,0.72);
    line-height: 1.6;
    margin-bottom: var(--space-4);
  }

  .cookie-banner p a {
    color: var(--accent-warm-light);
    text-decoration: underline;
  }

  .cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
  }

  .cookie-btn {
    flex: 1;
    min-width: 80px;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all var(--transition-fast);
    text-align: center;
    min-height: 36px;
  }

  .cookie-btn-accept {
    background: var(--accent-warm);
    color: var(--white);
    border-color: var(--accent-warm);
  }

  .cookie-btn-accept:hover {
    background: var(--accent-warm-dark);
    border-color: var(--accent-warm-dark);
  }

  .cookie-btn-reject {
    background: transparent;
    color: rgba(250,248,244,0.72);
    border-color: rgba(250,248,244,0.2);
  }

  .cookie-btn-reject:hover {
    border-color: rgba(250,248,244,0.5);
    color: var(--paper-50);
  }

  .cookie-btn-customize {
    background: transparent;
    color: rgba(250,248,244,0.72);
    border-color: rgba(250,248,244,0.2);
  }

  .cookie-btn-customize:hover {
    border-color: rgba(250,248,244,0.5);
    color: var(--paper-50);
  }

  .cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(26,23,20,0.7);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
  }

  .cookie-modal.visible {
    opacity: 1;
    pointer-events: all;
  }

  .cookie-modal-inner {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
  }

  .cookie-modal-inner h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: var(--space-4);
  }

  .cookie-category {
    padding: var(--space-4);
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-3);
  }

  .cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2);
  }

  .cookie-category-header strong {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--ink-800);
  }

  .cookie-category p {
    font-size: var(--text-xs);
    color: var(--ink-600);
    line-height: 1.5;
  }

  .cookie-toggle {
    position: relative;
    width: 40px;
    height: 22px;
    flex-shrink: 0;
  }

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

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

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

  .cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--accent-warm);
  }

  .cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(18px);
  }

  .cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
  }

  .cookie-modal-actions {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-6);
  }

  .cookie-modal-actions .cookie-btn {
    flex: 1;
  }

  /* ===== DIVIDER ===== */
  .divider {
    width: 60px;
    height: 3px;
    background: var(--accent-warm);
    border-radius: 2px;
    margin-block: var(--space-6);
  }

  .divider--center { margin-inline: auto; }

  /* ===== HIGHLIGHT BOX ===== */
  .highlight-box {
    background: var(--paper-200);
    border: 1px solid var(--ink-200);
    border-left: 4px solid var(--accent-warm);
    border-radius: var(--radius-md);
    padding: var(--space-5) var(--space-6);
    margin-block: var(--space-6);
  }

  .highlight-box p {
    font-size: var(--text-sm);
    color: var(--ink-700);
    line-height: 1.7;
    margin: 0;
  }

  .highlight-box strong { color: var(--ink-900); }

  /* ===== TWO-COL CONTENT ===== */
  .two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
  }

  .two-col--reverse .two-col-image { order: -1; }

  /* ===== RESPONSIVE ===== */
  @media (min-width: 640px) {
    .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
    }

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

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

    .hero-image-wrap img { height: 480px; }
  }

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

    .footer-grid {
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }

    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }

    .contact-grid {
      grid-template-columns: 3fr 2fr;
    }

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

    .service-cards-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .gradient-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .two-col {
      grid-template-columns: 1fr 1fr;
    }

    .two-col--reverse .two-col-image { order: unset; }
  }

  @media (min-width: 1024px) {
    .hero-inner {
      grid-template-columns: 1fr 1fr;
    }

    .benefits-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .process-steps {
      grid-template-columns: 1fr;
    }

    .service-cards-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .recateg-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .cookie-banner {
      left: var(--space-8);
      right: auto;
      bottom: var(--space-8);
    }
  }

  @media (min-width: 1200px) {
    .benefits-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
}

@layer utilities {
  .text-center { text-align: center; }
  .text-left { text-align: left; }
  .mt-auto { margin-top: auto; }
  .mb-0 { margin-bottom: 0; }
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
  }
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .stagger-1 { transition-delay: 0.1s; }
  .stagger-2 { transition-delay: 0.2s; }
  .stagger-3 { transition-delay: 0.3s; }
  .stagger-4 { transition-delay: 0.4s; }
  .stagger-5 { transition-delay: 0.5s; }
}