/* ================================================================
   EQUIV CSS Architecture
   1. Root Variables  2. Color System  3. Typography System
   4. Spacing System 5. Layout        6. Components
   7. Utilities      8. Responsive    9. Page-specific Layout

   Typography and spacing values originate in :root. Components use
   semantic tokens; responsive rules switch tokens before layout-only
   adjustments. Page rules do not introduce an independent type scale.
   ================================================================ */
:root {
  /* ================================================================
     01. TOKENS
     Foundation -> Semantic -> Component
     Components never consume Foundation tokens directly.
     ================================================================ */

  /* Foundation: breakpoints */
  --breakpoint-tablet: 768;
  --breakpoint-desktop: 1200;

  /* Foundation: color primitives */
  --foundation-rgb-0: 255 255 255;
  --foundation-rgb-50: 245 246 248;
  --foundation-rgb-75: 255 250 240;
  --foundation-rgb-400: 111 119 130;
  --foundation-rgb-500: 169 130 53;
  --foundation-rgb-550: 158 122 50;
  --foundation-rgb-425: 124 135 147;
  --foundation-rgb-700: 34 34 34;
  --foundation-rgb-900: 7 26 47;
  --foundation-rgb-950: 4 17 31;
  --foundation-rgb-feedback-success: 47 109 78;
  --foundation-rgb-feedback-warning: 138 100 26;
  --foundation-rgb-feedback-error: 156 61 53;
  --foundation-rgb-overlay: 0 0 0;

  /* Semantic: color roles */
  --color-primary: rgb(var(--foundation-rgb-900));
  --color-primary-strong: rgb(var(--foundation-rgb-950));
  --color-secondary: rgb(var(--foundation-rgb-500));
  --color-secondary-strong: rgb(var(--foundation-rgb-550));
  --color-accent: var(--color-secondary);
  --color-background: rgb(var(--foundation-rgb-0));
  --color-surface: rgb(var(--foundation-rgb-0));
  --color-surface-muted: rgb(var(--foundation-rgb-50));
  --color-surface-warning: rgb(var(--foundation-rgb-75));
  --color-surface-glass: rgb(var(--foundation-rgb-0) / 96%);
  --color-surface-glass-strong: rgb(var(--foundation-rgb-0) / 98%);
  --color-primary-faint: rgb(var(--foundation-rgb-900) / 3.5%);
  --color-primary-overlay-light: rgb(var(--foundation-rgb-900) / 8%);
  --color-primary-overlay-soft: rgb(var(--foundation-rgb-900) / 16%);
  --color-primary-overlay-medium: rgb(var(--foundation-rgb-900) / 28%);
  --color-primary-overlay-strong: rgb(var(--foundation-rgb-900) / 36%);
  --color-primary-overlay-heavy: rgb(var(--foundation-rgb-900) / 52%);
  --color-border-subtle: rgb(var(--foundation-rgb-900) / 8%);
  --color-border-card: rgb(var(--foundation-rgb-900) / 10%);
  --color-border: rgb(var(--foundation-rgb-900) / 12%);
  --color-border-strong: rgb(var(--foundation-rgb-900) / 18%);
  --color-border-emphasis: rgb(var(--foundation-rgb-900) / 30%);
  --color-control-border: rgb(var(--foundation-rgb-400) / 32%);
  --color-text-primary: rgb(var(--foundation-rgb-700));
  --color-text-secondary: rgb(var(--foundation-rgb-400));
  --color-text-secondary-strong: rgb(var(--foundation-rgb-400) / 90%);
  --color-text-tertiary: rgb(var(--foundation-rgb-425));
  --color-muted: var(--color-text-secondary);
  --color-on-primary: rgb(var(--foundation-rgb-0));
  --color-on-primary-strong: rgb(var(--foundation-rgb-0) / 92%);
  --color-on-primary-body: rgb(var(--foundation-rgb-0) / 74%);
  --color-on-primary-control: rgb(var(--foundation-rgb-0) / 78%);
  --color-on-primary-secondary: rgb(var(--foundation-rgb-0) / 66%);
  --color-on-primary-caption: rgb(var(--foundation-rgb-0) / 64%);
  --color-on-primary-overlay: rgb(var(--foundation-rgb-0) / 76%);
  --color-on-primary-muted: rgb(var(--foundation-rgb-0) / 70%);
  --color-on-primary-soft: rgb(var(--foundation-rgb-0) / 60%);
  --color-on-primary-subtle: rgb(var(--foundation-rgb-0) / 58%);
  --color-on-primary-low: rgb(var(--foundation-rgb-0) / 54%);
  --color-on-primary-disabled: rgb(var(--foundation-rgb-0) / 42%);
  --color-on-primary-disabled-strong: rgb(var(--foundation-rgb-0) / 44%);
  --color-on-primary-faint: rgb(var(--foundation-rgb-0) / 8%);
  --color-on-primary-gradient: rgb(var(--foundation-rgb-0) / 20%);
  --color-on-primary-hairline: rgb(var(--foundation-rgb-0) / 18%);
  --color-on-primary-divider: rgb(var(--foundation-rgb-0) / 32%);
  --color-on-primary-control-border: rgb(var(--foundation-rgb-0) / 28%);
  --color-on-primary-border: rgb(var(--foundation-rgb-0) / 68%);
  --color-accent-surface: rgb(var(--foundation-rgb-500) / 8%);
  --color-accent-text: rgb(var(--foundation-rgb-500) / 84%);
  --color-accent-line: rgb(var(--foundation-rgb-500) / 34%);
  --color-accent-decoration: rgb(var(--foundation-rgb-500) / 56%);
  --color-accent-border-soft: rgb(var(--foundation-rgb-500) / 28%);
  --color-accent-border: rgb(var(--foundation-rgb-500) / 38%);
  --color-accent-border-strong: rgb(var(--foundation-rgb-500) / 42%);
  --color-accent-border-emphasis: rgb(var(--foundation-rgb-500) / 62%);
  --color-accent-border-card: rgb(var(--foundation-rgb-500) / 35%);
  --color-overlay: rgb(var(--foundation-rgb-overlay) / 50%);
  --color-overlay-primary: rgb(var(--foundation-rgb-900) / 48%);
  --color-success: rgb(var(--foundation-rgb-feedback-success));
  --color-warning: rgb(var(--foundation-rgb-feedback-warning));
  --color-error: rgb(var(--foundation-rgb-feedback-error));
  --background-default: var(--color-background);
  --background-muted: var(--color-surface-muted);
  --background-brand: var(--color-primary);
  --visual-icon-color: currentColor;
  --visual-divider-color: var(--color-border);
  --visual-hero-overlay:
    linear-gradient(
      135deg,
      var(--color-primary-overlay-medium),
      var(--color-primary-overlay-heavy)
    );
  --visual-hero-scrim:
    linear-gradient(
      180deg,
      var(--color-primary-overlay-light),
      var(--color-primary-overlay-strong)
    );
  --visual-skeleton-base: var(--color-surface-muted);
  --visual-skeleton-highlight: var(--color-background);

  /* Legacy semantic aliases: retained for backward compatibility. */
  --color-gold: var(--color-secondary);
  --color-white: var(--color-background);
  --color-gray: var(--color-surface-muted);
  --color-text: var(--color-text-primary);
  --color-line: var(--color-border);

  /* Foundation: typography primitives */
  --foundation-font-family-korean: "Pretendard", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --foundation-font-family-latin: "Inter", "Pretendard", system-ui, sans-serif;
  --foundation-font-weight-regular: 400;
  --foundation-font-weight-light: 300;
  --foundation-font-weight-medium: 500;
  --foundation-font-weight-semibold: 600;
  --foundation-font-weight-bold: 700;
  --foundation-line-height-heading: 1.2;
  --foundation-line-height-body: 1.7;
  --font-ko: var(--foundation-font-family-korean);
  --font-en: var(--foundation-font-family-latin);
  --desktop-display: 64px;
  --desktop-h1: 52px;
  --desktop-h2: 36px;
  --desktop-h3: 26px;
  --desktop-body: 18px;
  --desktop-small: 16px;
  --desktop-caption: 14px;
  --tablet-display: 54px;
  --tablet-h1: 46px;
  --tablet-h2: 34px;
  --tablet-h3: 24px;
  --tablet-body: 17px;
  --tablet-small: 15px;
  --tablet-caption: 13px;
  --mobile-display: 46px;
  --mobile-h1: 36px;
  --mobile-h2: 30px;
  --mobile-h3: 24px;
  --mobile-body: 16px;
  --mobile-small: 15px;
  --mobile-caption: 13px;

  /* Semantic: typography roles */
  --font-display: var(--desktop-display);
  --font-h1: var(--desktop-h1);
  --font-h2: var(--desktop-h2);
  --font-h3: var(--desktop-h3);
  --font-body: var(--desktop-body);
  --font-small: var(--desktop-small);
  --font-caption: var(--desktop-caption);
  --font-button: var(--desktop-body);
  --font-nav: var(--desktop-small);
  --font-weight-light: var(--foundation-font-weight-light);
  --font-weight-regular: var(--foundation-font-weight-regular);
  --font-weight-medium: var(--foundation-font-weight-medium);
  --font-weight-semibold: var(--foundation-font-weight-semibold);
  --font-weight-bold: var(--foundation-font-weight-bold);
  --type-display: var(--font-display);
  --type-h1: var(--font-h1);
  --type-h2: var(--font-h2);
  --type-h3: var(--font-h3);
  --type-h4: var(--font-body);
  --type-body-lg: var(--font-body);
  --type-body: var(--font-body);
  --type-small: var(--font-small);
  --type-caption: var(--font-caption);
  --type-cta-title: var(--font-h2);
  --type-cta-body: var(--font-body);
  --type-card-link: var(--font-small);
  --type-button: var(--font-button);
  --type-nav: var(--font-nav);
  --type-form: var(--font-body);
  --type-card-category: var(--font-small);
  --type-card-description: var(--font-body);
  --type-insight-card-title: var(--type-h3);
  /* Shared modal roles: Consultation and Business Valuation */
  --modal-title-size: var(--type-h2);
  --modal-description-size: var(--type-body-lg);
  --modal-supporting-size: var(--type-body);
  --modal-question-size: var(--type-h3);
  --modal-section-title-size: var(--type-h4);
  --modal-label-size: var(--type-small);
  --modal-input-size: var(--type-form);
  --modal-help-size: var(--type-caption);
  --modal-button-size: var(--type-button);
  --modal-option-title-size: var(--type-h4);
  --modal-option-description-size: var(--type-small);
  --modal-close-icon-size: var(--type-h3);

  /* Foundation: 8px spacing grid with one 4px optical half-step. */
  --space-half: 4px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-7: 56px;
  --space-8: 64px;
  --space-9: 72px;
  --space-10: 80px;
  --space-12: 96px;
  --space-15: 120px;
  --space-16: 128px;
  --space-18: 144px;

  /* Semantic: spacing roles and backward-compatible aliases. */
  --space-2xs: var(--space-half);
  --space-xs: var(--space-1);
  --space-sm: calc(var(--space-1) + var(--space-half));
  --space-md: var(--space-2);
  --space-lg: var(--space-3);
  --space-xl: var(--space-4);
  --space-2xl: var(--space-8);
  --section-space-lg: var(--space-15);
  --section-space-md: var(--space-15);
  --section-space-sm: var(--space-15);
  --section-space-first: calc(var(--space-18) - var(--space-half));
  --section-space-footer: calc(var(--space-12) + var(--space-half));
  --space-section: var(--section-space-lg);

  /* Semantic: layout and container roles */
  --container-narrow: 780px;
  --container-default: 1260px;
  --container-wide: 1280px;
  --container-full: 100%;
  --container-width: var(--container-default);
  --container-gutter: 32px;
  --content-width-sm: 620px;
  --content-width-md: 720px;
  --content-width-lg: 820px;
  --content-width-xl: 860px;
  --content-width-home-services: 1260px;
  --content-width-home-insights: 1260px;

  /* Foundation and semantic: radius */
  --foundation-radius-1: var(--space-half);
  --foundation-radius-2: var(--space-1);
  --foundation-radius-3: var(--space-2);
  --foundation-radius-4: calc(var(--space-2) + var(--space-half));
  --radius-sm: var(--foundation-radius-1);
  --radius-md: var(--foundation-radius-2);
  --radius-lg: var(--foundation-radius-3);
  --radius-xl: var(--foundation-radius-4);

  /* Foundation and semantic: elevation */
  --foundation-shadow-1: 0 12px 26px rgb(var(--foundation-rgb-900) / 9%);
  --foundation-shadow-2: 0 12px 30px rgb(var(--foundation-rgb-900) / 12%);
  --foundation-shadow-3: 0 28px 80px rgb(var(--foundation-rgb-900) / 18%);
  --foundation-shadow-4: 0 28px 80px rgb(var(--foundation-rgb-overlay) / 24%);
  --shadow-sm: var(--foundation-shadow-1);
  --shadow-md: var(--foundation-shadow-2);
  --shadow-lg: var(--foundation-shadow-3);
  --shadow-xl: var(--foundation-shadow-4);
  --shadow-overlay: var(--shadow-xl);
  --shadow-float: 0 14px 32px rgb(var(--foundation-rgb-900) / 12%);
  --shadow-focus: 0 0 0 3px rgb(var(--foundation-rgb-500) / 10%);

  /* Semantic: layer hierarchy */
  --layer-base: 0;
  --layer-content: 1;
  --layer-sticky-header: 50;
  --layer-floating-action: 80;
  --layer-dropdown: 120;
  --layer-modal-backdrop: 130;
  --layer-modal: 131;
  --layer-toast: 140;
  --layer-debug: 999;

  /* Semantic: grid */
  --grid-columns: 12;
  --grid-column-gap: var(--space-xl);
  --grid-card-gap-desktop: 32px;
  --grid-card-gap-tablet: 24px;
  --grid-card-gap-mobile: 20px;
  --grid-card-gap: var(--grid-card-gap-desktop);
  --grid-section-gap: var(--space-2xl);

  /* Component tokens: Section, Card, Button, Form, Modal, Navigation. */
  --component-section-padding: var(--section-space-lg);
  --component-section-padding-md: var(--section-space-md);
  --component-section-padding-sm: var(--section-space-sm);
  --component-hero-padding: var(--section-space-lg);
  --component-card-padding: var(--space-4);
  --component-card-padding-compact: var(--space-4);
  --component-card-padding-tablet: calc(var(--space-3) + var(--space-half));
  --component-card-padding-mobile: var(--space-3);
  --component-home-card-padding-block: var(--space-4);
  --component-home-card-padding-inline: var(--space-4);
  --component-home-card-action-gap: var(--space-2);
  --component-home-card-width: 320px;
  --component-home-service-card-min-height: 182px;
  --component-home-insight-card-min-height: 260px;
  --component-card-link-min-height: 32px;
  --component-card-link-gap: calc(var(--space-half) + (var(--space-half) / 2));
  --component-card-link-icon-width: 16px;
  --component-icon-size-sm: 16px;
  --component-icon-size-md: 22px;
  --component-icon-size-lg: 28px;
  --component-icon-stroke-width: 1.5;
  --component-icon-linecap: round;
  --component-icon-linejoin: round;
  --component-visual-loading-duration: var(--motion-reveal);
  --component-button-padding-y: var(--space-sm);
  --component-button-padding-x: var(--space-lg);
  --component-button-height: 52px;
  --component-button-height-mobile: 54px;
  --component-card-radius: var(--radius-sm);
  --button-primary-bg: var(--color-accent);
  --button-primary-bg-hover: var(--color-secondary-strong);
  --button-primary-text: var(--color-on-primary);
  --button-secondary-bg: transparent;
  --button-secondary-bg-hover: var(--color-on-primary-faint);
  --button-secondary-text: var(--color-on-primary);
  --button-secondary-border: var(--color-on-primary-border);
  --button-secondary-border-hover: var(--color-on-primary);
  --button-radius: var(--radius-sm);
  --button-shadow-hover: var(--shadow-sm);
  --button-focus-ring: 2px solid var(--color-accent);
  --button-ghost-bg: transparent;
  --button-ghost-text: var(--color-primary);
  --button-ghost-border: transparent;
  --button-danger-bg: var(--color-error);
  --button-danger-text: var(--color-on-primary);
  --button-disabled-opacity: 0.48;
  --button-loading-opacity: 0.72;
  --card-background: var(--color-surface);
  --card-border: var(--color-border-card);
  --card-border-subtle: var(--color-border-subtle);
  --card-border-standard: var(--color-border);
  --card-border-hover: var(--color-accent-border);
  --card-radius: var(--component-card-radius);
  --card-shadow-default: none;
  --card-shadow-hover: var(--shadow-sm);
  --card-focus-ring: 2px solid var(--color-accent);
  --card-disabled-opacity: 0.48;
  --card-loading-opacity: 0.72;
  --modal-background: var(--color-surface);
  --modal-backdrop: var(--color-overlay);
  --modal-backdrop-primary: var(--color-overlay-primary);
  --modal-border: var(--color-border);
  --modal-radius: var(--radius-xl);
  --modal-shadow: var(--shadow-xl);
  --modal-z: var(--layer-modal-backdrop);
  --dropdown-background: var(--color-surface-muted);
  --dropdown-border: var(--color-border);
  --dropdown-shadow: var(--shadow-sm);
  --dropdown-z: var(--layer-dropdown);
  --header-z: var(--layer-sticky-header);
  --floating-action-z: var(--layer-floating-action);
  --header-background-scrolled: var(--color-surface-glass);
  --navigation-item-hover-bg: var(--color-primary-faint);
  --form-control-background: var(--color-surface);
  --form-control-border: var(--color-control-border);
  --form-control-border-focus: var(--color-accent);
  --form-control-focus-shadow: var(--shadow-focus);
  --focus-outline: 1px solid var(--color-accent);
  --skip-link-z: var(--layer-debug);
  --hero-content-z: var(--layer-content);
  --hero-support-z: 2;
  --tooltip-z: 3;
  --modal-content-z: var(--layer-content);
  --modal-control-z: 2;

  /* Foundation and semantic: motion */
  --foundation-motion-fast: 160ms;
  --foundation-motion-normal: 200ms;
  --foundation-motion-fade: 300ms;
  --foundation-motion-reveal: 600ms;
  --foundation-motion-modal: 280ms;
  --foundation-motion-accordion: 250ms;
  --foundation-motion-mobile-fast: 128ms;
  --foundation-motion-mobile-hover: 160ms;
  --foundation-motion-mobile-fade: 240ms;
  --foundation-motion-mobile-reveal: 480ms;
  --foundation-motion-mobile-modal: 224ms;
  --foundation-motion-mobile-accordion: 200ms;
  --foundation-motion-mobile-delay: 80ms;
  --motion-fast: var(--foundation-motion-fast);
  --motion-normal: var(--foundation-motion-normal);
  --motion-slow: var(--foundation-motion-fade);
  --motion-hover: var(--motion-normal);
  --motion-modal: var(--foundation-motion-modal);
  --motion-reveal: var(--foundation-motion-reveal);
  --motion-duration-hover: var(--motion-hover);
  --motion-duration-click: var(--motion-fast);
  --motion-duration-fade: var(--motion-slow);
  --motion-duration-reveal: var(--motion-reveal);
  --motion-duration-modal: var(--motion-modal);
  --motion-duration-accordion: var(--foundation-motion-accordion);
  --motion-delay-step: 100ms;
  --motion-delay-hero-description: 120ms;
  --motion-delay-hero-cta: 220ms;
  --motion-delay-hero-support: 320ms;
  --motion-ease-standard: ease-out;
  --motion-ease-emphasized: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-distance-page: 10px;
  --motion-distance-reveal: 24px;
  --motion-modal-scale: 0.98;
  --motion-card-lift: -3px;
  --motion-button-lift: -2px;
  --component-card-hover-lift: var(--motion-card-lift);
  --component-interaction-duration: var(--motion-duration-hover);
  --component-input-padding-x: var(--space-md);
  --component-modal-padding: var(--space-xl);
  --component-footer-padding: var(--space-2xl);
  --component-header-logo-gap: calc(var(--space-half) + (var(--space-half) / 4));
  --component-header-logo-mark-size: 27px;
  --component-header-logo-divider-height: 24px;
  --component-header-logo-scrolled-mark-size: 25px;
  --component-header-logo-scrolled-divider-height: 22px;
  --component-header-wordmark-tracking: -0.4px;
  --header-height: 72px;
  --ease: var(--motion-ease-emphasized);
}

/* 5-7. Base, Layout, Components & Utilities */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-ko);
  font-size: var(--type-body);
  background: var(--color-white);
  line-height: 1.7;
}

body.modal-open {
  overflow: hidden;
}

body.subpage main {
  animation: equiv-page-enter var(--motion-duration-fade) var(--motion-ease-standard) both;
}

@keyframes equiv-page-enter {
  from {
    opacity: 0;
    transform: translateY(var(--motion-distance-page));
  }
  to {
    opacity: 1;
    transform: none;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

h3 {
  font-weight: var(--font-weight-semibold);
}

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: var(--skip-link-z);
  padding: var(--space-xs) var(--space-sm);
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  transition: top var(--motion-duration-hover) var(--motion-ease-standard);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(var(--container-full) - var(--container-gutter)), var(--container-width));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--header-z);
  height: var(--header-height);
  color: var(--color-white);
  transition:
    height var(--motion-duration-hover) var(--motion-ease-standard),
    background var(--motion-duration-hover) var(--motion-ease-standard),
    color var(--motion-duration-hover) var(--motion-ease-standard),
    border-color var(--motion-duration-hover) var(--motion-ease-standard);
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--color-primary);
  background: var(--header-background-scrolled);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: currentColor;
}

.equiv-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  color: currentColor;
}

.equiv-logo-mark,
.equiv-logo-wordmark {
  display: block;
  flex: 0 0 auto;
}

.equiv-logo-mark {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.equiv-logo-divider {
  --equiv-logo-final-opacity: 0.62;
  width: 1px;
  height: 28px;
  flex: 0 0 auto;
  background: currentColor;
  opacity: 0.62;
}

.equiv-logo-wordmark {
  width: auto;
  height: auto;
  color: currentColor;
  font-family: var(--font-en);
  font-size: var(--type-h3);
  font-weight: var(--font-weight-medium);
  line-height: 1;
  letter-spacing: 0.2em;
}

/* Header primary logo: The EQUIV Mark | EQUIV */
.site-header .equiv-logo {
  gap: var(--component-header-logo-gap);
  max-width: 195px;
}

.site-header .equiv-logo-mark {
  width: var(--component-header-logo-mark-size);
  height: var(--component-header-logo-mark-size);
}

.site-header .equiv-logo-divider {
  height: var(--component-header-logo-divider-height);
  opacity: 0.62;
}

.site-header .equiv-logo-wordmark {
  font-size: var(--type-h3);
  font-weight: var(--font-weight-semibold);
  font-kerning: normal;
  font-feature-settings: "kern" 1;
  letter-spacing: var(--component-header-wordmark-tracking);
}

.brand-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: calc(var(--space-2xs) / -4);
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header .equiv-logo-mark,
.site-header .equiv-logo-divider,
.site-header .equiv-logo-wordmark {
  opacity: 0;
  animation: equiv-logo-segment-in var(--motion-duration-fade) var(--motion-ease-standard) forwards;
}

.site-header .equiv-logo-divider {
  animation-delay: var(--motion-delay-step);
}

.site-header .equiv-logo-wordmark {
  animation-delay: calc(var(--motion-delay-step) * 2);
}

@keyframes equiv-logo-segment-in {
  from {
    opacity: 0;
    transform: translateY(3px);
  }
  to {
    opacity: var(--equiv-logo-final-opacity, 1);
    transform: none;
  }
}

.site-header.is-scrolled .equiv-logo {
  gap: var(--component-header-logo-gap);
}

.site-header.is-scrolled .equiv-logo-mark {
  width: var(--component-header-logo-scrolled-mark-size);
  height: var(--component-header-logo-scrolled-mark-size);
}

.site-header.is-scrolled .equiv-logo-divider {
  height: var(--component-header-logo-scrolled-divider-height);
}

.site-header.is-scrolled .equiv-logo-wordmark {
  font-size: var(--type-h3);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  font-family: var(--font-en);
  font-size: var(--type-small);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
}

.site-nav > a,
.nav-parent-link {
  position: relative;
  opacity: 0.86;
  transition: opacity var(--motion-duration-hover) var(--motion-ease-standard);
}

.site-nav > a::after,
.nav-parent-link::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 18px;
  bottom: -8px;
  height: 1px;
  background: var(--color-gold);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform var(--motion-duration-hover) var(--motion-ease-standard);
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"],
.nav-parent-link:hover,
.nav-parent-link.is-active {
  opacity: 1;
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after,
.site-nav > a:focus-visible::after,
.nav-parent-link:hover::after,
.nav-parent-link:focus-visible::after,
.nav-parent-link.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

.brand:focus-visible,
.site-nav > a:focus-visible,
.nav-parent-link:focus-visible,
.nav-dropdown a:focus-visible,
.nav-dropdown-toggle:focus-visible,
.nav-toggle:focus-visible {
  outline: 1px solid var(--color-gold);
  outline-offset: 6px;
}

.nav-item-dropdown {
  position: relative;
}

.nav-parent-row {
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  padding: 0;
  margin-left: calc(var(--space-2xs) * 0.75);
  color: currentColor;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-dropdown-toggle::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform var(--motion-duration-hover) var(--motion-ease-standard);
}

.nav-item-dropdown.is-dropdown-open .nav-dropdown-toggle::before {
  transform: translateY(2px) rotate(225deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: var(--dropdown-z);
  min-width: 196px;
  padding-top: var(--space-sm);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity var(--motion-duration-hover) var(--motion-ease-standard),
    visibility var(--motion-duration-hover) var(--motion-ease-standard),
    transform var(--motion-duration-hover) var(--motion-ease-standard);
}

.nav-dropdown ul {
  position: relative;
  display: grid;
  gap: 0;
  padding: var(--space-xs) 0;
  margin: 0;
  background: var(--dropdown-background);
  border: 1px solid var(--dropdown-border);
  box-shadow: var(--dropdown-shadow);
  list-style: none;
}

.nav-dropdown ul::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--dropdown-background);
  border-top: 1px solid var(--dropdown-border);
  border-left: 1px solid var(--dropdown-border);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown a {
  display: block;
  padding: var(--space-xs) var(--space-md);
  color: var(--color-primary);
  font-size: var(--type-small);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  text-transform: none;
  white-space: nowrap;
  transition:
    color var(--motion-duration-hover) var(--motion-ease-standard),
    background-color var(--motion-duration-hover) var(--motion-ease-standard);
}

.nav-dropdown a:hover,
.nav-dropdown a[aria-current="page"] {
  color: var(--color-gold);
  background: var(--navigation-item-hover-bg);
}

.nav-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: calc(var(--radius-xl) * 50);
  transition:
    transform var(--motion-duration-hover) var(--motion-ease-standard),
    opacity var(--motion-duration-hover) var(--motion-ease-standard);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 78vh;
  min-height: 78svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--color-white);
  text-align: center;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    var(--visual-hero-overlay),
    url("../images/backgrounds/hero-city.webp") center/cover;
  transform: scale(1.02);
}

.hero-overlay {
  background: var(--visual-hero-scrim), var(--color-primary-overlay-soft);
}

.hero-content {
  position: relative;
  z-index: var(--hero-content-z);
  padding-top: calc(var(--header-height) + 6vh);
  transform: translateY(-48px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 var(--space-md);
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--type-small);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: var(--type-display);
  line-height: 1.1;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0;
}

.hero-title-line {
  display: block;
}

.hero-description {
  margin: var(--space-md) 0 0;
  color: var(--color-on-primary-body);
  font-size: var(--type-body-lg);
  font-weight: var(--font-weight-regular);
  line-height: 1.7;
  word-break: keep-all;
}

.hero h1,
.hero-description,
.principle-head h2,
.section-head h2,
.final-cta h2,
.principle-card h3,
.service-card h3,
.insight-card h3 {
  text-wrap: balance;
}

.hero-brand-identity {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-sm);
  margin: 0 0 var(--space-md);
  transform: translateY(-10px);
}

.hero-brand-signature,
.hero-brand-description {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.hero-brand-signature {
  gap: var(--space-xs);
}

.hero-brand-description {
  gap: var(--space-sm);
}

.hero-brand-name {
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--type-h4);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.12em;
}

.hero-brand-korean {
  color: var(--color-accent-text);
  font-family: var(--font-ko);
  font-size: var(--type-body);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0;
}

.hero-brand-divider {
  width: 1px;
  height: 15px;
  display: inline-block;
  background: var(--color-on-primary-divider);
}

.hero-brand-role {
  color: var(--color-on-primary-muted);
  font-family: var(--font-ko);
  font-size: var(--type-body);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.02em;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: var(--hero-support-z);
  width: 18px;
  height: 34px;
  display: grid;
  place-items: start center;
  transform: translateX(-50%);
  opacity: 0.72;
  --hero-motion-opacity: 0.72;
}

.scroll-indicator span {
  width: 1px;
  height: 28px;
  display: block;
  background: linear-gradient(to bottom, var(--color-on-primary-gradient), var(--color-gold));
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}

.hero h1,
.hero-description,
.hero-actions {
  opacity: 0;
  animation: equiv-hero-enter var(--motion-duration-fade) var(--motion-ease-standard) both;
}

.hero-brand-identity,
.scroll-indicator {
  opacity: 0;
  animation: equiv-hero-fade var(--motion-duration-fade) var(--motion-ease-standard) both;
}

.hero-description {
  animation-delay: var(--motion-delay-hero-description);
}

.hero-actions {
  animation-delay: var(--motion-delay-hero-cta);
}

.scroll-indicator {
  animation-delay: var(--motion-delay-hero-support);
}

@keyframes equiv-hero-enter {
  from {
    opacity: 0;
    transform: translateY(var(--motion-distance-page));
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes equiv-hero-fade {
  to {
    opacity: var(--hero-motion-opacity, 1);
  }
}

.button,
.btn {
  min-width: 176px;
  height: var(--component-button-height);
  min-height: var(--component-button-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--button-radius);
  font-size: var(--type-button);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition:
    transform var(--component-interaction-duration) var(--motion-ease-emphasized),
    background var(--component-interaction-duration) var(--motion-ease-standard),
    border-color var(--component-interaction-duration) var(--motion-ease-standard),
    box-shadow var(--component-interaction-duration) var(--motion-ease-standard);
}

.button:hover,
.btn:hover {
  transform: translateY(var(--motion-button-lift));
  box-shadow: var(--button-shadow-hover);
}

.button:active,
.btn:active {
  transform: translateY(0);
}

.button:focus-visible,
.btn:focus-visible,
.consultation-submit:focus-visible,
.consultation-modal__submit:focus-visible {
  outline: var(--button-focus-ring);
  outline-offset: 3px;
}

.button-primary,
.btn-primary {
  color: var(--button-primary-text);
  background: var(--button-primary-bg);
  border: 1px solid var(--button-primary-bg);
}

.button-primary:hover,
.btn-primary:hover {
  background: var(--button-primary-bg-hover);
  border-color: var(--button-primary-bg-hover);
}

.button-secondary,
.btn-secondary {
  color: var(--button-secondary-text);
  background: var(--button-secondary-bg);
  border: 1px solid var(--button-secondary-border);
}

.button-secondary:hover,
.btn-secondary:hover {
  border-color: var(--button-secondary-border-hover);
  background: var(--button-secondary-bg-hover);
}

.button-ghost,
.btn-ghost {
  color: var(--button-ghost-text);
  background: var(--button-ghost-bg);
  border: 1px solid var(--button-ghost-border);
}

.button-danger,
.btn-danger {
  color: var(--button-danger-text);
  background: var(--button-danger-bg);
  border: 1px solid var(--button-danger-bg);
}

.button:disabled,
.button[aria-disabled="true"],
.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: var(--button-disabled-opacity);
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  transform: none;
}

.button.is-loading,
.button[aria-busy="true"],
.btn.is-loading,
.btn[aria-busy="true"] {
  opacity: var(--button-loading-opacity);
  cursor: progress;
  pointer-events: none;
}

.section-muted {
  background: var(--color-gray);
}

.section-head {
  max-width: var(--content-width-md);
  margin-bottom: var(--space-2xl);
}

.section h2 {
  margin: 0;
  color: var(--color-primary);
  font-size: var(--type-h2);
  line-height: 1.22;
}

.section-head h2 span {
  display: inline-block;
  margin-top: var(--space-xs);
  font-size: var(--type-h2);
  line-height: 1.32;
}

.principle-section {
  background: var(--color-white);
  text-align: center;
  padding-bottom: var(--space-section);
}

.principle-head {
  max-width: var(--content-width-xl);
  margin: 0 auto var(--space-2xl);
}

.principle-head h2 {
  margin: 0;
  color: var(--color-primary);
  font-size: var(--type-h2);
  line-height: 1.18;
}

.principle-head > p:last-child {
  max-width: 560px;
  margin: var(--space-xl) auto 0;
  color: var(--color-muted);
  font-size: var(--type-body);
  line-height: 2.05;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  text-align: left;
}

.principle-card {
  position: relative;
  min-height: 230px;
  background: var(--card-background);
  border: 1px solid var(--card-border-standard);
  border-radius: var(--card-radius);
}

.principle-card::before {
  content: "";
  position: absolute;
  left: var(--space-lg);
  right: var(--space-lg);
  top: 0;
  height: 1px;
  background: var(--color-gold);
}

.principle-card:hover {
  border-color: var(--color-accent-border-strong);
}

.principle-card span {
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--type-caption);
  font-weight: var(--font-weight-semibold);
}

.principle-card h3 {
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-primary);
  font-family: var(--font-en);
  font-size: var(--type-h3);
  line-height: 1.25;
}

.principle-card strong {
  display: block;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  font-size: var(--type-h4);
  font-weight: var(--font-weight-semibold);
}

.principle-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--type-body);
  line-height: 1.75;
}

.expertise-section {
  background: var(--color-white);
}

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

.service-card {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--card-background);
  border: 1px solid var(--card-border-subtle);
  border-radius: var(--card-radius);
}

.service-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 1px;
  background: var(--color-accent-line);
}

.service-card-primary::before {
  height: 2px;
  background: var(--color-gold);
}

.service-card:hover {
  border-color: var(--color-border-strong);
}

.service-card-valuation {
  border-color: var(--color-border-strong);
}

.service-card-valuation h3 {
  font-weight: var(--font-weight-semibold);
}

.service-card-valuation strong {
  color: var(--color-primary);
}

.service-card span {
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--type-caption);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0;
}

.service-card h3 {
  margin: var(--space-xs) 0 var(--space-2xs);
  color: var(--color-primary);
  font-size: var(--type-h3);
  line-height: 1.28;
}

.service-card strong {
  display: block;
  margin-bottom: 0;
  color: var(--color-muted);
  font-family: var(--font-en);
  font-size: var(--type-h4);
  font-weight: var(--font-weight-semibold);
}

.service-card p,
.insight-card h3 {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--type-h3);
}

.service-card p {
  font-size: var(--type-body);
  line-height: 1.75;
}

.service-card em,
.insight-card em {
  display: inline-block;
  margin-top: auto;
  padding-top: var(--space-lg);
  color: var(--color-primary);
  font-family: var(--font-en);
  font-size: var(--type-caption);
  font-style: normal;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
}

.service-card em {
  margin-top: var(--space-md);
  padding-top: 0;
}

.service-card em::after,
.insight-card em::after {
  content: "";
  width: 18px;
  height: 1px;
  display: inline-block;
  margin-left: var(--space-xs);
  vertical-align: middle;
  background: var(--color-gold);
}

.expertise-note {
  margin: var(--space-2xl) 0 0;
  color: var(--color-primary);
  font-size: var(--type-body-lg);
  font-weight: var(--font-weight-medium);
  line-height: 1.8;
  text-align: center;
}

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

.insights-final-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.insight-card {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  background: var(--card-background);
}

.insight-card:hover {
  border-color: var(--card-border-hover);
}

.insight-card span {
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--type-caption);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.insight-card h3 {
  margin: var(--space-sm) 0;
  color: var(--color-primary);
  font-size: var(--type-h3);
  line-height: 1.45;
}

.insight-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--type-body);
  line-height: 1.8;
}

.insight-card em {
  padding-top: var(--space-md);
}

.insight-article-hero h1 {
  max-width: 940px;
}

.insight-article {
  background: var(--color-white);
}

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

.insight-article-body h2 {
  margin: var(--space-2xl) 0 var(--space-md);
  color: var(--color-primary);
  font-size: calc(var(--type-h2) - 2px);
  line-height: 1.4;
}

.insight-article-body p {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--type-body);
  line-height: 1.9;
}

.insight-article-body p + p {
  margin-top: var(--space-md);
}

.insight-article-body .insight-article-lead {
  color: var(--color-primary);
  font-size: var(--type-body-lg);
  font-weight: var(--font-weight-semibold);
  line-height: 1.75;
}

.insight-article-body .insight-article-note {
  padding: var(--space-lg) 0;
  margin-top: var(--space-2xl);
  color: var(--color-primary);
  font-size: var(--type-h4);
  font-weight: var(--font-weight-semibold);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.insight-article-body .insight-article-source {
  margin-top: var(--space-lg);
  font-size: var(--type-caption);
  line-height: 1.8;
}

.insight-article-source a {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: var(--color-accent-decoration);
  text-underline-offset: 3px;
}

.insight-related {
  padding-bottom: var(--component-section-padding-md);
  background: var(--color-white);
}

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

.insight-related__heading {
  margin-bottom: var(--space-lg);
}

.insight-related__heading .section-kicker {
  margin-bottom: var(--space-xs);
}

.insight-related__heading h2 {
  margin: 0;
  color: var(--color-primary);
  font-size: clamp(1.5rem, 2.2vw, 1.875rem);
  line-height: 1.35;
}

.insight-related__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-card-gap);
}

.insight-related-card {
  min-height: 0;
  height: 100%;
  padding: var(--component-card-padding);
}

.insight-related-card h3 {
  max-width: 680px;
}

.insight-back-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-bottom: var(--space-lg);
  color: var(--color-muted);
  font-size: var(--type-small);
  font-weight: var(--font-weight-semibold);
  line-height: 1.4;
  white-space: nowrap;
}

.insight-back-link:hover {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.insight-back-link:focus-visible {
  outline: 1px solid var(--color-gold);
  outline-offset: var(--space-half);
}

.subpage .site-header {
  color: var(--color-primary);
  background: var(--color-surface-glass);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(16px);
}

.sub-hero {
  padding: calc(var(--header-height) + var(--component-hero-padding)) 0 var(--component-hero-padding);
  color: var(--color-primary);
  background: var(--color-gray);
  border-bottom: 1px solid var(--color-line);
}

.sub-hero .section-kicker {
  margin-bottom: var(--space-lg);
}

.sub-hero h1 {
  margin: 0;
  color: var(--color-primary);
  font-size: var(--type-h1);
  line-height: 1.22;
  letter-spacing: 0;
}

.sub-hero p {
  margin: var(--space-md) 0 0;
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--type-body);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.08em;
}

.sub-hero .insight-article-label {
  font-size: var(--type-small);
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.service-hero .sub-hero-lead {
  max-width: 760px;
  margin-top: var(--space-lg);
  color: var(--color-primary);
  font-family: var(--font-ko);
  font-size: var(--type-body-lg);
  font-weight: var(--font-weight-bold);
  line-height: 1.42;
  letter-spacing: 0;
}

/* Detail titles inherit the actual HOME card title scale. */
.expertise-page .sub-hero h1 {
  font-size: var(--type-h1);
  line-height: 1.28;
}

.subpage .insight-article-hero h1 {
  font-size: var(--type-h1);
  line-height: 1.45;
}

.valuation-public-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(var(--space-2xl), 7vw, var(--space-2xl));
  align-items: center;
}

.valuation-entry-card {
  max-width: 380px;
  transform: translateY(26px);
}

.valuation-entry-card .valuation-entry-card__label {
  margin: 0 0 var(--space-md);
  color: var(--color-muted);
  font-family: var(--font-ko);
  font-size: var(--type-caption);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0;
}

.valuation-entry-card h2 {
  margin: 0;
  color: var(--color-primary);
  font-size: var(--type-h3);
  line-height: 1.35;
}

.valuation-entry-card__description {
  margin: var(--space-md) 0 0;
  color: var(--color-muted);
  font-family: var(--font-ko);
  font-size: var(--type-body-lg);
  font-weight: var(--font-weight-medium);
  line-height: 1.75;
  letter-spacing: 0;
}

.valuation-entry-card .valuation-entry-card__privacy {
  margin: var(--space-sm) 0 0;
  color: var(--color-text-secondary-strong);
  font-family: var(--font-ko);
  font-size: var(--type-small);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  letter-spacing: 0;
}

.valuation-entry-card__time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-top: var(--space-md);
  margin-top: var(--space-md);
  border-top: 1px solid var(--color-line);
}

.valuation-entry-card__time span {
  color: var(--color-muted);
  font-size: var(--type-caption);
}

.valuation-entry-card__time strong {
  color: var(--color-primary);
  font-size: var(--type-h4);
}

.valuation-entry-card .btn {
  width: auto;
  min-width: 160px;
  min-height: 44px;
  padding: var(--space-xs) var(--space-lg);
  margin-top: var(--space-lg);
  font-size: var(--type-small);
}

.sub-intro {
  max-width: var(--content-width-lg);
}

.sub-intro p {
  margin: 0;
  color: var(--color-primary);
  font-size: var(--type-body-lg);
  font-weight: var(--font-weight-semibold);
  line-height: 1.55;
}

.sub-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: var(--space-2xl);
  align-items: start;
}

.sub-label {
  margin: 0;
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--type-small);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.key-list,
.content-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--color-line);
}

.key-list li,
.content-list li {
  padding: var(--space-lg) 0;
  color: var(--color-primary);
  font-size: var(--type-h3);
  font-weight: var(--font-weight-semibold);
  border-bottom: 1px solid var(--color-line);
}

.numbered-list span,
.detail-process span {
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--type-caption);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
}

.detail-process {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--color-line);
}

.detail-process li {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-line);
}

.detail-process li::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: -7px;
  width: 1px;
  height: 14px;
  background: var(--color-accent-border-strong);
}

.detail-process li:last-child::after {
  display: none;
}

.detail-process strong {
  font-family: var(--font-en);
  font-size: var(--type-h4);
  line-height: 1.35;
}

.detail-process strong em {
  display: block;
  margin-bottom: var(--space-2xs);
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--type-h4);
  font-style: normal;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.expertise-copy h2,
.readiness-check h2 {
  margin: 0 0 var(--space-lg);
  color: var(--color-primary);
  font-size: var(--type-h2);
  line-height: 1.22;
}

.expertise-copy p,
.readiness-check p {
  max-width: var(--content-width-md);
  margin: 0;
  color: var(--color-muted);
  font-size: var(--type-body-lg);
  line-height: 1.85;
}

.expertise-copy p + p {
  margin-top: var(--space-md);
}

.expertise-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .business-valuation-page .expertise-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.expertise-card {
  min-height: 200px;
  background: var(--color-white);
  border: 1px solid var(--color-border-card);
}

.expertise-card:hover {
  border-color: var(--color-accent-line);
}

.expertise-card span {
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--type-caption);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
}

.expertise-card h3 {
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-primary);
  font-family: var(--font-en);
  font-size: var(--type-h3);
  line-height: 1.35;
}

.expertise-card-subtitle {
  display: block;
  margin: 0 0 var(--space-sm);
  color: var(--color-primary);
  font-size: var(--type-h4);
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
}

.expertise-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--type-body);
  line-height: 1.8;
}

.deliverable-list {
  border-top: 1px solid var(--color-line);
}

.valuation-section-heading {
  display: grid;
  align-content: start;
  gap: var(--space-sm);
}

.valuation-section-heading .sub-label {
  line-height: 1.6;
}

.service-section-heading {
  display: grid;
  align-content: start;
  gap: var(--space-sm);
}

.service-section-heading .service-section-heading__eyebrow {
  line-height: 1.6;
}

.expertise-page .service-section-heading__title {
  margin: 0;
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  word-break: keep-all;
}

.expertise-page .valuation-section-heading h2 {
  margin: 0;
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  word-break: keep-all;
}

.expertise-copy .valuation-section-lead {
  max-width: var(--content-width-md);
  margin: 0 0 var(--space-lg);
  color: var(--color-primary);
  font-size: var(--type-h2);
  font-weight: var(--font-weight-bold);
  line-height: 1.22;
}

.section.valuation-review-section {
  padding-bottom: 0;
}

.valuation-review-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
  border-top: 0;
}

.valuation-review-grid li {
  min-width: 0;
  height: 100%;
  padding: var(--space-lg);
  background: var(--card-background);
  border: 1px solid var(--card-border-subtle);
  border-radius: var(--card-radius);
}

.valuation-review-grid h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: var(--type-h4);
  line-height: 1.5;
}

.valuation-review-grid p {
  margin: var(--space-sm) 0 0;
  color: var(--color-muted);
  font-size: var(--type-small);
  font-weight: var(--font-weight-regular);
  line-height: 1.75;
}

.faq-list {
  border-top: 1px solid var(--color-line);
}

.faq-list article {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-line);
}

.faq-list h3 {
  margin: 0 0 var(--space-xs);
  color: var(--color-primary);
  font-size: var(--type-h3);
  line-height: 1.45;
}

.sell-side-page .faq-list h3,
.buy-side-page .faq-list h3,
.capital-advisory-page .faq-list h3,
.strategic-consulting-page .faq-list h3,
.business-valuation-page .faq-list h3 {
  font-size: 1.1875rem;
}

.faq-list p {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--type-body);
  line-height: 1.8;
}

.readiness-check {
  padding: var(--space-xl) 0 0;
}

.home-readiness-section .readiness-check {
  max-width: 760px;
}

.home-readiness-section .readiness-check p {
  max-width: 680px;
}

.readiness-actions {
  margin-top: var(--space-xl);
}

.home-diagnostics__head {
  max-width: var(--content-width-lg);
}

.home-diagnostics__lead {
  max-width: var(--content-width-md);
  margin: var(--space-xl) 0 0;
  color: var(--color-muted);
  font-size: var(--type-body-lg);
  line-height: 1.7;
}

.diagnostics-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: var(--grid-column-gap);
  align-items: stretch;
}

.diagnostic-card {
  display: flex;
  min-width: 0;
  padding: var(--component-card-padding);
  flex-direction: column;
  border: 1px solid var(--card-border-standard);
  border-radius: var(--component-card-radius);
  background: var(--card-background);
  transition:
    transform var(--component-interaction-duration) var(--motion-ease-standard),
    border-color var(--component-interaction-duration) var(--motion-ease-standard),
    box-shadow var(--component-interaction-duration) var(--motion-ease-standard);
}

.diagnostic-card:hover {
  border-color: var(--color-border-strong);
  transform: translateY(var(--motion-card-lift));
  box-shadow: var(--card-shadow-hover);
}

.diagnostic-card h3 {
  margin: 0 0 var(--space-md);
  color: var(--color-primary);
  font-size: var(--type-h3);
  line-height: 1.35;
}

.diagnostic-card__content > p {
  max-width: none;
  margin: 0;
  color: var(--color-muted);
  font-size: var(--type-body);
  line-height: 1.7;
}

.diagnostic-card__list {
  display: grid;
  gap: var(--space-sm);
  padding: var(--space-lg) 0 0;
  margin: var(--space-lg) 0 0;
  list-style: none;
  border-top: 1px solid var(--color-line);
}

.diagnostic-card__list li {
  position: relative;
  padding-left: var(--space-lg);
  color: var(--color-text-secondary-strong);
  font-size: var(--type-small);
  line-height: 1.6;
}

.diagnostic-card__list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: var(--space-2xs);
  width: var(--space-1);
  height: calc(var(--space-half) / 2);
  border-bottom: 2px solid var(--color-gold);
  border-left: 2px solid var(--color-gold);
  transform: rotate(-45deg);
}

.diagnostic-card__action {
  display: grid;
  gap: var(--space-md);
  align-items: start;
  margin-top: auto;
  padding-top: var(--space-xl);
}

.diagnostic-card__action .btn {
  width: fit-content;
}

.diagnostic-card--valuation .btn-secondary {
  color: var(--color-primary);
  background: transparent;
  border-color: var(--color-border-emphasis);
}

.diagnostic-card--valuation .btn-secondary:hover {
  color: var(--color-primary);
  background: var(--color-surface-muted);
  border-color: var(--color-primary);
}

.diagnostic-card__notice {
  max-width: none;
  margin: 0;
  color: var(--color-text-tertiary);
  font-size: var(--type-caption);
  line-height: 1.65;
}

#valuation-diagnostic {
  scroll-margin-top: calc(var(--header-height) + var(--space-lg));
}

@media (min-width: 768px) and (max-width: 1199px) {
  .diagnostics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-lg);
  }
}

@media (max-width: 767px) {
  .home-diagnostics__head {
    margin-bottom: var(--space-xl);
  }

  .home-diagnostics__lead {
    margin-top: var(--space-lg);
    font-size: var(--type-body);
  }

  .diagnostics-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
  }

  .diagnostic-card {
    padding: var(--component-card-padding-mobile);
  }

  .diagnostic-card__action {
    padding-top: var(--space-lg);
  }

  .diagnostic-card__action .btn {
    width: 100%;
  }
}

.readiness-modal {
  position: fixed;
  inset: 0;
  z-index: var(--modal-z);
  display: grid;
  place-items: center;
  padding: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--motion-duration-modal) var(--motion-ease-standard),
    visibility var(--motion-duration-modal) var(--motion-ease-standard);
}

.readiness-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.readiness-modal__backdrop {
  position: absolute;
  inset: 0;
  background: var(--modal-backdrop-primary);
  backdrop-filter: blur(8px);
}

.readiness-modal__dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(720px, calc(100vh - 48px));
  overflow-y: auto;
  padding: var(--space-2xl);
  background: var(--modal-background);
  border: 1px solid var(--modal-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: scale(var(--motion-modal-scale));
  transition:
    opacity var(--motion-duration-modal) var(--motion-ease-standard),
    transform var(--motion-duration-modal) var(--motion-ease-emphasized);
}

.readiness-modal.is-open .readiness-modal__dialog {
  opacity: 1;
  transform: scale(1);
}

.readiness-modal__close {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 0;
  color: var(--color-muted);
  background: transparent;
  border: 0;
  font-size: var(--type-small);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
}

.readiness-modal__close:hover {
  color: var(--color-gold);
}

.readiness-modal__close:focus-visible,
.readiness-option:focus-visible {
  outline: 1px solid var(--color-gold);
  outline-offset: 4px;
}

.readiness-modal__content h2 {
  margin: 0 0 var(--space-md);
  color: var(--color-primary);
  font-size: var(--type-h2);
  line-height: 1.2;
}

.readiness-modal__intro {
  max-width: var(--content-width-sm);
  margin: 0 0 var(--space-xl);
  color: var(--color-muted);
  font-size: var(--type-body-lg);
  line-height: 1.8;
}

.readiness-progress {
  margin: 0 0 var(--space-md);
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--type-small);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
}

.readiness-question h3 {
  margin: 0 0 var(--space-lg);
  color: var(--color-primary);
  font-size: var(--type-h3);
  line-height: 1.45;
}

.readiness-options {
  display: grid;
  gap: var(--space-sm);
}

.readiness-option {
  width: 100%;
  padding: var(--space-md) var(--space-md);
  color: var(--color-primary);
  background: var(--color-gray);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-lg);
  font-size: var(--type-h4);
  font-weight: var(--font-weight-semibold);
  text-align: left;
  cursor: pointer;
  transition:
    border-color var(--motion-duration-hover) var(--motion-ease-standard),
    color var(--motion-duration-hover) var(--motion-ease-standard),
    background var(--motion-duration-hover) var(--motion-ease-standard);
}

.readiness-option:hover {
  color: var(--color-gold);
  background: var(--color-white);
  border-color: var(--color-accent-border-strong);
}

.readiness-result__eyebrow {
  margin: 0 0 var(--space-sm);
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--type-caption);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
}

.readiness-result__stars {
  margin: 0 0 var(--space-xs);
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--type-h1);
  letter-spacing: 0.08em;
}

.readiness-result__status {
  margin: 0 0 var(--space-md);
  color: var(--color-primary);
  font-family: var(--font-en);
  font-size: var(--type-h1);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.06em;
}

.readiness-result h3 {
  margin: 0 0 var(--space-md);
  color: var(--color-primary);
  font-size: var(--type-h3);
  line-height: 1.35;
}

.readiness-result p {
  margin: 0 0 var(--space-lg);
  color: var(--color-muted);
  font-size: var(--type-body);
  line-height: 1.85;
}

.readiness-result__brand {
  padding: var(--space-md) 0 var(--space-2xs);
  color: var(--color-primary);
  font-size: var(--type-body);
  font-weight: var(--font-weight-semibold);
  line-height: 1.75;
}

.readiness-next {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.readiness-next h4 {
  margin: 0 0 var(--space-lg);
  color: var(--color-primary);
  font-family: var(--font-en);
  font-size: var(--type-h4);
  letter-spacing: 0.04em;
}

.readiness-next ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.readiness-next li {
  padding: var(--space-sm) 0;
  color: var(--color-primary);
  font-size: var(--type-body);
  font-weight: var(--font-weight-semibold);
  border-top: 1px solid var(--color-line);
}

.readiness-next li:last-child {
  border-bottom: 1px solid var(--color-line);
}

.readiness-modal-cta {
  margin-top: var(--space-lg);
}

.readiness-modal-cta h4 {
  margin: 0 0 var(--space-sm);
  color: var(--color-primary);
  font-size: var(--type-h4);
}

.readiness-modal-cta p {
  margin-bottom: var(--space-lg);
}

.readiness-modal-guide {
  color: var(--color-primary);
  font-size: var(--type-small);
  font-weight: var(--font-weight-semibold);
  line-height: 1.75;
}

.readiness-disclaimer {
  color: var(--color-muted);
  font-size: var(--type-small);
  line-height: 1.75;
}

.readiness-modal.is-open ~ .back-to-top {
  opacity: 0;
  visibility: hidden;
}

.valuation-modal__dialog {
  width: min(920px, 100%);
  max-height: min(840px, calc(100vh - 48px));
}

.valuation-public-badge,
.valuation-result-version {
  margin: 0 0 var(--space-sm);
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--type-small);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
}

.valuation-progress {
  margin-bottom: var(--space-xl);
}

.valuation-progress__meta {
  display: flex;
  gap: var(--space-md);
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--space-xs);
}

.valuation-progress__meta > p {
  margin: 0;
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--type-body);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
}

.valuation-required-guide {
  flex: 0 1 auto;
  color: var(--color-muted);
  text-align: right;
}

.valuation-progress__track {
  height: 2px;
  overflow: hidden;
  background: var(--color-border-card);
}

.valuation-progress__track > span {
  display: block;
  height: 100%;
  background: var(--color-gold);
  transition: width var(--motion-duration-hover) var(--motion-ease-standard);
}

.valuation-progress--result {
  margin-bottom: var(--space-lg);
}

.valuation-loading {
  display: grid;
  min-height: 340px;
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  place-items: center;
}

.valuation-loading__inner {
  width: min(100%, 520px);
}

.valuation-loading__brand {
  margin: 0;
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--type-small);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.valuation-loading__skeleton {
  display: grid;
  width: min(100%, var(--content-width-sm));
  margin: var(--space-xl) auto var(--space-lg);
  gap: var(--space-xs);
}

.valuation-loading__skeleton span,
.skeleton {
  position: relative;
  overflow: hidden;
  min-height: var(--space-sm);
  border-radius: var(--radius-sm);
  background: var(--visual-skeleton-base);
}

.valuation-loading__skeleton span::after,
.skeleton::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    var(--visual-skeleton-highlight),
    transparent
  );
  transform: translateX(-100%);
  animation: visual-skeleton-loading var(--component-visual-loading-duration) var(--motion-ease-standard) infinite;
}

.valuation-loading__skeleton span:nth-child(2) {
  width: 82%;
}

.valuation-loading__skeleton span:nth-child(3) {
  width: 64%;
}

.valuation-loading h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: var(--type-h3);
  line-height: 1.45;
}

.valuation-loading__inner > p:not(.valuation-loading__brand) {
  margin: var(--space-md) 0 0;
  color: var(--color-muted);
  font-size: var(--type-body);
  line-height: 1.75;
}

.valuation-loading small {
  display: block;
  margin-top: var(--space-xs);
  color: var(--color-muted);
  font-size: var(--type-caption);
}

@keyframes visual-skeleton-loading {
  100% {
    transform: translateX(100%);
  }
}

.valuation-step h3,
.valuation-result > h3 {
  margin: 0 0 var(--space-lg);
  color: var(--color-primary);
  font-size: var(--type-h3);
  line-height: 1.35;
}

.valuation-result > h3 {
  margin-bottom: var(--space-xs);
}

.valuation-result-intro {
  margin: 0 0 var(--space-lg);
  color: var(--color-muted);
  font-size: var(--type-body-lg);
  line-height: 1.7;
}

.valuation-result-brand {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-sm);
  align-items: baseline;
  margin-bottom: var(--space-sm);
}

.valuation-result-brand p {
  margin: 0;
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--type-body);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
}

.valuation-result-brand span {
  color: var(--color-muted);
  font-family: var(--font-en);
  font-size: var(--type-caption);
  letter-spacing: 0.06em;
}

.valuation-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}

.valuation-fields--single {
  grid-template-columns: 1fr;
}

.valuation-input-section + .valuation-input-section {
  margin-top: var(--space-xl);
}

.valuation-input-section > h4 {
  padding-bottom: var(--space-sm);
  margin: 0 0 var(--space-md);
  color: var(--color-primary);
  font-size: var(--type-h4);
  border-bottom: 1px solid var(--color-line);
}

.valuation-section-note {
  margin: calc(var(--space-2xs) * -1) 0 var(--space-sm);
  color: var(--color-muted);
  font-size: var(--type-small);
  line-height: 1.7;
}

.valuation-field {
  display: grid;
  gap: var(--space-xs);
}

.valuation-field > span,
.valuation-checkbox-group legend {
  color: var(--color-primary);
  font-size: var(--type-small);
  font-weight: var(--font-weight-bold);
}

.valuation-field small {
  margin-top: calc(var(--space-2xs) * -0.75);
  color: var(--color-muted);
  font-size: var(--type-caption);
  font-weight: var(--font-weight-regular);
  line-height: 1.55;
}

.valuation-field input,
.valuation-field select {
  width: 100%;
  min-height: 48px;
  padding: var(--space-sm) var(--space-sm);
  color: var(--color-primary);
  font: inherit;
  background: var(--color-white);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
}

.valuation-field input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.valuation-field input[type="number"]::-webkit-inner-spin-button,
.valuation-field input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.valuation-field input:focus,
.valuation-field select:focus,
.valuation-checkbox-group input:focus-visible,
.valuation-confirm input:focus-visible {
  outline: 1px solid var(--color-gold);
  outline-offset: 2px;
  border-color: var(--color-gold);
}

.valuation-year-group {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--color-line);
}

.valuation-year-group:last-child {
  border-bottom: 1px solid var(--color-line);
}

.valuation-year-group h5 {
  margin: 0 0 var(--space-sm);
  color: var(--color-primary);
  font-size: var(--type-h4);
}

.valuation-year-note {
  max-width: 700px;
  margin: var(--space-sm) 0 0;
  color: var(--color-muted);
  font-size: var(--type-small);
  line-height: 1.7;
}

.valuation-field-note {
  margin: var(--space-md) 0 0;
  color: var(--color-muted);
  font-size: var(--type-small);
  line-height: 1.7;
}

.valuation-checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  border: 0;
  border-top: 1px solid var(--color-line);
}

.valuation-checkbox-group legend {
  width: 100%;
  padding: 0 0 var(--space-md);
}

.valuation-checkbox-group legend span,
.valuation-checkbox-group legend small {
  display: block;
}

.valuation-checkbox-group legend small {
  max-width: var(--content-width-md);
  margin-top: var(--space-xs);
  color: var(--color-muted);
  font-size: var(--type-caption);
  font-weight: var(--font-weight-regular);
  line-height: 1.7;
}

.valuation-checkbox-group label {
  display: flex;
  gap: var(--space-xs);
  align-items: flex-start;
  padding: var(--space-md) var(--space-sm) var(--space-md) 0;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-line);
}

.valuation-checkbox-group input,
.valuation-confirm input {
  width: 17px;
  height: 17px;
  margin-top: calc(var(--space-2xs) * 0.75);
  accent-color: var(--color-gold);
}

.valuation-confirm {
  display: flex;
  gap: var(--space-xs);
  align-items: flex-start;
  margin-top: var(--space-lg);
  padding: var(--space-md);
  color: var(--color-primary);
  background: var(--color-gray);
  border-left: 2px solid var(--color-gold);
  font-size: var(--type-body);
  line-height: 1.7;
}

.valuation-error {
  min-height: 22px;
  margin: var(--space-md) 0 0;
  color: var(--color-error);
  font-size: var(--type-small);
  font-weight: var(--font-weight-semibold);
}

.valuation-form-actions,
.valuation-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: flex-end;
  margin-top: var(--space-lg);
}

.valuation-form-actions--with-prev {
  align-items: center;
  justify-content: space-between;
}

.valuation-prev-button {
  min-width: calc(var(--space-10) + var(--space-2));
  color: var(--color-primary);
  background: var(--color-surface);
  border-color: var(--color-border);
}

.valuation-prev-button:hover {
  color: var(--color-primary);
  background: var(--color-surface-muted);
  border-color: var(--color-primary);
}

.valuation-range {
  padding: var(--space-lg);
  margin-bottom: 0;
  color: var(--color-white);
  background: var(--color-primary);
}

.valuation-range p {
  margin: 0 0 var(--space-xs);
  color: var(--color-on-primary-secondary);
  font-size: var(--type-body);
}

.valuation-range strong,
.valuation-range span {
  display: block;
}

.valuation-range strong {
  font-size: var(--type-h2);
  line-height: 1.25;
}

.valuation-range span {
  margin-top: var(--space-sm);
  color: var(--color-on-primary-body);
  font-size: var(--type-caption);
}

.valuation-range__model {
  padding-top: var(--space-md);
  margin-top: var(--space-md);
  border-top: 1px solid var(--color-on-primary-hairline);
}

.valuation-range__model small,
.valuation-range__model b,
.valuation-range__model-description,
.valuation-range__model em {
  display: block;
}

.valuation-range__model small {
  color: var(--color-on-primary-subtle);
  font-size: var(--type-caption);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
}

.valuation-range__model b {
  margin-top: var(--space-2xs);
  font-family: var(--font-en);
  font-size: var(--type-h4);
}

.valuation-range .valuation-range__model-description {
  margin-top: calc(var(--space-2xs) * 0.75);
  color: var(--color-on-primary-strong);
  font-size: var(--type-body-lg);
  font-weight: var(--font-weight-semibold);
}

.valuation-range__model em {
  margin-top: var(--space-2xs);
  color: var(--color-on-primary-muted);
  font-size: var(--type-caption);
  font-style: normal;
}

.valuation-range--review strong {
  font-size: var(--type-h4);
}

.valuation-result-note {
  max-width: var(--content-width-md);
  margin: var(--space-sm) var(--space-2xs) 0;
  color: var(--color-muted);
  font-size: var(--type-small);
  line-height: 1.75;
}

.valuation-value-bridge {
  display: grid;
  grid-template-columns: minmax(30px, 1fr) auto minmax(30px, 1fr);
  gap: var(--space-sm);
  align-items: center;
  margin: var(--space-xl) 0 var(--space-md);
  color: var(--color-muted);
  text-align: center;
}

.valuation-value-bridge > span {
  height: 1px;
  background: var(--color-accent-border);
}

.valuation-value-bridge p {
  margin: 0;
  color: var(--color-primary);
  font-size: var(--type-body);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.01em;
}

.valuation-value-bridge b {
  grid-column: 1 / -1;
  margin-top: calc(var(--space-2xs) / -2);
  color: var(--color-gold);
  font-size: var(--type-h4);
  font-weight: var(--font-weight-regular);
  line-height: 1;
}

.valuation-value-bridge small {
  grid-column: 1 / -1;
  max-width: var(--content-width-sm);
  margin: calc(var(--space-2xs) / -2) auto 0;
  color: var(--color-muted);
  font-size: var(--type-caption);
  line-height: 1.65;
}

.valuation-equity-card {
  padding: var(--space-lg) var(--space-lg);
  margin-top: 0;
  background: var(--color-white);
  border: 1px solid var(--color-line);
}

.valuation-equity-card__header {
  display: flex;
  gap: var(--space-xs);
  align-items: center;
  margin-bottom: var(--space-sm);
}

.valuation-equity-card__header h4 {
  margin: 0;
  color: var(--color-primary);
  font-size: var(--type-h4);
}

.valuation-equity-card__value,
.valuation-equity-card__review {
  display: block;
  color: var(--color-primary);
  font-size: var(--type-h1);
  line-height: 1.3;
}

.valuation-equity-card__review {
  font-size: var(--type-h2);
}

.valuation-equity-card > p {
  margin: var(--space-sm) 0 0;
  color: var(--color-muted);
  font-size: var(--type-body);
  line-height: 1.75;
}

.valuation-tooltip {
  position: relative;
  display: inline-flex;
}

.valuation-tooltip__trigger {
  display: inline-grid;
  width: 20px;
  height: 20px;
  padding: 0;
  color: var(--color-primary);
  font-family: var(--font-en);
  font-size: var(--type-small);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  cursor: pointer;
  background: var(--color-white);
  border: 1px solid var(--color-border-emphasis);
  border-radius: 50%;
  place-items: center;
}

.valuation-tooltip__trigger:hover,
.valuation-tooltip__trigger:focus-visible {
  color: var(--color-gold);
  border-color: var(--color-gold);
  outline: none;
}

.valuation-tooltip__content {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  z-index: var(--tooltip-z);
  width: min(330px, 76vw);
  padding: var(--space-md);
  color: var(--color-muted);
  visibility: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity var(--motion-duration-hover) var(--motion-ease-standard),
    transform var(--motion-duration-hover) var(--motion-ease-standard),
    visibility var(--motion-duration-hover) var(--motion-ease-standard);
}

.valuation-tooltip__content strong,
.valuation-tooltip__content span {
  display: block;
}

.valuation-tooltip__content strong {
  margin-bottom: var(--space-xs);
  color: var(--color-primary);
  font-size: var(--type-h4);
}

.valuation-tooltip__content span {
  font-size: var(--type-caption);
  line-height: 1.7;
}

.valuation-tooltip__content span + span {
  margin-top: var(--space-xs);
}

.valuation-tooltip:hover .valuation-tooltip__content,
.valuation-tooltip.is-open .valuation-tooltip__content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.valuation-confidence {
  padding: var(--space-lg);
  margin-top: var(--space-xl);
  background: var(--color-white);
  border: 1px solid var(--color-line);
}

.valuation-confidence__header {
  display: flex;
  gap: var(--space-xs);
  align-items: center;
}

.valuation-confidence__header h4 {
  margin: 0;
  color: var(--color-primary);
  font-size: var(--type-h4);
}

.valuation-confidence__summary {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  margin-top: var(--space-md);
}

.valuation-confidence__stars {
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--type-h2);
  letter-spacing: 0.05em;
  line-height: 1;
}

.valuation-confidence__summary strong {
  color: var(--color-primary);
  font-size: var(--type-h4);
}

.valuation-confidence > p {
  max-width: 700px;
  margin: var(--space-md) 0 0;
  color: var(--color-muted);
  font-size: var(--type-body);
  line-height: 1.8;
}

.valuation-confidence small {
  display: block;
  max-width: 700px;
  margin-top: var(--space-sm);
  color: var(--color-muted);
  font-size: var(--type-caption);
  line-height: 1.7;
}

.valuation-factor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
}

.valuation-factor-grid h4 {
  margin: 0 0 var(--space-sm);
  color: var(--color-primary);
  font-size: var(--type-h4);
}

.valuation-insight {
  padding: var(--space-lg);
  color: var(--color-primary);
  background: var(--color-gray);
  border-left: 2px solid var(--color-gold);
}

.valuation-insight span {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--type-caption);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
}

.valuation-insight h4,
.valuation-consultation h4 {
  margin: 0;
  color: var(--color-primary);
  font-size: var(--type-h4);
}

.valuation-insight p,
.valuation-consultation p {
  margin: var(--space-sm) 0 0;
  color: var(--color-muted);
  font-size: var(--type-body);
  line-height: 1.8;
}

.valuation-factor-grid ul {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--color-line);
}

.valuation-factor-grid li {
  padding: var(--space-sm) 0;
  color: var(--color-muted);
  font-size: var(--type-body);
  border-bottom: 1px solid var(--color-line);
}

.valuation-public-notice {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
}

.valuation-public-notice strong {
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--type-small);
  letter-spacing: 0.08em;
}

.valuation-public-notice p {
  margin: var(--space-xs) 0 0;
  color: var(--color-muted);
  font-size: var(--type-caption);
  line-height: 1.7;
}

.valuation-consultation {
  padding-top: var(--space-lg);
  margin-top: var(--space-md);
  border-top: 1px solid var(--color-line);
}

.valuation-consultation .valuation-result-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  justify-content: stretch;
}

.valuation-consultation .valuation-result-actions .btn-secondary {
  justify-self: start;
}

.valuation-consultation .valuation-result-actions .btn-primary {
  grid-column: 2;
  min-width: calc(var(--space-16) * 2);
  height: var(--space-7);
  min-height: var(--space-7);
  justify-self: center;
}

.valuation-result-actions .btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

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

.sub-cta {
  color: var(--color-white);
  background: var(--color-primary);
}

.sub-cta h2 {
  max-width: 760px;
  margin: 0 0 var(--space-md);
  color: var(--color-white);
  font-size: var(--type-cta-title);
  line-height: 1.3;
}

.sub-cta-copy {
  max-width: var(--content-width-sm);
  margin: 0 0 var(--space-lg);
  color: var(--color-on-primary-body);
  font-size: var(--type-cta-body);
  font-weight: var(--font-weight-medium);
  line-height: 1.8;
}

.about-hero {
  background: linear-gradient(180deg, var(--color-white), var(--color-gray));
}

.about-page .about-hero {
  padding-bottom: var(--space-2xl);
}

.about-hero h1 {
  max-width: var(--content-width-xl);
  font-size: var(--type-h1);
  line-height: 1.22;
}

.about-hero .about-hero-copy {
  max-width: var(--content-width-sm);
  margin-top: var(--space-lg);
  color: var(--color-muted);
  font-family: var(--font-ko);
  font-size: var(--type-body-lg);
  font-weight: var(--font-weight-medium);
  line-height: 1.85;
  letter-spacing: 0;
}

.about-copy h2 {
  margin: 0 0 var(--space-xl);
  color: var(--color-primary);
  font-size: var(--type-h2);
  line-height: 1.22;
}

.about-copy p {
  max-width: var(--content-width-md);
  margin: 0;
  color: var(--color-muted);
  font-size: var(--type-body-lg);
  line-height: 1.8;
}

.about-copy p + p {
  margin-top: var(--space-md);
}

.equiv-mark-story {
  max-width: 760px;
  display: grid;
  grid-template-columns: 128px 1px minmax(0, 1fr);
  align-items: center;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
  margin-top: var(--space-2xl);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.equiv-mark-story__visual {
  display: grid;
  place-items: center;
}

.equiv-mark-story__visual img {
  width: 104px;
  height: 104px;
  display: block;
  object-fit: contain;
}

.equiv-mark-story__divider {
  width: 1px;
  height: 100%;
  min-height: 190px;
  display: block;
  background: var(--color-line);
}

.equiv-mark-story .equiv-mark-story__label {
  margin: 0 0 var(--space-md);
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--type-caption);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.equiv-mark-story p {
  color: var(--color-primary);
  font-size: var(--type-body);
  line-height: 1.85;
}

.equiv-mark-story__copy p + p {
  margin-top: var(--space-md);
}

.about-page .sub-label {
  letter-spacing: 0.04em;
}

.why-equiv-head {
  max-width: var(--content-width-lg);
}

.why-equiv-head h2 {
  margin: 0 0 var(--space-lg);
  color: var(--color-primary);
  font-size: var(--type-h2);
  line-height: 1.22;
}

.why-equiv-copy {
  max-width: var(--content-width-md);
}

.why-equiv-copy p {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--type-body-lg);
  line-height: 1.8;
  word-break: keep-all;
}

.why-equiv-copy p + p {
  margin-top: var(--space-md);
}

.why-equiv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.why-equiv-item {
  min-width: 0;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-line);
}

.why-equiv-item > .icon {
  margin-bottom: var(--space-lg);
  color: var(--color-gold);
}

.why-equiv-item h3 {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-en);
  font-size: var(--type-h3);
  font-weight: var(--font-weight-semibold);
  line-height: 1.35;
  word-break: keep-all;
}

.why-equiv-item p {
  margin: var(--space-sm) 0 0;
  color: var(--color-muted);
  font-size: var(--type-body);
  line-height: 1.7;
  word-break: keep-all;
}

.about-section-head {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: var(--space-2xl);
  align-items: start;
  margin-bottom: var(--space-2xl);
}

.about-section-head h2 {
  margin: 0;
  color: var(--color-primary);
  font-size: var(--type-h2);
  line-height: 1.22;
}

.about-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.about-flow li {
  position: relative;
  min-height: 200px;
  padding: var(--space-lg) var(--space-lg) var(--space-xl);
  border-right: 1px solid var(--color-line);
}

.about-flow li:last-child {
  border-right: 0;
}

.about-flow span {
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--type-caption);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
}

.about-flow h3 {
  margin: var(--space-xl) 0 0;
  color: var(--color-primary);
  font-size: var(--type-h3);
  line-height: 1.35;
}

.about-flow p {
  margin: var(--space-sm) 0 0;
  color: var(--color-muted);
  font-size: var(--type-body);
  line-height: 1.75;
}

.about-cta {
  padding: var(--space-2xl) 0;
}

.about-cta h2 {
  max-width: var(--content-width-lg);
  margin-bottom: var(--space-lg);
}

.final-cta {
  color: var(--color-white);
  background: var(--color-primary);
}

.final-cta h2 {
  max-width: var(--content-width-lg);
  margin: 0 0 var(--space-md);
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: var(--type-cta-title);
  line-height: 1.05;
}

.final-cta p:not(.section-kicker):not(.cta-response-note) {
  margin: 0;
  color: var(--color-on-primary-overlay);
  font-size: var(--type-cta-body);
  line-height: 1.8;
}

.final-cta .btn,
.sub-cta .btn {
  min-width: 264px;
  min-height: 52px;
  margin-top: 0;
  padding-inline: var(--space-lg);
  font-size: var(--type-body);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: var(--space-2xl);
  align-items: center;
}

.contact-main {
  min-width: 0;
}

.contact-primary-action {
  max-width: 360px;
  min-width: 0;
  margin-top: var(--space-lg);
}

.final-cta .cta-response-note {
  margin: var(--space-md) 0 0;
  color: var(--color-on-primary-low);
  font-size: var(--type-small);
  line-height: 1.7;
}

.contact-trust-panel {
  width: 100%;
  max-width: 600px;
  min-width: 0;
  justify-self: end;
}

.contact-trust-panel h3 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: var(--type-h4);
  font-weight: var(--font-weight-semibold);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.contact-trust-list {
  display: grid;
  gap: var(--space-sm);
  padding: 0;
  margin: var(--space-lg) 0 0;
  list-style: none;
}

.contact-trust-list.contact-trust-list--mobile,
.contact-trust-copy--mobile {
  display: none;
}

.contact-trust-list li {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  color: var(--color-on-primary-soft);
  font-size: var(--type-small);
  line-height: 1.7;
}

.contact-trust-list .icon {
  margin-top: calc(var(--space-2xs) / 2);
  color: var(--color-gold);
}

.final-cta .contact-trust-panel .contact-trust-note {
  margin: var(--space-lg) 0 0;
  color: var(--color-on-primary-low);
  font-size: var(--type-caption);
  line-height: 1.75;
}

.contact-trust-panel .confidential-notice {
  margin-top: var(--space-xl);
}

.confidential-notice {
  max-width: 600px;
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  margin: 0;
  color: var(--color-on-primary-border);
  text-align: left;
}

.confidential-notice svg {
  width: var(--component-icon-size-md);
  height: var(--component-icon-size-md);
  flex: 0 0 auto;
  margin-top: calc(var(--space-2xs) / 2);
  color: var(--color-gold);
  stroke: var(--visual-icon-color);
  stroke-width: var(--component-icon-stroke-width);
  stroke-linecap: var(--component-icon-linecap);
  stroke-linejoin: var(--component-icon-linejoin);
  fill: none;
}

.confidential-notice strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: var(--type-h4);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
}

.confidential-notice p {
  margin: 0;
  color: var(--color-on-primary-soft);
  font-size: var(--type-body);
  line-height: 1.82;
}

.final-cta .contact-trust-panel .confidential-notice p {
  font-size: var(--type-small);
  line-height: 1.8;
}

/* Contact & Consultation Page */

/* Shared Consultation Modal */
.consultation-modal {
  position: fixed;
  inset: 0;
  z-index: var(--modal-z);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  visibility: hidden;
  opacity: 0;
  transition:
    opacity var(--motion-duration-modal) var(--motion-ease-standard),
    visibility var(--motion-duration-modal) var(--motion-ease-standard);
}

.consultation-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.consultation-modal__overlay {
  position: absolute;
  inset: 0;
  background: var(--modal-backdrop);
  backdrop-filter: blur(3px);
}

.consultation-modal__dialog {
  position: relative;
  z-index: var(--modal-content-z);
  width: min(100%, 860px);
  max-height: min(900px, calc(100dvh - 56px));
  overflow-y: auto;
  color: var(--color-text);
  background: var(--modal-background);
  border: 1px solid var(--color-on-primary-divider);
  border-radius: var(--modal-radius);
  box-shadow: var(--modal-shadow);
  opacity: 0;
  transform: scale(var(--motion-modal-scale));
  transition:
    opacity var(--motion-duration-modal) var(--motion-ease-standard),
    transform var(--motion-duration-modal) var(--motion-ease-emphasized);
}

.consultation-modal.is-open .consultation-modal__dialog {
  opacity: 1;
  transform: scale(1);
}

.consultation-modal.is-open .consultation-modal__dialog.is-state-switching {
  transition-duration: var(--motion-duration-click);
}

.consultation-modal.is-open .consultation-modal__dialog.is-state-transitioning {
  opacity: 0;
  transform: scale(0.99);
}

.consultation-modal__close {
  position: absolute;
  top: 20px;
  right: 22px;
  z-index: var(--modal-control-z);
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--color-on-primary-control);
  background: transparent;
  border: 1px solid var(--color-on-primary-control-border);
  border-radius: 50%;
  cursor: pointer;
}

.consultation-modal__close span {
  margin-top: calc(var(--space-2xs) / -2);
  font-size: var(--type-caption);
  font-weight: var(--font-weight-light);
  line-height: 1;
}

.consultation-modal__close:hover,
.consultation-modal__close:focus-visible {
  color: var(--color-white);
  border-color: var(--color-on-primary-border);
}

.consultation-modal__close:focus-visible {
  outline: 1px solid var(--color-gold);
  outline-offset: 3px;
}

.consultation-modal__header {
  padding: var(--space-xl) var(--space-2xl) var(--space-xl);
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.consultation-modal__brand {
  gap: var(--space-2xs);
  margin-bottom: var(--space-md);
  color: var(--color-white);
}

.consultation-modal__brand .equiv-logo-mark {
  width: 25px;
  height: 25px;
}

.consultation-modal__brand .equiv-logo-divider {
  height: 21px;
}

.consultation-modal__brand .equiv-logo-wordmark {
  font-size: var(--type-h3);
  font-weight: var(--font-weight-semibold);
  font-kerning: normal;
  font-feature-settings: "kern" 1;
  letter-spacing: 0.1em;
}

.consultation-modal__header--success .consultation-modal__success-copy {
  max-width: var(--content-width-sm);
  margin: 0 auto;
  text-align: center;
}

.consultation-modal__header--success .consultation-modal__success-copy > p {
  margin: var(--space-md) 0 0;
}

.consultation-modal__header--success .consultation-modal__success-copy h2 {
  padding-right: 0;
}

.consultation-modal__header--success .consultation-modal__success-copy p span {
  display: block;
  text-align: center;
}

.consultation-modal__header .section-kicker {
  margin-bottom: var(--space-xs);
}

.consultation-modal__header h2 {
  margin: 0;
  color: var(--color-white);
  font-size: var(--type-h2);
  line-height: 1.25;
}

.required-field-guide {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--type-caption);
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
}

.required-field-guide b {
  color: var(--color-gold);
  font-weight: var(--font-weight-bold);
}

.consultation-modal__heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-xl);
  align-items: end;
}

.consultation-modal__heading-copy {
  min-width: 0;
}

.consultation-modal__heading-copy > p {
  margin: var(--space-md) 0 0;
  color: var(--color-on-primary-strong);
  font-size: var(--type-body);
  line-height: 1.65;
}

.consultation-modal__required-guide {
  padding-bottom: calc(var(--space-2xs) / 2);
  color: var(--color-on-primary-caption);
  white-space: nowrap;
}

.consultation-modal__header > p:last-child {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-end;
  justify-content: space-between;
  margin: var(--space-md) 0 0;
}

.consultation-modal__header strong {
  color: var(--color-on-primary-strong);
  font-size: var(--type-h4);
  font-weight: var(--font-weight-medium);
  line-height: 1.6;
}

.consultation-modal__header p span {
  color: var(--color-on-primary-caption);
  font-size: var(--type-body);
  line-height: 1.65;
  text-align: right;
}

.consultation-modal__header[hidden] {
  display: none;
}

.consultation-modal__header-trust b {
  display: block;
  margin-bottom: var(--space-2xs);
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--type-caption);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.12em;
}

.consultation-modal__body {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
}

.consultation-modal__guide {
  padding: var(--component-modal-padding);
  background: var(--color-gray);
  border-right: 1px solid var(--color-line);
}

.consultation-modal__guide h4 {
  margin: 0;
  color: var(--color-primary);
}

.consultation-modal__guide h4 {
  margin-bottom: var(--space-sm);
  font-size: var(--type-h4);
  font-weight: var(--font-weight-semibold);
}

.consultation-modal__guide ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.consultation-modal__guide ol {
  display: grid;
  gap: var(--space-xs);
}

.consultation-modal__guide ol li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: var(--space-xs);
  align-items: center;
  color: var(--color-muted);
  font-size: var(--type-small);
}

.consultation-modal__guide ol span {
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--type-caption);
  font-weight: var(--font-weight-bold);
}

.consultation-modal__confidential {
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
  border-top: 1px solid var(--color-line);
}

.consultation-modal__confidential p {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--type-body);
  line-height: 1.7;
}

.consultation-modal__form {
  display: grid;
  gap: var(--space-lg);
  padding: var(--space-xl) var(--space-2xl) var(--space-xl);
}

.consultation-modal__field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md) var(--space-md);
}

.consultation-modal__field label,
.consultation-modal__types legend {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-primary);
  font-size: var(--type-small);
  font-weight: var(--font-weight-semibold);
}

.consultation-modal__field label span,
.consultation-modal__types legend span {
  color: var(--color-gold);
}

.consultation-modal__field input,
.consultation-modal__field textarea {
  width: 100%;
  color: var(--color-primary);
  background: var(--form-control-background);
  border: 1px solid var(--form-control-border);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: var(--type-body-lg);
  outline: none;
  transition:
    border-color var(--motion-duration-hover) var(--motion-ease-standard),
    box-shadow var(--motion-duration-hover) var(--motion-ease-standard);
}

.consultation-modal__field input {
  min-height: 44px;
  padding: 0 var(--space-sm);
}

.consultation-modal__field textarea {
  min-height: 88px;
  padding: var(--space-sm) var(--space-sm);
  line-height: 1.6;
  resize: vertical;
}

.consultation-modal__field input:focus,
.consultation-modal__field textarea:focus {
  border-color: var(--form-control-border-focus);
  box-shadow: var(--form-control-focus-shadow);
}

.consultation-modal__field input[aria-invalid="true"] {
  border-color: var(--color-error);
}

.consultation-modal__error {
  margin: var(--space-2xs) 0 0;
  color: var(--color-error);
  font-size: var(--type-caption);
  font-weight: var(--font-weight-semibold);
  line-height: 1.5;
}

.consultation-modal__error[hidden] {
  display: none;
}

.consultation-modal__types {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.consultation-modal__types > div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-2xs);
}

.consultation-modal__types label {
  position: relative;
  cursor: pointer;
}

.consultation-modal__types input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.consultation-modal__types label span {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xs);
  color: var(--color-muted);
  border: 1px solid var(--form-control-border);
  border-radius: var(--radius-sm);
  font-size: var(--type-small);
  text-align: center;
}

.consultation-modal__type-copy {
  margin: var(--space-xs) 0 0;
  color: var(--color-muted);
  font-size: var(--type-small);
  line-height: 1.6;
}

.consultation-modal__types input:checked + span {
  color: var(--color-primary);
  background: var(--color-accent-surface);
  border-color: var(--color-gold);
}

.consultation-modal__types input:focus-visible + span {
  outline: 1px solid var(--color-gold);
  outline-offset: 2px;
}

.consultation-modal__types input[aria-invalid="true"] + span {
  border-color: var(--color-error);
}

.consultation-modal__privacy {
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.consultation-modal__privacy-row {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
}

.consultation-modal__privacy-row > label {
  display: flex;
  gap: var(--space-xs);
  align-items: flex-start;
  color: var(--color-primary);
  font-size: var(--type-caption);
  line-height: 1.5;
  cursor: pointer;
}

.consultation-modal__privacy-row input {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  margin: calc(var(--space-2xs) / 4) 0 0;
  accent-color: var(--color-gold);
}

.consultation-modal__privacy-row input[aria-invalid="true"] {
  outline: 1px solid var(--color-error);
  outline-offset: 2px;
}

.consultation-modal__privacy-row b {
  color: var(--color-gold);
}

.consultation-modal__privacy-row button {
  flex: 0 0 auto;
  padding: calc(var(--space-2xs) / 2) 0;
  color: var(--color-muted);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-size: var(--type-small);
  cursor: pointer;
}

.consultation-modal__privacy-details {
  padding: var(--space-md);
  margin-bottom: var(--space-sm);
  color: var(--color-muted);
  background: var(--color-gray);
  font-size: var(--type-caption);
  line-height: 1.6;
}

.consultation-modal__privacy-details h3 {
  margin: 0 0 var(--space-sm);
  color: var(--color-primary);
  font-size: var(--type-h3);
}

.consultation-modal__privacy-details dl,
.consultation-modal__privacy-details p {
  margin: 0;
}

.consultation-modal__privacy-details dl > div {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-xs);
}

.consultation-modal__privacy-details dl > div + div,
.consultation-modal__privacy-details p + p {
  margin-top: var(--space-2xs);
}

.consultation-modal__privacy-details dt {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
}

.consultation-modal__privacy-details dd {
  margin: 0;
}

.consultation-modal__privacy-details p:first-of-type {
  margin-top: var(--space-sm);
}

.consultation-modal__submit {
  width: 100%;
  min-height: 50px;
}

.consultation-modal__static-notice {
  margin: calc(var(--space-xs) * -1) 0 0;
  color: var(--color-text-tertiary);
  font-size: var(--type-caption);
  line-height: 1.55;
  text-align: center;
}

.consultation-modal__success {
  min-height: 0;
  padding: var(--space-2xl) var(--space-2xl);
  text-align: center;
  outline: none;
}

.consultation-modal__success-icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold);
  border-radius: 50%;
  opacity: 0;
  transform: scale(var(--motion-modal-scale));
}

.consultation-modal__success:not([hidden]) .consultation-modal__success-icon {
  animation: consultation-success-in var(--motion-duration-modal) var(--motion-ease-emphasized) forwards;
}

.consultation-modal__success-icon svg {
  width: var(--component-icon-size-lg);
  height: var(--component-icon-size-lg);
  fill: none;
  stroke: var(--visual-icon-color);
  stroke-width: var(--component-icon-stroke-width);
  stroke-linecap: var(--component-icon-linecap);
  stroke-linejoin: var(--component-icon-linejoin);
}

/* Shared visual primitives */
.icon {
  width: var(--component-icon-size-md);
  height: var(--component-icon-size-md);
  flex: 0 0 auto;
  color: inherit;
  fill: none;
  stroke: var(--visual-icon-color);
  stroke-width: var(--component-icon-stroke-width);
  stroke-linecap: var(--component-icon-linecap);
  stroke-linejoin: var(--component-icon-linejoin);
}

.icon--sm {
  width: var(--component-icon-size-sm);
  height: var(--component-icon-size-sm);
}

.icon--lg {
  width: var(--component-icon-size-lg);
  height: var(--component-icon-size-lg);
}

.empty-state {
  display: grid;
  justify-items: start;
  gap: var(--space-md);
  padding: var(--component-card-padding);
  color: var(--color-text-secondary);
  border: 1px solid var(--visual-divider-color);
  background: var(--background-default);
}

@keyframes consultation-success-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.consultation-modal__success[hidden],
.consultation-modal__body[hidden],
.consultation-modal__privacy-details[hidden] {
  display: none;
}

.consultation-modal__success h2 {
  margin: 0 0 var(--space-lg);
  color: var(--color-primary);
  font-size: var(--type-h2);
}

.consultation-modal__success > p:not(.section-kicker):not(.consultation-modal__static-notice) {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--type-body);
  line-height: 1.8;
}

.consultation-modal__success > p.consultation-modal__success-message {
  margin-bottom: var(--space-lg);
}

.consultation-modal__success > p + p:not(.consultation-modal__static-notice) {
  margin-top: var(--space-md);
}

.consultation-modal__success .consultation-modal__static-notice {
  margin: var(--space-lg) 0 var(--space-lg);
}

.consultation-modal__success .btn {
  min-width: 180px;
  transition:
    color var(--motion-duration-hover) var(--motion-ease-standard),
    background-color var(--motion-duration-hover) var(--motion-ease-standard),
    border-color var(--motion-duration-hover) var(--motion-ease-standard),
    transform var(--motion-duration-hover) var(--motion-ease-emphasized),
    box-shadow var(--motion-duration-hover) var(--motion-ease-standard);
}

.site-footer {
  color: var(--color-on-primary-overlay);
  background: var(--color-primary-strong);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: var(--space-2xl);
  text-align: left;
}

.footer-brand {
  color: var(--color-white);
}

.footer-brand .equiv-logo {
  gap: var(--space-sm);
}

.footer-brand .equiv-logo-mark {
  width: 36px;
  height: 36px;
}

.footer-brand .equiv-logo-divider {
  height: 30px;
}

.footer-brand .equiv-logo-wordmark {
  font-size: var(--type-h3);
  letter-spacing: var(--component-header-wordmark-tracking);
}

.site-footer p {
  margin: 0;
}

.back-to-top {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: var(--floating-action-z);
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: var(--color-white);
  border: 1px solid var(--color-border-emphasis);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  font-family: var(--font-en);
  font-size: var(--type-small);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity var(--motion-duration-fade) var(--motion-ease-standard),
    visibility var(--motion-duration-fade) var(--motion-ease-standard),
    transform var(--motion-duration-fade) var(--motion-ease-standard),
    border-color var(--motion-duration-hover) var(--motion-ease-standard),
    color var(--motion-duration-hover) var(--motion-ease-standard);
  cursor: pointer;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  color: var(--color-gold);
  border-color: var(--color-accent-border-emphasis);
}

.back-to-top:focus-visible {
  outline: 1px solid var(--color-gold);
  outline-offset: 5px;
}

.footer-entity {
  margin-top: var(--space-lg) !important;
  color: var(--color-on-primary-subtle);
  font-size: var(--type-caption);
  line-height: 1.75;
}

.footer-entity span {
  color: var(--color-on-primary-disabled);
  font-family: var(--font-en);
  font-size: var(--type-caption);
  letter-spacing: 0.08em;
}

.footer-copyright {
  margin-top: var(--space-xl) !important;
  color: var(--color-on-primary-disabled-strong);
  font-family: var(--font-en);
  font-size: var(--type-caption);
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.footer-sitemap {
  min-width: 220px;
  justify-self: end;
}

.footer-sitemap-title {
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: var(--type-caption);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-sitemap ul {
  display: grid;
  gap: var(--space-sm);
  padding: 0;
  margin: var(--space-lg) 0 0;
  list-style: none;
}

.footer-sitemap a {
  color: var(--color-on-primary-body);
  font-family: var(--font-en);
  font-size: var(--type-small);
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  transition: color var(--motion-duration-hover) var(--motion-ease-standard);
}

.footer-sitemap a:hover {
  color: var(--color-white);
}

.footer-sitemap a:focus-visible {
  outline: 1px solid var(--color-gold);
  outline-offset: 5px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(var(--motion-distance-reveal));
  transition:
    opacity var(--motion-duration-reveal) var(--motion-ease-emphasized),
    transform var(--motion-duration-reveal) var(--motion-ease-emphasized);
  transition-delay: calc(var(--motion-order, 0) * var(--motion-delay-step));
}

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

/* EQUIV Design System: shared component, grid and spacing rules */
.section,
.expertise-quote-section {
  padding-block: var(--component-section-padding);
}

.hero + .section,
.sub-hero + .section,
.sub-hero + .insight-article,
.valuation-public-hero + .section {
  padding-top: var(--section-space-first);
}

.about-intro-section,
.why-equiv-section,
.about-process-section,
.insight-article,
.consultation-section {
  padding-block: var(--component-section-padding-md);
}

.sub-cta,
.final-cta {
  padding-top: var(--component-section-padding-sm);
  padding-bottom: var(--section-space-footer);
}

.site-footer {
  padding-block: var(--component-footer-padding);
}

.principle-card,
.expertise-card {
  padding: var(--component-card-padding);
}

.service-card,
.insight-card {
  padding: var(--component-card-padding-compact);
}

.principle-card,
.service-card,
.insight-card,
.expertise-card {
  height: 100%;
  border-radius: var(--component-card-radius);
  transition:
    transform var(--component-interaction-duration) var(--motion-ease-emphasized),
    border-color var(--component-interaction-duration) var(--motion-ease-standard),
    box-shadow var(--component-interaction-duration) var(--motion-ease-standard);
}

.principle-card:hover,
.service-card:hover,
.insight-card:hover,
.expertise-card:hover {
  transform: translateY(var(--component-card-hover-lift));
  box-shadow: var(--card-shadow-hover);
}

.principle-card:active,
.service-card:active,
.insight-card:active,
.expertise-card:active {
  transform: translateY(0);
}

.principle-card:focus-visible,
.service-card:focus-visible,
.insight-card:focus-visible,
.expertise-card:focus-visible {
  outline: var(--card-focus-ring);
  outline-offset: var(--space-half);
}

.principle-card[aria-disabled="true"],
.service-card[aria-disabled="true"],
.insight-card[aria-disabled="true"],
.expertise-card[aria-disabled="true"] {
  opacity: var(--card-disabled-opacity);
  pointer-events: none;
}

.principle-card[aria-busy="true"],
.service-card[aria-busy="true"],
.insight-card[aria-busy="true"],
.expertise-card[aria-busy="true"] {
  opacity: var(--card-loading-opacity);
  cursor: progress;
}

.service-grid,
.insight-grid,
.principle-grid,
.expertise-card-grid {
  gap: var(--grid-card-gap);
}

.section-head,
.principle-head {
  margin-bottom: var(--grid-section-gap);
}

.principle-head h2 + p,
.section-head h2 + p {
  margin-top: var(--space-xl);
}

.principle-card h3,
.service-card h3,
.insight-card h3,
.expertise-card h3 {
  margin-bottom: var(--space-sm);
}

.btn,
.consultation-submit,
.consultation-modal__submit,
.readiness-option {
  padding: var(--component-button-padding-y) var(--component-button-padding-x);
}

.form-field input,
.form-field textarea,
.valuation-field input,
.valuation-field select,
.consultation-modal__field input,
.consultation-modal__field textarea {
  padding-inline: var(--component-input-padding-x);
}

/* Chapter 5: one container, one section rhythm, one card rhythm */
.principle-section,
.expertise-section,
.insights-preview {
  padding-block: var(--component-section-padding);
}

.expertise-section .service-grid {
  width: 100%;
  max-width: var(--content-width-home-services);
  justify-content: center;
  gap: var(--grid-card-gap);
  margin-inline: auto;
}

.insights-preview .container {
  width: min(calc(var(--container-full) - var(--container-gutter)), var(--content-width-home-insights));
}

.insights-preview .section-head > h2 span {
  font-size: calc(var(--type-h2) - 8px);
  line-height: 1.4;
}

.insights-preview .insight-grid {
  width: 100%;
  max-width: var(--content-width-home-insights);
  justify-content: stretch;
  gap: var(--grid-card-gap);
  margin-inline: auto;
}

.expertise-section .service-card,
.insights-preview .insight-card {
  height: 100%;
  padding-block: var(--component-home-card-padding-block);
  padding-inline: var(--component-home-card-padding-inline);
}

.expertise-section .service-card {
  min-height: var(--component-home-service-card-min-height);
}

.insights-preview .insight-card {
  min-height: var(--component-home-insight-card-min-height);
}

.expertise-section .service-card h3 {
  margin: var(--space-sm) 0 var(--space-xs);
}

.insights-preview .insight-card h3 {
  margin: var(--space-sm) 0 var(--space-xs);
}

.expertise-section .service-card em,
.insights-preview .insight-card em {
  min-height: var(--component-card-link-min-height);
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: var(--component-card-link-gap);
  margin-top: var(--component-home-card-action-gap);
  padding: var(--space-2xs) 0;
  color: var(--color-primary);
  font-size: var(--type-card-link);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0;
}

.expertise-section .service-card em::after,
.insights-preview .insight-card em::after {
  width: var(--component-card-link-icon-width);
  margin-left: 0;
}

/* ================================================================
   8. Responsive
   Components remain single-source. Breakpoints switch tokens and
   apply layout-only adaptations in Desktop, Tablet and Mobile order.
   ================================================================ */

@media (min-width: 1200px) {
.site-header.is-scrolled {
    height: 64px;
  }

.nav-item-dropdown.is-dropdown-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
}

@media (min-width: 1200px) {
:root {
    --font-display: clamp(60px, 4.5vw, 68px);
    --font-h1: clamp(48px, 3.7vw, 56px);
    --font-h2: clamp(34px, 2.6vw, 40px);
    --font-h3: clamp(24px, 1.8vw, 28px);
    --font-body: var(--desktop-body);
    --font-small: var(--desktop-small);
    --font-caption: var(--desktop-caption);
    --font-button: var(--desktop-body);
    --font-nav: var(--desktop-small);
    --container-gutter: var(--space-4);
    --header-height: 68px;
    --component-header-logo-mark-size: 30px;
    --component-header-logo-divider-height: 26px;
    --component-header-logo-scrolled-mark-size: 28px;
    --component-header-logo-scrolled-divider-height: 24px;
    --component-header-wordmark-size: 23px;
    --component-header-nav-size: 18px;
    --component-header-nav-offset: 128px;
  }

  .site-header.is-scrolled {
    height: 60px;
  }

  .header-inner .brand {
    margin-left: calc(var(--space-sm) * -1);
  }

  .site-header .equiv-logo-wordmark,
  .site-header.is-scrolled .equiv-logo-wordmark {
    font-size: var(--component-header-wordmark-size);
  }

  .site-nav {
    margin-right: var(--component-header-nav-offset);
    font-size: var(--component-header-nav-size);
    font-weight: var(--font-weight-semibold);
  }

.hero h1 {
    font-size: var(--type-display);
    line-height: 1.12;
  }

  .eyebrow,
  .section-kicker,
  .sub-label {
    font-size: var(--type-small);
  }

  .hero-brand-name {
    font-size: var(--type-body);
  }

  .hero-brand-korean,
  .hero-brand-role {
    font-size: var(--type-small);
  }

  .section h2,
  .about-copy h2,
  .about-section-head h2,
  .expertise-copy h2,
  .readiness-check h2 {
    font-size: var(--type-h2);
    line-height: 1.25;
  }

  .principle-head h2 {
    font-size: var(--type-h2);
    line-height: 1.22;
  }

  .final-cta h2 {
    font-size: var(--type-cta-title);
    line-height: 1.1;
  }

  .sub-cta h2 {
    font-size: var(--type-cta-title);
    line-height: 1.34;
  }

  .sub-hero h1,
  .about-hero h1 {
    font-size: var(--type-h1);
    line-height: 1.25;
  }

  .expertise-page .sub-hero h1 {
    font-size: var(--type-h1);
    line-height: 1.32;
  }

  .subpage .insight-article-hero h1 {
    font-size: var(--type-h1);
    line-height: 1.5;
  }

  .service-hero .sub-hero-lead {
    font-size: var(--type-body-lg);
  }

  .sub-intro p {
    font-size: var(--type-body-lg);
  }

  .insight-article-body h2 {
    font-size: calc(var(--type-h2) - 4px);
  }

  .principle-card h3 {
    font-size: var(--type-h3);
  }

  .service-card h3 {
    font-size: var(--type-h3);
  }

  .insight-card h3,
  .expertise-card h3,
  .about-flow h3,
  .faq-list h3,
  .process-timeline h3,
  .valuation-entry-card h2 {
    font-size: var(--type-h3);
  }

  .principle-card strong,
  .service-card strong,
  .expertise-card-subtitle,
  .detail-process strong,
  .service-key-list strong {
    font-size: var(--type-h4);
  }

  .service-card span {
    font-size: var(--type-caption);
  }

  .principle-head > p:last-child {
    font-size: var(--type-body);
  }

  .about-copy p,
  .expertise-copy p,
  .readiness-check p,
  .service-hero .sub-hero-copy,
  .valuation-entry-card__description {
    font-size: var(--type-body-lg);
  }

  .principle-card p,
  .service-card p,
  .insight-card p,
  .expertise-card p,
  .faq-list p,
  .service-key-list p,
  .content-list p,
  .process-timeline p,
  .insight-article-body p,
  .about-flow p {
    font-size: var(--type-body);
  }

  .insight-article-body .insight-article-lead {
    font-size: var(--type-body-lg);
  }

  .insight-article-body .insight-article-note {
    font-size: var(--type-body);
  }

  .expertise-note {
    font-size: var(--type-body-lg);
  }

  .final-cta p:not(.section-kicker):not(.cta-response-note) {
    font-size: var(--type-cta-body);
  }

  .sub-cta-copy {
    font-size: var(--type-cta-body);
  }

  .key-list li,
  .content-list li {
    font-size: var(--type-body);
  }

  .about-page .sub-label {
    font-size: var(--type-small);
  }

  .equiv-mark-story p {
    font-size: var(--type-body);
  }

  .btn {
    font-size: var(--type-button);
  }

  .final-cta .btn,
  .sub-cta .btn {
    min-height: 52px;
    padding-inline: var(--space-lg);
    font-size: var(--type-button);
  }

  .footer-brand .equiv-logo-wordmark {
    font-size: var(--type-h3);
  }

  .footer-entity {
    font-size: var(--type-caption);
  }

  .footer-entity span {
    font-size: var(--type-caption);
  }

  .footer-copyright,
  .footer-sitemap-title {
    font-size: var(--type-caption);
  }

  .footer-sitemap a {
    font-size: var(--type-small);
  }

.expertise-section .service-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .expertise-section .service-card {
    grid-column: span 2;
  }

  .expertise-section .service-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .expertise-section .service-card:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .insights-preview .insight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .insights-preview .insight-card:nth-child(4) {
    grid-column: 2;
  }
}

@media (max-width: 1199px) {

.footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer-sitemap {
    min-width: 0;
    justify-self: start;
  }

.service-grid,
  .insight-grid,
  .principle-grid,
  .expertise-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .expertise-page .valuation-section-heading h2 {
    font-size: 1.875rem;
  }

  .expertise-page .service-section-heading__title {
    font-size: 1.875rem;
  }

  .about-section-head {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-flow li {
    border-bottom: 1px solid var(--color-line);
  }

  .about-flow li:nth-child(3) {
    border-right: 0;
  }

  .about-flow li:nth-child(n + 4) {
    border-bottom: 0;
  }

}

@media (max-width: 768px) {
  .insight-related__grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .contact-trust-panel {
    max-width: 600px;
    justify-self: start;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
:root {
    --font-display: clamp(50px, 5.2vw, 56px);
    --font-h1: clamp(40px, 4.2vw, 48px);
    --font-h2: clamp(30px, 3.1vw, 34px);
    --font-h3: var(--tablet-h3);
    --font-body: var(--tablet-body);
    --font-small: var(--tablet-small);
    --font-caption: var(--tablet-caption);
    --font-button: var(--tablet-body);
    --font-nav: var(--tablet-small);
    --header-height: 64px;
    --container-gutter: 7%;
    --section-space-lg: var(--space-12);
    --section-space-md: var(--space-12);
    --section-space-sm: var(--space-12);
    --section-space-first: var(--space-12);
    --section-space-footer: var(--space-12);
    --grid-card-gap: var(--grid-card-gap-tablet);
    --component-card-padding: var(--component-card-padding-tablet);
    --component-card-padding-compact: var(--component-card-padding-tablet);
    --component-home-card-padding-block: var(--component-card-padding-tablet);
    --component-home-card-padding-inline: var(--component-card-padding-tablet);
  }

  .insights-preview .section-head > h2 span {
    font-size: calc(var(--type-h2) - 6px);
  }

  .container,
  .insights-preview .container {
    width: min(calc(100% - var(--container-gutter)), var(--container-width));
  }

  .hero {
    min-height: 74vh;
    min-height: 74svh;
  }

  .hero-content {
    transform: translateY(-32px);
  }

  .button,
  .button,
  .btn,
  .final-cta .btn,
  .sub-cta .btn {
    min-height: var(--component-button-height);
  }

.expertise-section .service-grid,
  .insights-preview .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .expertise-section .service-card {
    grid-column: auto;
  }

  .expertise-section .service-card:last-child:nth-child(odd) {
    width: var(--component-home-card-width);
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
:root {
    --component-header-logo-mark-size: 25px;
    --component-header-logo-divider-height: 22px;
  }

.header-inner {
    gap: var(--space-sm);
  }

  .site-header .equiv-logo,
  .site-header.is-scrolled .equiv-logo {
    gap: var(--component-header-logo-gap);
  }

  .site-header .equiv-logo-mark,
  .site-header.is-scrolled .equiv-logo-mark {
    width: var(--component-header-logo-scrolled-mark-size);
    height: var(--component-header-logo-scrolled-mark-size);
  }

  .site-header .equiv-logo-divider,
  .site-header.is-scrolled .equiv-logo-divider {
    height: var(--component-header-logo-scrolled-divider-height);
  }

  .site-header .equiv-logo-wordmark,
  .site-header.is-scrolled .equiv-logo-wordmark {
    font-size: var(--type-h3);
    letter-spacing: var(--component-header-wordmark-tracking);
  }

  .site-nav {
    gap: var(--space-md);
    font-size: var(--type-small);
  }

  .nav-dropdown-toggle {
    width: 20px;
    margin-left: calc(var(--space-2xs) / 4);
  }

  .principle-card {
    min-height: 230px;
  }

  .principle-card h3 {
    font-size: var(--type-h3);
  }

  .principle-card:nth-child(3) h3 {
    font-size: var(--type-h3);
  }

  .service-card,
  .insight-card {
    min-height: 200px;
  }

  .consultation-modal {
    padding: var(--space-lg);
  }

  .consultation-modal__dialog {
    max-height: calc(100dvh - 48px);
    overscroll-behavior: contain;
  }

  .consultation-modal__header {
    padding: var(--space-xl) var(--space-2xl) var(--space-lg);
  }

  .consultation-modal__guide {
    padding: var(--space-xl) var(--space-lg);
  }

  .consultation-modal__form {
    gap: var(--space-md);
    padding: var(--space-xl) var(--space-lg);
  }

  .consultation-modal__field input {
    min-height: 48px;
  }

  .consultation-modal__types > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .consultation-modal__types label span {
    min-height: 44px;
  }

  .consultation-modal__submit {
    min-height: 52px;
  }
}

@media (max-width: 1199px) {
  .nav-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    margin-right: calc(var(--space-xs) * -1);
  }

  .nav-toggle span {
    width: 23px;
    height: 2px;
  }

  .site-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    max-height: calc(100vh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    display: grid;
    gap: 0;
    padding: var(--space-sm) max(var(--space-md), env(safe-area-inset-left)) var(--space-lg);
    color: var(--color-primary);
  background: var(--color-surface-glass-strong);
    border-bottom: 1px solid var(--color-line);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    transition:
      opacity var(--motion-duration-hover) var(--motion-ease-standard),
      visibility var(--motion-duration-hover) var(--motion-ease-standard),
      transform var(--motion-duration-hover) var(--motion-ease-standard);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav > a,
  .nav-parent-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: var(--space-sm) 0;
    font-size: var(--type-small);
  }

  .nav-item-dropdown {
    min-width: 0;
  }

  .nav-parent-row {
    justify-content: space-between;
  }

  .nav-parent-link {
    flex: 1;
  }

  .nav-dropdown-toggle {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    margin: 0;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition:
      max-height var(--motion-duration-accordion) var(--motion-ease-standard),
      opacity var(--motion-duration-hover) var(--motion-ease-standard),
      visibility var(--motion-duration-hover) var(--motion-ease-standard);
  }

  .nav-item-dropdown.is-dropdown-open .nav-dropdown {
    max-height: 360px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-dropdown ul {
    padding: var(--space-2xs) 0 var(--space-xs) var(--space-md);
    background: transparent;
    border: 0;
  border-top: 1px solid var(--color-border-card);
    box-shadow: none;
  }

  .nav-dropdown ul::before {
    display: none;
  }

  .nav-dropdown a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: var(--space-sm);
    font-size: var(--type-small);
  }
}

@media (max-width: 1199px) and (orientation: landscape) and (max-height: 600px) {
  .hero {
    min-height: max(520px, 100svh);
  }

  .hero-content {
    padding-block: calc(var(--header-height) + var(--space-lg)) var(--space-2xl);
    transform: none;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 767px) {
  .sell-side-page .faq-list h3,
  .buy-side-page .faq-list h3,
  .capital-advisory-page .faq-list h3,
  .strategic-consulting-page .faq-list h3,
  .business-valuation-page .faq-list h3 {
    font-size: 1.0625rem;
  }

  :root {
    --header-height: 54px;
    --component-header-logo-gap: calc(var(--space-half) / 2);
    --component-header-logo-mark-size: 24px;
    --component-header-logo-divider-height: 20px;
    --component-header-logo-scrolled-mark-size: 24px;
    --component-header-logo-scrolled-divider-height: 20px;
    --font-display: clamp(40px, 10.7vw, 46px);
    --font-h1: clamp(34px, 8.8vw, 38px);
    --font-h2: clamp(28px, 7vw, 30px);
    --font-h3: clamp(22px, 5.7vw, 24px);
    --font-body: var(--mobile-body);
    --font-small: var(--mobile-small);
    --font-caption: var(--mobile-caption);
    --font-button: var(--mobile-body);
    --font-nav: var(--mobile-small);
    --modal-title-size: var(--font-h2);
    --modal-description-size: var(--font-body);
    --modal-supporting-size: var(--font-body);
    --modal-question-size: var(--font-h3);
    --modal-section-title-size: var(--font-body);
    --modal-label-size: var(--font-small);
    --modal-input-size: var(--font-body);
    --modal-help-size: var(--font-caption);
    --modal-button-size: var(--type-button);
    --modal-option-title-size: var(--font-body);
    --modal-option-description-size: var(--font-small);
    --modal-close-icon-size: var(--font-h3);
    --modal-padding-inline: var(--space-lg);
    --modal-padding-block: calc(var(--space-lg) + var(--space-2xs));
    --modal-field-gap: calc(var(--space-xs) * 2);
    --modal-group-gap: calc(var(--space-lg) + var(--space-2xs));
    --container-gutter: var(--space-5);
    --space-2xs: var(--space-half);
    --space-xs: var(--space-1);
    --space-sm: calc(var(--space-1) + (var(--space-half) / 2));
    --space-md: var(--space-2);
    --space-lg: calc(var(--space-2) + var(--space-half));
    --space-xl: var(--space-4);
    --space-2xl: var(--space-8);
    --section-space-lg: var(--space-9);
    --section-space-md: var(--space-9);
    --section-space-sm: var(--space-9);
    --section-space-first: var(--space-9);
    --section-space-footer: var(--space-9);
    --space-section: var(--section-space-lg);
    --grid-card-gap: var(--grid-card-gap-mobile);
    --component-card-padding: var(--component-card-padding-mobile);
    --component-card-padding-compact: var(--component-card-padding-mobile);
    --component-home-card-padding-block: var(--component-card-padding-mobile);
    --component-home-card-padding-inline: var(--component-card-padding-mobile);
    --component-home-card-action-gap: var(--space-2);
    --motion-duration-hover: var(--foundation-motion-mobile-hover);
    --motion-duration-click: var(--foundation-motion-mobile-fast);
    --motion-duration-fade: var(--foundation-motion-mobile-fade);
    --motion-duration-reveal: var(--foundation-motion-mobile-reveal);
    --motion-duration-modal: var(--foundation-motion-mobile-modal);
    --motion-duration-accordion: var(--foundation-motion-mobile-accordion);
    --motion-delay-step: var(--foundation-motion-mobile-delay);
    --mobile-card-gap: var(--grid-card-gap-mobile);
    --mobile-card-padding-block: var(--component-card-padding-mobile);
    --mobile-card-padding-inline: var(--component-card-padding-mobile);
    --mobile-section-intro: var(--section-space-lg);
    --mobile-section-content: var(--section-space-lg);
  }

.consultation-modal {
    align-items: flex-start;
    padding: var(--space-sm) var(--space-md);
  }

  .consultation-modal__dialog {
    width: 100%;
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    border-radius: var(--radius-lg);
    overscroll-behavior: contain;
  }

  .consultation-modal__overlay {
    -webkit-backdrop-filter: blur(3px);
  }

  .consultation-modal__header {
    padding: var(--modal-padding-block) var(--modal-padding-inline);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .consultation-modal__close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }

  .consultation-modal__header > p:last-child {
    display: block;
  }

  .consultation-modal__header p span {
    display: block;
    margin-top: var(--space-xs);
    line-height: 1.6;
    text-align: left;
  }

  .consultation-modal__header h2 {
    padding-right: var(--space-2xl);
    line-height: 1.3;
  }

  .consultation-modal__header strong {
    line-height: 1.6;
  }

  .consultation-modal__body {
    grid-template-columns: 1fr;
  }

  .consultation-modal__guide {
    order: 2;
    padding: var(--modal-padding-block) var(--modal-padding-inline);
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .consultation-modal__confidential {
    padding-top: var(--space-md);
    margin-top: var(--space-md);
  }

  .consultation-modal__form {
    order: 1;
    gap: var(--modal-field-gap);
    padding: var(--modal-padding-block) var(--modal-padding-inline) max(var(--modal-padding-block), env(safe-area-inset-bottom));
  }

  .consultation-modal__field-grid {
    grid-template-columns: 1fr;
    gap: var(--modal-field-gap);
  }

  .consultation-modal__types > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-sm);
  }

  .consultation-modal__types label span {
    min-height: 48px;
  }

  .consultation-modal__field input {
    min-height: 48px;
  }

  .consultation-modal__field textarea {
    min-height: 104px;
    height: 104px;
    line-height: 1.6;
  }

  .consultation-modal__submit {
    min-height: var(--component-button-height-mobile);
  }

  .consultation-modal__privacy-row {
    align-items: flex-start;
  }

  .consultation-modal__privacy-details dl > div {
    grid-template-columns: 1fr;
    gap: calc(var(--space-2xs) / 4);
  }

  .consultation-modal__success {
    min-height: 0;
    padding: var(--space-2xl) var(--space-md) var(--space-2xl);
  }

  .consultation-modal__success h2 {
    line-height: 1.36;
  }

  .consultation-modal__success > p:not(.section-kicker):not(.consultation-modal__static-notice) {
    line-height: 1.65;
  }

  .valuation-public-hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .valuation-entry-card {
    max-width: 100%;
    transform: none;
  }

  .site-header .equiv-logo,
  .site-header.is-scrolled .equiv-logo {
    gap: var(--component-header-logo-gap);
    max-width: calc(100vw - 96px);
  }

  .site-header .equiv-logo-mark,
  .site-header.is-scrolled .equiv-logo-mark {
    width: var(--component-header-logo-mark-size);
    height: var(--component-header-logo-mark-size);
  }

  .site-header .equiv-logo-divider,
  .site-header.is-scrolled .equiv-logo-divider {
    height: var(--component-header-logo-divider-height);
  }

  .site-header .equiv-logo-wordmark,
  .site-header.is-scrolled .equiv-logo-wordmark {
    font-size: var(--type-h3);
    letter-spacing: var(--component-header-wordmark-tracking);
  }

  .hero h1 {
    word-break: keep-all;
  }

  .hero-content {

    transform: translateY(-18px);
  }

  .section-kicker {
    margin-bottom: var(--space-xs);
  }

  .hero-brand-identity {
    gap: var(--space-xs) var(--space-xs);
    max-width: 100%;

    transform: none;
  }

  .hero-brand-signature {
    gap: var(--space-2xs);
  }

  .hero-brand-description {
    gap: var(--space-xs);
  }

  .hero-brand-divider {
    height: 13px;
  }

  .hero-actions {
    width: min(100%, 340px);

    margin: var(--space-lg) auto 0;
  }

  .button,
  .btn {
    width: 100%;
  }

  .section h2 {
    word-break: keep-all;
  }

  .principle-grid,
  .service-grid,
  .insight-grid,
  .about-card-grid {
    grid-template-columns: 1fr;
  }

  .principle-card {
    min-height: 200px;
  }

  .service-card {
    min-height: 156px;
  }

  .service-card h3 {
    margin: var(--space-xs) 0 var(--space-2xs);
    line-height: 1.42;
    word-break: keep-all;
  }

  .service-card p {
    line-height: 1.9;
  }

  .service-card em,
  .insight-card em {
    padding-top: var(--space-lg);
  }

  .service-card em {
    margin-top: var(--space-md);
    padding-top: 0;
  }

  .expertise-note {
    margin-top: var(--space-lg);
    font-size: var(--type-body-lg);
    line-height: 1.92;
  }

  .home-readiness-section .readiness-check {
    padding-top: var(--space-md);
  }

  .home-readiness-section .readiness-check p {
    font-size: var(--type-body);
    line-height: 1.96;
  }

  .readiness-actions {
    margin-top: var(--space-lg);
  }

  .principle-card::before {
    left: 24px;
    right: 24px;
  }

  .principle-card h3 {
    margin: var(--space-lg) 0 var(--space-sm);
    font-size: var(--type-h3);
  }

  .principle-card:nth-child(3) h3 {
    font-size: var(--type-h3);
  }

  .principle-card strong {
    margin-bottom: var(--space-xs);
    font-size: var(--type-h4);
  }

  .principle-card p {
    font-size: var(--type-body);
    line-height: 1.92;
  }

  .insight-card {
    min-height: 156px;
  }

  .insight-card h3 {
    margin-bottom: var(--space-xs);
    font-size: var(--type-h3);
    line-height: 1.54;
    word-break: keep-all;
  }

  .insight-card p {
    font-size: var(--type-body);
    line-height: 1.92;
  }

  .insight-article-body h2 {
    margin-top: var(--space-2xl);
    font-size: calc(var(--type-h2) - 2px);
  }

  .insight-article-body p {
    font-size: var(--type-body);
    line-height: 2.06;
  }

  .insight-article-body .insight-article-note {
    padding: var(--space-lg) 0;
    margin-top: var(--space-2xl);
  }

  .final-cta h2 {
    font-size: var(--type-cta-title);
    line-height: 1.32;
  }

  .final-cta p:not(.section-kicker):not(.cta-response-note) {
    font-size: var(--type-cta-body);
    line-height: 2.02;
  }

  .final-cta .cta-response-note {
    margin-top: var(--space-sm);
    font-size: var(--type-caption);
    text-align: left;
  }

  .contact-layout {
    gap: var(--space-xl);
  }

  .contact-primary-action {
    max-width: 100%;
    margin-top: var(--space-xl);
  }

  .final-cta .btn,
  .sub-cta .btn {
    width: 100%;
    min-width: 0;

  }

  .confidential-notice {
    max-width: 100%;
    margin-top: 0;
  }

  .contact-trust-panel {
    max-width: 100%;
    justify-self: start;
  }

  .contact-trust-list {
    gap: var(--space-md);
    margin-top: var(--space-md);
  }

  .contact-trust-list li {
    font-size: var(--type-small);
  }

  .final-cta .contact-trust-panel .contact-trust-note {
    margin-top: var(--space-md);
    font-size: var(--type-caption);
  }

  .confidential-notice p {
    font-size: var(--type-body);
  }

  .sub-hero {
    padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
  }

  .sub-hero h1 {
    font-size: var(--type-h1);
    line-height: 1.26;
    word-break: keep-all;
  }

  .about-hero h1 {
    font-size: var(--type-h1);
  }

  .about-hero .about-hero-copy,
  .about-copy p {
    font-size: var(--type-body-lg);
    line-height: 2.02;
  }

  .valuation-entry-card__description {
    font-size: var(--type-body-lg);
    line-height: 1.96;
  }

  .valuation-entry-card__time span {
    font-size: var(--type-caption);
  }

  .valuation-entry-card__time strong {
    font-size: var(--type-h4);
  }

  .about-copy h2 {
    font-size: var(--type-h2);
    line-height: 1.36;
  }

  .why-equiv-head h2 {
    font-size: var(--type-h2);
    line-height: 1.36;
  }

  .why-equiv-copy p {
    font-size: var(--type-body-lg);
    line-height: 1.82;
  }

  .why-equiv-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
  }

  .why-equiv-item {
    padding-top: var(--space-lg);
  }

  .why-equiv-item > .icon {
    margin-bottom: var(--space-md);
  }

  .why-equiv-item h3 {
    font-size: var(--type-h3);
  }

  .why-equiv-item p {
    font-size: var(--type-body);
    line-height: 1.8;
  }

  .equiv-mark-story {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
  }

  .equiv-mark-story__visual {
    place-items: start;
  }

  .equiv-mark-story__visual img {
    width: 82px;
    height: 82px;
  }

  .equiv-mark-story__divider {
    width: 100%;
    height: 1px;
    min-height: 0;
  }

  .sub-intro p {
    font-size: var(--type-body-lg);
  }

  .service-hero .sub-hero-lead {
    font-size: var(--type-body-lg);
    line-height: 1.62;
  }

  .expertise-card-grid,
  .readiness-list {
    grid-template-columns: 1fr;
  }

  .expertise-copy h2,
  .readiness-check h2 {
    font-size: var(--type-h2);
    line-height: 1.38;
  }

  .expertise-copy p,
  .readiness-check p {
    font-size: var(--type-body-lg);
    line-height: 2;
  }

  .expertise-card {
    min-height: auto;
  }

  .expertise-card h3 {
    margin-top: var(--space-2xl);
    font-size: var(--type-h3);
    line-height: 1.48;
  }

  .business-valuation-page .expertise-card h3 {
    margin-top: var(--space-xl);
  }

  .expertise-card-subtitle {
    font-size: var(--type-caption);
  }

  .expertise-card p,
  .faq-list p,
  .service-key-list p,
  .content-list p {
    font-size: var(--type-body);
    line-height: 1.98;
  }

  .faq-list article {
    padding: var(--space-lg) 0;
  }

  .faq-list h3 {
    font-size: var(--type-h3);
    line-height: 1.62;
  }

  .readiness-modal {
    padding: var(--space-sm) var(--space-md);
  }

  .readiness-modal__dialog {
    max-height: calc(100dvh - 24px);
    padding: var(--space-xl) var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    overscroll-behavior: contain;
  }

  .readiness-modal__close {
    top: 10px;
    right: 10px;
    min-width: 44px;
    min-height: 44px;
  }

  .readiness-option {
    min-height: 52px;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--type-caption);
  }

  .readiness-modal__content h2 {
    font-size: var(--type-h2);
    line-height: 1.3;
  }

  .readiness-modal__intro,
  .readiness-result p {
    font-size: var(--type-body-lg);
    line-height: 2.02;
  }

  .readiness-question h3 {
    font-size: var(--type-h3);
    line-height: 1.5;
  }

  .readiness-result__status {
    font-size: var(--type-caption);
  }

  .readiness-result h3 {
    font-size: var(--type-h3);
    line-height: 1.42;
  }

  .readiness-modal-cta h4 {
    font-size: var(--type-h4);
  }

  .valuation-modal__dialog {
    width: 100%;
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    padding: var(--modal-padding-block) var(--modal-padding-inline) max(var(--modal-padding-block), env(safe-area-inset-bottom));
  }

  .valuation-modal .readiness-modal__backdrop {
    -webkit-backdrop-filter: blur(8px);
  }

  .valuation-modal .readiness-modal__close {
    top: var(--space-sm);
    right: var(--space-sm);
  }

  .valuation-modal .readiness-modal__content h2 {
    padding-right: var(--space-6);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
  }

  .valuation-modal .readiness-modal__intro {
    margin-bottom: var(--space-lg);
    line-height: 1.6;
  }

  .valuation-modal .valuation-progress {
    margin-bottom: var(--space-lg);
  }

  .valuation-fields,
  .valuation-checkbox-group,
  .valuation-factor-grid {
    grid-template-columns: 1fr;
  }

  .valuation-fields {
    gap: var(--modal-field-gap);
  }

  .valuation-input-section + .valuation-input-section {
    margin-top: var(--modal-group-gap);
  }

  .valuation-step h3,
  .valuation-result > h3,
  .valuation-loading h3 {
    line-height: 1.4;
  }

  .valuation-field input,
  .valuation-field select {
    min-height: 48px;
  }

  .valuation-field small,
  .valuation-section-note,
  .valuation-year-note,
  .valuation-field-note,
  .valuation-checkbox-group legend small,
  .valuation-error {
    line-height: 1.55;
  }

  .valuation-checkbox-group label {
    padding: var(--space-md) var(--space-sm) var(--space-md) 0;
  }

  .valuation-confidence__header h4,
  .valuation-insight h4,
  .valuation-consultation h4 {
    font-size: var(--type-h4);
  }

  .valuation-confidence__summary strong {
    font-size: var(--type-h4);
  }

  .valuation-form-actions,
  .valuation-result-actions {
    gap: var(--space-sm);
    justify-content: stretch;
  }

  .valuation-form-actions .btn,
  .valuation-result-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .valuation-form-actions--with-prev {
    display: grid;
    grid-template-columns: minmax(var(--space-10), max-content) minmax(0, 1fr);
    align-items: stretch;
  }

  .valuation-form-actions--with-prev .valuation-prev-button {
    width: auto;
    min-width: var(--space-10);
  }

  .valuation-form-actions--with-prev .btn-primary {
    width: 100%;
    min-width: 0;
  }

  .valuation-equity-card__value {
    font-size: clamp(var(--mobile-h2), 9.23vw, var(--mobile-h1));
    letter-spacing: -0.03em;
    white-space: nowrap;
  }

  .valuation-consultation .valuation-result-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .valuation-consultation .valuation-result-actions .btn-secondary,
  .valuation-consultation .valuation-result-actions .btn-primary {
    grid-column: 1;
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

  .valuation-range {
    padding: var(--space-lg) var(--space-md);
  }

  .valuation-value-bridge {
    gap: var(--space-xs);
  }

  .valuation-value-bridge p {
    font-size: var(--type-body);
  }

  .valuation-equity-card {
    padding: var(--space-lg) var(--space-md);
  }

  .valuation-equity-card__header,
  .valuation-confidence__header {
    position: relative;
  }

  .valuation-tooltip {
    position: static;
  }

  .valuation-tooltip__content {
    right: auto;
    left: 50%;
    width: min(280px, calc(100% - var(--space-md)));
    transform: translate(-50%, 4px);
  }

  .valuation-tooltip:hover .valuation-tooltip__content,
  .valuation-tooltip.is-open .valuation-tooltip__content {
    transform: translate(-50%, 0);
  }

  .valuation-confidence {
    padding: var(--space-lg) var(--space-md);
  }

  .about-section-head {
    margin-bottom: var(--space-xl);
  }

  .about-section-head h2 {
    font-size: var(--type-h2);
    line-height: 1.38;
  }

  .about-page .sub-label {
    font-size: var(--type-small);
  }

  .about-flow {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .about-flow li {
    grid-template-columns: 44px 1fr;
    display: grid;
    gap: var(--space-sm);
    min-height: auto;
    padding: var(--space-md) 0;
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .about-flow li:nth-child(n + 4) {
    border-bottom: 1px solid var(--color-line);
  }

  .about-flow h3 {
    margin-top: 0;
    font-size: var(--type-h3);
  }

  .about-flow p {
    margin-top: var(--space-xs);
    font-size: var(--type-body);
    line-height: 1.94;
  }

  .key-list li,
  .content-list li {
    font-size: var(--type-caption);
  }

  .valuation-review-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
  }

  .expertise-page .valuation-section-heading h2 {
    font-size: 1.625rem;
    line-height: 1.32;
  }

  .expertise-page .service-section-heading__title {
    font-size: 1.625rem;
    line-height: 1.32;
  }

  .numbered-list li,
  .detail-process li {
    grid-template-columns: 48px 1fr;
    gap: var(--space-sm);
  }

  .detail-process strong {
    font-size: var(--type-h4);
  }

  .sub-cta-copy {
    font-size: var(--type-body-lg);
    line-height: 2;
  }

  .footer-inner {
    gap: var(--space-2xl);
    text-align: left;
  }

  .footer-brand .equiv-logo-mark {
    width: 30px;
    height: 30px;
  }

  .site-footer p,
  .footer-sitemap a {
    font-size: var(--type-small);
    line-height: 1.82;
  }

  /* Mobile component typography roles */
  .section h2,
  .about-copy h2,
  .about-section-head h2,
  .expertise-copy h2,
  .readiness-check h2 {
    font-size: var(--type-h2);
    font-family: var(--font-ko);
    font-weight: var(--font-weight-bold);
    line-height: 1.42;
    letter-spacing: 0;
  }

  .final-cta h2,
  .sub-cta h2 {
    font-size: var(--type-cta-title);
    font-family: var(--font-ko);
    font-weight: var(--font-weight-bold);
    line-height: 1.32;
    letter-spacing: 0;
  }

  .sub-hero h1,
  .about-hero h1,
  /* Copy the HOME service and insight card title values without rescaling. */
  .expertise-page .sub-hero h1,
  .subpage .insight-article-hero h1 {
    font-size: var(--type-h1);
    line-height: 1.55;
  }

  .service-card h3,
  .principle-card h3,
  .principle-card:nth-child(3) h3,
  .insight-card h3,
  .expertise-card h3,
  .process-timeline h3,
  .consultation-process h3,
  .about-flow h3,
  .faq-list h3,
  .valuation-entry-card h2,
  .readiness-question h3,
  .readiness-result h3,
  .valuation-step h3,
  .valuation-result > h3,
  .valuation-loading h3 {
    font-size: var(--type-h3);
    line-height: 1.5;
  }

  .service-card strong,
  .principle-card strong,
  .expertise-card-subtitle,
  .consultation-process li strong,
  .service-key-list strong,
  .detail-process strong,
  .readiness-modal-cta h4,
  .valuation-input-section > h4,
  .valuation-factor-grid h4,
  .valuation-confidence__header h4,
  .valuation-insight h4,
  .valuation-consultation h4 {
    font-size: var(--type-h4);
    line-height: 1.5;
  }

  .principle-head > p:last-child,
  .expertise-note,
  .about-hero .about-hero-copy,
  .about-copy p,
  .valuation-entry-card__description,
  .service-hero .sub-hero-copy,
  .expertise-copy p,
  .readiness-check p,
  .readiness-modal__intro,
  .readiness-result p,
  .philosophy-copy,
  .sub-cta-copy {
    font-size: var(--type-body-lg);
    line-height: 1.8;
  }

  .final-cta p:not(.section-kicker):not(.cta-response-note),
  .sub-cta-copy {
    font-size: var(--type-cta-body);
  }

  .service-card p,
  .insight-card p,
  .home-readiness-section .readiness-check p,
  .process-timeline p,
  .insight-article-body p,
  .consultation-process li p,
  .confidential-notice p,
  .why-list li,
  .key-list li,
  .content-list li,
  .readiness-list li,
  .expertise-card p,
  .faq-list p,
  .service-key-list p,
  .content-list p,
  .about-flow p {
    font-size: var(--type-body);
    line-height: 1.8;
  }

  .section-kicker,
  .eyebrow,
  .sub-label,
  .about-page .sub-label,
  .hero-brand-name,
  .hero-brand-korean,
  .hero-brand-role,
  .form-field label,
  .consultation-type-fieldset legend,
  .consultation-type-options span,
  .valuation-field > span,
  .valuation-checkbox-group legend,
  .site-footer p,
  .footer-sitemap-title,
  .footer-sitemap a {
    font-size: var(--type-small);
  }

  .service-card span,
  .service-card em,
  .principle-card span,
  .insight-card span,
  .insight-card em,
  .process-timeline span,
  .final-cta .cta-response-note,
  .consultation-process li span,
  .valuation-entry-card__time span,
  .expertise-card span,
  .readiness-result__status {
    font-size: var(--type-caption);
  }

  .section-kicker,
  .eyebrow,
  .sub-label {
    letter-spacing: 0.1em;
  }

  .button,
  .btn,
  .hero .btn,
  .consultation-submit,
  .readiness-option {
    min-height: var(--component-button-height-mobile);
    font-size: var(--type-button);
  }

  .final-cta .btn,
  .sub-cta .btn {
    min-height: var(--component-button-height-mobile);
    padding-inline: var(--space-lg);
    font-size: var(--type-button);
  }

  .site-nav > a,
  .nav-parent-link,
  .nav-dropdown a {
    font-size: var(--type-small);
  }

  .form-field input,
  .form-field textarea,
  .form-field input::placeholder,
  .form-field textarea::placeholder {
    font-size: var(--type-form);
  }

  .readiness-modal__content h2 {
    font-size: var(--type-h2);
    line-height: 1.42;
  }

  /* Shared mobile modal typography and control density */
  .consultation-modal__header h2,
  .consultation-modal__success h2,
  .valuation-modal .readiness-modal__content h2 {
    font-size: var(--modal-title-size);
  }

  .consultation-modal__header strong,
  .valuation-modal .readiness-modal__intro {
    font-size: var(--modal-description-size);
  }

  .consultation-modal__header p span,
  .consultation-modal__confidential p,
  .consultation-modal__success > p:not(.section-kicker):not(.consultation-modal__static-notice),
  .valuation-confirm {
    font-size: var(--modal-supporting-size);
  }

  .consultation-modal__privacy-details h3,
  .valuation-step h3,
  .valuation-result > h3,
  .valuation-loading h3 {
    font-size: var(--modal-question-size);
  }

  .consultation-modal__guide h4,
  .valuation-input-section > h4,
  .valuation-factor-grid h4 {
    font-size: var(--modal-section-title-size);
  }

  .consultation-modal__field label,
  .consultation-modal__types legend,
  .consultation-modal__types label span,
  .valuation-modal .valuation-public-badge,
  .valuation-progress__meta > p:first-child,
  .valuation-field > span,
  .valuation-checkbox-group legend {
    font-size: var(--modal-label-size);
  }

  .consultation-modal__field input,
  .consultation-modal__field textarea,
  .consultation-modal__field input::placeholder,
  .consultation-modal__field textarea::placeholder,
  .valuation-field input,
  .valuation-field select,
  .valuation-field input::placeholder {
    font-size: var(--modal-input-size);
  }

  .consultation-modal__guide ol li,
  .consultation-modal__guide ol span,
  .consultation-modal__privacy-row > label,
  .consultation-modal__privacy-row button,
  .consultation-modal__privacy-details,
  .consultation-modal__static-notice,
  .valuation-field small,
  .valuation-section-note,
  .valuation-year-note,
  .valuation-field-note,
  .valuation-checkbox-group legend small,
  .valuation-error {
    font-size: var(--modal-help-size);
  }

  .valuation-year-group h5,
  .valuation-checkbox-group label {
    font-size: var(--modal-option-title-size);
  }

  .consultation-modal__submit,
  .valuation-form-actions .btn,
  .valuation-result-actions .btn {
    min-height: var(--component-button-height-mobile);
    font-size: var(--modal-button-size);
  }

  .consultation-modal__close span {
    font-size: var(--modal-close-icon-size);
  }

  .sub-intro p,
  .service-hero .sub-hero-lead {
    font-size: var(--type-body-lg);
    line-height: 1.7;
  }

  .service-hero .sub-hero-copy,
  .about-hero .about-hero-copy {
    font-size: var(--type-body-lg);
    line-height: 1.9;
  }

  .insight-article-hero .container > p:not(.section-kicker) {
    font-size: var(--type-body);
  }

  .insight-article-hero .container > p.insight-article-label {
    font-size: var(--type-small);
  }

  .footer-brand .equiv-logo-wordmark {
    font-size: var(--type-h3);
  }

  .footer-sitemap ul {
    gap: var(--space-sm);
    margin-top: var(--space-md);
  }

  .back-to-top {
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
  }

.expertise-section .service-grid,
  .insights-preview .insight-grid {
    max-width: none;
    grid-template-columns: minmax(0, 1fr);
  }

  .expertise-section .service-card,
  .insights-preview .insight-card,
  .expertise-section .service-card:last-child:nth-child(odd) {
    width: 100%;

    grid-column: auto;
  }

  .container,
  .insights-preview .container {
    width: min(calc(100% - var(--container-gutter)), var(--container-width));
  }

  .hero {
    min-height: 68vh;
    min-height: 68svh;
  }

  .hero-content {
    padding-top: var(--header-height);
  }

  .hero h1 {
    font-size: var(--type-display);
    font-weight: var(--font-weight-bold);
    line-height: 1.24;
  }

  .hero-brand-name,
  .hero-brand-korean,
  .hero-brand-role {
    font-size: var(--type-small);
  }

  .hero-brand-identity {
    margin-bottom: var(--space-xs);
  }

  .hero-actions {
    gap: var(--space-xs);
    margin-top: var(--space-lg);
  }

  .hero .btn {
    min-height: var(--component-button-height-mobile);
    padding-inline: var(--space-md);
    font-size: var(--type-button);
  }

  .section-kicker,
  .eyebrow,
  .sub-label {
    font-size: var(--type-small);
    line-height: 1.4;
  }

  .principle-section {
    padding-block: var(--mobile-section-intro);
  }

  .expertise-section,
  .insights-preview {
    padding-block: var(--mobile-section-content);
  }

  .principle-head .section-kicker {
    margin-bottom: var(--space-md);
  }

  .principle-head h2 {
    font-size: var(--type-h2);
    line-height: 1.35;
  }

  .principle-head > p:last-child {
    margin-top: var(--space-lg);
    font-size: var(--type-body);
    line-height: 1.6;
  }

  .expertise-section .section-head {
    margin-bottom: var(--space-xl);
  }

  .expertise-section .section-head h2 {
    font-size: var(--type-h1);
    line-height: 1.3;
  }

  .insights-preview .section-head {
    margin-bottom: var(--space-2xl);
  }

  .insights-preview .section-head > h2 {
    font-size: var(--type-h1);
    line-height: 1.3;
  }

  .insights-preview .section-head > h2 span {
    margin-top: var(--space-md);
    font-size: var(--type-body-lg);
    font-weight: var(--font-weight-semibold);
    line-height: 1.45;
  }

  .expertise-section .service-grid,
  .insights-preview .insight-grid {
    gap: var(--mobile-card-gap);
  }

  .expertise-section .service-card,
  .insights-preview .insight-card,
  .expertise-section .service-card:last-child:nth-child(odd) {
    min-height: 0;
    height: auto;
    padding: var(--mobile-card-padding-block) var(--mobile-card-padding-inline);
    justify-content: flex-start;
  }

  .expertise-section .service-card > span {
    font-size: var(--type-body);
  }

  .expertise-section .service-card h3 {
    margin: var(--space-md) 0 var(--space-sm);
    font-size: var(--type-h3);
    line-height: 1.35;
  }

  .expertise-section .service-card strong {
    font-size: var(--type-h4);
    line-height: 1.5;
  }

  .expertise-section .service-card em {
    margin-top: var(--space-lg);
    padding-top: 0;
    font-size: var(--type-card-link);
  }

  .insights-preview .insight-card > span {
    font-size: var(--type-card-category);
    line-height: 1.4;
  }

  .insights-preview .insight-card h3 {
    margin: var(--space-md) 0 var(--space-sm);
    font-size: var(--type-insight-card-title);
    line-height: 1.4;
  }

  .insights-preview .insight-card {
    padding-block: var(--mobile-card-padding-block);
  }

  .insights-preview .insight-card p {
    font-size: var(--type-card-description);
    line-height: 1.65;
  }

  .insights-preview .insight-card em {
    margin-top: var(--space-lg);
    padding-top: 0;
    font-size: var(--type-card-link);
  }

  .sub-hero h1,
  .about-hero h1,
  .contact-hero h1 {
    font-size: var(--type-h1);
    line-height: 1.3;
  }

  .button,
  .btn,
  .final-cta .btn,
  .sub-cta .btn,
  .consultation-submit,
  .consultation-modal__submit,
  .readiness-option {
    font-size: var(--type-button);
  }

  .button,
  .btn,
  .consultation-submit,
  .consultation-modal__submit {
    height: var(--component-button-height-mobile);
  }
}

/* Sprint 8.1: Contact and consultation density at mobile widths */
@media (max-width: 768px) {
  .contact-layout {
    gap: var(--space-lg);
  }

  .contact-primary-action {
    margin-top: var(--space-lg);
  }

  .contact-trust-list.contact-trust-list--desktop,
  .contact-trust-copy--desktop {
    display: none;
  }

  .contact-trust-list.contact-trust-list--mobile {
    display: grid;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
  }

  .contact-trust-copy--mobile {
    display: inline;
  }

  .contact-trust-list li {
    gap: var(--space-xs);
    align-items: center;
    font-size: var(--mobile-small);
    line-height: 1.55;
    word-break: keep-all;
  }

  .contact-trust-list .icon {
    margin-top: 0;
  }

  .final-cta .contact-trust-panel .contact-trust-note {
    margin-top: var(--space-sm);
    font-size: var(--mobile-caption);
    line-height: 1.6;
  }

  .contact-trust-panel .confidential-notice {
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
  }

  .contact-trust-panel .confidential-notice svg {
    margin-top: 0;
  }

  .contact-trust-panel .confidential-notice strong,
  .contact-trust-panel .confidential-notice p {
    display: inline;
    margin: 0;
    font-size: var(--mobile-small);
    line-height: 1.6;
  }

  .contact-trust-panel .confidential-notice strong {
    letter-spacing: 0.06em;
  }

  .consultation-modal {
    --modal-title-size: var(--mobile-h2);
    --modal-description-size: var(--mobile-body);
    --modal-supporting-size: var(--mobile-small);
    --modal-section-title-size: var(--mobile-body);
    --modal-label-size: var(--mobile-small);
    --modal-input-size: var(--mobile-body);
    --modal-help-size: var(--mobile-caption);
    --modal-button-size: var(--mobile-body);
    align-items: flex-start;
    padding: var(--space-sm) var(--space-md);
  }

  .consultation-modal__dialog {
    width: 100%;
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    border-radius: var(--radius-lg);
    overscroll-behavior: contain;
  }

  .consultation-modal__header {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .consultation-modal__brand {
    margin-bottom: var(--space-sm);
  }

  .consultation-modal__header .section-kicker {
    margin-bottom: var(--space-2xs);
  }

  .consultation-modal__header h2 {
    padding-right: var(--space-2xl);
    font-size: var(--modal-title-size);
    line-height: 1.3;
  }

  .consultation-modal__heading-row {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
    align-items: start;
  }

  .consultation-modal__heading-copy > p {
    margin-top: var(--space-sm);
    font-size: var(--modal-description-size);
    line-height: 1.55;
  }

  .consultation-modal__required-guide {
    padding-bottom: 0;
    font-size: var(--modal-help-size);
    white-space: normal;
  }

  .valuation-progress__meta {
    display: grid;
    gap: var(--space-2xs);
    align-items: start;
  }

  .valuation-required-guide {
    font-size: var(--mobile-caption);
    text-align: left;
  }

  .consultation-modal__close {
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
  }

  .consultation-modal__body {
    grid-template-columns: 1fr;
  }

  .consultation-modal__form {
    order: 1;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg) max(var(--space-md), env(safe-area-inset-bottom));
  }

  .consultation-modal__field-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .consultation-modal__guide {
    order: 2;
    padding: var(--space-md) var(--space-lg) max(var(--space-md), env(safe-area-inset-bottom));
    border-right: 0;
    border-top: 1px solid var(--color-line);
    border-bottom: 0;
  }

  .consultation-modal__guide h4 {
    margin-bottom: var(--space-xs);
    font-size: var(--modal-section-title-size);
  }

  .consultation-modal__guide ol {
    gap: var(--space-xs);
  }

  .consultation-modal__guide ol li,
  .consultation-modal__guide ol span {
    font-size: var(--modal-help-size);
  }

  .consultation-modal__confidential {
    padding-top: var(--space-sm);
    margin-top: var(--space-sm);
  }

  .consultation-modal__confidential p {
    font-size: var(--modal-supporting-size);
    line-height: 1.6;
  }

  .consultation-modal__types > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-sm);
  }

  .consultation-modal__types label span,
  .consultation-modal__field input {
    min-height: 48px;
  }

  .consultation-modal__field textarea {
    min-height: 96px;
    height: 96px;
  }

  .consultation-modal__privacy-details dl > div {
    grid-template-columns: 1fr;
    gap: calc(var(--space-2xs) / 4);
  }
}

/* Design Bible Chapter 4: shared Body rhythm */
.principle-head > p:last-child,
.expertise-note,
.insight-card p,
.insight-article-body p,
.insight-article-body .insight-article-source,
.readiness-check p,
.expertise-card p,
.faq-list p,
.readiness-modal__intro,
.readiness-result p,
.valuation-confidence > p,
.valuation-consultation p,
.sub-cta-copy,
.about-hero .about-hero-copy,
.about-copy p,
.equiv-mark-story p,
.final-cta p:not(.section-kicker):not(.cta-response-note),
.confidential-notice p,
.consultation-modal__success > p:not(.section-kicker):not(.consultation-modal__static-notice),
.service-card p,
.home-readiness-section .readiness-check p,
.principle-card p,
.valuation-entry-card__description,
.content-list p,
.about-flow p {
  line-height: 1.7;
}

@media (hover: none) and (pointer: coarse) {
  .principle-card:hover,
  .service-card:hover,
  .insight-card:hover,
  .expertise-card:hover,
  .button:hover,
  .btn:hover {
    transform: none;
  }

  .principle-card:active,
  .service-card:active,
  .insight-card:active,
  .expertise-card:active {
    border-color: var(--color-accent-border-card);
    box-shadow: var(--shadow-sm);
  }

  .button:active,
  .btn:active {
    filter: brightness(0.96);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.subpage main,
  .site-header .equiv-logo-mark,
  .site-header .equiv-logo-divider,
  .site-header .equiv-logo-wordmark,
  .hero-brand-identity,
  .hero h1,
  .hero-description,
  .hero-actions,
  .scroll-indicator,
  [data-reveal],
  .consultation-modal,
  .consultation-modal__dialog,
  .consultation-modal__success-icon,
  .readiness-modal,
  .readiness-modal__dialog {
    transition: none;
    animation: none;
  }

  body.subpage main,
  .site-header .equiv-logo-mark,
  .site-header .equiv-logo-divider,
  .site-header .equiv-logo-wordmark,
  .hero-brand-identity,
  .hero h1,
  .hero-description,
  .hero-actions,
  .scroll-indicator,
  [data-reveal],
  .consultation-modal__success-icon {
    opacity: 1;
    transform: none;
  }

  .hero-brand-identity {
    transform: translateY(-10px);
  }

  .scroll-indicator {
    transform: translateX(-50%);
  }

  .readiness-modal__dialog,
  .consultation-modal__dialog {
    transform: none;
  }

  .valuation-loading__skeleton span::after,
  .skeleton::after {
    animation: none;
    transform: none;
    background: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
/* ================================================================
   9. Page-specific Layout Policy
   Page selectors above own layout only. They consume shared Typography and
   Spacing tokens and do not introduce an independent numeric type scale.
   ================================================================ */
