/* =====================================================================
   DESIGNCOLORS — Main Stylesheet
   Palette source: Pantone 1655C / Black C / Coolgray 2c·7c·10c / 873C·877C
   Mood: modern Korean craft — dojang(seal) mark, hanji paper tone,
   lacquered black + vermillion-orange, brushed metal accents.
   ===================================================================== */

/* ===== Variables ===== */
:root {
    /* --- Pantone-derived brand colors --- */
    --color-primary: #17140f;           /* Pantone Black C (warmed) — structural dark */
    --color-primary-soft: #575756;      /* Pantone Coolgray 10c */
    --color-accent: #EC6608;            /* Pantone 1655C — signature vermillion-orange */
    --color-accent-dark: #B94F06;
    --color-accent-soft: #FBE3D1;
    --color-bronze: #8a6d3b;            /* Pantone 873C approximation (metallic gold/bronze) */
    --color-silver: #a7abac;            /* Pantone 877C approximation (metallic silver) */

    /* --- Neutrals --- */
    --color-text: #1c1a17;
    --color-text-light: #6c6a66;
    --color-bg: #FBF8F3;                /* warm hanji-paper white */
    --color-bg-alt: #F1EEE7;            /* Coolgray 2c, warmed */
    --color-bg-deep: #17140f;
    --color-border: #E4DFD3;
    --color-coolgray-2: #EDEDED;
    --color-coolgray-7: #9A9B9C;
    --color-coolgray-10: #575756;

    /* --- Type --- */
    --font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-family-kr: 'Noto Serif KR', 'Pretendard', serif;

    /* --- Layout tokens --- */
    --max-width: 1200px;
    --header-height: 76px;
    --radius: 10px;
    --shadow: 0 2px 10px rgba(23, 20, 15, 0.08);
    --shadow-lg: 0 20px 46px rgba(23, 20, 15, 0.14);
    --shadow-xl: 0 32px 70px rgba(23, 20, 15, 0.22);
    --transition: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
}

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

ul {
    list-style: none;
}

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

/* ===== Utility ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 96px 0;
}

.section--alt {
    background: var(--color-bg-alt);
}

.anchor-section {
    scroll-margin-top: calc(var(--header-height) + 24px);
}

.section__title {
    font-family: var(--font-family-kr);
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-align: center;
    color: var(--color-primary);
    letter-spacing: -0.01em;
}

.section__title--left {
    text-align: left;
}

.section__desc {
    font-size: 1.08rem;
    color: var(--color-text-light);
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

/* Kicker label — small vermillion "seal dot" mark before uppercase label,
   echoing a Korean dojang (personal seal) stamp accent. */
.hero__eyebrow,
.section__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-accent);
    opacity: 1;
    margin-bottom: 14px;
}

.hero__eyebrow::before,
.section__kicker::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--color-accent);
}

.section__title--left ~ .section__kicker {
    justify-content: flex-start;
}

/* ===== Button ===== */
.btn {
    display: inline-block;
    padding: 13px 34px;
    border-radius: var(--radius);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn--primary {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 10px 24px rgba(236, 102, 8, 0.28);
}

.btn--primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-1px);
}

.btn--outline {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.btn--outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn--light {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.btn--light:hover {
    background: #ffffff;
    color: var(--color-primary);
    border-color: #ffffff;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(251, 248, 243, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(23, 20, 15, 0.08);
    z-index: 1000;
    transition: var(--transition);
}

.header--scrolled {
    background: rgba(251, 248, 243, 0.98);
    box-shadow: 0 8px 24px rgba(23, 20, 15, 0.10);
    border-bottom-color: transparent;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav__logo {
    display: inline-flex;
    align-items: center;
}

.nav__logo-img {
    height: 38px;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__menu > li,
.nav__item {
    position: relative;
    display: flex;
    align-items: center;
    height: var(--header-height);
}

.nav__item--has-submenu {
    flex-shrink: 0;
}

.nav__link {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    color: var(--color-text);
    transition: var(--transition);
}

.nav__link--button {
    display: inline-flex;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    background: transparent;
    font-family: inherit;
    cursor: default;
}

.nav__link:hover,
.nav__link.active {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.nav__link--with-caret::after {
    content: '▾';
    display: inline-block;
    margin-left: 6px;
    font-size: 0.7rem;
    color: var(--color-coolgray-7);
}

.nav__submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 220px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-accent);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
    transition: var(--transition);
    z-index: 20;
}

.nav__item--has-submenu:hover .nav__submenu,
.nav__item--has-submenu:focus-within .nav__submenu,
.nav__item--has-submenu.is-open .nav__submenu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav__sublink {
    display: block;
    padding: 10px 14px;
    border-radius: 2px;
    color: var(--color-text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.nav__sublink:hover,
.nav__sublink:focus-visible,
.nav__sublink.active {
    background: var(--color-accent-soft);
    color: var(--color-accent-dark);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.7);
}

.lang-switch__button {
    border: 0;
    background: transparent;
    color: var(--color-text-light);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    padding: 6px 13px;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-switch__button.active {
    background: var(--color-primary);
    color: #fff;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

.nav__toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
    margin-top: var(--header-height);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2a241a 100%);
    color: #fff;
    text-align: center;
}

.hero__title {
    font-family: var(--font-family-kr);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.hero__subtitle {
    font-size: 1.2rem;
    opacity: 0.82;
    margin-bottom: 34px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* Home hero — full-bleed editorial furniture photograph, veiled with a
   lacquered black gradient and a vermillion "sunrise seal" glow for
   legible premium type overlay + craft-depth texture. */
.hero--home {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - var(--header-height));
    text-align: left;
    background:
        radial-gradient(circle at 88% 8%, rgba(236, 102, 8, 0.34), transparent 40%),
        linear-gradient(120deg, rgba(23, 20, 15, 0.96) 0%, rgba(28, 23, 16, 0.88) 38%, rgba(23, 20, 15, 0.72) 100%),
        url('../images/hero-home.jpg');
    background-size: cover;
    background-position: center 30%;
}

.hero--home::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        115deg,
        rgba(255, 255, 255, 0.025) 0px,
        rgba(255, 255, 255, 0.025) 1px,
        transparent 1px,
        transparent 6px
    );
    pointer-events: none;
}

.hero--home::after {
    content: '';
    position: absolute;
    right: 6%;
    top: 14%;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(236, 102, 8, 0.35);
    border-radius: 4px;
    transform: rotate(8deg);
    pointer-events: none;
}

.home-hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero--home .hero__subtitle {
    margin-left: 0;
    margin-right: 0;
    color: rgba(255, 255, 255, 0.78);
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.home-hero__panel {
    padding: 36px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(236, 102, 8, 0.28);
    border-top: 3px solid var(--color-accent);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
}

.home-hero__panel-title {
    font-family: var(--font-family-kr);
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 18px;
    color: #fff;
}

.home-hero__panel .section__kicker {
    color: var(--color-accent);
}

.home-hero__panel .results-note-list {
    margin-top: 0;
}

.home-hero__panel .results-note-list li {
    color: rgba(255, 255, 255, 0.82);
}

.home-hero__panel .results-note-list li::before {
    background: var(--color-accent);
}

/* ===== Page Header ===== */
.page-header {
    position: relative;
    overflow: hidden;
    margin-top: var(--header-height);
    padding: 70px 0;
    background: var(--color-primary);
    color: #fff;
    text-align: center;
}

.page-header__title {
    font-family: var(--font-family-kr);
    font-size: 2.5rem;
    font-weight: 700;
}

/* Image page headers — full-bleed editorial photograph with a lacquered-black
   to vermillion gradient veil for legible, premium type overlay. */
.page-header--image {
    padding: 132px 0 84px;
    text-align: left;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header--image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(23, 20, 15, 0.94) 0%, rgba(23, 20, 15, 0.72) 42%, rgba(23, 20, 15, 0.42) 100%),
        linear-gradient(0deg, rgba(23, 20, 15, 0.55) 0%, transparent 60%);
    z-index: 0;
}

.page-header--image::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        115deg,
        rgba(255, 255, 255, 0.02) 0px,
        rgba(255, 255, 255, 0.02) 1px,
        transparent 1px,
        transparent 6px
    );
    z-index: 0;
}

.page-header--image .container {
    position: relative;
    z-index: 1;
}

.page-header--image .page-header__title {
    max-width: 760px;
    font-size: 2.7rem;
    line-height: 1.22;
}

.page-header__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.page-header__eyebrow::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--color-accent);
}

.page-header__desc {
    max-width: 620px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
}

.page-header--about   { background-image: url('../images/hero-about.jpg'); }
.page-header--sustain { background-image: url('../images/hero-sustainability.jpg'); }
.page-header--special { background-image: url('../images/hero-special-order.jpg'); }
.page-header--contact { background-image: url('../images/hero-contact.jpg'); }
.page-header--products { background-image: url('../images/hero-about.jpg'); }

/* ===== Services ===== */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    text-align: center;
    padding: 44px 26px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.service-card__icon {
    font-size: 2.6rem;
    margin-bottom: 18px;
    color: var(--color-accent);
}

.service-card__title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.service-card__desc {
    color: var(--color-text-light);
}

/* ===== Info grid / cards ===== */
.info-grid,
.order-process {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 44px;
}

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

.info-card,
.order-step {
    padding: 30px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.info-card:hover,
.order-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.info-card__title,
.order-step__title {
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.info-card__desc,
.order-step__desc {
    color: var(--color-text-light);
}

.info-card--emphasis {
    position: relative;
    border-top: 3px solid var(--color-accent);
}

.info-card--emphasis::after {
    content: '';
    position: absolute;
    top: -3px;
    right: 18px;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 0 0 2px 2px;
}

/* ===== ESG hero (sustainability page) ===== */
.esg-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 32px;
    padding: 44px;
    border-radius: 22px;
    background: linear-gradient(135deg, #ffffff 0%, #f7f2ea 52%, #f1ece1 100%);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-accent);
    box-shadow: var(--shadow-lg);
}

.esg-hero__title {
    font-family: var(--font-family-kr);
    font-size: 2.3rem;
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--color-primary);
}

.esg-hero__subtitle {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 18px;
}

.esg-hero__desc {
    color: var(--color-text-light);
    max-width: 760px;
}

.esg-hero__visual {
    position: relative;
    min-height: 260px;
    border-radius: 16px;
    overflow: hidden;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.5), transparent 42%),
        linear-gradient(160deg, rgba(236, 102, 8, 0.32) 0%, rgba(138, 109, 59, 0.28) 50%, rgba(23, 20, 15, 0.92) 100%),
        url('../images/hero-sustainability.jpg');
    background-size: cover;
    background-position: center;
}

.esg-hero__visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(23, 20, 15, 0.08) 0%, rgba(23, 20, 15, 0.85) 100%);
}

.esg-hero__badge {
    position: relative;
    z-index: 1;
}

.esg-hero__badge {
    width: fit-content;
    max-width: 100%;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-primary);
    font-size: 0.82rem;
    font-weight: 800;
}

.message-card {
    margin-top: 30px;
    padding: 34px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-bronze);
    box-shadow: var(--shadow);
}

.message-card__title {
    font-family: var(--font-family-kr);
    font-size: 1.55rem;
    margin-bottom: 14px;
    color: var(--color-primary);
}

.message-card__lead {
    font-size: 1.06rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-accent-dark);
}

.message-card__body {
    color: var(--color-text-light);
}

.keyword-section,
.esg-direction-section {
    margin-top: 52px;
}

/* ===== ESG results ===== */
.results-overview,
.results-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.results-year-card,
.results-detail-card,
.results-highlight-box {
    padding: 30px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.results-year-card:hover,
.results-detail-card:hover,
.results-highlight-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.results-year-card--accent {
    background: linear-gradient(135deg, #1c1710 0%, #2c2417 100%);
    color: #fff;
    border-color: transparent;
    border-top: 3px solid var(--color-accent);
}

.results-year-card__label,
.results-year-card__caption,
.results-meta__name {
    color: var(--color-text-light);
}

.results-year-card--accent .results-year-card__label,
.results-year-card--accent .results-year-card__caption,
.results-year-card--accent .results-meta__name {
    color: rgba(255, 255, 255, 0.68);
}

.results-year-card__year {
    font-size: 1rem;
    margin: 10px 0 4px;
    font-weight: 700;
}

.results-year-card__score {
    font-family: var(--font-family-kr);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.results-year-card__caption {
    font-size: 0.92rem;
}

.results-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 26px;
}

.results-meta__item strong {
    display: block;
    margin-top: 4px;
    font-size: 1.06rem;
    color: var(--color-primary);
}

.results-highlight-box,
.results-detail-section {
    margin-top: 34px;
}

.results-highlight-list,
.results-note-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.results-highlight-list li,
.results-note-list li {
    position: relative;
    padding-left: 20px;
    color: var(--color-text-light);
}

.results-highlight-list li::before,
.results-note-list li::before {
    content: '';
    position: absolute;
    top: 0.6em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--color-accent);
}

.results-detail-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 26px;
}

.results-detail-card__head,
.results-detail-card__scores {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.results-detail-card__head {
    align-items: flex-start;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--color-border);
}

.results-detail-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
}

.results-detail-card__scores {
    margin-bottom: 18px;
}

.results-detail-card__scores span {
    display: block;
    color: var(--color-text-light);
    font-size: 0.84rem;
    margin-bottom: 4px;
}

.results-detail-card__scores strong {
    font-size: 1rem;
}

.score-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
}

/* Growth uses the brand vermillion; decline uses a calm metallic-bronze
   neutral rather than an alarm-red, per brand tone. */
.score-badge--up {
    background: var(--color-accent-soft);
    color: var(--color-accent-dark);
}

.score-badge--down {
    background: #eee7d9;
    color: var(--color-bronze);
}

/* ===== Home collections / keyword grid ===== */
.keyword-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.keyword-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 30px 28px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.keyword-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: var(--color-primary);
    color: var(--color-accent);
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 18px;
    border: 1px solid var(--color-accent);
}

.keyword-card__brand {
    margin-bottom: 8px;
    color: var(--color-primary);
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.keyword-card__title {
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-accent-dark);
}

.keyword-card__desc {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.keyword-card__meta {
    margin-top: auto;
    padding-top: 22px;
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-story-banner {
    margin-top: 44px;
}

.home-link-card {
    display: block;
    transition: var(--transition);
}

.home-link-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-lg);
}

.special-channel-panel {
    margin-top: 36px;
}

.special-channel-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.special-channel-card__meta {
    margin-top: auto;
    padding-top: 18px;
    color: var(--color-accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ===== Feature banner ===== */
.feature-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 44px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f2ece0 0%, #fbf7ef 100%);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow);
}

.feature-banner--compact {
    margin-top: 32px;
}

.feature-banner--dark {
    color: #fff;
    background: linear-gradient(135deg, #1c1710 0%, #2c2417 100%);
    border-color: transparent;
}

.feature-banner--dark::before {
    content: '';
}

.feature-banner__title {
    font-family: var(--font-family-kr);
    font-size: 2rem;
    margin-bottom: 14px;
}

.feature-banner__desc {
    color: var(--color-text-light);
    max-width: 720px;
}

.feature-banner--dark .feature-banner__desc,
.feature-banner--dark .section__kicker {
    color: rgba(255, 255, 255, 0.76);
}

.feature-banner--dark .section__kicker {
    color: var(--color-accent);
}

/* ===== Products ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(236, 102, 8, 0.35);
}

.product-card__image {
    position: relative;
    height: 280px;
    background: linear-gradient(160deg, #ecebe6 0%, #f7f5f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-card__image img {
    transform: scale(1.06);
}

.product-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(23, 20, 15, 0.85);
    color: var(--color-accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.product-card__body {
    position: relative;
    padding: 28px;
    border-top: 3px solid transparent;
    background: #fff;
}

.product-card:hover .product-card__body {
    border-top-color: var(--color-accent);
}

.product-card__title {
    font-family: var(--font-family-kr);
    font-size: 1.28rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.product-card__desc {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.product-card__meta {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--color-border);
    color: var(--color-accent-dark);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ===== About ===== */
.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.value-item {
    position: relative;
    padding: 34px 32px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-accent);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-item h3 {
    font-family: var(--font-family-kr);
    font-size: 1.3rem;
    color: var(--color-accent-dark);
    margin-bottom: 12px;
}

/* ===== Timeline ===== */
.timeline {
    max-width: 640px;
    margin: 40px auto 0;
    position: relative;
    padding-left: 28px;
    border-left: 2px solid var(--color-border);
}

.timeline__item {
    position: relative;
    display: flex;
    gap: 24px;
    padding: 6px 0 34px;
}

.timeline__item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 0 4px var(--color-accent-soft);
}

.timeline__year {
    font-weight: 800;
    color: var(--color-accent);
    min-width: 60px;
}

.timeline__desc {
    color: var(--color-text-light);
}

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
}

.contact-info,
.contact-map {
    padding: 36px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.contact-info h2,
.contact-map h2 {
    font-family: var(--font-family-kr);
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-accent-soft);
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

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

.contact-info__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--color-accent-soft);
    color: var(--color-accent-dark);
    font-size: 1.05rem;
}

.contact-info__item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-primary);
    font-size: 0.92rem;
}

.contact-info__item p {
    color: var(--color-text-light);
}

.contact-map__address {
    margin-bottom: 16px;
    color: var(--color-text-light);
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(236, 102, 8, 0.16), transparent 45%),
        linear-gradient(150deg, #1c1710 0%, #2c2417 100%);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 32px 32px;
}

.map-placeholder__pin {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 12px 26px rgba(236, 102, 8, 0.4);
}

.map-placeholder p {
    position: relative;
    z-index: 1;
}

/* ===== Footer ===== */
.footer {
    position: relative;
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.76);
    padding: 60px 0 40px;
    border-top: 3px solid var(--color-accent);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 8% 0%, rgba(236, 102, 8, 0.12), transparent 40%);
    pointer-events: none;
}

.footer__inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer__company {
    font-family: var(--font-family-kr);
    font-size: 1.28rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.footer__info p {
    font-size: 0.875rem;
    line-height: 1.85;
}

.footer__copyright {
    font-size: 0.8rem;
    opacity: 0.6;
}
