@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700;800&display=swap");

:root {
    --bg: #f4f0e8;
    --bg-soft: #efe6db;
    --surface: rgba(255, 250, 245, 0.84);
    --surface-strong: rgba(255, 251, 247, 0.94);
    --surface-dark: rgba(20, 24, 28, 0.9);
    --ink: #181d21;
    --ink-soft: rgba(24, 29, 33, 0.72);
    --ink-inverse: rgba(248, 245, 240, 0.92);
    --line: rgba(24, 29, 33, 0.1);
    --line-strong: rgba(255, 255, 255, 0.18);
    --accent: #b9d8d4;
    --accent-strong: #86ada7;
    --shadow: 0 28px 80px rgba(18, 24, 28, 0.12);
    --radius-xl: 36px;
    --radius-lg: 26px;
    --radius-md: 20px;
    --header-width: 100%;
    --section-width: 100%;
}

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

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    background:
        radial-gradient(circle at top left, rgba(185, 216, 212, 0.28), transparent 30%),
        linear-gradient(180deg, #ebeff1 0%, var(--bg) 28%, var(--bg-soft) 100%);
    color: var(--ink);
    font-family: "Noto Sans KR", sans-serif;
    overflow-x: hidden;
}

button,
a,
select {
    font: inherit;
}

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

a {
    color: inherit;
}

button {
    color: inherit;
}

.hero-section {
    position: relative;
    min-height: 100svh;
    padding: 146px 0 0;
    display: grid;
    align-content: center;
    justify-items: center;
    overflow: clip;
}

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

.hero-media img {
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-scrim {
    background:
        linear-gradient(180deg, rgba(17, 20, 24, 0.52) 0%, rgba(17, 20, 24, 0.36) 18%, rgba(17, 20, 24, 0.48) 100%),
        linear-gradient(90deg, rgba(17, 20, 24, 0.34) 0%, rgba(17, 20, 24, 0.14) 40%, rgba(17, 20, 24, 0.3) 100%);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    width: var(--header-width);
    transform: none;
    padding: 18px 24px 20px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background: rgba(42, 46, 50, 0.58);
    box-shadow: none;
    backdrop-filter: blur(14px);
    transition: padding 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, backdrop-filter 0.28s ease, box-shadow 0.28s ease;
}

.header-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    grid-column: 3;
    justify-self: end;
    gap: 10px;
}

.language-picker {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background: transparent;
}

.language-picker::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M12 3a15 15 0 0 1 0 18'/%3E%3Cpath d='M12 3a15 15 0 0 0 0 18'/%3E%3Cpath d='M5.5 7.5c2 .9 4.2 1.4 6.5 1.4s4.5-.5 6.5-1.4'/%3E%3Cpath d='M5.5 16.5c2-.9 4.2-1.4 6.5-1.4s4.5.5 6.5 1.4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 24px;
    pointer-events: none;
}

.language-picker select {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: transparent;
    cursor: pointer;
    outline: none;
    appearance: none;
    opacity: 0;
    box-shadow: none;
}

.language-picker select option {
    color: var(--ink);
}

.site-logo {
    display: inline-flex;
    align-items: center;
    grid-column: 2;
    justify-self: center;
    min-height: 44px;
    text-decoration: none;
}

.site-logo-image {
    width: clamp(170px, 18vw, 290px);
    height: auto;
    filter: brightness(0) invert(1);
    transition: width 0.28s ease, opacity 0.28s ease;
}

.nav-toggle {
    display: none;
    justify-self: end;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: white;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.site-nav {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2vw, 28px);
    flex-wrap: wrap;
    max-width: 1440px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    transition: margin-top 0.28s ease, gap 0.28s ease;
}

.nav-item {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: -12px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 2px;
    border: 0;
    color: rgba(255, 255, 255, 0.92);
    background: transparent;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.01em;
    transition: background-color 0.2s ease, color 0.2s ease, min-height 0.28s ease, padding 0.28s ease;
}

.nav-button {
    cursor: pointer;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-item.is-open > .nav-link {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
}

.nav-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 210px;
    padding: 12px;
    display: grid;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    background: rgba(20, 24, 28, 0.92);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-nav-panel {
    display: none;
}

.nav-item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}

.nav-panel a {
    padding: 10px 12px;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    white-space: nowrap;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    outline: none;
}

.has-panel:hover .nav-panel,
.has-panel:focus-within .nav-panel,
.nav-item.is-open .nav-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.site-header.is-scrolled {
    padding: 0 16px;
    min-height: 56px;
    border-bottom-color: rgba(255, 255, 255, 0.18);
    background: rgba(86, 86, 88, 0.92);
    box-shadow: 0 10px 30px rgba(10, 12, 15, 0.18);
    backdrop-filter: blur(22px);
}

.site-header.is-scrolled .site-logo-image {
    width: clamp(112px, 10vw, 164px);
}

.site-header.is-scrolled .header-row {
    display: block;
    position: static;
    max-width: none;
}

.site-header.is-scrolled .site-logo {
    position: absolute;
    left: 16px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    justify-self: auto;
}

.site-header.is-scrolled .site-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    align-self: auto;
    justify-self: auto;
    transform: translate(-50%, -50%);
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
    gap: clamp(14px, 1.7vw, 24px);
    flex-wrap: nowrap;
    width: auto;
    max-width: calc(100% - 190px);
    overflow: visible;
}

.site-header.is-scrolled .nav-link {
    min-height: 28px;
    padding: 0 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
}

.site-header.is-scrolled .header-actions {
    position: absolute;
    right: 16px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    justify-self: auto;
    gap: 0;
}

.site-header.is-scrolled .language-picker {
    width: 28px;
    height: 28px;
}

.site-header.is-scrolled .language-picker::before {
    background-size: 18px 18px;
}

.site-header.is-scrolled .nav-panel {
    z-index: 4;
}

.hero-content,
.hero-chips {
    position: relative;
    z-index: 2;
}

.hero-content {
    width: min(1180px, calc(100% - 32px));
    min-height: calc(100svh - 146px);
    color: white;
    text-align: center;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 22px;
    animation: heroRise 0.8s ease-out both;
}

.hero-kicker,
.section-kicker {
    margin: 0;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
}

.hero-kicker {
    color: rgba(255, 255, 255, 0.82);
}

.hero-title {
    margin: 0;
    display: grid;
    gap: 4px;
    font-family: "Noto Sans KR", sans-serif;
    font-size: clamp(52px, 8.1vw, 108px);
    line-height: 0.96;
    letter-spacing: -0.01em;
    font-weight: 650;
}

.hero-title span {
    white-space: nowrap;
}

.hero-rule {
    width: min(560px, 78vw);
    height: 1px;
    margin: 14px 0 22px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.74) 18%, rgba(255, 255, 255, 0.74) 82%, transparent 100%);
}

.hero-subtitle {
    margin: 0;
    font-size: clamp(19px, 2.2vw, 34px);
    line-height: 1.45;
    letter-spacing: 0.01em;
    font-weight: 500;
}

.hero-description {
    margin: 0;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(15px, 1.7vw, 18px);
    line-height: 1.75;
}

.hero-scroll-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.hero-scroll-link:hover,
.hero-scroll-link:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
    outline: none;
}

.hero-chips {
    width: min(1180px, calc(100% - 32px));
    margin: -96px auto 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    animation: heroRise 1s ease-out both;
}

.hero-chip {
    padding: 11px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
}

.content-section {
    width: var(--section-width);
    margin: 0;
    padding: 64px 32px;
    border: 0;
    border-top: 1px solid rgba(24, 29, 33, 0.08);
    border-radius: 0;
    background: rgba(255, 250, 245, 0.9);
    box-shadow: none;
    backdrop-filter: none;
}

.content-section-dark {
    background:
        radial-gradient(circle at top right, rgba(185, 216, 212, 0.12), transparent 28%),
        var(--surface-dark);
    color: var(--ink-inverse);
}

.content-section-dark .section-description,
.content-section-dark .offline-copy,
.content-section-dark .mini-card span,
.content-section-dark .detail-list dd {
    color: rgba(248, 245, 240, 0.78);
}

.content-section-dark .section-kicker,
.content-section-dark .detail-list dt,
.content-section-dark .standard-index {
    color: rgba(255, 255, 255, 0.62);
}

.content-section,
.contact-section,
#about-section,
#brand-story-section,
#offline-section,
#standards-section,
#gallery-section,
#contact-section {
    scroll-margin-top: 140px;
}

.section-heading {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
    max-width: 1440px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.section-kicker {
    color: rgba(24, 29, 33, 0.46);
}

.section-heading h2 {
    margin: 0;
    font-family: "Noto Sans KR", sans-serif;
    font-size: clamp(34px, 3.9vw, 50px);
    line-height: 1.12;
    letter-spacing: -0.04em;
    font-weight: 700;
}

html[lang="ko"] #about-section .section-heading {
    gap: 18px;
}

html[lang="ko"] #about-section .section-kicker {
    margin-bottom: 2px;
}

.section-description,
.story-body,
.offline-copy,
.detail-list dd,
.mini-card span,
.standard-card p,
.standards-intro p,
.showcase-card span,
.contact-copy p,
.contact-links a,
.site-footer {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.75;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.88fr);
    gap: 18px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.about-visuals {
    display: grid;
    grid-template-rows: minmax(0, 1fr) 250px;
    gap: 18px;
}

.brand-story-block {
    margin-top: 28px;
    display: grid;
    gap: 18px;
    min-width: 0;
}

.story-card,
.offline-card,
.standard-card,
.standards-intro,
.mini-card,
.contact-panel,
.showcase-card,
.about-visuals .media-card,
.media-card {
    border: 1px solid var(--line);
    border-radius: 6px;
}

.story-card {
    padding: 28px;
    display: grid;
    gap: 22px;
    background: linear-gradient(180deg, rgba(17, 20, 24, 0.95) 0%, rgba(29, 33, 39, 0.92) 100%);
    color: rgba(248, 245, 240, 0.94);
}

.story-card .story-body,
.story-card .story-point span {
    color: rgba(248, 245, 240, 0.74);
}

.story-points {
    display: grid;
    gap: 12px;
}

.story-point {
    padding: 16px 18px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    display: grid;
    gap: 8px;
}

.story-point strong,
.mini-card strong,
.standard-card strong {
    font-size: 16px;
    line-height: 1.4;
}

.mobile-carousel-dots {
    display: none;
}

.mobile-carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(24, 29, 33, 0.18);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.mobile-carousel-dot.is-active {
    background: rgba(24, 29, 33, 0.62);
    transform: scale(1.08);
}

.content-section-dark .mobile-carousel-dot {
    background: rgba(255, 255, 255, 0.28);
}

.content-section-dark .mobile-carousel-dot.is-active {
    background: rgba(255, 255, 255, 0.96);
}

.mobile-carousel-dots[data-carousel-dots="showcase-grid"] {
    margin-top: 18px;
}

.brand-story-text {
    max-width: 1440px;
    width: 100%;
    min-width: 0;
    margin: 0 auto;
    display: grid;
    gap: 24px;
    padding: 34px 36px;
    border: 1px solid rgba(24, 29, 33, 0.09);
    border-radius: 8px;
    background: rgba(255, 250, 245, 0.62);
    box-shadow: 0 12px 28px rgba(24, 29, 33, 0.04);
}

.brand-story-paragraph,
.brand-story-closing {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.85;
    letter-spacing: -0.01em;
    word-break: keep-all;
    overflow-wrap: anywhere;
    max-width: 920px;
}

html[lang^="zh"] .brand-story-paragraph,
html[lang^="zh"] .brand-story-closing {
    word-break: normal;
}

.brand-story-paragraph {
    font-size: clamp(17px, 1.35vw, 19px);
    white-space: pre-line;
}

.brand-story-paragraph-intro {
    color: var(--ink);
    font-size: clamp(22px, 1.9vw, 28px);
    line-height: 1.65;
}

.brand-story-closing {
    margin-top: 4px;
    color: var(--ink);
    font-size: clamp(24px, 2.1vw, 30px);
    line-height: 1.5;
    letter-spacing: -0.03em;
    font-weight: 700;
}

.media-card,
.showcase-card {
    position: relative;
    padding: 0;
    overflow: hidden;
    background: #d9d6cf;
    cursor: zoom-in;
}

.media-card img,
.showcase-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}

.showcase-card {
    isolation: isolate;
    contain: paint;
}

.media-card:hover img,
.media-card:focus-visible img,
.showcase-card:hover img,
.showcase-card:focus-visible img {
    transform: scale(1.03);
}

.media-card-tall {
    min-height: 520px;
}

.media-card:not(.media-card-tall) {
    min-height: 250px;
}

.media-card-wide {
    grid-column: 1 / -1;
    min-height: 260px;
}

.offline-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.84fr);
    gap: 18px;
    align-items: start;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.offline-visuals {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(0, 1fr) 260px;
    gap: 18px;
}

.offline-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.04);
    display: grid;
    gap: 24px;
}

.offline-visuals .media-card,
.offline-visuals .media-card-wide {
    min-height: unset;
    height: 100%;
}

.detail-list {
    display: grid;
    gap: 14px;
    margin: 0;
}

.detail-list div {
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    gap: 6px;
}

.detail-list dt {
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.mini-grid {
    display: grid;
    gap: 12px;
}

.mini-card {
    padding: 18px;
    background: rgba(255, 255, 255, 0.04);
    display: grid;
    gap: 8px;
}

.standards-layout {
    display: grid;
    gap: 20px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.standards-intro {
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.5);
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.standard-card {
    padding: 22px 18px 20px;
    background: rgba(255, 255, 255, 0.58);
    display: grid;
    gap: 10px;
}

.standard-index {
    color: rgba(24, 29, 33, 0.46);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: clamp(132px, 13vw, 228px);
    gap: 18px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.showcase-card {
    min-height: 0;
    height: 100%;
    grid-column: span 1;
    border: 0;
}

.showcase-grid > .showcase-card:nth-child(1) { grid-column: 1 / span 2; grid-row: 1 / span 2; }
.showcase-grid > .showcase-card:nth-child(2) { grid-column: 3; grid-row: 1; }
.showcase-grid > .showcase-card:nth-child(3) { grid-column: 4; grid-row: 1; }
.showcase-grid > .showcase-card:nth-child(4) { grid-column: 3; grid-row: 2; }
.showcase-grid > .showcase-card:nth-child(5) { grid-column: 4; grid-row: 2; }
.showcase-grid > .showcase-card:nth-child(6) { grid-column: 1; grid-row: 3; }
.showcase-grid > .showcase-card:nth-child(7) { grid-column: 2; grid-row: 3; }
.showcase-grid > .showcase-card:nth-child(8) { grid-column: 3 / span 2; grid-row: 3 / span 2; }
.showcase-grid > .showcase-card:nth-child(9) { grid-column: 1; grid-row: 4; }
.showcase-grid > .showcase-card:nth-child(10) { grid-column: 2; grid-row: 4; }
.showcase-grid > .showcase-card:nth-child(11) { grid-column: 1 / span 2; grid-row: 5 / span 2; }
.showcase-grid > .showcase-card:nth-child(12) { grid-column: 3; grid-row: 5 / span 2; }
.showcase-grid > .showcase-card:nth-child(13) { grid-column: 4; grid-row: 5 / span 2; }

.showcase-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(180deg, transparent 0%, rgba(12, 16, 20, 0.76) 100%);
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}

.showcase-card span {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(12px, 0.9vw, 14px);
    line-height: 1.45;
    letter-spacing: -0.01em;
    font-weight: 500;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform, opacity;
    pointer-events: none;
}

.contact-topline {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 0 14px;
    border-bottom: 1px solid rgba(24, 29, 33, 0.12);
}

.contact-email-wrap {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 4px 0 22px;
}

.contact-email-label {
    margin: 0 0 10px;
    color: rgba(24, 29, 33, 0.46);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
}

.contact-email-link {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    text-decoration: none;
}

.contact-email-link:focus-visible {
    outline: none;
}

.contact-email {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.03em;
    font-size: clamp(18px, 2.4vw, 28px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.08em;
}

.contact-email-char {
    display: inline-block;
    opacity: 0;
    filter: blur(6px);
    will-change: opacity, filter;
}

.contact-email.is-visible .contact-email-char {
    animation: contact-email-char-in 0.62s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: calc(var(--char-index) * 118ms);
}

@keyframes contact-email-char-in {
    from {
        opacity: 0;
        filter: blur(6px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

.contact-utility-links {
    display: flex;
    align-items: center;
    gap: 14px 28px;
    flex-wrap: wrap;
}

.contact-utility-links a {
    text-decoration: none;
    color: rgba(24, 29, 33, 0.72);
    font-size: 14px;
    line-height: 1.5;
}

.contact-utility-links a:hover,
.contact-utility-links a:focus-visible {
    color: var(--ink);
    text-decoration: underline;
    outline: none;
}

.contact-layout {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding-top: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(180px, 0.46fr) minmax(300px, 0.82fr);
    gap: 24px;
}

.contact-company,
.contact-service,
.contact-lab {
    display: grid;
    align-content: start;
    gap: 10px;
}

.contact-company-name,
.contact-service-title,
.contact-lab-title {
    margin: 0;
    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
}

.contact-company-trigger {
    width: fit-content;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
}

.contact-company-trigger:focus-visible {
    outline: 2px solid rgba(134, 173, 167, 0.55);
    outline-offset: 6px;
    border-radius: 4px;
}

.contact-service-phone {
    margin: 0;
    color: var(--ink);
    font-size: 17px;
    font-weight: 700;
}

.contact-company-meta,
.contact-service-meta,
.contact-lab-meta {
    display: grid;
    gap: 8px;
}

.contact-company-meta p,
.contact-service-meta p,
.contact-lab-meta p {
    margin: 0;
    color: rgba(24, 29, 33, 0.46);
    font-size: 13px;
    line-height: 1.68;
    letter-spacing: -0.01em;
}

.contact-service,
.contact-lab {
    padding-left: clamp(0px, 1.7vw, 24px);
    border-left: 1px solid rgba(24, 29, 33, 0.1);
}

.contact-lab-title {
    font-size: clamp(18px, 1.7vw, 22px);
}

.contact-lab-address {
    color: rgba(24, 29, 33, 0.7) !important;
    font-size: 14px !important;
    font-weight: 500;
}

.contact-lab-cert {
    max-width: 34em;
}

.contact-lab-cert-line {
    display: block;
}

.contact-footer {
    width: 100%;
    margin: 0;
    padding-top: 0;
    text-align: left;
}

.contact-section {
    background: linear-gradient(180deg, rgba(237, 233, 227, 0.92) 0%, rgba(244, 240, 232, 0.98) 100%);
}

.site-footer {
    width: 100%;
    margin: 0;
    text-align: left;
    font-size: 12px;
    color: rgba(24, 29, 33, 0.5);
    background: transparent;
    line-height: 1.68;
    letter-spacing: 0.01em;
}

.zoom-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
}

.zoom-modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(8, 10, 14, 0.82);
    cursor: zoom-out;
}

.zoom-modal-panel {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 24px));
    height: 100%;
    margin: 0 auto;
    padding: 24px 0;
    display: grid;
    place-items: center;
    gap: 14px;
}

.zoom-modal-panel img {
    width: auto;
    max-width: 100%;
    max-height: calc(100vh - 120px);
    max-height: calc(100dvh - 120px);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.zoom-modal-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
}

.zoom-modal-close {
    position: absolute;
    top: 18px;
    right: 0;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(15, 18, 22, 0.5);
    color: white;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.org-chart-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
}

.org-chart-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(8, 10, 14, 0.72);
    cursor: pointer;
}

.org-chart-panel {
    position: relative;
    z-index: 1;
    width: min(1080px, calc(100% - 32px));
    max-height: calc(100vh - 36px);
    max-height: calc(100dvh - 36px);
    margin: 18px auto;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 250, 245, 0.98) 0%, rgba(247, 241, 234, 0.98) 100%);
    box-shadow: 0 30px 80px rgba(13, 18, 24, 0.24);
    overflow: auto;
}

.org-chart-close {
    position: sticky;
    top: 0;
    margin-left: auto;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(24, 29, 33, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--ink);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.org-chart-header {
    display: grid;
    gap: 8px;
    margin-top: -22px;
    margin-bottom: 20px;
}

.org-chart-kicker {
    margin: 0;
    color: rgba(24, 29, 33, 0.52);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24em;
}

.org-chart-header h3 {
    margin: 0;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.org-chart-description {
    margin: 0;
    max-width: 720px;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.7;
}

.org-chart-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(24, 29, 33, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
}

.org-chart-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.org-chart-table thead th {
    padding: 18px 20px;
    border-bottom: 2px solid rgba(24, 29, 33, 0.22);
    background: rgba(185, 216, 212, 0.18);
    font-size: 15px;
    font-weight: 800;
    text-align: center;
}

.org-chart-table tbody th,
.org-chart-table tbody td {
    padding: 14px 18px;
    border-top: 1px solid rgba(24, 29, 33, 0.1);
    border-right: 1px solid rgba(24, 29, 33, 0.08);
    vertical-align: middle;
    background: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.55;
}

.org-chart-table tbody tr.division-start th,
.org-chart-table tbody tr.division-start td {
    border-top-width: 2px;
    border-top-color: rgba(24, 29, 33, 0.22);
}

.org-chart-table tbody th {
    width: 16%;
    min-width: 112px;
    text-align: center;
    font-size: 15px;
    font-weight: 800;
    background: rgba(250, 246, 240, 0.92);
}

.org-chart-table tbody td:nth-child(2) {
    width: 30%;
    font-weight: 700;
    text-align: center;
}

.org-chart-table tbody td:last-child,
.org-chart-table thead th:last-child {
    border-right: 0;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@keyframes heroRise {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .about-layout,
    .offline-layout,
    .standards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .about-visuals {
        grid-template-rows: minmax(0, 1fr) 220px;
    }

    .story-card {
        grid-column: 1 / -1;
    }

    .media-card-tall {
        min-height: 360px;
    }

    .showcase-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-auto-rows: minmax(220px, auto);
    }

    .showcase-card {
        grid-column: span 3;
        min-height: 220px;
    }

    .showcase-grid > .showcase-card:nth-child(n) {
        grid-column: span 3;
        grid-row: span 1;
    }

    .showcase-grid > .showcase-card:nth-child(1),
    .showcase-grid > .showcase-card:nth-child(8),
    .showcase-grid > .showcase-card:nth-child(11) {
        grid-column: span 6;
    }

    .showcase-grid > .showcase-card:nth-child(11),
    .showcase-grid > .showcase-card:nth-child(12),
    .showcase-grid > .showcase-card:nth-child(13) {
        min-height: 340px;
    }

    .org-chart-panel {
        width: min(100%, calc(100% - 24px));
        padding: 24px;
    }
}

@media (max-width: 900px) {
    :root {
        --header-width: min(100%, calc(100% - 16px));
        --section-width: 100%;
    }

    .hero-section {
        padding: 108px 0 0;
        min-height: 100svh;
    }

    .site-header {
        width: 100%;
        padding: 10px 10px 12px;
        background: rgba(42, 46, 50, 0.72);
        backdrop-filter: blur(18px);
    }

    .header-row {
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        gap: 6px;
    }

    .header-actions {
        display: contents;
    }

    .site-logo {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
        align-self: center;
    }

    .site-logo-image {
        width: min(170px, 44vw);
    }

    .nav-toggle {
        display: block;
        grid-column: 3;
        grid-row: 1;
        width: 44px;
        height: 44px;
        border: 0;
        background: transparent;
        align-self: center;
    }

    .language-picker {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        width: 44px;
        height: 44px;
        align-self: center;
    }

    .site-nav {
        display: none;
        margin-top: 18px;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        max-height: calc(100svh - 120px);
        overflow-y: auto;
    }

    .site-header.is-open .site-nav {
        display: flex;
    }

    .site-header.is-scrolled {
        min-height: 0;
        padding: 10px 10px 12px;
        background: rgba(58, 61, 66, 0.94);
    }

    .site-header.is-scrolled .header-row {
        display: grid;
    }

    .site-header.is-scrolled .site-logo,
    .site-header.is-scrolled .site-nav,
    .site-header.is-scrolled .header-actions {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        grid-column: auto;
    }

    .site-header.is-scrolled .site-nav {
        width: 100%;
        flex-wrap: wrap;
        max-width: none;
    }

    .nav-item,
    .nav-link,
    .nav-button {
        width: 100%;
    }

    .nav-item {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .nav-item::after {
        display: none;
    }

    .nav-link {
        justify-content: space-between;
        min-height: 48px;
        padding: 0 14px;
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.05);
    }

    .nav-button::after {
        content: "+";
        flex: 0 0 auto;
        color: rgba(255, 255, 255, 0.92);
        font-size: 22px;
        line-height: 1;
        font-weight: 400;
    }

    .nav-button[aria-expanded="true"]::after {
        content: "-";
    }

    .nav-panel {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        min-width: 0;
        padding: 8px 0 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        display: none;
        gap: 8px;
        overflow: visible;
        grid-template-columns: 1fr;
        margin: 0;
    }

    .nav-item.is-open .nav-panel {
        display: none;
    }

    .mobile-nav-panel {
        display: none;
        gap: 8px;
        padding-top: 8px;
        width: 100%;
        padding-left: 6px;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-item.is-open > .mobile-nav-panel {
        display: grid;
    }

    .mobile-nav-panel a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        min-height: 46px;
        padding: 10px 14px;
        border-radius: 4px;
        background: rgba(15, 18, 22, 0.34);
        color: #ffffff;
        text-decoration: none;
        box-sizing: border-box;
    }

    .mobile-nav-panel a,
    .mobile-nav-panel a:visited {
        color: #ffffff;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.45;
        letter-spacing: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
    }

    .content-section {
        padding: 40px 16px;
    }

    .section-heading h2 {
        font-size: clamp(26px, 6.1vw, 32px);
    }

    .hero-content {
        width: min(100%, calc(100% - 24px));
        min-height: calc(100svh - 174px);
        gap: 18px;
    }

    .hero-title {
        font-size: clamp(40px, 11.5vw, 72px);
        line-height: 0.98;
    }

    .hero-title span {
        white-space: normal;
    }

    .hero-rule {
        width: min(320px, 76vw);
        margin: 10px 0 14px;
    }

    .hero-subtitle {
        max-width: 320px;
        font-size: 17px;
        line-height: 1.55;
    }

    .hero-chips {
        width: calc(100% - 24px);
        margin: -44px auto 24px;
        gap: 8px;
    }

    .hero-chip {
        flex: 1 1 calc(50% - 8px);
        text-align: center;
        font-size: 13px;
        padding: 10px 12px;
    }

    .about-layout,
    .offline-layout,
    .offline-visuals,
    .standards-grid {
        grid-template-columns: 1fr;
    }

    .about-layout {
        gap: 12px;
    }

    .about-visuals {
        order: -2;
        display: block;
        grid-template-rows: none;
        overflow: hidden;
        overflow-y: hidden;
        scroll-snap-type: none;
        scroll-behavior: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
        padding-bottom: 4px;
        touch-action: pan-y;
    }

    .about-visuals::-webkit-scrollbar {
        display: none;
    }

    .about-visuals .media-card,
    .about-visuals .media-card-tall {
        flex: 0 0 min(82vw, 360px);
        height: 240px;
        min-height: 240px;
        scroll-snap-align: start;
    }

    .about-layout .story-card {
        order: 0;
    }

    .about-layout > .mobile-carousel-dots {
        order: -1;
    }

    .standards-grid {
        display: block;
        grid-template-columns: none;
        overflow: hidden;
        overflow-y: hidden;
        scroll-snap-type: none;
        scroll-behavior: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
        padding-bottom: 4px;
        touch-action: pan-y;
    }

    .standards-grid::-webkit-scrollbar {
        display: none;
    }

    .standard-card {
        flex: 0 0 min(82vw, 340px);
        scroll-snap-align: start;
    }

    .brand-story-text {
        gap: 22px;
        padding: 24px 22px;
    }

    .brand-story-paragraph,
    .brand-story-closing {
        max-width: none;
    }

    .brand-story-paragraph {
        font-size: 17px;
        line-height: 1.85;
    }

    .brand-story-paragraph-intro {
        font-size: 21px;
        line-height: 1.62;
    }

    .brand-story-closing {
        font-size: 24px;
    }

    .mobile-carousel-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 8px;
    }

    .offline-layout > .mobile-carousel-dots {
        margin-top: 0;
        margin-bottom: 4px;
    }

    .standards-layout > .mobile-carousel-dots {
        margin-top: 6px;
        margin-bottom: 2px;
    }

    .offline-visuals,
    .showcase-grid {
        display: block;
        grid-template-columns: none;
        grid-template-rows: none;
        overflow: hidden;
        overflow-y: hidden;
        scroll-snap-type: none;
        scroll-behavior: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
        padding-bottom: 4px;
        touch-action: pan-y;
    }

    .offline-visuals::-webkit-scrollbar,
    .showcase-grid::-webkit-scrollbar {
        display: none;
    }

    .offline-visuals .media-card,
    .showcase-card,
    .showcase-card-wide,
    .showcase-card-tall {
        flex: 0 0 min(82vw, 360px);
        grid-column: auto;
        min-height: 240px;
        height: 240px;
        scroll-snap-align: start;
    }

    .offline-visuals {
        height: auto !important;
    }

    .offline-visuals .media-card,
    .offline-visuals .media-card-wide {
        flex: 0 0 min(82vw, 360px);
        height: 240px;
        min-height: 240px;
        scroll-snap-align: start;
    }

    .mobile-carousel-track {
        display: flex;
        gap: 12px;
        width: max-content;
        will-change: transform;
        transform: translate3d(0, 0, 0);
    }

    .showcase-card::after {
        height: 52%;
    }

    .showcase-card span {
        max-width: calc(100% - 32px);
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        color: rgba(255, 255, 255, 0.92);
        font-size: 12px;
        line-height: 1.45;
        font-weight: 500;
    }

}

@media (max-width: 640px) {
    .hero-section {
        min-height: auto;
        padding-top: 98px;
    }

    .site-logo-image {
        width: min(146px, 34vw);
    }

    .language-picker select {
        min-width: 0;
        min-height: 0;
    }

    .language-picker {
        width: 44px;
        height: 44px;
    }

    .hero-content {
        min-height: calc(100svh - 160px);
        gap: 14px;
    }

    .hero-title {
        font-size: clamp(34px, 12vw, 56px);
    }

    .section-heading h2 {
        font-size: clamp(22px, 6.5vw, 27px);
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-chip {
        font-size: 12px;
    }

    .zoom-modal-panel {
        width: calc(100% - 16px);
        padding: 16px 0 22px;
    }

    .zoom-modal-close {
        top: 10px;
        right: 4px;
    }

    .hero-scroll-link {
        min-height: 46px;
        padding: 0 18px;
    }

    .hero-chips {
        width: calc(100% - 24px);
        justify-content: flex-start;
        margin: -36px auto 32px;
    }

    .hero-chip {
        font-size: 13px;
    }

    .section-heading h2 {
        font-size: clamp(22px, 6.4vw, 26px);
    }

    .story-card,
    .offline-card,
    .contact-utility-links {
        gap: 14px 18px;
    }

    .contact-email-wrap {
        padding-bottom: 18px;
    }

    .contact-email {
        font-size: clamp(16px, 5.1vw, 22px);
        letter-spacing: 0.05em;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .contact-service,
    .contact-lab {
        padding-top: 20px;
        padding-left: 0;
        border-top: 1px solid rgba(24, 29, 33, 0.1);
        border-left: 0;
    }

    .contact-company-trigger:focus-visible {
        outline-offset: 4px;
    }

    .contact-footer {
        padding-top: 0;
    }

    .site-footer {
        font-size: 12px;
        line-height: 1.7;
    }

    .org-chart-panel {
        max-height: calc(100vh - 20px);
        max-height: calc(100dvh - 20px);
        margin: 10px auto;
        padding: 20px 16px 18px;
        border-radius: 22px;
    }

    .org-chart-close {
        width: 44px;
        height: 44px;
        font-size: 24px;
    }

    .org-chart-header {
        margin-top: -14px;
        margin-bottom: 16px;
    }

    .org-chart-description {
        font-size: 14px;
    }

    .org-chart-table {
        min-width: 680px;
    }

    .org-chart-table thead th,
    .org-chart-table tbody th,
    .org-chart-table tbody td {
        padding: 12px 14px;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-email-char {
        opacity: 1;
        transform: none;
        filter: none;
        animation: none !important;
    }
}
