
  :root {
    --blue: #0000FE;
    --blue-hover: #0000C4;
    --navy: #0A1F44;
    --cream: #F8F4ED;
    --cream-warm: #F0E9DC;
    --coral: #E07856;
    --coral-text: #B84B26;
    --coral-soft: #F4D9CD;
    --text: #1A2138;
    --muted: #5A6478;
    --line: #E5DDD0;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Manrope', system-ui, sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  /* Korean pages: break at word (어절) boundaries, not mid-syllable */
  html[lang="ko"] {
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  ul { list-style: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  .container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

  /* ============ TOP BAR ============ */
  .topbar {
    background: var(--navy);
    color: var(--cream);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
  }
  .topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }
  .topbar-contact { display: flex; gap: 28px; }
  .topbar-contact a {
    opacity: 0.85;
    transition: opacity 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .topbar-contact a:hover { opacity: 1; }
  .topbar-contact svg { width: 14px; height: 14px; }
  .topbar-note {
    font-style: italic;
    font-family: var(--font-display);
    opacity: 0.7;
    font-size: 13px;
  }
  .lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    white-space: nowrap;
  }
  .lang-switch a {
    color: var(--cream);
    opacity: 0.45;
    font-weight: 500;
    transition: opacity 0.2s;
  }
  .lang-switch a:hover { opacity: 0.85; }
  .lang-switch .lang-current {
    color: var(--cream);
    opacity: 1;
    font-weight: 700;
  }
  .lang-switch .lang-sep { opacity: 0.35; font-weight: 400; }

  /* Contact form result message */
  .form-status {
    display: none;
    margin-bottom: 18px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
  }
  .form-status.is-ok { background: #e6f4ea; color: #1e6b3a; border: 1px solid #b7e0c4; }
  .form-status.is-err { background: #fbe9e7; color: #a23b2d; border: 1px solid #f3c7bf; }

  /* ============ HEADER ============ */
  .header {
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
  }
  /* Pin top bar + header together as one block (Korean pages) */
  .site-top {
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .site-top .header {
    position: static;
  }
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 28px;
    color: var(--blue);
    letter-spacing: -0.01em;
  }
  .logo-mark {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
  }
  .logo img {
    height: 50px;
    width: auto;
    display: block;
    flex-shrink: 0;
  }
  .footer-brand .logo img { height: 46px; }
  .brand-lockup { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
  .logo { flex-shrink: 0; }
  .brand-lockup .ndis-divider { width: 1px; height: 36px; background: var(--line); flex-shrink: 0; }
  .ndis-badge { height: 46px; width: auto; display: block; flex-shrink: 0; }
  .footer-brand .ndis-badge { height: 42px; }
  .footer-brand .brand-lockup { flex-wrap: wrap; gap: 14px 16px; }
  .footer-brand .ndis-divider { display: none; }
  .logo small {
    display: block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 2px;
  }
  .nav {
    display: flex;
    gap: 36px;
    align-items: center;
  }
  .nav a {
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 6px 0;
    transition: color 0.2s;
    color: var(--text);
    white-space: nowrap;
  }
  .nav a:hover { color: var(--blue); }
  .nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.3s ease;
  }
  .nav a:hover::after { width: 100%; }
  .nav-wrap {
    display: flex;
    align-items: center;
    gap: 36px;
  }
  .nav-toggle { display: none; }

  /* ============ BUTTONS ============ */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: var(--blue);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 999px;
    border: 2px solid var(--blue);
    transition: all 0.25s ease;
    white-space: nowrap;
  }
  .btn:hover {
    background: transparent;
    color: var(--blue);
    transform: translateY(-1px);
  }
  .btn-outline {
    background: transparent;
    color: var(--blue);
  }
  .btn-outline:hover {
    background: var(--blue);
    color: #fff;
  }
  .btn-light {
    background: var(--cream);
    color: var(--navy);
    border-color: var(--cream);
  }
  .btn-light:hover {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream);
  }
  .btn svg { width: 16px; height: 16px; }
  .btn:hover svg { transform: translateX(3px); }
  .btn svg { transition: transform 0.25s; }

  /* ============ HERO ============ */
  .hero {
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--coral-soft) 0%, transparent 70%);
    opacity: 0.6;
    z-index: 0;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    background: rgba(0, 0, 254, 0.08);
    color: var(--blue);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    border-radius: 999px;
    margin-bottom: 28px;
    text-transform: uppercase;
  }
  .hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.4); }
  }
  .hero h1 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(40px, 5.5vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin-bottom: 28px;
    color: var(--navy);
  }
  .hero h1 em {
    font-style: italic;
    color: var(--coral-text);
    font-weight: 400;
    position: relative;
  }
  .hero h1 em::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--coral-soft);
    z-index: -1;
    border-radius: 2px;
  }
  .hero-lede {
    font-size: 19px;
    color: var(--muted);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.6;
  }
  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .hero-visual {
    position: relative;
  }
  .hero-img-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 3/2;
    background: var(--cream-warm);
  }
  .hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-card {
    position: absolute;
    bottom: -58px;
    left: -36px;
    background: var(--cream);
    padding: 14px 17px;
    border-radius: 15px;
    box-shadow: 0 24px 60px rgba(10, 31, 68, 0.12);
    display: flex;
    align-items: center;
    gap: 11px;
    max-width: 256px;
  }
  .hero-card-icon {
    width: 40px;
    height: 40px;
    background: var(--coral-soft);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-text);
    flex-shrink: 0;
  }
  .hero-card-icon svg { width: 18px; height: 18px; }
  .hero-card-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2px;
  }
  .hero-card-text span {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.35;
  }
  .hero-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--cream);
    color: var(--blue);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 50%;
  }

  /* ============ TRUST STRIP ============ */
  .trust {
    background: var(--cream-warm);
    padding: 36px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .trust-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .trust-icon {
    width: 44px;
    height: 44px;
    background: var(--cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    flex-shrink: 0;
  }
  .trust-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--navy);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2px;
  }
  .trust-item span {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.3;
  }

  /* ============ SECTION COMMON ============ */
  .section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--coral-text);
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 400;
  }
  .section-h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(36px, 4.2vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.022em;
    color: var(--navy);
    margin-bottom: 28px;
  }
  .section-h2 em {
    font-style: italic;
    color: var(--blue);
  }

  /* ============ ABOUT ============ */
  .about {
    padding: 130px 0;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
    align-items: center;
  }
  .about-visual {
    position: relative;
  }
  .about-visual img {
    border-radius: 24px;
    aspect-ratio: 4/5;
    object-fit: cover;
    width: 100%;
  }
  .about-quote {
    position: absolute;
    right: -40px;
    bottom: 40px;
    background: var(--navy);
    color: var(--cream);
    padding: 24px 28px;
    border-radius: 18px;
    max-width: 240px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 17px;
    line-height: 1.4;
  }
  .about-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 18px;
    font-size: 60px;
    color: var(--coral-text);
    font-family: var(--font-display);
    line-height: 1;
  }
  .about-body p {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.75;
  }
  .about-body p:last-of-type {
    margin-bottom: 32px;
  }
  .about-body strong {
    color: var(--text);
    font-weight: 600;
  }

  /* ============ SERVICES ============ */
  .services {
    background: var(--cream-warm);
    padding: 130px 0;
    position: relative;
    overflow: hidden;
  }
  .services::before {
    content: '';
    position: absolute;
    top: 200px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 0, 254, 0.06) 0%, transparent 70%);
    z-index: 0;
  }
  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
    gap: 40px;
    position: relative;
    z-index: 1;
  }
  .services-header-left { max-width: 600px; }
  .services-header p {
    color: var(--muted);
    font-size: 16px;
    max-width: 380px;
    margin-top: 4px;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
  }
  .service-card {
    background: var(--cream);
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.35s ease;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
  }
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(10, 31, 68, 0.12);
    border-color: var(--blue);
  }
  .service-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--cream-warm);
  }
  .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .service-card:hover .service-img img {
    transform: scale(1.06);
  }
  .service-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .service-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 13px;
    color: var(--coral-text);
    margin-bottom: 12px;
  }
  .service-tag::before {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--coral);
  }
  .service-card h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 23px;
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--navy);
    letter-spacing: -0.01em;
  }
  .service-card p {
    font-size: 14.5px;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.6;
    flex: 1;
  }
  .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--blue);
    transition: gap 0.25s ease;
    align-self: flex-start;
  }
  .service-card:hover .service-link {
    gap: 14px;
  }
  .service-link svg {
    width: 16px;
    height: 16px;
  }

  /* ============ VALUES ============ */
  .values {
    padding: 130px 0;
  }
  .values-header {
    max-width: 700px;
    margin-bottom: 70px;
  }
  .values-header p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
  }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .value-card {
    padding: 32px 4px 0;
    border-top: 2px solid var(--navy);
    position: relative;
    transition: border-color 0.3s;
  }
  .value-card:hover {
    border-top-color: var(--coral);
  }
  .value-num {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--coral-text);
    font-style: italic;
    margin-bottom: 18px;
    letter-spacing: 1px;
  }
  .value-card h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 26px;
    margin-bottom: 14px;
    color: var(--navy);
    letter-spacing: -0.01em;
  }
  .value-card p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.65;
  }

  /* ============ CTA ============ */
  .cta {
    background: var(--navy);
    color: var(--cream);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
  }
  .cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224, 120, 86, 0.15) 0%, transparent 70%);
    z-index: 0;
  }
  .cta::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 0, 254, 0.15) 0%, transparent 70%);
    z-index: 0;
  }
  .cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .cta-label {
    color: var(--coral);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 18px;
    margin-bottom: 18px;
  }
  .cta h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(36px, 4.5vw, 60px);
    line-height: 1.08;
    letter-spacing: -0.022em;
    margin-bottom: 28px;
    color: var(--cream);
  }
  .cta h2 em {
    font-style: italic;
    color: var(--coral);
  }
  .cta-sub {
    font-size: 18px;
    opacity: 0.75;
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.65;
  }
  .cta-info {
    background: rgba(248, 244, 237, 0.05);
    border: 1px solid rgba(248, 244, 237, 0.12);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
  }
  .cta-info-item {
    padding: 18px 0;
    border-bottom: 1px solid rgba(248, 244, 237, 0.1);
  }
  .cta-info-item:last-child { border-bottom: none; padding-bottom: 0; }
  .cta-info-item:first-child { padding-top: 0; }
  .cta-info-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14px;
    color: var(--coral);
    margin-bottom: 8px;
  }
  .cta-info-label svg { width: 16px; height: 16px; }
  .cta-info-value {
    font-size: 18px;
    color: var(--cream);
    font-weight: 500;
    transition: color 0.2s;
  }
  a.cta-info-value:hover { color: var(--coral); }

  /* ============ FOOTER ============ */
  .footer {
    background: var(--cream);
    padding: 90px 0 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 46px;
    margin-bottom: 60px;
  }
  .footer-brand p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 20px 0 24px;
    max-width: 320px;
  }
  .footer-col h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 22px;
    color: var(--navy);
  }
  .footer-col ul li {
    margin-bottom: 12px;
  }
  .footer-col a {
    color: var(--muted);
    font-size: 14.5px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--blue); }
  .footer-contact-item {
    margin-bottom: 18px;
  }
  .footer-contact-item span {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--coral-text);
    font-size: 13px;
    margin-bottom: 4px;
  }
  .footer-contact-item a, .footer-contact-item div {
    color: var(--text);
    font-size: 14.5px;
    line-height: 1.5;
    font-weight: 500;
  }
  .footer-contact-item a:hover { color: var(--blue); }
  .socials {
    display: flex;
    gap: 10px;
  }
  .social {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all 0.25s;
  }
  .social:hover {
    background: var(--blue);
    color: var(--cream);
    border-color: var(--blue);
    transform: translateY(-2px);
  }
  .social svg { width: 16px; height: 16px; }
  .footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--muted);
    flex-wrap: wrap;
    gap: 16px;
  }

  /* ============ ANIMATIONS ============ */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-grid > *,
  .hero-eyebrow, .hero h1, .hero-lede, .hero-actions {
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  }
  .hero-eyebrow { animation-delay: 0.05s; }
  .hero h1 { animation-delay: 0.15s; }
  .hero-lede { animation-delay: 0.3s; }
  .hero-actions { animation-delay: 0.45s; }
  .hero-visual { animation-delay: 0.2s; }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 1024px) {
    .hero-grid, .about-grid, .cta-grid {
      grid-template-columns: 1fr;
      gap: 60px;
    }
    .about-grid { gap: 80px; }
    .services-grid, .values-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .trust-inner {
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }
    .footer-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 48px;
    }
    .about-quote { right: 20px; }
    .services-header { flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 1100px) {
    .header-inner { justify-content: space-between; flex-wrap: nowrap; }
    .nav-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 10px;
      color: var(--text);
      transition: background 0.2s, color 0.2s;
    }
    .nav-toggle:hover { background: rgba(0, 0, 254, 0.06); color: var(--blue); }
    .nav-toggle svg { width: 26px; height: 26px; }
    .nav-icon-close { display: none; }
    .header.menu-open .nav-icon-open { display: none; }
    .header.menu-open .nav-icon-close { display: block; }

    .nav-wrap {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      background: var(--cream);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: 8px 0 18px;
      box-shadow: 0 14px 28px rgba(10, 31, 68, 0.10);
    }
    .header.menu-open .nav-wrap { display: flex; }

    .nav {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      width: 100%;
    }
    .nav a {
      padding: 14px 32px;
      font-size: 16px;
    }
    .nav a::after { display: none; }
    .nav-wrap .btn {
      margin: 14px 32px 4px;
      justify-content: center;
    }
  }
  @media (max-width: 640px) {
    .topbar-note { display: none; }
    .topbar-contact { gap: 14px; font-size: 12px; }
    .services-grid, .values-grid, .trust-inner, .footer-grid {
      grid-template-columns: 1fr;
    }
    .container { padding: 0 20px; }
    .hero { padding: 60px 0 80px; }
    .about, .services, .values, .cta { padding: 80px 0; }
    .hero-card {
      left: 16px;
      right: auto;
      bottom: -46px;
      transform: none;
      max-width: calc(100% - 48px);
    }
    .about-quote {
      position: relative;
      right: auto;
      bottom: auto;
      margin-top: -20px;
      margin-left: 20px;
      max-width: 100%;
    }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cta-info { padding: 28px; }
    .logo small { display: none; }
    .brand-lockup { gap: 10px; }
    .logo img { height: 38px; }
    .ndis-badge { height: 34px; }
    .brand-lockup .ndis-divider { height: 28px; }
    .header-inner { justify-content: space-between; flex-wrap: nowrap; gap: 12px; }
    .nav a { padding-left: 20px; padding-right: 20px; }
    .nav-wrap .btn { margin-left: 20px; margin-right: 20px; }
    .topbar-inner { justify-content: space-between; }
    .topbar-contact { flex-wrap: wrap; justify-content: flex-start; }
    .topbar-contact a { white-space: nowrap; }
  }


  /* ============ INNER PAGE COMPONENTS ============ */
  .page-hero { padding: 84px 0 64px; position: relative; overflow: hidden; }
  .page-hero::before {
    content:''; position:absolute; top:-140px; right:-160px;
    width:520px; height:520px;
    background: radial-gradient(circle, var(--coral-soft) 0%, transparent 70%);
    opacity:.55; z-index:0;
  }
  .page-hero .container { position: relative; z-index:1; }
  .crumb { font-size:13px; color:var(--muted); margin-bottom:20px; display:flex; gap:8px; align-items:center; flex-wrap:wrap; }
  .crumb a:hover { color: var(--blue); }
  .crumb span { opacity:.5; }
  .page-hero h1 {
    font-family: var(--font-display); font-weight:600;
    font-size: clamp(34px, 5vw, 54px); line-height:1.08;
    letter-spacing:-0.02em; color: var(--text); margin-bottom: 18px;
  }
  .page-hero h1 em { font-style: italic; color: var(--blue); }
  .page-hero .lead { font-size: 19px; color: var(--muted); max-width: 660px; }

  .section { padding: 84px 0; }
  .section.alt-bg { background: var(--cream-warm); }
  .section-head { max-width: 720px; margin-bottom: 48px; }
  .section-head h2 { font-family: var(--font-display); font-weight:600; font-size: clamp(26px,3.4vw,38px); color: var(--text); letter-spacing:-0.01em; margin-bottom:14px; }
  .section-head p { color: var(--muted); font-size:17px; }

  .prose { max-width: 760px; }
  .prose p { color: var(--muted); font-size: 17px; margin-bottom: 18px; }
  .prose h2 { font-family: var(--font-display); font-weight:600; font-size: 30px; color: var(--text); margin: 34px 0 16px; }

  /* alternating image / text */
  .split { display:grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items:center; }
  .split + .split { margin-top: 80px; }
  .split.reverse .split-media { order: 2; }
  .split h2 { font-family: var(--font-display); font-weight:600; font-size: 28px; margin-bottom:14px; color:var(--text); }
  .split p { color: var(--muted); margin-bottom: 14px; font-size:16px; }
  .split-media img { width:100%; border-radius: 18px; display:block; }

  /* image placeholder block (replace with real images later) */
  .ph-img {
    width:100%; aspect-ratio: 4/3; border-radius:18px;
    background: linear-gradient(135deg, var(--cream-warm), var(--coral-soft));
    border:1px solid var(--line);
    display:flex; align-items:center; justify-content:center;
    color: var(--muted); font-size:13px; letter-spacing:.5px; text-align:center; padding:20px;
  }

  /* What's included */
  .included { background:#fff; border:1px solid var(--line); border-radius: 22px; padding: 40px; margin-top: 72px; }
  .included h3 { font-family: var(--font-display); font-weight:600; font-size: 22px; margin-bottom: 22px; }
  .feature-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: 16px 36px; }
  .feature-grid li { display:flex; gap:12px; align-items:flex-start; color: var(--text); font-size:15px; }
  .feature-grid svg { width:20px; height:20px; color: var(--blue); flex-shrink:0; margin-top:2px; }

  /* policies */
  .policy-grid { display:grid; grid-template-columns: repeat(2,1fr); gap:16px; }
  .policy-item { display:flex; align-items:center; justify-content:space-between; gap:18px; padding:22px 24px; background:#fff; border:1px solid var(--line); border-radius:14px; transition: all .2s; }
  .policy-item:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow:0 10px 24px rgba(10,31,68,.06); }
  .policy-item .pi-name { font-weight:600; color: var(--text); margin-bottom:3px; }
  .policy-item .pi-meta { font-size:13px; color: var(--muted); }
  .policy-item .pi-go { display:inline-flex; align-items:center; gap:6px; color:var(--blue); font-weight:600; font-size:14px; white-space:nowrap; }
  .policy-item .pi-go svg { width:16px; height:16px; }

  /* contact */
  .contact-grid { display:grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items:start; }
  .field { margin-bottom:16px; }
  .field label { display:block; font-size:13px; font-weight:600; color:var(--text); margin-bottom:6px; }
  .field input, .field textarea { width:100%; padding:13px 16px; border:1px solid var(--line); border-radius:12px; font-family:inherit; font-size:15px; background:#fff; color:var(--text); }
  .field input:focus, .field textarea:focus { outline:none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,0,254,0.18); }
  .field textarea { min-height:150px; resize:vertical; }
  .form-note { font-size:13px; color:var(--muted); margin-top:6px; }
  .contact-cards { display:flex; flex-direction:column; gap:14px; }
  .contact-card { display:flex; gap:16px; padding:22px; background: var(--cream-warm); border-radius:16px; align-items:flex-start; }
  .contact-card svg { width:22px; height:22px; color: var(--blue); flex-shrink:0; margin-top:2px; }
  .contact-card .cc-label { font-size:12px; font-weight:600; letter-spacing:1px; text-transform:uppercase; color:var(--muted); margin-bottom:4px; }
  .contact-card .cc-value { color:var(--text); font-weight:500; }
  .map-embed { width:100%; height:300px; border:0; border-radius:18px; margin-top:14px; }

  @media (max-width: 1024px){
    .split, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
    .split.reverse .split-media { order: 0; }
  }
  @media (max-width: 640px){
    .feature-grid, .policy-grid { grid-template-columns: 1fr; }
    .included { padding: 26px; }
    .section { padding: 60px 0; }
    .page-hero { padding: 56px 0 44px; }
    .policy-item { flex-direction:column; align-items:flex-start; gap:12px; }
  }

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


  /* ============ ACCESSIBILITY ============ */
  /* 본문 건너뛰기 링크 */
  .skip-link {
    position: absolute;
    left: 8px;
    top: -60px;
    z-index: 2000;
    background: var(--blue);
    color: #fff;
    padding: 10px 18px;
    border-radius: 0 0 10px 10px;
    font-weight: 600;
    font-size: 14px;
    transition: top 0.15s ease;
  }
  .skip-link:focus { top: 0; }

  /* 키보드 포커스 표시 */
  a:focus-visible,
  button:focus-visible,
  .btn:focus-visible,
  .nav-toggle:focus-visible,
  .service-card:focus-visible,
  .policy-item:focus-visible,
  .social:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
    border-radius: 6px;
  }

  /* 움직임 줄이기 설정 존중 */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }


/* ===== Other services nav (added) ===== */
.other-services { padding: 72px 0; background: var(--cream-warm); border-top: 1px solid var(--line); }
.other-services .os-head { margin-bottom: 30px; }
.os-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 3.2vw, 40px); line-height: 1.1; letter-spacing: -0.02em; color: var(--navy); margin: 0; }
.os-grid { display: flex; flex-direction: column; gap: 10px; max-width: 560px; }
.os-card { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 20px 22px; background: #fff; border: 1px solid var(--line); border-radius: 14px; color: var(--navy); font-weight: 600; font-size: 16px; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.os-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(10,31,68,0.08); }
.os-name { line-height: 1.25; }
.os-arrow { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; transition: transform .2s ease, color .2s ease; }
.os-card:hover .os-arrow { transform: translateX(4px); }


/* ===== About: merged intro + photo gallery (added) ===== */
.about-intro-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: start; }
.about-intro-head .section-h2 { margin-top: 10px; }
.about-intro-body p { margin: 0 0 18px; }
.about-intro-body p:last-child { margin-bottom: 0; }
.about-gallery { padding: 84px 0; background: var(--cream-warm); border-top: 1px solid var(--line); }
.about-gallery .ag-head { max-width: 640px; margin-bottom: 32px; }
.about-gallery .ag-head .section-h2 { margin: 10px 0 12px; }
.ag-feature { width: 100%; aspect-ratio: 16 / 6; border-radius: 18px; margin-bottom: 16px; }
.ag-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ag-grid .ph-img { aspect-ratio: 1 / 1; border-radius: 14px; }
@media (max-width: 900px) { .about-intro-grid { grid-template-columns: 1fr; gap: 18px; } .ag-grid { grid-template-columns: repeat(2, 1fr); } .ag-feature { aspect-ratio: 16 / 8; } }
@media (max-width: 520px) { .ag-grid { grid-template-columns: 1fr; } }

/* ===== Services header dropdown ===== */
.nav-item.has-sub { position: relative; display: inline-flex; align-items: center; }
.nav-item.has-sub > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-caret { width: 14px; height: 14px; flex: none; transition: transform 0.25s ease; }
.nav-item.has-sub:hover .nav-caret,
.nav-item.has-sub:focus-within .nav-caret { transform: rotate(180deg); }
.nav-sub {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 250px; padding: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 16px 36px rgba(10, 31, 68, 0.12);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease; z-index: 60;
}
.nav-item.has-sub:hover .nav-sub,
.nav-item.has-sub:focus-within .nav-sub {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-sub a { display: block; padding: 10px 14px; border-radius: 9px; font-size: 14.5px; font-weight: 500; color: var(--navy); white-space: nowrap; transition: background 0.15s, color 0.15s; }
.nav-sub a::after { display: none !important; }
.nav-sub a:hover { background: var(--cream-warm, #f4ece1); color: var(--blue); }

@media (max-width: 1100px) {
  .nav-item.has-sub { display: block; width: 100%; }
  .nav-item.has-sub > a { padding: 14px 32px; }
  .nav-caret { display: none; }
  .nav-sub {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    display: flex; min-width: 0; margin: 0; padding: 0;
    background: transparent; border: none; box-shadow: none; border-radius: 0;
  }
  .nav-sub a { padding: 11px 32px 11px 50px; font-size: 15px; color: var(--text); border-radius: 0; white-space: normal; }
  .nav-sub a:hover { background: rgba(0, 0, 254, 0.05); }
}
